:root {
    --r-lg: 17px;
    --r-xl: 20px;
    --r-pill: 999px;

    /* ---- Base neutrals ---- */
    --cd-white:        #FFFFFF;
    --cd-black:        #000000;
    --cd-ink:          #131313;  /* near-black heading on light */
    --cd-pill-black:   #141414;  /* dark "log in" pill */
    --cd-navy-900:     #010103;  /* deepest section base */
    --cd-navy-850:     #060D1A;  /* hero gradient base */
    --cd-navy-800:     #0A1430;  /* solid dark surface */
    --cd-navy-700:     #121931;  /* dark heading / ink on light */

    /* ---- Brand blues ---- */
    --cd-blue-700:     #05055E;  /* deep indigo overlay */
    --cd-blue-600:     #124BBE;  /* primary brand blue (gradient end) */
    --cd-blue-500:     #1E4BFF;  /* saturated brand blue */
    --cd-blue-400:     #308EFF;  /* bright accent blue */
    --cd-blue-300:     #3967FF;  /* logo gradient origin */
    --cd-blue-100:     #F1F5FE;  /* lightest blue surface */

    /* ---- Secondary text ---- */
    --cd-indigo-muted: #6170A4;  /* muted body text on light cards */

    /* ---- Alpha utilities (over dark) ---- */
    --cd-white-95:     rgba(255,255,255,0.95);
    --cd-white-75:     rgba(255,255,255,0.75);
    --cd-white-12:     rgba(255,255,255,0.12);
    --cd-white-08:     rgba(255,255,255,0.08);
    --cd-blue-45:      rgba(48,142,255,0.45);
    --cd-black-30:     rgba(0,0,0,0.30);
    --cd-black-20:     rgba(0,0,0,0.20);
    --cd-black-08:     rgba(0,0,0,0.08);

    /* Surfaces */
    --surface-page:        var(--cd-navy-900);
    --surface-dark:        var(--cd-navy-850);
    --surface-light:       var(--cd-white);
    --surface-card-light:  var(--cd-blue-100);
    --surface-pill:        var(--cd-white-12);

    /* Text */
    --text-on-dark:        var(--cd-white);
    --text-on-dark-soft:   var(--cd-white-75);
    --text-heading:        var(--cd-ink);
    --text-heading-navy:   var(--cd-navy-700);
    --text-body:           var(--cd-indigo-muted);

    /* Brand / interactive */
    --brand-primary:       var(--cd-blue-600);
    --brand-bright:        var(--cd-blue-400);
    --brand-accent:        var(--cd-blue-500);
    --focus-ring:          var(--cd-blue-400);

    /* ---- Signature gradients ---- */
    --grad-hero: linear-gradient(180deg, rgba(0,0,0,0) 53.57%, #000 100%),
    linear-gradient(270deg, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.3) 100%),
    linear-gradient(243.7deg, #060D1A 32.29%, #124BBE 100%);
    --grad-deep: linear-gradient(180deg, #000 0%, rgba(0,0,0,0) 100%),
    linear-gradient(179.5deg, #010103 1.14%, #124BBE 99.27%);
    --grad-logo: radial-gradient(57px 57px at 0% 0%, #3967FF 8%, #FFFFFF 100%);
    --grad-card-blue: linear-gradient(rgba(5,5,94,0.28), rgba(5,5,94,0.28));

    /* Spacing scale (px) — derived from the page's 10/20/30/60 rhythm */
    --space-1:  4px;
    --space-2:  10px;
    --space-3:  20px;
    --space-4:  30px;
    --space-5:  40px;
    --space-6:  60px;
    --space-7:  71px;

    /* Radii */
    --radius-chip:   10px;   /* provide-chips, image cards */
    --radius-card:   20px;   /* glow callout card */
    --radius-pill:   100px;  /* nav buttons / CTAs */

    /* Borders */
    --border-hairline: 1px solid var(--cd-white-12);

    /* Shadows / glows — the brand's signature white glow on dark */
    --glow-card:   0px 4px 34px 0px rgba(255,255,255,0.75);
    --glow-text:   0px 0px 14px 0px rgba(255,255,255,0.95);
    --glow-soft:   0px 0px 24px 0px rgba(48,142,255,0.45);
    --shadow-sm:   0px 2px 8px rgba(0,0,0,0.2);

    /* Layout @kind spacing */
    --page-max:    1440px;
    --page-gutter: 115px;   /* section horizontal padding */
    --nav-gutter:  150px;   /* nav horizontal padding */
    --nav-height:  98px;

    /* Motion @kind other */
    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --dur-fast:    140ms;
    --dur-base:    240ms;

    --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
    --font-display: var(--font-sans);

    /* Weights */
    --fw-regular: 400;
    --fw-medium:  500;
    --fw-semibold: 600;
    --fw-bold:    700;
    --fw-extrabold: 800;
    --fw-black:   900;

    /* Display / heading scale (matches Figma: 60 / 44 / 36 / 30) */
    --fs-display:  60px;   /* hero & section H1 */
    --fs-h1:       44px;   /* card hero "Sounds like a deal?" */
    --fs-h2:       36px;   /* "We provide:" emphatic label */
    --fs-h3:       30px;   /* card titles */
    --fs-title:    20px;   /* glow callout */
    --fs-lead:     18px;   /* lead paragraph / chip text */
    --fs-body:     16px;   /* body copy */
    --fs-label:    14px;   /* nav items */
    --fs-caption:  12px;   /* pill buttons */

    /* Line heights @kind other */
    --lh-tight:    1; /* @kind other */      /* headings */
    --lh-snug:     1.2; /* @kind other */
    --lh-card:     1.3; /* @kind other */    /* card body */
    --lh-body:     1.5; /* @kind other */    /* lead paragraphs */

    /* Letter spacing @kind other */
    --ls-tight:   -0.01em;
    --ls-normal:   0em;
    --ls-wide:     0.02em;
    --ls-heading:  0.05em;  /* signature sub-heading tracking */
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #000; -webkit-font-smoothing: antialiased; font-family: var(--font-sans, "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif); }
html, body { overflow-x: clip; max-width: 100%; }

:root {
    --page-gutter: clamp(20px, 5.5vw, 115px);
    --nav-gutter: clamp(18px, 4.5vw, 150px);
    --fs-display: clamp(34px, 5.4vw, 60px);
    --fs-h1: clamp(28px, 4vw, 44px);
    --fs-h2: clamp(25px, 3.6vw, 36px);
    --fs-h3: clamp(21px, 2.7vw, 30px);
    --nav-height: clamp(72px, 8vw, 98px);
}
@media (max-width: 1024px) {
    :root { --nav-gutter: clamp(20px, 4vw, 64px); }
}
@media (max-width: 768px) {
    :root { --page-gutter: clamp(20px, 5vw, 40px); --nav-gutter: clamp(18px, 4.5vw, 28px); --fs-display: clamp(30px, 6.4vw, 46px); }
}
@media (max-width: 560px) {
    :root { --page-gutter: 20px; --nav-gutter: 18px; --fs-display: clamp(27px, 7.6vw, 36px); --fs-h2: clamp(23px, 6.4vw, 30px); --fs-h3: clamp(19px, 5.4vw, 24px); --nav-height: 68px; }
}

::selection { background: var(--cd-blue-500); color: #fff; }

/* ── Animations ── */
@keyframes cd-scrollcue { 0%,100% { transform: translateY(0); opacity: .45; } 50% { transform: translateY(9px); opacity: 1; } }
@keyframes cd-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes cd-spin360 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes cd-pl-pulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
@keyframes cd-marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
html.cd-loaded #cd-preloader { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }

/* ── Marquee ── */
.cd-marquee { -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%); overflow-x: clip !important; overflow-y: visible !important; padding: 14px 0 !important; margin: -14px 0 !important; }
.cd-marquee:hover .cd-marquee-track { animation-play-state: paused; }

/* ── Glass plate ── */
.cd-glass-plate { transition: transform .25s cubic-bezier(.22,1,.36,1), box-shadow .25s ease, border-color .25s ease; }
.cd-glass-plate { -webkit-backdrop-filter: blur(18px) saturate(135%) brightness(1.08) !important; backdrop-filter: blur(18px) saturate(135%) brightness(1.08) !important; border: 1px solid rgba(255,255,255,0.46) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), inset 0 0 0 1px rgba(255,255,255,0.06), 0 12px 30px rgba(6,18,50,0.30) !important; }
.cd-liquid-strong { -webkit-backdrop-filter: blur(28px) saturate(130%) brightness(1.05) !important; backdrop-filter: blur(28px) saturate(130%) brightness(1.05) !important; }
@supports not (backdrop-filter: blur(1px)) { .cd-glass-plate, .cd-liquid-strong { background-color: rgba(20,40,96,0.55) !important; } }
.cd-glass-plate:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.42) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), inset 0 -10px 24px rgba(48,142,255,0.18), 0 14px 34px rgba(8,30,80,0.5), 0 0 26px rgba(48,142,255,0.35) !important; }

/* ── Buttons ── */
button:not(.cd-nav-burger) { transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .24s ease, filter .2s ease; }
button:not(.cd-nav-burger):hover { transform: translateY(-2px) scale(1.025); box-shadow: 0 10px 28px rgba(30,75,255,0.42), 0 0 24px rgba(120,180,255,0.45); filter: brightness(1.05); }
button:not(.cd-nav-burger):active { transform: translateY(0) scale(0.97); box-shadow: 0 4px 14px rgba(30,75,255,0.35); }

/* ── How It Works ── */
.hiw-card { background: linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(232,242,255,0.34) 100%) !important; border: 1.5px solid rgba(255,255,255,0.88) !important; box-shadow: inset 0 1px 0 rgba(255,255,255,0.95), inset 0 0 0 1px rgba(255,255,255,0.12), 0 18px 44px rgba(40,80,160,0.16) !important; -webkit-backdrop-filter: blur(18px) saturate(130%) !important; backdrop-filter: blur(18px) saturate(130%) !important; }
@media (max-width: 900px) {
    .hiw-spine, .hiw-branch { display: none !important; }
    .hiw-row { grid-template-columns: 1fr !important; gap: 8px !important; min-height: 0 !important; margin-bottom: 30px !important; }
    .hiw-cell { justify-content: center !important; }
    .hiw-wm-cell { order: -1 !important; }
    .hiw-card { width: 100% !important; max-width: 460px !important; }
    .hiw-wm { text-align: center !important; font-size: 46px !important; }
}

/* ── Verticals fan deck ── */
.vfan-card { transition: transform .62s cubic-bezier(.34,1.32,.5,1), box-shadow .42s ease, border-color .42s ease, opacity .42s ease; transform-style: preserve-3d; }
.vfan-title { transition: color .3s ease;font-size: 24px!important; }
.vfan-card:hover .vfan-title { color: transparent !important; background: linear-gradient(120deg, #1E4BFF 0%, #3DAEFF 100%); -webkit-background-clip: text; background-clip: text; }
@media (max-width: 820px) {
    #vert-section .vert-fan { width: 100% !important; max-width: 460px !important; margin: 0 auto !important; height: auto !important; display: flex; flex-direction: column; gap: 16px; align-items: center; perspective: none !important; }
    #vert-section .vfan-card { position: static !important; transform: none !important; width: min(330px, 88%) !important; height: auto !important; min-height: 138px; }
}

/* ── FAQ ── */
.faq-grain { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='128'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 128px 128px; }
.faq-item { overflow: hidden; border-radius: 16px; background: rgba(238,243,253,0.85); border: 1px solid rgba(20,40,96,0.05); transition: background .3s ease, box-shadow .3s ease; }
.faq-item + .faq-item { margin-top: 12px; }
.faq-q { width: 100%; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding: clamp(17px,1.5vw,23px) clamp(20px,1.8vw,28px); background: none; border: 0; cursor: pointer; text-align: left; font-family: inherit; }
.faq-qt { font-size: clamp(16px,1.35vw,20px); font-weight: 800; line-height: 1.28; color: var(--cd-navy-700); }
.faq-chev { flex: none; width: 20px; height: 20px; margin-top: 3px; color: var(--cd-navy-700); transition: transform .35s cubic-bezier(.22,1,.36,1); }
.faq-a { max-height: 0; opacity: 0; transition: max-height .42s cubic-bezier(.22,1,.36,1), opacity .3s ease; }
.faq-a p { margin: 0; padding: 0 clamp(20px,1.8vw,28px) clamp(19px,1.7vw,25px); font-size: clamp(14px,1.05vw,16px); line-height: 1.55; color: var(--cd-indigo-muted); }
.faq-item[data-open] { background: linear-gradient(180deg, #e9f1ff 0%, #deeaff 100%); box-shadow: 0 8px 24px rgba(40,90,200,0.09); }
.faq-item[data-open] .faq-chev { transform: rotate(180deg); }
.faq-item[data-open] .faq-a { max-height: 420px; opacity: 1; }
@media (max-width: 860px) { #faq-section .faq-grid { grid-template-columns: 1fr !important; } #faq-section .faq-banner { min-height: 380px !important; } }
@media (prefers-reduced-motion: reduce) { .cd-marquee-track { animation: none !important; } }

/* ── Footer ── */
.fl-link { color: #98a4d8; text-decoration: none; transition: color .18s ease; }
.fl-link:hover { color: #fff; }
.fl-cat { color: var(--cd-white); text-decoration: none; transition: opacity .18s ease; }
.fl-cat:hover { opacity: 0.7; }
.fl-soc { transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .2s ease, filter .2s ease; }
.fl-soc:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,0.45); filter: brightness(1.08); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .cd-nav-desktop { display: none !important; }
    .cd-nav-burger { display: inline-flex !important; }
    .cd-benefits-grid { grid-template-columns: repeat(2, 1fr) !important; }
    #site-footer .fl-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
    #site-footer .fl-cols { grid-template-columns: repeat(2, 1fr) !important; row-gap: 32px !important; }
    #site-footer .fl-legal { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
    .cd-benefits-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 900px) {
    .cd-hero-vid { object-position: 50% 30% !important; }
    .wtj-stage { flex-direction: column !important; min-height: auto !important; align-items: stretch !important; gap: 24px !important; }
    .wtj-rings { display: none !important; }
    .wtj-360 { position: relative !important; inset: auto !important; height: clamp(170px, 48vw, 240px) !important; margin: 2px auto !important; }
    .wtj-360 img { width: clamp(210px, 60vw, 300px) !important; }
    .wtj-col { width: 100% !important; align-items: center !important; gap: 14px !important; }
    .wtj-col > .cd-glass-plate { margin: 0 !important; width: min(330px, 88%); justify-content: center; }
}

/* ── Nav links ── */
.cd-nav-link {
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: clamp(14px,1.1vw,16px);
    font-weight: 500;
    white-space: nowrap;
    transition: color .18s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.cd-nav-link:hover { color: #fff; }
.cd-nav-link--caret::after {
    content: '';
    display: inline-block;
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255,255,255,0.65);
    margin-top: 2px;
    transition: border-top-color .18s ease;
}
.cd-nav-link--caret:hover::after { border-top-color: #fff; }

/* ── CD Buttons ── */
.cd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1;
    transition: transform .18s cubic-bezier(.22,1,.36,1), box-shadow .24s ease, filter .2s ease;
}
.cd-btn:hover { transform: translateY(-2px) scale(1.025); box-shadow: 0 10px 28px rgba(30,75,255,0.42), 0 0 24px rgba(120,180,255,0.45); filter: brightness(1.05); }
.cd-btn:active { transform: translateY(0) scale(0.97); box-shadow: 0 4px 14px rgba(30,75,255,0.35); }
.cd-btn--primary { background: var(--cd-blue-500); color: #fff; }
.cd-btn--dark { background: #141414; color: #fff; }
.cd-btn--dark:hover { color: #fff; }
.cd-btn--white { background: #fff; color: var(--cd-navy-700); }
.cd-btn--sm { padding: 8px 16px; font-size: 12px; border-radius: 10px; }

/* ── GradualBlur ── */
.cd-gradual-blur {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 7rem;
    pointer-events: none;
    z-index: 1100;
    isolation: isolate;
}

/* ── Marquee chips ── */
.cd-marquee-chip {
    position: relative; overflow: hidden; flex: none;
    display: inline-flex; align-items: center;
    padding: 14px 30px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.04) 55%, rgba(48,142,255,0.07) 100%);
    -webkit-backdrop-filter: blur(14px) saturate(150%); backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(255,255,255,0.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.40), inset 0 -8px 22px rgba(48,142,255,0.10), 0 8px 24px rgba(8,20,60,0.40);
}
.cd-chip-shine {
    position: absolute; left: 0; right: 0; top: 0; height: 52%;
    background: linear-gradient(180deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.cd-chip-text {
    position: relative; z-index: 1;
    font-size: 17px; font-weight: 600; letter-spacing: 0.01em;
    color: var(--cd-white); white-space: nowrap;
}

/* ── Utility classes (replaces frequent inline style= patterns) ── */
.u-logo-img { width: clamp(56px, 5.6vw, 72px); height: auto; display: block; }
.u-fw-bold { font-weight: 700; }
.u-fw-800 { font-weight: 800; }
.u-flex { display: flex; }
.u-flex-col { display: flex; flex-direction: column; }
.u-flex-center { display: flex; align-items: center; justify-content: center; }
.u-flex-start { display: flex; justify-content: flex-start; }
.u-flex-end { display: flex; justify-content: flex-end; }
.u-d-block { display: block; }
.u-fs-nav { font-size: clamp(15px, 1.15vw, 17px); }
.u-fs-sm { font-size: clamp(15px, 1.1vw, 17px); }
.u-color-white { color: var(--cd-white); }
.u-color-white-75 { color: var(--cd-white-75); }
.u-burger-bar { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; }
.u-dot-lg { width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 0 14px 2px rgba(255,255,255,0.9); }
.u-dot-md { width: 10px; height: 10px; border-radius: 50%; background: #fff; box-shadow: 0 0 10px 2px rgba(255,255,255,0.8); }
.u-spotlight {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    opacity: 0; transition: opacity 0.45s ease;
    background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%), rgba(48,142,255,0.22), transparent 60%);
}
.u-card-shine-top {
    position: absolute; left: 0; right: 0; top: 0; height: 38%;
    background: linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}
.u-card-shine-top--strong {
    position: absolute; left: 0; right: 0; top: 0; height: 52%;
    background: linear-gradient(180deg, rgba(255,255,255,0.26) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}





