/* ==========================================================================
   VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-card-hover: rgba(255, 255, 255, 0.85);
    --bg-glass: rgba(255, 255, 255, 0.7);
    --bg-glass-hover: rgba(255, 255, 255, 0.9);
    --bg-page: #f8fafc;

    --border-glass: rgba(200, 200, 210, 0.5);
    --border-glass-hover: rgba(124, 58, 237, 0.25);
    --border-subtle: rgba(212, 212, 216, 0.8);
    --border-strong: rgba(228, 228, 231, 0.8);

    --text-primary: #0f172a;
    --text-secondary: #1e293b;
    --text-muted: #475569;
    --text-accent: #7c3aed;

    --accent-gradient: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    --accent-gradient-hover: linear-gradient(135deg, #6d28d9 0%, #2563eb 100%);
    --accent-gradient-soft: rgba(124, 58, 237, 0.08);

    --glow-violet: rgba(124, 58, 237, 0.2);
    --glow-blue: rgba(59, 130, 246, 0.2);

    --accent-blue: #3b82f6;
    --accent-violet: #7c3aed;

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -4px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 0 15px var(--glow-violet);
    --shadow-glow-hover: 0 0 20px var(--glow-violet), 0 0 40px var(--glow-blue);
    --shadow-card: 0 8px 20px -8px rgba(0, 0, 0, 0.04);
    --shadow-card-hover: 0 12px 25px -10px rgba(124, 58, 237, 0.07);

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* FIX: Static background orbs — no animation, no repaint every frame */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 10%, rgba(124, 92, 255, 0.10), transparent 30rem),
        radial-gradient(circle at 15% 20%, rgba(46, 211, 255, 0.08), transparent 28rem);
    /* Removed: animation and will-change — animated fixed pseudo-elements repaint the entire viewport every frame */
}

/* ==========================================================================
   GLOBAL RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--bg-primary);
    background-image: linear-gradient(180deg, #fbfcff 0%, var(--bg-primary) 42%, #ffffff 100%);
    color: var(--text-primary);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

/* ==========================================================================
   LAYOUT SHELL & CONTAINERS
   ========================================================================== */
.page-shell {
    position: relative;
    width: calc(100% - 32px);
    max-width: 1180px;
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 18px;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 68px;
    margin-top: 18px;
    padding: 10px 12px 10px 22px;
    border: 1px solid rgba(223, 228, 238, 0.86);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 40px rgba(16, 24, 40, 0.08);
    /* FIX: Keep backdrop-filter only on the header where it matters most */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: header-drop 0.6s var(--ease-out-expo) both;
}

@keyframes header-drop {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }

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

.brand {
    display: inline-flex;
    align-items: center;
    height: 44px;
    min-width: 148px;
    overflow: visible;
}

.brand img {
    width: 158px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.25s var(--ease-out-expo);
    /* FIX: Removed transform from transition — transform on hover causes compositing */
}

.nav-links a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.3);
}

.nav-cta,
.waitlist-form button,
.final-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
    transition:
        transform 0.25s var(--ease-out-expo),
        filter 0.25s var(--ease-out-expo);
    /* FIX: Removed box-shadow from transition — animating blur shadows is expensive */
}

.nav-cta {
    padding: 0 20px;
}

@keyframes soft-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(124, 58, 237, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

.nav-cta:hover,
.waitlist-form button:hover,
.final-cta a:hover {
    transform: translateY(-1.5px);
    filter: brightness(1.08);
}

.nav-cta:active,
.waitlist-form button:active,
.final-cta a:active {
    transform: translateY(0) scale(0.96);
    filter: brightness(0.95);
    animation: none;
}

main {
    display: grid;
    gap: 92px;
    padding: 44px 0 86px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 56px 0 24px;
    min-width: 0;
}

/* FIX: Replaced expensive spinning conic-gradient + mask with a simple static radial glow */
.hero-radar {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(ellipse at center, rgba(124, 92, 255, 0.05), transparent 60%);
    /* Removed: conic-gradient, mask-image, animation, will-change */
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 780px;
    min-width: 0;
}

.eyebrow,
.section-kicker,
.signal-label,
.step {
    color: var(--accent-violet);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1 {
    max-width: 780px;
    margin-top: 24px;
    color: var(--text-primary);
    font-size: clamp(54px, 7vw, 88px);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 0.96;
    text-align: center;
}

.subhead {
    max-width: 580px;
    margin-top: 28px;
    color: #475062;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.waitlist-form {
    display: flex;
    width: min(100%, 520px);
    margin-top: 34px;
    padding: 6px;
    border: 1px solid var(--border-glass);
    border-radius: 999px;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    transition: transform 0.25s var(--ease-out-expo), opacity 0.25s var(--ease-out-expo);
}

.waitlist-form:focus-within {
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2), 0 8px 20px rgba(0, 0, 0, 0.06);
    border-color: var(--border-glass-hover);
}

.waitlist-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0 20px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 650;
}

.waitlist-form input::placeholder {
    color: #8a93a3;
}

.waitlist-form button {
    flex: 0 0 auto;
    padding: 0 22px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 520px);
    margin-top: 24px;
}

.hero-proof div {
    min-height: 106px;
    padding: 18px;
    border: 1px solid rgba(223, 228, 238, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.68);
}

.hero-proof strong {
    display: block;
    color: var(--text-primary);
    font-size: 28px;
    line-height: 1;
}

.hero-proof span {
    display: block;
    margin-top: 8px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
}

.hero-product {
    position: relative;
    min-width: 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1400px;
}

.laptop-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 120%;
    max-width: 120%;
    margin: 0 0 0 -10%;
    /* Avoid filter + continuous transform animation on the largest image; that combo was the main frame-rate sink. */
    transform: translate3d(0, 0, 0);
}

.floating-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    /* FIX: Removed filter:drop-shadow — drop-shadow triggers a filter re-composite every animation frame.
       Use box-shadow on a wrapper instead, or simply remove — visually negligible */
    transform: translate3d(0, 0, 0);
}

.shape-cylinder {
    width: 130px;
    bottom: 15%;
    right: -2%;
    transform: translate3d(0, -6px, 0) rotate(1deg);
}

.shape-visual {
    width: 200px;
    top: 25%;
    left: -10%;
    transform: translate3d(0, 5px, 0) rotate(-1deg);
}

.shape-pyramid {
    width: 300px;
    height: 300px;
    top: 85%;
    right: -13%;
    z-index: -10;
    rotate: 210deg;
}

.shape-cube {
    width: 300px;
    top: 69%;
    left: -20%;
}

@keyframes shape-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -10px, 0) rotate(1deg);
    }
}

@keyframes card-float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -8px, 0);
    }
}

/* ==========================================================================
   PREMIUM FLOATING COMPONENTS
   ========================================================================== */
.float-card {
    position: absolute;
    width: 200px;
    padding: 14px;
    border-radius: 20px;
    /* FIX: Removed backdrop-filter:blur — each instance forces a separate compositor layer
       and blurs everything beneath it on every frame. Bumped opacity to compensate visually. */
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.06);
    z-index: 10;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition:
        transform 0.45s var(--ease-out-expo),
        border-color 0.45s var(--ease-out-expo),
        box-shadow 0.45s var(--ease-out-expo);
}

.float-card:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0) !important;
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.float-card .label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent-violet);
    margin-bottom: 8px;
}

.float-card .title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.float-card .sub {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.signal-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.signal-item {
    font-size: 11px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 7px;
}

.dot {
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent-violet);
    box-shadow: 0 0 8px rgba(109, 94, 252, 0.5);
}

.score-pill {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99, 102, 241, 0.08);
    color: #4f46e5;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.chart {
    margin-top: 12px;
    height: 60px;
    position: relative;
    overflow: visible;
}

.chart svg {
    width: 100%;
    height: 100%;
}

.chart-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw-graph 2.5s ease-out forwards;
}

.export-bar {
    margin-top: 12px;
    height: 8px;
    width: 100%;
    background: rgba(226, 232, 240, 0.6);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    border-radius: inherit;
    animation: bar-expand 1.5s cubic-bezier(0.65, 0, 0.35, 1) forwards 0.5s;
}

@keyframes bar-expand {
    to {
        width: 84%;
    }
}

@keyframes draw-graph {
    to {
        stroke-dashoffset: 0;
    }
}

.hero-card-1 {
    top: 15px;
    left: -75px;
}

.hero-card-2 {
    bottom: 40px;
    left: -120px;
    transform: translate3d(0, -8px, 0);
}

.hero-card-3 {
    top: 145px;
    right: -135px;
    transform: translate3d(0, 6px, 0);
}

.hero-card-4 {
    bottom: 60px;
    right: -120px;
}

/* ==========================================================================
   FEATURE SECTIONS (Workflow, Dashboard, Comparison)
   ========================================================================== */
.section {
    width: min(100%, 1060px);
    margin: 0 auto;
    contain: paint;
}

@supports (content-visibility: auto) {
    .section,
    .logo-bar,
    .site-footer {
        content-visibility: auto;
        contain-intrinsic-size: 1px 720px;
    }
}

.intro-section {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 42px;
    align-items: stretch;
    padding: 58px;
    border: 1px solid rgba(223, 228, 238, 0.9);
    border-radius: 28px;
    background:
        radial-gradient(circle at 88% 18%, rgba(46, 211, 255, 0.12), transparent 18rem),
        radial-gradient(circle at 18% 92%, rgba(124, 92, 255, 0.1), transparent 18rem),
        var(--bg-card);
    box-shadow: 0 20px 80px rgba(16, 24, 40, 0.08);
}

.intro-copy {
    display: grid;
    align-content: space-between;
    gap: 48px;
}

.intro-section h2,
.section-heading h2,
.dashboard-section h2,
.faq-intro h2,
.final-cta h2 {
    color: var(--text-primary);
    font-size: clamp(34px, 4.8vw, 58px);
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.02;
}

.intro-section p {
    color: #4f5869;
    font-size: 18px;
    font-weight: 500;
}

.research-panel {
    display: grid;
    gap: 24px;
    align-content: center;
    min-height: 100%;
    padding: 24px;
    border: 1px solid rgba(223, 228, 238, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.68);
}

.research-stack {
    display: grid;
    gap: 10px;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.workflow-card {
    position: relative;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    transition: transform 0.4s var(--ease-out-expo);
    /* FIX: Removed opacity from transition here (not needed) */
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: auto;
    text-align: left;
}

.workflow-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-card-hover);
}

.card-icon-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.08);
    color: var(--accent-violet);
    border-radius: 12px;
    margin-bottom: 8px;
}

.card-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2px;
}

.step-badge {
    position: absolute;
    top: 32px;
    right: 24px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.4;
}

.workflow-card h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
}

.workflow-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-muted);
    font-weight: 500;
}

.research-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 70px;
    padding: 16px 18px;
    border: 1px solid rgba(223, 228, 238, 0.9);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.research-item span {
    color: var(--accent-violet);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.research-item strong {
    max-width: 220px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: right;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.section-heading h2 {
    max-width: 560px;
}

.dashboard-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
    margin: 80px auto;
    width: 100%;
    max-width: 1200px;
    overflow: hidden;
    border-radius: 40px;
    background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.08), transparent 40%),
        #f8fafc;
    color: var(--text-primary);
    position: relative;
    border: 1px solid rgba(124, 58, 237, 0.1);
    text-align: left;
}

.dashboard-section h2 {
    font-size: clamp(32px, 4vw, 42px);
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.dashboard-section p {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 440px;
    margin: 0;
}

.insight-panel {
    width: 100%;
    padding: 32px;
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.insight-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 700;
}

.insight-row:not(:first-child) {
    margin-top: 22px;
}

.meter {
    height: 8px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.05);
}

.meter span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.dashboard-section.is-visible .meter span {
    transform: scaleX(1);
}

.check-card {
    margin-top: 32px;
    background: #ffffff;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.check-card .kicker {
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    padding: 10px 14px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 14px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 2px 8px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
}

.check-badge {
    margin-left: auto;
    color: #10b981;
    font-weight: 700;
    font-size: 12px;
}

/* ── Pitch Reasons Section ── */
.pitch-reason-section {
    padding: 60px 0;
}

.pitch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.pitch-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    transition: transform 0.3s var(--ease-out-expo);
}

.pitch-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-violet);
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.08);
}

.pitch-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-gradient);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 12px var(--glow-violet);
}

.pitch-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* ── FAQ ── */
.faq-panel {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-intro {
    text-align: center;
    margin-bottom: 60px;
}

.faq-intro h2 {
    font-size: 42px;
    letter-spacing: -0.03em;
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    background: transparent;
    padding: 32px 0;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-violet);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-violet);
    opacity: 0.4;
    flex-shrink: 0;
}

.faq-question span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--border-subtle);
    color: var(--accent-violet);
    font-size: 20px;
    line-height: 0;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0;
    transition: max-height 0.3s var(--ease-out-expo), opacity 0.3s var(--ease-out-expo), padding 0.3s var(--ease-out-expo);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 32px;
    opacity: 1;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    background: var(--text-secondary);
    color: #ffffff;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 100px 40px;
    border-radius: 48px;
    background: linear-gradient(120deg, #ffffff 0%, #f5f3ff 25%, #eef2ff 50%, #f5f3ff 75%, #ffffff 100%);
    background-size: 300% 300%;
    color: var(--text-primary);
    text-align: center;
    margin: 80px 0;
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.final-cta:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 40px 100px rgba(124, 58, 237, 0.15),
        0 20px 40px rgba(59, 130, 246, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
}

@keyframes cta-crazy-hover {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.final-cta h2 {
    max-width: 800px;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.1;
    color: var(--text-primary) !important;
}

.final-cta a {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: #ffffff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
}

.final-cta a:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    position: relative;
    padding: 80px 0 40px;
    margin-top: 80px;
    width: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.03), transparent 70%), #ffffff;
    isolation: isolate;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), rgba(59, 130, 246, 0.05));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}

.footer-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    padding: 64px 72px;
    background: var(--accent-gradient);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    box-shadow: 0 32px 64px -16px rgba(124, 58, 237, 0.25);
    position: relative;
    overflow: hidden;
}

.footer-cta-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-text h3 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #ffffff;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    max-width: 440px;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: #ffffff;
    color: var(--text-primary);
    border-radius: 16px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.4s var(--ease-out-expo);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.cta-primary-btn:hover {
    background: #f8fafc;
    transform: translateY(-4px) scale(1.02);
}

.cta-primary-btn svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-primary-btn:hover svg {
    transform: translateX(4px);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: start;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo {
    display: inline-block;
    height: 32px;
    margin-bottom: 4px;
}

.footer-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.brand-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 440px;
    font-weight: 500;
}

.social-wrapper {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
    background: #ffffff;
    border-color: var(--accent-violet);
    color: var(--accent-violet);
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.link-group h6 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.link-group nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.link-group nav a {
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.25s ease, transform 0.25s var(--ease-out-expo);
    display: block;
    width: fit-content;
    position: relative;
}

.link-group nav a:hover {
    color: var(--accent-violet);
    transform: translateX(8px);
}

.link-group nav a::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--accent-violet);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%) scale(0);
    transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
}

.link-group nav a:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.footer-sub-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f0fdf4;
    border-radius: 100px;
    color: #166534;
    font-size: 12px;
    font-weight: 700;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-up,
.delay-1,
.delay-2,
.delay-3 {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(0.985);
    transition:
        opacity 0.78s var(--ease-out-expo),
        transform 0.78s var(--ease-out-expo);
    /* FIX: Removed will-change here — only add it just before the animation fires,
       not on every element on the page at load time */
}

.reveal-up.is-visible,
.delay-1.is-visible,
.delay-2.is-visible,
.delay-3.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-copy {
    animation: hero-enter 0.95s var(--ease-out-expo) both;
    animation-delay: 80ms;
}

.hero-product {
    animation: hero-product-enter 1.05s var(--ease-out-expo) both;
    animation-delay: 180ms;
}

@keyframes hero-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes hero-product-enter {
    from {
        opacity: 0;
        transform: translate3d(0, 34px, 0) scale(0.975);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.delay-1 {
    transition-delay: 90ms;
}

.delay-2 {
    transition-delay: 180ms;
}

.delay-3 {
    transition-delay: 270ms;
}

.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.intro-section.is-visible .research-item:nth-child(1) {
    animation: slide-in 0.65s 0.05s var(--ease-out-expo) both;
}

.intro-section.is-visible .research-item:nth-child(2) {
    animation: slide-in 0.65s 0.16s var(--ease-out-expo) both;
}

.intro-section.is-visible .research-item:nth-child(3) {
    animation: slide-in 0.65s 0.27s var(--ease-out-expo) both;
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translate3d(-24px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 14px;
    right: 14px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.22s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* ==========================================================================
   MICRO FLOATING ELEMENTS
   ========================================================================== */
.micro {
    position: relative;
    border-radius: 24px;
    /* FIX: Removed backdrop-filter:blur(16px) — same compositor layer cost as float-card */
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo);
    pointer-events: auto;
}

.micro:hover {
    transform: translateY(-8px) scale(1.04) !important;
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.16);
    border-color: rgba(124, 58, 237, 0.3);
    animation-play-state: paused;
}

@keyframes micro-levitate {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero .micro:nth-child(1) {
    animation-delay: 0s;
}

.hero .micro:nth-child(2) {
    animation-delay: -1.5s;
}

.hero .micro:nth-child(3) {
    animation-delay: -3s;
}

.floating-side .micro {
    animation-delay: -2s;
}

.micro-inner {
    padding: 16px;
    display: grid;
    gap: 8px;
}

.micro .kicker {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-violet);
    margin-bottom: 4px;
}

.micro .title {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.micro .sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.spark svg {
    width: 100%;
    height: 100%;
}

.meter-track {
    height: 8px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
    margin-top: 8px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, var(--accent-violet), var(--accent-blue));
    border-radius: inherit;
    transition: width 1s ease;
    position: relative;
}

.micro:hover .meter-fill {
    width: 92%;
}

.meter-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    opacity: 0;
}

.micro:hover .meter-fill::after {
    opacity: 1;
    animation: shimmer-swipe 1.4s ease-out 1;
}

.checklist {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

.check-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.check-item:hover {
    background: #ffffff;
    transform: translateX(4px);
}

.check-icon {
    width: 24px;
    height: 24px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--accent-violet);
    border-radius: 6px;
    display: grid;
    place-items: center;
    font-size: 10px;
    font-weight: 800;
}

.check-badge {
    color: #10b981;
    font-size: 9px;
    font-weight: 800;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes shimmer-swipe {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ==========================================================================
   LOGO BAR / SOCIAL PROOF
   ========================================================================== */
.logo-bar {
    width: 100%;
    padding: 48px 0;
    background: transparent;
}

.logo-bar-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.logo-bar-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.logo-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-track:hover {
    opacity: 0.9;
}

.logo-item {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    filter: grayscale(1);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05);
}

/* ==========================================================================
   AUDIT DEPTH / FEATURE CARDS
   ========================================================================== */
.audit-depth-section {
    padding: 100px 0;
}

.audit-depth-section .section-heading {
    text-align: center;
    margin-bottom: 64px;
}

.section-subtext {
    max-width: 640px;
    margin: 20px auto 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.audit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.audit-feature-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 32px;
    transition: transform 0.4s var(--ease-out-expo);
}

.audit-feature-card:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: var(--accent-violet);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.08);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient-soft);
    color: var(--accent-violet);
    border-radius: 12px;
}

.audit-feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.audit-feature-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 500;
}

.footer-sub-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1200px) {
    .page-shell {
        width: calc(100% - 24px);
    }

    .hero-product {
        max-width: 100%;
    }

    .laptop-img {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .float-card {
        transform: scale(0.8);
    }

    .hero-card-1,
    .hero-card-2 {
        left: -20px;
    }

    .hero-card-3,
    .hero-card-4 {
        right: -20px;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-section,
    .intro-section {
        grid-template-columns: 1fr;
        padding: 48px 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 1100px) {
    .floating-shape {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .footer-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 32px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .footer-brand-section {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 980px) {
    .page-shell {
        width: calc(100% - 24px);
        max-width: 760px;
    }

    .site-header {
        grid-template-columns: auto auto;
    }

    .nav-links {
        display: none;
    }

    .dashboard-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 60px 40px;
    }

    .dashboard-section p {
        margin: 0 auto;
    }

    .hero {
        min-height: auto;
        padding-top: 18px;
    }

    .hero-copy {
        max-width: 680px;
    }

    .hero-product {
        margin-top: 10px;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .floating-shape {
        display: none;
    }

    .intro-section {
        grid-template-columns: 1fr;
        padding: 32px;
    }

    .audit-grid {
        grid-template-columns: 1fr;
    }

    .audit-feature-card {
        padding: 32px;
    }
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 16px;
        padding: 12px 16px;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: clamp(38px, 8vw, 56px);
        line-height: 1.05;
    }

    .subhead {
        font-size: 16px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .pitch-grid {
        grid-template-columns: 1fr;
    }

    .footer-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
    }

    .cta-text h3 {
        font-size: 30px;
    }

    .footer-container {
        padding: 0 24px;
    }
}

@media (max-width: 768px) {
    .logo-track {
        gap: 32px;
    }

    .logo-item {
        font-size: 16px;
    }
}

/* FIX: Disable non-essential animations on mobile entirely */
@media (max-width: 768px) {
    .dot {
        animation: none;
    }

    .meter-fill::after {
        animation: none;
    }
}

@media (max-width: 640px) {
    .page-shell {
        width: 100%;
        max-width: none;
        padding: 0 10px;
    }

    .site-header {
        display: flex;
        justify-content: space-between;
        width: 100%;
        top: 10px;
        min-height: 60px;
        margin-top: 10px;
        padding: 8px 8px 8px 14px;
        gap: 10px;
        border-radius: 18px;
    }

    .brand {
        min-width: 108px;
    }

    .brand img {
        width: 118px;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta::after {
        content: "Join";
        font-size: 12px;
    }

    main {
        gap: 64px;
        padding: 28px 0 64px;
    }

    h1 {
        max-width: 285px;
        font-size: clamp(30px, 8.5vw, 36px);
        line-height: 1.04;
        overflow-wrap: break-word;
    }

    .eyebrow {
        display: block;
        max-width: 285px;
        line-height: 1.5;
        overflow-wrap: break-word;
    }

    .subhead {
        max-width: 285px;
        font-size: 15px;
        margin-top: 18px;
    }

    .waitlist-form {
        max-width: 285px;
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        padding: 8px;
        gap: 8px;
    }

    .waitlist-form input,
    .waitlist-form button {
        width: 100%;
        min-height: 48px;
        border-radius: 14px;
    }

    /* Hide floating cards on mobile for cleaner UX + performance */
    .float-card,
    .floating-shape {
        display: none;
    }

    .hero-product {
        margin-top: 20px;
    }

    .hero-proof,
    .workflow-grid {
        max-width: 325px;
        grid-template-columns: 1fr;
    }

    .signal-card {
        position: relative;
        inset: auto;
        width: 100%;
        margin-top: 10px;
    }

    .intro-section,
    .dashboard-section,
    .final-cta {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .intro-copy {
        gap: 24px;
    }

    .research-panel {
        padding: 18px;
    }

    .research-item {
        display: grid;
        gap: 6px;
    }

    .research-item strong {
        max-width: none;
        text-align: left;
    }

    .workflow-card {
        min-height: 210px;
    }

    .workflow-card h3 {
        margin-top: 54px;
    }

    .section-heading {
        display: grid;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .faq-panel {
        padding: 40px 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 24px 0;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-sub-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-logo-massive {
        max-width: 280px;
    }

    .site-header {
        border-radius: 18px;
        min-height: auto;
    }

    .brand img {
        width: 130px;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        padding-top: 24px;
        overflow: hidden;
    }
}

@media (max-width: 576px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-sub-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

/* FIX: Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
