/* ═══════════════════════════════════════════════════════════════
   RelayCAD — landing
   "Night dispatch operations center, shot like Apple product marketing."
   Clash Display · Satoshi · JetBrains Mono — near-black + one signal blue
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* surfaces — near-black, faintly cool */
    --bg:        #060608;
    --bg-1:      #08080b;
    --bg-2:      #0a0a0e;
    --surface:   #0d0e14;
    --surface-2: #101219;

    --line:      rgba(150,168,225,.085);
    --line-2:    rgba(150,168,225,.16);
    --line-3:    rgba(150,168,225,.26);

    /* ink ramp */
    --ink:       #f5f6fb;
    --ink-2:     #c4c8d8;
    --muted:     #888da1;
    --dim:       #757a90;

    /* one signal blue — used as ambient light + sparse accent */
    --blue:      #5b8bf5;
    --blue-lt:   #8bacff;
    --blue-btn:  #3f6ae0;   /* fill for white text — ~4.7:1 */
    --blue-dp:   #24357a;
    --blue-ink:  #a7c0ff;   /* accent text on dark */

    --good:      #3fcf8e;
    --warn:      #e2ac52;
    --crit:      #f2606d;

    --glow:      rgba(70,120,255,.55);
    --ambient:   rgba(52,100,240,.16);

    --display:   'Clash Display', 'Satoshi', system-ui, sans-serif;
    --font:      'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono:      'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

    --r-sm: 9px; --r: 13px; --r-lg: 18px; --r-xl: 24px;
    --ease:  cubic-bezier(.22,1,.36,1);
    --ease2: cubic-bezier(.16,1,.3,1);
    --max: 1240px;

    /* semantic z-scale */
    --z-base: 1; --z-float: 5; --z-nav: 50; --z-note: 60;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
    background: var(--bg);
    color: var(--ink-2);
    font-family: var(--font);
    font-size: 16px; line-height: 1.6;
    -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
svg { display: block; }
h1, h2, h3, h4 { color: var(--ink); font-weight: 900; letter-spacing: -0.03em; line-height: 1.04; text-wrap: balance; }
.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; }
::selection { background: var(--blue); color: #fff; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.wrap--narrow { max-width: 780px; }

/* ── AMBIENT BACKDROP — subtle blue lighting + film grain ── */
.ambient {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background:
        radial-gradient(760px 520px at 82% -6%, var(--ambient), transparent 62%),
        radial-gradient(620px 480px at -6% 10%, rgba(40,70,180,.07), transparent 60%);
}
.ambient::after {           /* cinematic grain — keeps flat black from banding */
    content: ""; position: absolute; inset: 0; opacity: .04; mix-blend-mode: soft-light;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn {
    --h: 46px;
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    height: var(--h); padding: 0 22px;
    font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em;
    border-radius: var(--r-sm);
    transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .3s var(--ease);
    white-space: nowrap;
}
.btn--sm { --h: 40px; padding: 0 17px; font-size: 14px; }
.btn--lg { --h: 56px; padding: 0 30px; font-size: 15.5px; border-radius: var(--r); }
.btn--full { width: 100%; }

.btn--primary {
    color: #fff;
    background: var(--blue-btn);
    box-shadow: 0 0 0 1px rgba(139,172,255,.5) inset, 0 1px 0 rgba(255,255,255,.22) inset,
                0 14px 40px -14px var(--glow);
}
.btn--primary:hover { transform: translateY(-2px); background: #4b76ee;
    box-shadow: 0 0 0 1px rgba(170,196,255,.66) inset, 0 1px 0 rgba(255,255,255,.28) inset, 0 22px 54px -16px var(--glow); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { color: var(--ink); background: rgba(255,255,255,.03); box-shadow: 0 0 0 1px var(--line-2) inset; }
.btn--ghost:hover { background: rgba(255,255,255,.055); box-shadow: 0 0 0 1px var(--line-3) inset; transform: translateY(-2px); }

.lnk { color: var(--ink-2); font-size: 14px; font-weight: 600; padding: 6px 4px; transition: color .15s; }
.lnk:hover { color: var(--ink); }
:focus-visible { outline: 2px solid var(--blue-lt); outline-offset: 3px; border-radius: 5px; }

/* ── NAV ────────────────────────────────────────────── */
.nav { position: sticky; top: 14px; z-index: var(--z-nav); padding: 0 16px; margin-bottom: -66px; }
.nav__inner {
    max-width: 1160px; margin: 0 auto; height: 60px; padding: 0 12px 0 20px;
    display: flex; align-items: center; gap: 26px;
    background: rgba(10,10,15,.55);
    -webkit-backdrop-filter: blur(20px) saturate(1.5); backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid var(--line); border-radius: 15px;
    box-shadow: 0 1px 0 rgba(255,255,255,.03) inset, 0 20px 50px -26px rgba(0,0,0,.95);
    transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-scrolled .nav__inner { background: rgba(9,9,13,.82); border-color: var(--line-2); }

.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__mark {
    display: grid; place-items: center; width: 31px; height: 31px; color: var(--blue-lt);
    background: radial-gradient(120% 120% at 30% 20%, rgba(91,139,245,.28), rgba(36,53,122,.12));
    border-radius: 9px; box-shadow: 0 0 0 1px var(--line-2) inset, 0 6px 16px -8px var(--glow);
}
.brand__mark svg { width: 20px; height: 20px; }
.brand__name { font-weight: 900; font-size: 18.5px; letter-spacing: -0.035em; color: var(--ink); }
.brand__name span { color: var(--blue-lt); }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a { font-size: 14px; font-weight: 600; color: var(--muted); padding: 9px 13px; border-radius: 9px; transition: color .15s, background .15s; }
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
.nav__cta { display: flex; align-items: center; gap: 8px; }

.login-note {
    position: relative; z-index: var(--z-note); max-width: 1160px; margin: 92px auto -58px;
    padding: 15px 22px; background: rgba(242,96,109,.08); color: #f6bcc1;
    font-size: 14px; font-weight: 600; border-radius: var(--r);
    box-shadow: 0 0 0 1px rgba(242,96,109,.26) inset;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero { position: relative; padding: 168px 0 clamp(90px,12vw,150px); }
.hero__grid {
    max-width: var(--max); margin: 0 auto; padding: 0 26px;
    display: grid; grid-template-columns: 1fr; gap: 64px; align-items: center;
}
@media (min-width: 1000px) {
    .hero__grid { grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr); gap: 40px; }
}

.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 26px;
    font-family: var(--mono); font-size: 12px; letter-spacing: -0.01em; color: var(--ink-2);
}
.hero__eyebrow::before {
    content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--good);
    box-shadow: 0 0 0 4px rgba(63,207,142,.16), 0 0 14px 1px rgba(63,207,142,.7);
    animation: livePulse 2.6s var(--ease) infinite;
}
.hero h1 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(46px, 7.4vw, 92px); line-height: .96; letter-spacing: -0.035em;
    max-width: 15ch;
}
.hero h1 .accent { color: var(--blue-ink); }
.hero__lead {
    margin-top: 30px; max-width: 42ch;
    font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.62; color: var(--muted); text-wrap: pretty;
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 13px; }
.hero__micro { margin-top: 22px; font-size: 13px; color: var(--dim); }
.hero__micro b { color: var(--ink-2); font-weight: 700; }

/* ── STAGE + PERSPECTIVE RENDER ──────────────────────── */
.stage { position: relative; perspective: 2200px; perspective-origin: 60% 40%; }
.stage__glow {
    position: absolute; inset: -22% -14% -30% -6%; z-index: -1;
    background:
        radial-gradient(52% 46% at 62% 34%, rgba(70,120,255,.34), transparent 70%),
        radial-gradient(40% 40% at 30% 70%, rgba(40,70,180,.16), transparent 72%);
    filter: blur(26px);
}

/* window "browser" surface — reused across renders */
.win {
    position: relative; z-index: var(--z-base);
    background: linear-gradient(180deg, #101219 0%, #0b0c11 100%);
    border: 1px solid var(--line-2); border-radius: var(--r-xl); overflow: hidden;
    box-shadow:
        0 2px 0 rgba(255,255,255,.04) inset,
        0 1px 0 rgba(255,255,255,.05) inset,
        0 60px 120px -50px rgba(0,0,0,.95),
        0 30px 60px -40px rgba(20,40,120,.5);
}
.win__bar {
    display: flex; align-items: center; gap: 13px; padding: 13px 17px;
    border-bottom: 1px solid var(--line); background: rgba(255,255,255,.014);
}
.win__dots { display: flex; gap: 7px; }
.win__dots i { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.11); }
.win__url { font-family: var(--mono); font-size: 11.5px; color: var(--dim); }
.win__live {
    margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; color: var(--good);
    padding: 5px 11px; border-radius: 100px; background: rgba(63,207,142,.1);
}
.win__pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--good);
    box-shadow: 0 0 0 3px rgba(63,207,142,.18); animation: livePulse 2.6s var(--ease) infinite; }

.win__body { display: grid; grid-template-columns: 56px 1fr; }
.rail-v {
    display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 14px 0;
    border-right: 1px solid var(--line); background: rgba(0,0,0,.28);
}
.rail-v span { display: grid; place-items: center; width: 36px; height: 36px; color: var(--dim); border-radius: 10px; transition: color .2s, background .2s; }
.rail-v span svg { width: 19px; height: 19px; }
.rail-v span.on { color: #fff; background: linear-gradient(180deg, var(--blue), var(--blue-dp)); box-shadow: 0 8px 18px -8px var(--glow); }
.win__main { padding: 18px; min-width: 0; }
.win__head { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
.win__title { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 700; color: var(--ink); }
.win__count { display: grid; place-items: center; min-width: 21px; height: 21px; padding: 0 7px;
    font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--blue-lt);
    background: rgba(91,139,245,.15); border-radius: 100px; }
.win__search { margin-left: auto; font-size: 12px; color: var(--dim); padding: 7px 13px;
    border-radius: 9px; background: rgba(255,255,255,.025); box-shadow: 0 0 0 1px var(--line) inset; }

/* hero render transform */
.render--hero .win {
    transform: rotateY(-14deg) rotateX(5deg) rotate(.4deg)
               translateX(calc(var(--mx, 0) * -10px)) translateY(calc(var(--my, 0) * -8px));
    transform-style: preserve-3d;
    transition: transform .5s var(--ease2);
}

/* calls list */
.calls { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.call { display: flex; align-items: center; gap: 13px; padding: 12px 14px; border-radius: 12px;
    background: rgba(255,255,255,.022); box-shadow: 0 0 0 1px var(--line) inset; }
.pri { flex-shrink: 0; display: grid; place-items: center; width: 32px; height: 32px;
    font-family: var(--mono); font-size: 11.5px; font-weight: 700; border-radius: 9px; }
.pri--c3 { color: #ffc9ce; background: rgba(242,96,109,.15); box-shadow: 0 0 0 1px rgba(242,96,109,.36) inset; }
.pri--c2 { color: #f6dcac; background: rgba(226,172,82,.14); box-shadow: 0 0 0 1px rgba(226,172,82,.32) inset; }
.pri--c1 { color: #c6d4ff; background: rgba(91,139,245,.15); box-shadow: 0 0 0 1px rgba(91,139,245,.4) inset; }
.call__body { display: flex; flex-direction: column; min-width: 0; }
.call__body b { font-size: 14px; font-weight: 700; color: var(--ink); }
.call__body em { font-style: normal; font-size: 12px; color: var(--dim); margin-top: 1px; }
.call__meta { margin-left: auto; display: inline-flex; align-items: center; gap: 11px; }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: -0.02em; color: var(--ink-2); }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot--busy { background: var(--warn); box-shadow: 0 0 0 3px rgba(226,172,82,.14); }
.dot--free { background: var(--good); box-shadow: 0 0 0 3px rgba(63,207,142,.14); }

.win__foot { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.unit { display: inline-flex; align-items: center; gap: 8px; padding: 6px 11px; border-radius: 9px;
    background: rgba(255,255,255,.022); box-shadow: 0 0 0 1px var(--line) inset; }
.unit--more { font-size: 11px; color: var(--dim); font-family: var(--mono); }

/* ── FLOATING DETACHED LAYERS (depth) ────────────────── */
.float {
    position: absolute; z-index: var(--z-float);
    background: linear-gradient(180deg, #14161f, #0e0f16);
    border: 1px solid var(--line-2); border-radius: 15px;
    box-shadow: 0 30px 60px -26px rgba(0,0,0,.9), 0 0 0 1px rgba(255,255,255,.02) inset;
    -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.float--alert {
    left: -7%; bottom: 8%; display: flex; align-items: center; gap: 12px; padding: 14px 17px;
    transform: translate(calc(var(--mx,0) * 20px), calc(var(--my,0) * 14px));
    transition: transform .45s var(--ease2);
}
.float--alert .ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
    color: var(--crit); background: rgba(242,96,109,.12); box-shadow: 0 0 0 1px rgba(242,96,109,.3) inset; }
.float--alert .ico svg { width: 20px; height: 20px; }
.float--alert .txt b { display: block; font-size: 13.5px; color: var(--ink); font-weight: 800; }
.float--alert .txt span { font-size: 11.5px; color: var(--muted); }

.float--unit {
    right: -6%; top: 10%; padding: 13px 16px;
    transform: translate(calc(var(--mx,0) * -26px), calc(var(--my,0) * -16px));
    transition: transform .5s var(--ease2);
}
.float--unit .u-top { display: flex; align-items: center; gap: 9px; }
.float--unit .u-top b { font-family: var(--mono); font-size: 12px; color: var(--ink); }
.float--unit .u-sub { margin-top: 7px; font-size: 11px; color: var(--muted); }
.float--unit .u-sub b { color: var(--blue-ink); font-weight: 700; }

/* integration proof — calm, no pills */
.proof {
    max-width: var(--max); margin: clamp(64px,9vw,104px) auto 0; padding: 0 26px;
    display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center;
}
.proof__label { font-family: var(--mono); font-size: 11.5px; letter-spacing: .02em; color: var(--dim); }
.proof__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 38px; }
.proof__row span { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: var(--ink-2); opacity: .72; transition: opacity .2s; }
.proof__row span:hover { opacity: 1; }
.proof__row svg { width: 19px; height: 19px; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   NARRATIVE SECTIONS
══════════════════════════════════════════════════════ */
.story { position: relative; padding: clamp(96px, 13vw, 190px) 0; }
.story--alt { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story__row { display: grid; grid-template-columns: 1fr; gap: clamp(52px,7vw,88px); align-items: center; }
@media (min-width: 940px) {
    .story__row { grid-template-columns: .92fr 1.08fr; }
    .story__row--rev .story__text { order: 2; }
    .story__row--rev .story__vis  { order: 1; }
}
.story__kicker { font-family: var(--mono); font-size: 12px; color: var(--blue-ink); margin-bottom: 20px; letter-spacing: -0.01em; }
.story__text h2 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(32px, 4.6vw, 60px); line-height: 1.02; letter-spacing: -0.03em; max-width: 16ch;
}
.story__text p { margin-top: 24px; font-size: clamp(16px,1.4vw,18px); line-height: 1.62; color: var(--muted); max-width: 46ch; text-wrap: pretty; }
.story__meta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.story__meta span { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--ink-2); }
.story__meta span::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border-radius: 2px; background: var(--blue); box-shadow: 0 0 10px 0 var(--glow); }

/* per-section render tilt */
.story__vis { position: relative; perspective: 2200px; }
.render--right .win { transform: rotateY(-11deg) rotateX(4deg); transform-style: preserve-3d; }
.render--left  .win { transform: rotateY(11deg)  rotateX(4deg); transform-style: preserve-3d; }
.story__vis .stage__glow { inset: -20% -10% -26% -10%; }

/* MDT records */
.mdt { display: flex; flex-direction: column; gap: 6px; }
.mdt__row { display: flex; align-items: center; gap: 13px; padding: 13px 14px; border-radius: 11px;
    background: rgba(255,255,255,.022); box-shadow: 0 0 0 1px var(--line) inset; }
.mdt__row b { font-size: 14px; font-weight: 700; color: var(--ink); margin-right: auto; }
.mdt__row .mono { min-width: 66px; }
.mdt__row.sel { background: rgba(91,139,245,.1); box-shadow: 0 0 0 1px rgba(91,139,245,.42) inset; }
.chip { font-family: var(--mono); font-size: 10.5px; font-weight: 500; padding: 4px 9px; border-radius: 7px; white-space: nowrap; }
.chip--good { color: #a9ecc9; background: rgba(63,207,142,.14); }
.chip--warn { color: #f4d5a2; background: rgba(226,172,82,.15); }
.chip--crit { color: #f6bcc2; background: rgba(242,96,109,.16); }
.mdt__detail { margin-top: 8px; padding: 15px 16px; border-radius: 12px; background: rgba(255,255,255,.02); box-shadow: 0 0 0 1px var(--line) inset; }
.mdt__detail > .mono { color: var(--blue-ink); }
.mdt__kv { margin-top: 12px; display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; align-items: baseline; }
.mdt__kv span { font-size: 11px; color: var(--dim); }
.mdt__kv b { font-size: 13px; font-weight: 700; color: var(--ink-2); text-align: right; }

.float--record {
    right: -7%; top: 12%; padding: 14px 16px; max-width: 220px;
    transform: translate(calc(var(--mx,0) * -22px), calc(var(--my,0) * -14px));
    transition: transform .5s var(--ease2);
}
.float--record .r-top { display: flex; align-items: center; gap: 9px; margin-bottom: 9px; }
.float--record .r-top b { font-size: 13px; color: var(--ink); }
.float--record .r-line { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--muted); padding: 3px 0; }
.float--record .r-line b { color: var(--ink-2); font-family: var(--mono); }

/* economy */
.bal { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-bottom: 6px; }
.bal__box { padding: 15px 17px; border-radius: 13px; background: rgba(255,255,255,.022); box-shadow: 0 0 0 1px var(--line) inset; }
.bal__box span { font-family: var(--mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--dim); }
.bal__box b { display: block; margin-top: 8px; font-size: 25px; font-weight: 900; letter-spacing: -0.03em; color: var(--ink); }
.ledger { list-style: none; display: flex; flex-direction: column; gap: 5px; margin-top: 11px; }
.ledger li { display: flex; align-items: center; gap: 13px; padding: 11px 13px; border-radius: 10px;
    background: rgba(255,255,255,.02); box-shadow: 0 0 0 1px var(--line) inset; font-size: 13px; color: var(--ink-2); }
.ledger li > span:nth-child(2) { margin-right: auto; }
.ledger li .mono { color: var(--dim); }
.ledger__amt { font-family: var(--mono); font-size: 12.5px; font-weight: 700; min-width: 62px; }
.ledger__amt--in { color: var(--good); }
.ledger__amt--out { color: var(--crit); }

.float--pay {
    left: -6%; bottom: 9%; display: flex; align-items: center; gap: 12px; padding: 13px 17px;
    transform: translate(calc(var(--mx,0) * 22px), calc(var(--my,0) * 15px));
    transition: transform .45s var(--ease2);
}
.float--pay .ico { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px;
    color: var(--good); background: rgba(63,207,142,.12); box-shadow: 0 0 0 1px rgba(63,207,142,.28) inset; }
.float--pay .ico svg { width: 19px; height: 19px; }
.float--pay .txt b { display: block; font-size: 14px; color: var(--ink); font-weight: 800; }
.float--pay .txt span { font-size: 11.5px; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   SOCIAL PROOF — calm, testimonial-led
══════════════════════════════════════════════════════ */
.social { padding: clamp(100px,14vw,200px) 0; text-align: center; }
.social__q {
    font-family: var(--display); font-weight: 600;
    font-size: clamp(28px, 4.4vw, 54px); line-height: 1.18; letter-spacing: -0.025em;
    color: var(--ink); max-width: 20ch; margin: 0 auto; text-wrap: balance;
}
.social__q em { font-style: normal; color: var(--blue-ink); }
.social__by { margin-top: 40px; display: inline-flex; align-items: center; gap: 14px; }
.social__av { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
    font-family: var(--mono); font-weight: 700; font-size: 15px; color: var(--blue-ink);
    background: radial-gradient(120% 120% at 30% 20%, rgba(91,139,245,.3), rgba(36,53,122,.15));
    box-shadow: 0 0 0 1px var(--line-2) inset; }
.social__by-txt { text-align: left; }
.social__by-txt b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 700; }
.social__by-txt span { font-size: 12.5px; color: var(--muted); }
.social__strip {
    margin: clamp(66px,9vw,100px) auto 0; padding-top: clamp(50px,6vw,68px);
    border-top: 1px solid var(--line); max-width: 940px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 20px;
}
.social__stat b { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(28px,3.6vw,42px); color: var(--ink); letter-spacing: -0.03em; }
.social__stat span { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); }

/* ══════════════════════════════════════════════════════
   CAPABILITIES — editorial list, not a card grid
══════════════════════════════════════════════════════ */
.caps__head { max-width: 640px; margin-bottom: clamp(48px,6vw,72px); }
.caps__head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(30px,4vw,52px); letter-spacing: -0.03em; }
.caps__head p { margin-top: 18px; font-size: 17px; color: var(--muted); max-width: 44ch; }
.caps { display: grid; grid-template-columns: 1fr; }
@media (min-width: 720px) { .caps { grid-template-columns: 1fr 1fr; column-gap: 68px; } }
.cap {
    display: grid; grid-template-columns: 26px 1fr; gap: 18px; align-items: start;
    padding: 26px 0; border-top: 1px solid var(--line);
}
.cap__ico { color: var(--blue-lt); margin-top: 2px; }
.cap__ico svg { width: 22px; height: 22px; }
.cap b { font-size: 16.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.cap p { margin-top: 7px; font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ══════════════════════════════════════════════════════
   PRICING — calm, two plans
══════════════════════════════════════════════════════ */
.pricing { padding: clamp(96px,13vw,180px) 0; }
.pricing__head { text-align: center; max-width: 620px; margin: 0 auto clamp(54px,6vw,72px); }
.pricing__head h2 { font-family: var(--display); font-weight: 700; font-size: clamp(30px,4vw,52px); letter-spacing: -0.03em; }
.pricing__head p { margin-top: 16px; font-size: 17px; color: var(--muted); }
.plans { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 760px; margin: 0 auto; }
@media (min-width: 720px) { .plans { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.plan { display: flex; flex-direction: column; padding: 34px 30px; border-radius: var(--r-lg);
    background: var(--surface); box-shadow: 0 0 0 1px var(--line) inset; }
.plan--hot { position: relative;
    background: linear-gradient(180deg, rgba(91,139,245,.1), var(--surface) 46%);
    box-shadow: 0 0 0 1px rgba(91,139,245,.45) inset, 0 40px 80px -44px var(--glow); }
.plan__badge { position: absolute; top: -12px; left: 30px; font-size: 11px; font-weight: 700; color: #fff;
    padding: 5px 13px; border-radius: 100px; background: var(--blue-btn); box-shadow: 0 10px 22px -10px var(--glow); }
.plan h3 { font-size: 21px; }
.plan__for { margin-top: 7px; font-size: 13.5px; color: var(--dim); }
.plan__price { margin: 22px 0; font-size: 15px; color: var(--muted); }
.plan__price span { font-family: var(--display); font-size: 46px; font-weight: 700; letter-spacing: -0.04em; color: var(--ink); }
.plan__list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; }
.plan__list li { position: relative; padding-left: 28px; font-size: 14.5px; color: var(--ink-2); }
.plan__list li::before {
    content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; background-color: var(--blue-lt);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.plan .btn { margin-top: auto; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-sec { padding: clamp(90px,12vw,170px) 0; }
.faq-sec h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px,3.6vw,46px); letter-spacing: -0.03em; margin-bottom: clamp(40px,5vw,56px); }
.faq { display: flex; flex-direction: column; }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary { display: flex; align-items: center; gap: 18px; padding: 24px 4px; cursor: pointer; list-style: none;
    font-size: 17px; font-weight: 700; color: var(--ink); transition: color .18s; }
.qa summary:hover { color: var(--blue-ink); }
.qa summary::-webkit-details-marker { display: none; }
.qa__x { position: relative; flex-shrink: 0; margin-left: auto; width: 16px; height: 16px; }
.qa__x::before, .qa__x::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    background: var(--muted); border-radius: 2px; transition: transform .25s var(--ease), background .2s; }
.qa__x::before { width: 16px; height: 2px; }
.qa__x::after { width: 2px; height: 16px; }
.qa[open] .qa__x::after { transform: translate(-50%,-50%) scaleY(0); }
.qa[open] .qa__x::before { background: var(--blue-lt); }
.qa p { padding: 0 4px 26px; font-size: 15px; color: var(--muted); line-height: 1.65; max-width: 68ch; }

/* ══════════════════════════════════════════════════════
   CLOSING CTA — cinematic
══════════════════════════════════════════════════════ */
.cta { position: relative; overflow: hidden; padding: clamp(110px,16vw,220px) 0; text-align: center; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(64% 130% at 50% 128%, rgba(70,120,255,.28), transparent 64%); }
.cta::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139,172,255,.5), transparent); }
.cta h2 { font-family: var(--display); font-weight: 700; font-size: clamp(38px,6vw,80px); line-height: 1; letter-spacing: -0.035em; max-width: 16ch; margin: 0 auto; }
.cta p { margin: 26px auto 0; max-width: 40ch; font-size: 18px; color: var(--muted); }
.cta__actions { margin-top: 42px; display: flex; flex-wrap: wrap; gap: 13px; justify-content: center; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.foot { border-top: 1px solid var(--line); padding: 64px 0 40px; background: var(--bg-1); }
.foot__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 720px) { .foot__grid { grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 44px; } }
.foot__brand p { margin-top: 14px; font-size: 13.5px; color: var(--dim); max-width: 34ch; }
.foot__col { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.foot__col h4 { font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--dim); }
.foot__col a, .foot__col .lnk { font-size: 14px; color: var(--muted); font-weight: 500; padding: 0; }
.foot__col a:hover, .foot__col .lnk:hover { color: var(--ink); }
.foot__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--dim); }

/* ══════════════════════════════════════════════════════
   MOTION
══════════════════════════════════════════════════════ */
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* hero entrance (only when JS confirms; else visible) */
.js .hero__eyebrow, .js .hero h1, .js .hero__lead, .js .hero__actions, .js .hero__micro, .js .hero .stage {
    opacity: 0; animation: rise .8s var(--ease) forwards;
}
.js .hero h1        { animation-delay: .06s; }
.js .hero__lead     { animation-delay: .16s; }
.js .hero__actions  { animation-delay: .24s; }
.js .hero__micro    { animation-delay: .3s; }
.js .hero .stage    { animation-delay: .14s; }

/* scroll reveals — default visible, enhanced only with JS */
.js [data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease2), transform .8s var(--ease2); }
.js [data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .js .hero__eyebrow, .js .hero h1, .js .hero__lead, .js .hero__actions, .js .hero__micro, .js .hero .stage,
    .js [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important; }
    .win__pulse, .hero__eyebrow::before { animation: none !important; }
    .render--hero .win, .render--right .win, .render--left .win,
    .float--alert, .float--unit, .float--record, .float--pay { transition: none !important; }
    .btn, .qa, .qa__x::before, .qa__x::after { transition: none !important; }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    /* flatten 3D on stacked layouts, keep it clean */
    .render--hero .win, .render--right .win, .render--left .win { transform: none !important; }
    .stage, .story__vis { perspective: none; }
}
@media (max-width: 820px) {
    .nav__links { display: none; }
    .hero { padding: 132px 0 84px; }
    .social__strip { grid-template-columns: 1fr; gap: 30px; text-align: center; }
}
@media (max-width: 600px) {
    .nav { top: 9px; padding: 0 12px; }
    .nav__inner { height: 56px; }
    .hero__actions { flex-direction: column; align-items: stretch; }
    .hero__actions .btn { width: 100%; }
    .cta__actions { flex-direction: column; }
    .cta__actions .btn { width: 100%; }
    /* floats can crowd narrow screens — tuck them in */
    .float--alert, .float--pay { left: 2%; bottom: -4%; }
    .float--unit, .float--record { right: 2%; top: -3%; }
    .win__foot .unit:nth-child(n+3) { display: none; }
    .mdt__kv { grid-template-columns: 1fr; }
    .mdt__kv b { text-align: left; }
    .foot__bottom { flex-direction: column; }
}
@media (max-width: 380px) {
    .float--alert .txt span, .float--unit .u-sub { display: none; }
}
