@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #425466;
    --heading-color: #0a2540;
    --accent-1: #635bff;
    --accent-2: #00d4ff;
    --accent-3: #00b5ff;
    --soft-bg: #f6f9fc;
    --soft-bg-2: #eef2ff;
    --card-bg: #ffffff;
    --card-border: rgba(226, 232, 240, 0.9);
    --card-shadow: 0 13px 27px -5px rgba(50, 50, 93, 0.25), 0 8px 16px -8px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3);
    --section-diagonal: -6deg;
    --font-heading: 'Space Grotesk', 'Manrope', system-ui, sans-serif;
    --font-body: 'Manrope', 'Space Grotesk', system-ui, sans-serif;
    --content-max: 1120px;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 0;
    letter-spacing: -0.02em;
}

p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-color);
}

a {
    color: var(--accent-1);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--heading-color);
}

.landing-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.landing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 720px;
    background:
        radial-gradient(circle at 85% 5%, rgba(0, 212, 255, 0.35), transparent 42%),
        radial-gradient(circle at 5% 5%, rgba(99, 91, 255, 0.35), transparent 48%),
        linear-gradient(155deg, rgba(99, 91, 255, 0.22) 10%, rgba(0, 212, 255, 0.16) 70%, #ffffff 98%);
    transform: skewY(var(--section-diagonal));
    transform-origin: 0;
    z-index: -1;
    margin-top: -200px;
}

.landing-container > section {
    position: relative;
    z-index: 1;
    width: min(var(--content-max), 100%);
    margin-left: auto;
    margin-right: auto;
}

section {
    position: relative;
    padding: 6rem 1.5rem;
}

section:nth-of-type(even) {
    background: linear-gradient(180deg, var(--soft-bg), #ffffff);
    padding: 6rem 1.5rem;
    z-index: 0;
}

section:nth-of-type(even) > * {
    transform: none;
}

/* Navbar */
.landing-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 1.5rem;
    max-width: var(--content-max);
    margin: 0 auto 2.5rem;
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-btn {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    box-shadow: 0 12px 24px -18px rgba(50, 50, 93, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-toggle-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 18px 30px -18px rgba(50, 50, 93, 0.6);
}

.nav-toggle-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle:checked + .nav-toggle-btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-btn span:nth-child(2) {
    opacity: 0;
}

.nav-toggle:checked + .nav-toggle-btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-transform: uppercase;
}

.nav-links a {
    color: var(--heading-color);
    margin: 0;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--heading-color);
    margin: 0;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.9;
    cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
    display: none;
}

.nav-dropdown summary::marker {
    content: '';
}

.nav-dropdown summary i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.nav-dropdown[open] summary i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 230px;
    padding: 0.5rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--card-shadow);
    display: grid;
    gap: 0.15rem;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 20;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown[open] .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    margin: 0;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    white-space: nowrap;
    color: var(--heading-color);
    font-size: 0.92rem;
    border: 1px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(99, 91, 255, 0.08);
    border-color: rgba(99, 91, 255, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: #ffffff;
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    box-shadow: 0 16px 30px -24px rgba(10, 37, 64, 0.5);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px -28px rgba(10, 37, 64, 0.7);
}

.btn-ghost {
    border: 1px solid rgba(99, 91, 255, 0.35);
    color: var(--heading-color);
    padding: 0.8rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: rgba(99, 91, 255, 0.6);
    box-shadow: 0 12px 24px -18px rgba(99, 91, 255, 0.6);
}


/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 4.5rem 1.5rem 6rem;
    max-width: var(--content-max);
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    width: 100%;
    align-items: center;
}

.hero-copy h1 {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1.2rem;
    color: var(--heading-color);
    letter-spacing: -0.04em;
}

.hero-copy p {
    color: var(--text-color);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(99, 91, 255, 0.12);
    color: var(--accent-1);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-color);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.metric-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.4rem 1.5rem;
    border-radius: 14px;
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border-top: 4px solid var(--accent-1);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.metric-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.metric-value {
    display: block;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.35rem;
    font-size: 1.05rem;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-color);
}

.hero-panel {
    display: grid;
    gap: 1.5rem;
}

.panel-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 1.6rem;
    box-shadow: var(--card-shadow);
}

.panel-card.secondary {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.08), rgba(0, 212, 255, 0.12));
    border-color: rgba(99, 91, 255, 0.25);
}

.panel-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.panel-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    background: rgba(99, 91, 255, 0.06);
    color: var(--heading-color);
    margin-bottom: 0.6rem;
}

.panel-step span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 91, 255, 0.18);
    color: var(--accent-1);
    font-size: 0.75rem;
}

.panel-step.active {
    background: rgba(99, 91, 255, 0.16);
    color: var(--heading-color);
}

.panel-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 120px;
    margin-bottom: 1rem;
}

.chart-bar {
    flex: 1;
    height: var(--h);
    border-radius: 8px 8px 2px 2px;
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.9), rgba(0, 212, 255, 0.35));
    box-shadow: 0 10px 20px -12px rgba(99, 91, 255, 0.5);
}

/* Abstract Background Shapes */
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.25;
    animation: float 12s infinite ease-in-out;
}

.shape-1 {
    width: 420px;
    height: 420px;
    background: #6c63ff;
    top: 5%;
    right: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 320px;
    height: 320px;
    background: #00d4ff;
    bottom: 10%;
    left: -8%;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-20px) translateX(10px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.platform {
    padding: 6rem 1.5rem;
    max-width: var(--content-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    max-width: var(--content-max);
    margin-left: auto;
    margin-right: auto;
}

.platform-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 1.8rem;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 18px 30px -28px rgba(50, 50, 93, 0.4);
    flex: 0 1 260px;
    max-width: 280px;
}

.platform-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 91, 255, 0.4);
    box-shadow: var(--card-shadow-hover);
}

.platform-icon {
    font-size: 1.8rem;
    color: var(--accent-1);
    margin-bottom: 1rem;
}

.platform-card h3 {
    margin-bottom: 0.6rem;
    color: var(--heading-color);
}

.platform-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.platform-link {
    margin-top: 1rem;
    background: #ffffff;
    color: var(--accent-1);
    border: 1px solid rgba(99, 91, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.platform-link:hover {
    border-color: rgba(99, 91, 255, 0.6);
    box-shadow: 0 12px 24px -18px rgba(99, 91, 255, 0.6);
}

.modal-open {
    overflow: hidden;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    padding: 2rem;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 2rem;
    max-width: 720px;
    width: 100%;
    box-shadow: var(--card-shadow-hover);
    position: relative;
}

.modal-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.modal-card p {
    color: var(--text-color);
    line-height: 1.7;
}

.modal-media {
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.18), rgba(0, 212, 255, 0.16));
    border: 1px solid rgba(99, 91, 255, 0.15);
    border-radius: 14px;
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--heading-color);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    overflow: hidden;
    padding: 0.75rem;
}

.modal-media img,
.modal-media video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 10px;
    display: block;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: rgba(15, 23, 42, 0.06);
    color: var(--heading-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
}

.how-it-works {
    position: relative;
    padding: 6rem 1.5rem;
    overflow: hidden;
    background: transparent;
    max-width: 1080px;
    margin: 0 auto;
}

.flow-container {
    padding: 2rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-1) rgba(15, 23, 42, 0.08);
}

.flow-container::-webkit-scrollbar {
    height: 6px;
}

.flow-container::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.08);
    border-radius: 10px;
    margin: 0 20%;
}

.flow-container::-webkit-scrollbar-thumb {
    background: var(--accent-1);
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 91, 255, 0.5);
}

.flow-container::-webkit-scrollbar-thumb:hover {
    background: #7b73ff;
}

.flow-track-line {
    display: none;
}

.flow-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-width: 1600px;
    padding: 14rem 2rem;
    margin: 0 auto;
}

.flow-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: rgba(15, 23, 42, 0.12);
    z-index: 0;
}

.flow-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 2rem;
    width: 0%;
    height: 1px;
    background: var(--accent-1);
    box-shadow: 0 0 10px rgba(99, 91, 255, 0.4);
    z-index: 0;
    animation: trackFill 2s ease-out 0.5s forwards;
}

@keyframes trackFill {
    to { width: calc(100% - 4rem); }
}

.flow-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
    animation-delay: var(--delay);
    height: 100px;
    justify-content: center;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.flow-marker {
    width: 14px;
    height: 14px;
    background: var(--bg-color);
    border: 2px solid var(--accent-1);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.12);
    transition: all 0.3s ease;
    z-index: 20;
}

.flow-card {
    position: absolute;
    width: 250px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    left: 50%;
    margin-left: -125px;
    box-shadow: var(--card-shadow);
}

.flow-step:nth-child(odd) .flow-card {
    bottom: calc(50% + 40px);
    transform-origin: bottom center;
}

.flow-step:nth-child(even) .flow-card {
    top: calc(50% + 40px);
    transform-origin: top center;
}

.flow-card::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.flow-step:nth-child(odd) .flow-card::before {
    top: 100%;
    background: linear-gradient(to bottom, var(--accent-1), transparent);
}

.flow-step:nth-child(even) .flow-card::before {
    bottom: 100%;
    background: linear-gradient(to top, var(--accent-1), transparent);
}

.flow-step:hover .flow-card {
    background: #ffffff;
    border-color: rgba(99, 91, 255, 0.4);
    box-shadow: var(--card-shadow-hover);
    z-index: 10;
}

.flow-step:hover .flow-marker {
    background: var(--accent-1);
    box-shadow: 0 0 15px var(--accent-1);
    transform: translate(-50%, -50%) scale(1.3);
}

.flow-icon-glow {
    font-size: 2rem;
    color: var(--accent-1);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(99, 91, 255, 0.4);
}

.flow-card h4 {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.flow-card p {
    font-size: 0.85rem;
    color: var(--text-color);
    margin: 0;
    line-height: 1.4;
}

/* AI Process */
.ai-process {
    position: relative;
    padding: 6rem 1.5rem;
    max-width: 1080px;
    margin: 0 auto;
}

.ai-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.06), rgba(0, 212, 255, 0.04));
    border-radius: 28px;
    z-index: -1;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem 0 1rem;
    display: grid;
    gap: 2.5rem;
}

.process-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.2), rgba(0, 212, 255, 0.35), rgba(99, 91, 255, 0.15));
    opacity: 0.6;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
    align-items: center;
    min-height: 150px;
}

.process-connector {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--accent-1);
    box-shadow: 0 0 0 5px rgba(99, 91, 255, 0.1);
    z-index: 2;
}

.process-card {
    width: min(420px, 100%);
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    padding: 1.6rem 1.9rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.process-item.left .process-card {
    grid-column: 1;
    justify-self: end;
}

.process-item.right .process-card {
    grid-column: 3;
    justify-self: start;
}

.process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 91, 255, 0.4);
    box-shadow: var(--card-shadow-hover);
}

.process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(99, 91, 255, 0.1);
    color: var(--accent-1);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.process-card h4 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.process-card p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Execution */
.execution {
    padding: 6rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
    max-width: var(--content-max);
    margin: 0 auto;
}

.execution h2 {
    margin-bottom: 1rem;
}

.execution p {
    margin-bottom: 1.5rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--heading-color);
}

.check-list i {
    color: var(--accent-1);
}

.execution-panel {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.timeline {
    display: grid;
    gap: 1.5rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    color: var(--text-color);
}

.timeline-item h4 {
    margin: 0 0 0.3rem;
    color: var(--heading-color);
}

.timeline-item p {
    margin: 0;
}

.timeline-item .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 91, 255, 0.35);
    margin-top: 0.4rem;
    box-shadow: 0 0 12px rgba(99, 91, 255, 0.35);
}

.timeline-item.active .dot {
    background: var(--accent-1);
}

/* Insights */
.insights {
    padding: 6rem 1.5rem;
    max-width: var(--content-max);
    margin: 0 auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.insights-copy h2 {
    margin-bottom: 1rem;
}

.insights-copy p {
    margin-bottom: 1.5rem;
}

.insights-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.insights-header {
    color: var(--accent-1);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

.insights-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.6rem;
    height: 160px;
    margin-bottom: 1.5rem;
}

.insights-bar {
    flex: 1;
    height: var(--h);
    border-radius: 10px 10px 2px 2px;
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.9), rgba(0, 212, 255, 0.35));
}

/* CTA */
.cta {
    padding: 6rem 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 91, 255, 0.12), rgba(0, 212, 255, 0.1));
    border: 1px solid rgba(99, 91, 255, 0.2);
    border-radius: 24px;
    margin: 4rem auto;
    max-width: var(--content-max);
}

.cta p {
    color: var(--text-color);
    margin: 1rem auto 2rem;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Pricing */
.pricing {
    padding: 6rem 1.5rem;
    text-align: center;
    max-width: var(--content-max);
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--card-shadow);
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-1);
    box-shadow: var(--card-shadow-hover);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--heading-color);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-1);
}

.pricing-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-1);
}

.pricing-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
    box-shadow: 0 0 10px rgba(99, 91, 255, 0.4);
}

/* Footer */
.landing-footer {
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding: 5rem 1.5rem 2rem;
    margin-top: 6rem;
    background: var(--soft-bg);
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 91, 255, 0.45), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h5 {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 1.2rem;
    filter: none;
    opacity: 0.9;
}

.company-name {
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-info p {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info i {
    color: var(--accent-1);
    font-size: 1.1rem;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--heading-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--heading-color);
    transform: translateX(5px);
}

.coming-soon {
    color: var(--text-color);
    background: rgba(99, 91, 255, 0.08);
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(99, 91, 255, 0.15);
    cursor: default;
    transition: all 0.3s;
}

.coming-soon:hover {
    background: rgba(99, 91, 255, 0.12);
    border-color: rgba(99, 91, 255, 0.2);
    color: var(--heading-color);
}

.footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile */
@media (max-width: 1024px) {
    .flow-container {
        overflow-x: hidden;
        padding: 0;
    }

    .flow-grid {
        flex-direction: column;
        min-width: 0;
        width: 100%;
        padding: 2rem 1rem;
        gap: 3rem;
        align-items: flex-start;
    }

    .flow-grid::before {
        top: 0;
        bottom: 0;
        left: 2rem;
        width: 1px;
        height: 100%;
        right: auto;
    }

    .flow-grid::after {
        display: none;
    }
    
    .flow-step {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 5rem;
        box-sizing: border-box;
    }

    .flow-marker {
        left: 2rem;
        top: 2rem;
        transform: translateX(-50%);
        margin: 0;
    }

    .flow-card {
        position: relative;
        left: 0;
        margin-left: 0;
        top: 0 !important;
        bottom: 0 !important;
        width: 100%;
        max-width: 500px;
        text-align: left;
        transform: none !important;
    }

    .flow-step:nth-child(odd) .flow-card,
    .flow-step:nth-child(even) .flow-card {
        transform: none;
        bottom: auto;
        top: auto;
    }

    .flow-card::before {
        width: 3rem;
        height: 2px;
        top: 2rem;
        left: -3rem;
        bottom: auto;
        transform: none;
        background: linear-gradient(to right, var(--accent-1), transparent);
        opacity: 0.5;
    }
    
    .flow-step:nth-child(odd) .flow-card::before,
    .flow-step:nth-child(even) .flow-card::before {
        top: 2rem;
        bottom: auto;
        background: linear-gradient(to right, var(--accent-1), transparent);
    }
    
    .flow-step:hover .flow-marker {
        transform: translateX(-50%) scale(1.3);
    }
}

@media (max-width: 900px) {
    .process-line {
        left: 24px;
        transform: none;
    }

    .process-item {
        grid-template-columns: 1fr;
        padding-left: 4rem;
        min-height: 0;
    }

    .process-connector {
        left: 24px;
        top: 2.4rem;
        transform: translateY(-50%);
    }

    .process-item.left .process-card,
    .process-item.right .process-card {
        grid-column: 1;
        justify-self: start;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.6rem; }
    .landing-nav { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 1rem; }
    .nav-toggle-btn {
        display: inline-flex;
        margin-left: auto;
        background: #ffffff;
        border-color: rgba(99, 91, 255, 0.2);
        box-shadow: 0 12px 24px -18px rgba(10, 37, 64, 0.4);
    }
    .nav-toggle-btn span {
        background: var(--heading-color);
    }
    .nav-links {
        display: flex;
        width: 100%;
        flex-basis: 100%;
        margin: 0.75rem 0 0;
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        border-radius: 18px;
        background: #ffffff;
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: var(--card-shadow);
        max-height: 0;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        overflow: hidden;
        transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
    }
    .nav-links a {
        margin: 0;
        padding: 0.7rem 0.85rem;
        border-radius: 12px;
        color: var(--heading-color);
        border: 1px solid transparent;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown summary {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin: 0;
        padding: 0.7rem 0.85rem;
        border-radius: 12px;
        color: var(--heading-color);
        border: 1px solid transparent;
        opacity: 1;
    }

    .nav-dropdown summary:hover {
        background: rgba(99, 91, 255, 0.08);
        border-color: rgba(99, 91, 255, 0.2);
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 0.35rem;
        padding: 0.35rem;
        border-radius: 12px;
        border: 1px solid rgba(226, 232, 240, 0.9);
        box-shadow: none;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
    }

    .nav-dropdown[open] .dropdown-menu {
        display: grid;
    }

    .dropdown-menu a {
        white-space: normal;
        padding: 0.6rem 0.75rem;
    }

    .nav-links a:hover {
        background: rgba(99, 91, 255, 0.08);
        border-color: rgba(99, 91, 255, 0.2);
    }
    .nav-links .btn-primary {
        width: 100%;
        justify-content: center;
        margin-top: 0.25rem;
    }
    .nav-toggle:checked + .nav-toggle-btn + .nav-links {
        max-height: 100vh;
        overflow-y: auto;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .hero-grid { grid-template-columns: 1fr; }
    .execution { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }

    section:nth-of-type(even) {
        transform: none;
        margin: 0;
    }
    section:nth-of-type(even) > * {
        transform: none;
    }
}

@media (max-width: 576px) {
    .landing-footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .contact-info p {
        justify-content: center;
    }
    
    .footer-logo {
        margin: 0 auto 1.2rem;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0) scale(1.05);
    }
}

sup {
    vertical-align: super; /* Standard superscript height */
    font-size: 0.75em;    /* Makes it slightly smaller */
    color: var(--accent-1);
    margin-left: 4px;
}

/* How It Works page */
body.how-works {
    font-family: 'Inter', system-ui, sans-serif;
    color: #111111;
    background: #ffffff;
}

body.how-works .landing-container::before {
    display: none;
}

body.how-works section:nth-of-type(even) {
    background: transparent;
}

body.how-works section:nth-of-type(even) > * {
    transform: none;
}

body.how-works .landing-nav {
    position: sticky;
    top: 0;
    height: 80px;
    margin-bottom: 0;
    padding: 0 1.5rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #e6eef8;
    z-index: 20;
}

body.how-works .brand img {
    height: 52px !important;
}

body.how-works .nav-links a {
    color: #111111;
}

body.how-works .nav-dropdown summary,
body.how-works .dropdown-menu a {
    color: #111111;
}

body.how-works .btn-primary {
    background: #0066ff;
    box-shadow: 0 16px 30px -24px rgba(0, 102, 255, 0.6);
}

body.how-works .btn-primary:hover {
    background: #0055d6;
}

body.how-works .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: 999px;
    border: 1px solid #0066ff;
    color: #0066ff;
    font-weight: 600;
    transition: all 0.2s ease;
}

body.how-works .btn-outline:hover {
    background: rgba(0, 102, 255, 0.08);
}

.how-works-page {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.hw-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem 4rem;
    background: linear-gradient(150deg, #f8fafc 0%, #e0f0ff 60%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hw-hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.18) 0%, rgba(0, 102, 255, 0) 65%);
    z-index: 0;
}

.hw-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hw-hero-copy h1 {
    font-size: clamp(2.8rem, 5vw, 4.6rem);
    line-height: 1.02;
    margin-bottom: 1rem;
}

.hw-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: #0066ff;
    margin-bottom: 1rem;
}

.hw-subheadline {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: #111111;
    margin-bottom: 0.75rem;
}

.hw-tagline {
    font-style: italic;
    font-size: 1.05rem;
    color: #2b3a55;
    margin-bottom: 1.5rem;
}

.hw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hw-trust-bar {
    display: grid;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #425466;
}

.hw-trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 600;
    color: #6b7b93;
}

.hw-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hw-illustration {
    width: min(520px, 100%);
    background: #ffffff;
    border-radius: 32px;
    padding: 1.5rem;
    box-shadow: 0 30px 70px -40px rgba(17, 24, 39, 0.4);
}

.hw-demo {
    padding: 3rem 1.5rem;
    background: #ffffff;
}

.hw-demo-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    border-radius: 28px;
    border: 1px solid #e4ecf7;
    background: #f9fbff;
    box-shadow: 0 20px 40px -32px rgba(0, 0, 0, 0.3);
}

.hw-demo-screen {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.12), rgba(0, 204, 153, 0.2));
    padding: 3rem;
    display: grid;
    place-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: #2b3a55;
}

.hw-demo-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0066ff;
    color: #ffffff;
    font-size: 1.4rem;
}

.hw-social-proof {
    padding: 2.5rem 1.5rem 4rem;
}

.hw-proof-inner {
    display: grid;
    gap: 1rem;
    text-align: center;
    color: #425466;
}

.hw-logo-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    font-weight: 600;
    color: #94a3b8;
}

.hw-section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.hw-section-head h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
}

.hw-steps {
    padding: 4rem 1.5rem 5rem;
}

.hw-step-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.hw-step-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e4ecf7;
    box-shadow: 0 20px 40px -32px rgba(15, 23, 42, 0.35);
    display: grid;
    gap: 1rem;
}

.hw-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.hw-step-media {
    height: 140px;
    border-radius: 18px;
    background: linear-gradient(135deg, #e6f0ff, #f6fffb);
}

.hw-features {
    padding: 4rem 1.5rem 5rem;
}

.hw-feature {
    margin-bottom: 3.5rem;
}

.hw-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hw-feature.alt .hw-feature-grid {
    direction: rtl;
}

.hw-feature.alt .hw-feature-content,
.hw-feature.alt .hw-feature-media {
    direction: ltr;
}

.hw-feature-content ul {
    padding-left: 1.2rem;
    color: #425466;
}

.hw-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hw-feature-media {
    display: flex;
    justify-content: center;
}

.hw-media-card {
    width: min(420px, 100%);
    height: 260px;
    border-radius: 28px;
    background: linear-gradient(135deg, #eef4ff, #f4fff8);
    border: 1px solid #e4ecf7;
    box-shadow: 0 30px 60px -40px rgba(15, 23, 42, 0.35);
}

.hw-loop {
    padding: 4rem 1.5rem;
    background: #f4f6fb;
    border-radius: 32px;
    margin: 0 1.5rem 4rem;
}

.hw-flowchart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e4ecf7;
}

.hw-flow-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    background: #f8fafc;
    font-weight: 600;
    color: #2b3a55;
}

.hw-flow-step span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.12);
    color: #0066ff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.hw-insights {
    padding: 4rem 1.5rem 5rem;
}

.hw-insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.hw-chart-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid #e4ecf7;
    box-shadow: 0 18px 30px -28px rgba(15, 23, 42, 0.3);
    display: grid;
    gap: 1rem;
}

.hw-prompt {
    font-size: 0.9rem;
    color: #425466;
}

.hw-chart {
    height: 140px;
    border-radius: 16px;
    background: #f6f9fc;
    position: relative;
    overflow: hidden;
}

.hw-chart-bar::before {
    content: '';
    position: absolute;
    inset: 18px;
    background: linear-gradient(90deg, #0066ff 0%, #0066ff 20%, transparent 20%),
        linear-gradient(90deg, #00cc99 0%, #00cc99 45%, transparent 45%),
        linear-gradient(90deg, #0066ff 0%, #0066ff 30%, transparent 30%);
    background-size: 30% 100%, 30% 100%, 30% 100%;
    background-repeat: no-repeat;
    background-position: 0% 100%, 35% 100%, 70% 100%;
}

.hw-chart-line::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-bottom: 2px solid rgba(0, 102, 255, 0.2);
    border-left: 2px solid rgba(0, 102, 255, 0.2);
}

.hw-chart-line::after {
    content: '';
    position: absolute;
    inset: 22px;
    border-radius: 12px;
    background: linear-gradient(120deg, transparent 0%, transparent 15%, #0066ff 15%, #0066ff 18%, transparent 18%, transparent 40%, #00cc99 40%, #00cc99 43%, transparent 43%, transparent 70%, #0066ff 70%, #0066ff 73%, transparent 73%);
}

.hw-chart-pareto::before {
    content: '';
    position: absolute;
    inset: 18px;
    background: linear-gradient(180deg, #0066ff, #00cc99);
    opacity: 0.2;
}

.hw-chart-funnel::before {
    content: '';
    position: absolute;
    inset: 20px;
    background: linear-gradient(180deg, rgba(0, 102, 255, 0.7), rgba(0, 102, 255, 0.2));
    clip-path: polygon(10% 0%, 90% 0%, 75% 100%, 25% 100%);
}

.hw-chart-heat::before {
    content: '';
    position: absolute;
    inset: 18px;
    background: linear-gradient(90deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.35), rgba(0, 204, 153, 0.25));
    border-radius: 12px;
}

.hw-summary {
    padding: 4.5rem 1.5rem;
    background: #0b1b33;
    color: #ffffff;
    border-radius: 32px;
    margin: 0 1.5rem 4rem;
}

.hw-summary-inner h2 {
    color: #ffffff;
}

.hw-summary-inner p {
    color: #d4e2ff;
}

.hw-testimonials {
    padding: 4rem 1.5rem 6rem;
}

.hw-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.hw-testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid #e4ecf7;
    box-shadow: 0 20px 40px -32px rgba(15, 23, 42, 0.35);
    display: grid;
    gap: 1.5rem;
}

.hw-quote {
    font-size: 1rem;
    color: #2b3a55;
    position: relative;
}

.hw-author {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    color: #425466;
}

.hw-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e6f0ff, #f6fffb);
}

.reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: revealUp 0.8s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 900px) {
    .hw-hero-grid {
        grid-template-columns: 1fr;
    }
    .hw-demo-inner {
        grid-template-columns: 1fr;
    }
    .hw-feature-grid {
        grid-template-columns: 1fr;
    }
    .hw-feature.alt .hw-feature-grid {
        direction: ltr;
    }
}

@media (max-width: 700px) {
    body.how-works .landing-nav {
        height: auto;
        padding: 1rem 1.25rem;
    }
    .hw-hero {
        padding-top: 7rem;
    }
    .hw-loop,
    .hw-summary {
        margin: 0 0 3rem;
        border-radius: 24px;
    }
}