/* ═══════════════════════════════════════════════════════════════
   PrimeCAD — site-wide system
   "An instrument, not a poster."

   Rules this file holds itself to (see CLAUDE.md → anti-slop):
   · Accent colour marks STATE, never decoration. No coloured words in
     headlines, no gradient text, no neon rings.
   · Depth comes from hairlines and hard shadows, not from coloured glows,
     radial blobs or glassmorphism.
   · Radii stay small (4–10px). Big rounding reads as template.
   · Motion is mechanical: stepped wipes and hitched easing. Nothing floats,
     nothing blurs into place, nothing bounces.
═══════════════════════════════════════════════════════════════ */
*, *::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 deep navy signal — ambient light + sparse accent.
       --blue-ink is the darkest blue that still clears 4.5:1 on --bg. */
    --blue:      #2f52dc;
    --blue-lt:   #4a6ff0;
    --blue-btn:  #2b46b8;   /* fill for white text — ~7.9:1 */
    --blue-dp:   #131c47;
    --blue-ink:  #4a6ff0;   /* accent text on dark — 4.5:1 */
    --blue-rgb:  74,111,240;

    --good:      #3fcf8e;
    --warn:      #e2ac52;
    --crit:      #f2606d;

    /* kept for the in-product mockups only — a CAD screen may glow, a marketing
       card may not. Never put --glow on a button, plan or section. */
    --glow:      rgba(45,75,215,.5);

    --display:   'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font:      'Satoshi', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --mono:      'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

    --r-sm: 4px; --r: 6px; --r-lg: 8px; --r-xl: 10px;

    /* MOTION — the house language.
       --hitch is the signature: the element moves, stalls, moves, stalls, lands.
       It is a relay contact closing, not a soap bubble settling. Every reveal
       and every page wipe on this site runs on it. */
    --hitch: linear(0, .062 6%, .29 13%, .30 17%, .32 21%, .74 44%, .77 50%,
                    .80 56%, .965 78%, 1);
    --snap:  cubic-bezier(.2,.85,.15,1);
    --ease:  cubic-bezier(.2,.85,.15,1);   /* legacy alias */
    --ease2: cubic-bezier(.2,.85,.15,1);   /* legacy alias */
    --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; } }

/* Anchor targets sit on the HEADING, not the section — a section starts with
   ~150px of padding, so jumping to it parks you in empty space. Plus the sticky
   nav needs clearing. */
#dispatch, #records, #plates, #law, #economy { scroll-margin-top: clamp(88px, 11vh, 116px); }
#pricing, #faq { scroll-margin-top: clamp(104px, 13vh, 140px); }

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 ─────────────────────────────────────────
   No blue radial blobs (the stock AI backdrop), and no survey grid either.
   Just light: one cool, almost colourless wash falling from above the fold, and
   the page floor darkening away from it. The page reads as a lit room, not as
   wallpaper. Grain stays — it stops flat black from banding. */
.ambient {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background:
        radial-gradient(120% 72% at 50% -18%, rgba(178,192,236,.055), transparent 64%),
        linear-gradient(180deg, transparent 42%, rgba(0,0,0,.32) 100%);
}
.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%; }

/* A key on a console, not a glowing pill. It sits 2px proud of the page on a
   hard edge; pressing it drives the cap down onto that edge and the edge is
   gone. No lift on hover, no coloured bloom underneath — the whole "float up
   and glow" gesture is the template move. */
.btn--primary {
    color: #fff;
    background: var(--blue-btn);
    box-shadow: 0 0 0 1px rgba(130,158,255,.34) inset, 0 2px 0 0 #1a2a72;
}
.btn--primary:hover { background: #3a5ce0; box-shadow: 0 0 0 1px rgba(160,184,255,.5) inset, 0 2px 0 0 #1a2a72; }
.btn--primary:active { transform: translateY(2px); box-shadow: 0 0 0 1px rgba(160,184,255,.5) inset; }

/* .btn--ring is retained so existing markup keeps working; it no longer paints
   a rotating conic border. Nothing to add — a primary button is already the
   loudest thing on the page. */
.btn--ring { position: relative; }

.btn--ghost { color: var(--ink); background: rgba(255,255,255,.025); box-shadow: 0 0 0 1px var(--line-2) inset, 0 2px 0 0 rgba(255,255,255,.04); }
.btn--ghost:hover { background: rgba(255,255,255,.05); box-shadow: 0 0 0 1px var(--line-3) inset, 0 2px 0 0 rgba(255,255,255,.04); }
.btn--ghost:active { transform: translateY(2px); box-shadow: 0 0 0 1px var(--line-3) inset; }

.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 ────────────────────────────────────────────── */
/* At rest the bar sits directly on the page background — no chrome of its own.
   Condensed, it does NOT become one floating pill like everyone else's: it
   SPLITS. The brand takes its own chip on the left, the links and account
   actions gather into a separate capsule on the right, and the gap between
   the two stays page. Two objects, not a bar. */
/* Named so the page-to-page shutter (see MOTION) passes BEHIND the nav instead
   of wiping it away. The brand never moves; the page underneath it does. */
.nav { position: sticky; top: 16px; z-index: var(--z-nav); padding: 0 16px; margin-bottom: -70px;
    transition: top .55s var(--ease2); view-transition-name: rc-nav; }
.nav__inner {
    max-width: 1160px; margin: 0 auto; height: 66px; padding: 0 12px 0 20px;
    display: flex; align-items: center; gap: 26px;
    background: transparent; border: 0; box-shadow: none;
    transition: height .55s var(--ease2), padding .55s var(--ease2);
}
.nav.is-scrolled { top: 10px; }
.nav.is-scrolled .nav__inner { height: 54px; padding: 0 6px 0 8px; }

.nav__pod {
    display: flex; align-items: center; gap: 18px;
    padding: 0; border: 1px solid transparent; border-radius: 100px;
    transition: padding .55s var(--ease2), gap .55s var(--ease2), background .55s var(--ease2),
                border-color .55s var(--ease2), box-shadow .55s var(--ease2), backdrop-filter .55s var(--ease2);
}
.brand {
    padding: 0; border: 1px solid transparent; border-radius: 100px;
    transition: padding .55s var(--ease2), background .55s var(--ease2),
                border-color .55s var(--ease2), box-shadow .55s var(--ease2), backdrop-filter .55s var(--ease2);
}
/* Condensed, the pods become opaque instrument housings — not frosted glass.
   Backdrop-blur behind a nav is the single most copied effect on the web. */
.nav.is-scrolled .brand,
.nav.is-scrolled .nav__pod {
    background: #0a0a0e;
    border-color: var(--line-2);
    box-shadow: 0 1px 0 rgba(255,255,255,.03) inset;
}
.nav.is-scrolled .brand    { padding: 6px 18px 6px 8px; }
.nav.is-scrolled .nav__pod { padding: 5px 5px 5px 16px; gap: 12px; }

/* hairline scroll progress across the very top of the page — pure CSS, no listener */
@supports (animation-timeline: scroll()) {
    @media (prefers-reduced-motion: no-preference) {
        .nav::before {
            content: ""; position: fixed; top: 0; left: 0; right: 0; height: 2px;
            transform-origin: 0 50%; transform: scaleX(0);
            background: linear-gradient(90deg, var(--blue-dp), var(--blue-lt));
            animation: navProgress linear both;
            animation-timeline: scroll(root block);
        }
        @keyframes navProgress { to { transform: scaleX(1); } }
    }
}

/* contents shrink with the bar */
.nav.is-scrolled .brand__mark { width: 38px; height: 38px; }
.nav.is-scrolled .brand__name { font-size: 16.5px; }
.nav.is-scrolled .nav__links a { font-size: 13px; padding: 7px 11px; }
.nav.is-scrolled .nav__cta .btn--sm { --h: 34px; padding: 0 14px; font-size: 13px; }
.nav.is-scrolled .avatar { width: 34px; height: 34px; }
.nav.is-scrolled .avatar svg { width: 17px; height: 17px; }
.nav.is-scrolled .avatar.is-on::after { width: 9px; height: 9px; }

/* Discord auth pill — logged out: brand glyph. logged in: pfp + presence dot. */
.avatar {
    position: relative; flex-shrink: 0;
    display: grid; place-items: center; width: 40px; height: 40px;
    border-radius: 50%; color: var(--ink-2);
    background: rgba(255,255,255,.04);
    box-shadow: 0 0 0 1px var(--line-2) inset;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease),
                width .55s var(--ease2), height .55s var(--ease2);
    overflow: hidden;
}
.avatar svg { width: 20px; height: 20px; transition: width .55s var(--ease2), height .55s var(--ease2); }
.avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.avatar:hover { transform: translateY(-1px); color: var(--ink); box-shadow: 0 0 0 1px var(--line-3) inset; }
.avatar.is-on { background: none; box-shadow: 0 0 0 1px var(--blue-lt) inset; overflow: visible; }
.avatar.is-on::after {
    content: ""; position: absolute; right: -1px; bottom: -1px;
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--good); box-shadow: 0 0 0 2.5px var(--bg);
}

.brand { display: inline-flex; align-items: center; gap: 11px; margin-right: auto; }
/* the mark is the PrimeCAD logo itself — no plate, no glow behind it */
.brand__mark {
    display: grid; place-items: center; width: 44px; height: 44px; flex-shrink: 0;
    transition: width .55s var(--ease2), height .55s var(--ease2);
}
.brand__mark img { width: 100%; height: 100%; object-fit: contain; border-radius: 8px; }
.brand__name { font-weight: 900; font-size: 18.5px; letter-spacing: -0.035em; color: var(--ink);
    transition: font-size .55s var(--ease2); }
.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, font-size .55s var(--ease2), padding .55s var(--ease2); }
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,.04); }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .btn { transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .3s var(--ease),
    height .55s var(--ease2), padding .55s var(--ease2), font-size .55s var(--ease2); }

.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
══════════════════════════════════════════════════════ */
/* One centred statement on an empty screen. The product render that used to sit
   beside it is gone: a floating tilted browser window with detached alert cards
   is the stock AI-startup hero, and it forced the headline off-axis to make room
   for it. The first mockup now appears where it earns its place — in the
   dispatch section, at full size.

   Deliberate emptiness is the thing a template can't do. */
.hero { position: relative; padding: clamp(140px,17vh,196px) 0 clamp(48px,6vw,74px); text-align: center; }
.hero__grid { max-width: 1000px; margin: 0 auto; padding: 0 26px; }
.hero__copy { display: flex; flex-direction: column; align-items: center; }

/* No coloured word in the headline. The accent lives in the caret — colour as
   STATE (a live terminal), not as highlighter. */
.hero h1 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(40px, 6.2vw, 82px); line-height: 1.0; letter-spacing: -0.038em;
    max-width: 17ch; margin: 0 auto;
}
.hero h1 .caret {
    display: inline-block; width: .085em; height: .74em; margin-left: .14em;
    vertical-align: -.03em; background: var(--blue-lt);
    animation: caretBlink 1.15s steps(1, end) infinite;
}
@keyframes caretBlink { 0%, 54% { opacity: 1; } 55%, 100% { opacity: 0; } }

.hero__lead {
    margin: clamp(22px,2.4vw,30px) auto 0; max-width: 56ch;
    font-size: clamp(16px, 1.35vw, 18.5px); line-height: 1.62; color: var(--muted); text-wrap: pretty;
}
.hero__actions { margin-top: clamp(30px,3.4vw,42px); display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* The plumb line. A hairline dropped from the centre of the composition onto the
   top rule of the band below, where it terminates on a signal node sitting
   exactly on the rule. It is what actually centres the hero — without it,
   centred type on a dark page just floats. */
.hero__axis { position: relative; width: 1px; height: clamp(28px,4vh,46px);
    margin: 16px auto 0; background: linear-gradient(transparent, var(--line-3)); }
.hero__axis::after { content: ""; position: absolute; left: 50%; bottom: -3px; width: 5px; height: 5px;
    transform: translateX(-50%) rotate(45deg); background: var(--blue-lt); }

/* ── STAGE + PERSPECTIVE RENDER ──────────────────────── */
.stage { position: relative; perspective: 2200px; perspective-origin: 60% 40%; }
/* The blurred blue blob behind every mockup: deleted. A screen is lit from
   inside; it does not spill coloured fog onto the page behind it. */
.stage__glow { display: none; }

/* window "browser" surface — reused across renders */
.win {
    position: relative; z-index: var(--z-base);
    background: #0c0d13;
    border: 1px solid var(--line-2); border-radius: var(--r-xl); overflow: hidden;
    box-shadow: 0 1px 0 rgba(255,255,255,.04) inset, 0 50px 90px -60px #000;
}
.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: var(--blue-btn); }
.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(var(--blue-rgb),.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; }

/* 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(var(--blue-rgb),.15); box-shadow: 0 0 0 1px rgba(var(--blue-rgb),.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: #12141c;
    border: 1px solid var(--line-2); border-radius: var(--r-lg);
    box-shadow: 0 24px 50px -30px #000;
}
.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 band — the plumb line lands here. Four cells divided by hairlines,
   ruled top and bottom, like the header strip of a console. Not a row of
   floating logo pills. */
.proof { max-width: var(--max); margin: 0 auto; padding: 0 26px; }
.proof__label { display: block; text-align: center;
    font-family: var(--mono); font-size: 11.5px; color: var(--dim); }
.proof__row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.proof__row span {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 22px 12px; border-left: 1px solid var(--line);
    font-size: 14.5px; font-weight: 700; color: var(--muted);
    transition: color .18s var(--snap);
}
.proof__row span:first-child { border-left: 0; }
.proof__row span:hover { color: var(--ink); }
.proof__row svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 720px) {
    .proof__row { grid-template-columns: 1fr 1fr; }
    .proof__row span:nth-child(odd) { border-left: 0; }
    .proof__row span:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* ══════════════════════════════════════════════════════
   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: .66em; width: 6px; height: 6px; background: var(--blue-lt); }

/* 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(var(--blue-rgb),.1); box-shadow: 0 0 0 1px rgba(var(--blue-rgb),.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(var(--blue-rgb),.3), rgba(19,28,71,.5));
    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); }

/* ══════════════════════════════════════════════════════
   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: 800px; margin: 0 auto; }
@media (min-width: 720px) { .plans { grid-template-columns: 1fr 1fr; align-items: stretch; } }
/* No lift on hover, no drop shadow underneath. The card is inset into the page;
   hovering brightens its edge, the way a selected row does. */
.plan { display: flex; flex-direction: column; padding: 32px 30px; border-radius: var(--r-lg);
    background: var(--surface); box-shadow: 0 0 0 1px var(--line-2) inset;
    transition: box-shadow .22s var(--snap), background .22s var(--snap); }
.plan:hover { box-shadow: 0 0 0 1px var(--line-3) inset; background: var(--surface-2); }

/* Pro carries the weight with one thing: a blue edge. No blue haze bleeding out
   of the bottom of the card, no gradient wash across the top. */
.plan--hot { position: relative; background: var(--surface-2);
    box-shadow: 0 0 0 1px rgba(var(--blue-rgb),.5) inset; }
.plan--hot:hover { box-shadow: 0 0 0 1px rgba(var(--blue-rgb),.85) inset; }

/* The badge sits IN the card, on the baseline of the plan name — a tag, not a
   pill hovering over the top-left corner with a pulse animation. */
.plan__badge {
    align-self: flex-start; height: 24px; margin-bottom: 14px; padding: 0 9px;
    display: inline-flex; align-items: center;
    font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: -.01em;
    color: var(--blue-ink); border-radius: 3px;
    background: rgba(var(--blue-rgb),.1); box-shadow: 0 0 0 1px rgba(var(--blue-rgb),.34) inset;
}
/* Starter reserves the badge's row so both plans share one baseline grid. */
.plan:not(.plan--hot)::before { content: ""; height: 24px; margin-bottom: 14px; }

/* The Pro additions tick in one after another once the card reveals. Scoped to
   [data-reveal] — on /pricing the card never gets .in, so unscoped this would
   leave the list permanently invisible. */
.js .plan--hot[data-reveal] .plan__list--add li { opacity: 0; transform: translateX(-8px);
    transition: opacity .2s linear, transform .4s var(--hitch); }
.js .plan--hot[data-reveal].in .plan__list--add li { opacity: 1; transform: none; }
.js .plan--hot[data-reveal].in .plan__list--add li:nth-child(1) { transition-delay: .18s; }
.js .plan--hot[data-reveal].in .plan__list--add li:nth-child(2) { transition-delay: .25s; }
.js .plan--hot[data-reveal].in .plan__list--add li:nth-child(3) { transition-delay: .32s; }
.js .plan--hot[data-reveal].in .plan__list--add li:nth-child(4) { transition-delay: .39s; }

.plan__top { min-height: 62px; }
.plan h3 { font-size: 21px; }
.plan__for { margin-top: 7px; font-size: 13.5px; color: var(--blue-ink); font-weight: 700; }
.plan__price { margin: 18px 0 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); }

/* the one-line "why this tier" — the thing that actually sells */
.plan__sell { margin: 16px 0 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line);
    font-size: 14px; line-height: 1.55; color: var(--muted); min-height: 84px; text-wrap: pretty; }
.plan__from { margin-bottom: 15px; font-family: var(--font); font-size: 13px; font-weight: 700;
    letter-spacing: -0.01em; color: var(--dim); }

.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;
}
/* Pro's bullets are additions, not repeats — mark them with a plus, not a tick. */
.plan__list--add li { color: var(--ink); font-weight: 500; }
.plan__list--add li::before {
    -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'%3E%3Cpath d='M12 5v14M5 12h14'/%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'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.plan .btn { margin-top: auto; }
.pricing__note { margin: clamp(34px,4vw,46px) auto 0; max-width: 52ch; text-align: center; font-size: 13.5px; color: var(--dim); }

@media (max-width: 720px) {
    .plan__top, .plan__sell { min-height: 0; }
    .plan:not(.plan--hot)::before { display: none; }   /* stacked: nothing to align to */
}

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
/* multi-tenant workspace pages */
.app-page { min-height: 100svh; }
.nav--page { margin-bottom: 0; }
/* the page nav is sticky, not overlapping — it already occupies its own height,
   so the shell must NOT re-add a hero-sized top padding on top of it */
.tenant-shell {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 18px 26px clamp(70px, 9vw, 118px);
}
.tenant-shell--pricing { max-width: 920px; }

/* ── Legal pages (privacy / terms) — long-form reading, one column, no chrome ── */
.legal { max-width: 760px; }
.legal__head { padding: clamp(48px, 7vw, 88px) 0 clamp(28px, 4vw, 44px); border-bottom: 1px solid var(--line); }
/* A breadcrumb, not a kicker. A tiny uppercase letter-spaced label parked above
   an oversized headline is the most-cited AI tell there is; this reads as a
   path, in the same mono the product uses for identifiers. */
.legal__kicker { font-family: var(--mono); font-size: 12px; font-weight: 400;
    letter-spacing: -.01em; text-transform: none; color: var(--dim); }
.legal__kicker b { font-weight: 400; color: var(--ink-2); }
.legal__head h1 { margin-top: 14px; font-size: clamp(34px, 5vw, 52px); line-height: 1.04; letter-spacing: -.025em; }
.legal__meta { margin-top: 16px; font-size: 13.5px; color: var(--dim); }
.legal__body { padding-top: clamp(30px, 4vw, 46px); color: var(--ink-2); font-size: 15.5px; line-height: 1.72; }
.legal__lead { font-size: 17px; line-height: 1.66; color: var(--ink); }
.legal__body h2 { margin: 46px 0 14px; font-size: 20px; line-height: 1.3; letter-spacing: -.012em; color: var(--ink); }
.legal__body h3 { margin: 28px 0 8px; font-size: 15.5px; font-weight: 700; color: var(--ink); }
.legal__body p + p { margin-top: 14px; }
.legal__body ul { margin: 14px 0; padding-left: 20px; display: flex; flex-direction: column; gap: 9px; }
.legal__body li { padding-left: 4px; }
.legal__body li::marker { color: var(--line-3); }
.legal__body b { color: var(--ink); font-weight: 600; }
.legal__body a { color: var(--blue-ink); text-decoration: underline; text-underline-offset: 3px;
    text-decoration-color: rgba(var(--blue-rgb), .38); transition: text-decoration-color .18s ease; }
.legal__body a:hover { text-decoration-color: rgba(var(--blue-rgb), 1); }

/* ── Konsola właściciela (/manage) i dashboard klienta (/dashboard) ──────────
   Gęsta tabela zamiast kart: właściciel porównuje serwery wzrokiem w pionie,
   więc liczy się rytm kolumn, nie ozdoby. Na wąskim ekranie wiersze rozwijają
   się w karty — te same dane, inny układ. */
.mng { max-width: 1240px; }
.mng-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap;
    padding: clamp(40px, 6vw, 72px) 0 26px;
}
.mng-head h1 { font-size: clamp(30px, 4vw, 44px); letter-spacing: -.028em; line-height: 1.05; }
.mng-head p { margin-top: 10px; color: var(--muted); font-size: 14.5px; max-width: 56ch; }

.mng-chip {
    display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
    padding: 5px 11px 5px 9px; border-radius: 999px; font-size: 12px; font-weight: 600;
    color: var(--muted); background: rgba(255,255,255,.03); box-shadow: 0 0 0 1px var(--line-2) inset;
}
.mng-chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--dim); }
.mng-chip.is-on { color: var(--good); }
.mng-chip.is-on::before { background: var(--good); box-shadow: 0 0 0 3px rgba(63,207,142,.15); }
.mng-chip.is-off { color: var(--warn); }
.mng-chip.is-off::before { background: var(--warn); box-shadow: 0 0 0 3px rgba(226,172,82,.15); }

.mng-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin-bottom: 22px; }
.mng-stat {
    padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-sm);
    background: rgba(255,255,255,.02);
}
.mng-stat b { display: block; font-size: 26px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.mng-stat span { display: block; margin-top: 3px; font-size: 12px; color: var(--dim); text-transform: uppercase; letter-spacing: .05em; }

.mng-table { border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; background: rgba(255,255,255,.018); }
.mng-row {
    display: grid; align-items: center; gap: 14px;
    grid-template-columns: 88px minmax(160px, 1.4fr) 108px 108px 132px 1fr auto;
    padding: 14px 18px; border-bottom: 1px solid var(--line);
}
.mng-row:last-child { border-bottom: 0; }
.mng-row--head {
    background: rgba(255,255,255,.022); font-size: 11px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; color: var(--dim);
}
.mng-row--data:hover { background: rgba(255,255,255,.022); }
.mng-id { font-family: var(--mono); font-size: 12.5px; color: var(--blue-ink); }
.mng-name { font-weight: 600; letter-spacing: -.008em; }
.mng-name small { display: block; margin-top: 2px; font-size: 11.5px; font-weight: 400; color: var(--dim); font-family: var(--mono); }

.mng-tag {
    display: inline-block; padding: 4px 9px; border-radius: 999px;
    font-size: 11px; font-weight: 700; text-transform: capitalize;
    background: rgba(255,255,255,.05); color: var(--ink-2);
}
.mng-tag--active    { color: var(--good); background: rgba(63,207,142,.11); }
.mng-tag--setup     { color: var(--blue-ink); background: rgba(var(--blue-rgb), .12); }
.mng-tag--suspended { color: var(--warn); background: rgba(226,172,82,.12); }
.mng-tag--expired   { color: var(--crit); background: rgba(242,96,109,.12); }

.mng-expiry { font-size: 13px; font-variant-numeric: tabular-nums; color: var(--ink-2); }
.mng-expiry small { display: block; font-size: 11px; color: var(--dim); }
.mng-expiry.is-soon { color: var(--warn); }
.mng-expiry.is-gone { color: var(--crit); }

.mng-secret { display: flex; align-items: center; gap: 8px; min-width: 0; }
.mng-secret code {
    flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    font-family: var(--mono); font-size: 12px; color: var(--muted);
    padding: 5px 9px; border-radius: 7px; background: rgba(0,0,0,.3); box-shadow: 0 0 0 1px var(--line) inset;
}
.mng-mini {
    flex-shrink: 0; padding: 5px 9px; border-radius: 7px; font-size: 11px; font-weight: 600;
    color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid var(--line-2); cursor: pointer;
    transition: color .15s, border-color .15s;
}
.mng-mini:hover { color: var(--ink); border-color: var(--line-3); }
.mng-actions { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.mng-actions .mng-mini { padding: 6px 10px; }
.mng-mini--danger:hover { color: var(--crit); border-color: rgba(242,96,109,.4); }

.mng-empty, .mng-loading { padding: 60px 20px; text-align: center; color: var(--muted); }
.mng-error { margin-bottom: 16px; padding: 12px 16px; border-radius: var(--r-sm);
    color: #f6bcc1; background: rgba(242,96,109,.09); box-shadow: 0 0 0 1px rgba(242,96,109,.25) inset; font-size: 13.5px; }

.mng-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.tenant-field select, .tenant-field textarea {
    width: 100%; margin-top: 8px; padding: 12px 14px; border-radius: 10px;
    color: var(--ink); background: rgba(0,0,0,.28); border: 1px solid var(--line-2);
    font: inherit; font-size: 14.5px;
}
.tenant-field select:focus { outline: none; border-color: var(--blue-lt); box-shadow: 0 0 0 3px rgba(var(--blue-rgb), .13); }

@media (max-width: 980px) {
    .mng-row--head { display: none; }
    .mng-row { grid-template-columns: 1fr; gap: 10px; padding: 18px; }
    .mng-actions { justify-content: flex-start; }
    .mng-field-row { grid-template-columns: 1fr; }
}

.tenant-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding: clamp(46px, 7vw, 86px) 0 clamp(34px, 5vw, 58px);
    border-bottom: 1px solid var(--line);
}
.tenant-hero--center {
    display: block;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    border-bottom: 0;
}
.tenant-kicker {
    margin-bottom: 16px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: -.01em;
    color: var(--dim);
    text-transform: none;
}
.tenant-hero h1 {
    max-width: 13ch;
    font-family: var(--display);
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 700;
    letter-spacing: -0.035em;
}
.tenant-hero--center h1 { max-width: 15ch; margin: 0 auto; }
.tenant-hero p:not(.tenant-kicker) {
    max-width: 52ch;
    margin-top: 22px;
    color: var(--muted);
    font-size: 17px;
}
.tenant-hero--center p:not(.tenant-kicker) { margin-left: auto; margin-right: auto; }
.tenant-actions,
.tenant-side-actions,
.server-empty__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.tenant-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 18px;
    margin-top: 24px;
}
.tenant-panel {
    border: 1px solid var(--line);
    border-radius: var(--r);
    background: rgba(13,14,20,.72);
    box-shadow: 0 30px 70px -56px rgba(0,0,0,.95);
}
.tenant-panel--main { min-height: 420px; }
.tenant-panel--side { padding: 26px; align-self: start; }
.tenant-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    border-bottom: 1px solid var(--line);
}
.tenant-panel h2 {
    font-size: 20px;
    letter-spacing: -0.02em;
}
.tenant-panel p,
.tenant-panel__head p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}
.tenant-side-actions { margin-top: 22px; flex-direction: column; }
.server-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    padding: 18px;
}
.tenant-loading,
.tenant-error,
.server-empty {
    grid-column: 1 / -1;
    min-height: 200px;
    text-align: center;
    color: var(--muted);
}
.tenant-loading,
.tenant-error {
    display: grid;
    place-items: center;
}
.tenant-error { color: #f6bcc1; }
.server-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px 40px;
}
.server-empty__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    color: var(--blue-lt);
    border-radius: var(--r-lg);
    background: rgba(var(--blue-rgb), .11);
    box-shadow: 0 0 0 1px rgba(var(--blue-rgb), .22) inset;
}
.server-empty__icon svg { width: 28px; height: 28px; }
.server-empty h3 { font-size: 24px; letter-spacing: -0.025em; }
.server-empty p {
    max-width: 42ch;
    margin: 12px auto 0;
}
.server-empty__actions { justify-content: center; }
.server-card {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.025);
}
.server-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}
.server-card h3 { font-size: 19px; letter-spacing: -0.02em; }
.server-card p {
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    text-transform: capitalize;
}
.server-badge {
    flex-shrink: 0;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--good);
    background: rgba(63,207,142,.1);
    font-size: 11px;
    font-weight: 800;
}
.server-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}
.server-card__meta span {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--dim);
    font-size: 12px;
}
.server-card__meta b {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 13px;
}
.server-card__actions { margin-top: auto; padding-top: 24px; }
.tenant-modal {
    width: min(460px, calc(100vw - 32px));
    /* the UA default margin:auto only centres horizontally on some engines --
       pin all four sides so it lands in the middle of the viewport everywhere */
    position: fixed; inset: 0; margin: auto;
    padding: 0;
    border: 1px solid var(--line-2);
    border-radius: var(--r-lg);
    color: var(--ink-2);
    background: #0b0c11;
    box-shadow: 0 34px 100px -35px rgba(0,0,0,.95);
}
.tenant-modal::backdrop { background: rgba(4,4,6,.82); }
.tenant-modal form { padding: 26px; }
.tenant-modal__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}
.tenant-modal__head h2 { font-size: 24px; }
.tenant-modal__head p,
.tenant-form-note {
    margin-top: 8px;
    color: var(--muted);
    font-size: 13.5px;
}
.tenant-icon-btn {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    color: var(--muted);
    background: rgba(255,255,255,.04);
    box-shadow: 0 0 0 1px var(--line) inset;
}
.tenant-icon-btn svg { width: 18px; height: 18px; }
.tenant-field {
    display: block;
    margin-bottom: 16px;
}
.tenant-field span {
    display: block;
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}
.tenant-field input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line-2);
    border-radius: 9px;
    color: var(--ink);
    background: rgba(255,255,255,.035);
    font: inherit;
    outline: none;
}
.tenant-field input:focus { border-color: var(--blue-lt); box-shadow: 0 0 0 3px rgba(var(--blue-rgb), .13); }
.tenant-form-note { margin: 2px 0 18px; }
.tenant-form-error {
    margin: 0 0 14px;
    padding: 11px 13px;
    border-radius: 9px;
    color: #f6bcc1;
    background: rgba(242,96,109,.08);
    box-shadow: 0 0 0 1px rgba(242,96,109,.24) inset;
    font-size: 13px;
    font-weight: 700;
}

.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
====================================================== */
/* The big blue radial bloom rising off the bottom edge is gone. A hairline rules
   the section in, and the same near-colourless light as the page backdrop rises
   under the closing line — light, not coloured fog. */
.cta { position: relative; overflow: hidden; padding: clamp(110px,16vw,220px) 0; text-align: center;
    border-top: 1px solid var(--line); background: var(--bg-1); }
.cta::before {
    content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background: radial-gradient(80% 120% at 50% 118%, rgba(178,192,236,.05), transparent 62%);
}
.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 repeat(2, 1fr); gap: 44px; } }
@media (min-width: 1020px) { .foot__grid { grid-template-columns: 1.7fr repeat(4, 1fr); } }
.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 — one language, every page on the server
   ──────────────────────────────────────────────────────
   The default AI motion is a long, smooth, blurred fade-up: 40px of travel,
   7px of blur, a soft scale, an ease-out curve, a full second of it. Everything
   drifts into place like it is underwater. It is the visual equivalent of a
   stock photo.

   PrimeCAD moves like relay hardware instead. Two primitives, nothing else:

     THE HITCH (--hitch) — elements travel a SHORT distance and stall twice on
     the way, as if a contact is closing. No blur, no scale, ~460ms. Used for
     every scroll reveal and the hero entrance.

     THE HANDOFF — page-to-page navigation. A short, plain cross-fade: the old
     page drops out, the new one comes up and settles the last 8px. No stepped
     wipe (it read as a stutter), no blur, no zoom. The nav is exempt
     (view-transition-name: rc-nav), so the brand stays nailed to the screen
     while the page behind it changes. ~220ms, over before you notice it.

   Both are declared once, here, and every page that links main.css inherits
   them — index, pricing, terms, privacy, servers, dashboard, manage.
══════════════════════════════════════════════════════ */
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* ── THE HANDOFF (cross-document view transitions) ──
   Requires BOTH documents to opt in; they all share this file, so they do.
   Browsers without support navigate normally — nothing is lost. */
@view-transition { navigation: auto; }

@media (prefers-reduced-motion: no-preference) {
    /* The UA default blends both snapshots with plus-lighter, which blows the
       midpoint of a dark cross-fade out to grey. Normal blending keeps it dark. */
    ::view-transition-old(root),
    ::view-transition-new(root) { mix-blend-mode: normal; }
    ::view-transition-old(root) { animation: rcOut .16s ease-out both; }
    ::view-transition-new(root) { animation: rcIn  .22s var(--snap) both; }
    @keyframes rcOut { to   { opacity: 0; } }
    @keyframes rcIn  { from { opacity: 0; transform: translateY(8px); } }
    ::view-transition-group(rc-nav) { animation-duration: .22s; animation-timing-function: var(--snap); }
}

/* ── HERO ENTRANCE ── */
@keyframes rcHitch { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.js .hero h1, .js .hero__lead, .js .hero__actions, .js .hero .proof {
    opacity: 0; animation: rcHitch .58s var(--hitch) forwards;
}
.js .hero h1       { animation-delay: .04s; }
.js .hero__lead    { animation-delay: .12s; }
.js .hero__actions { animation-delay: .20s; }
.js .hero .proof   { animation-delay: .30s; }
/* the caret only starts blinking once the line has landed */
.js .hero h1 .caret { animation-delay: .62s; }

/* ── SCROLL REVEAL ──
   16px of travel, no blur, no scale, hitched easing. Default (no JS) = visible. */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .30s linear, transform .46s var(--hitch);
    will-change: opacity, transform;
}
.js [data-reveal].in { opacity: 1; transform: none; will-change: auto; }

/* Directional variants enter from the side the block lives on. Kept short —
   a 64px slide is a slide; a 22px one is a machine seating a part. */
.js [data-reveal="left"]  { transform: translateX(-22px); }
.js [data-reveal="right"] { transform: translateX(22px); }
.js [data-reveal="scale"] { transform: translateY(16px); }

/* side entrances read as jitter on a narrow screen -- everything rises instead */
@media (max-width: 860px) {
    .js [data-reveal="left"], .js [data-reveal="right"] { transform: translateY(16px); }
}

/* stagger the copy inside a revealed block, so the text lands line by line */
.js .story__text.in > *,
.js .caps__head.in > *,
.js .pricing__head.in > * { animation: rcHitch .5s var(--hitch) both; }
.js .story__text.in > *:nth-child(1),
.js .caps__head.in > *:nth-child(1),
.js .pricing__head.in > *:nth-child(1) { animation-delay: .04s; }
.js .story__text.in > *:nth-child(2),
.js .caps__head.in > *:nth-child(2),
.js .pricing__head.in > *:nth-child(2) { animation-delay: .10s; }
.js .story__text.in > *:nth-child(3) { animation-delay: .16s; }

@media (prefers-reduced-motion: reduce) {
    ::view-transition-group(*),
    ::view-transition-old(*),
    ::view-transition-new(*) { animation: none !important; }
    .js .hero h1, .js .hero__lead, .js .hero__actions, .js .hero .proof,
    .js [data-reveal] { opacity: 1 !important; transform: none !important; animation: none !important;
        filter: none !important; transition: none !important; }
    .hero h1 .caret { animation: none !important; }
    .js .plan--hot[data-reveal] .plan__list--add li { opacity: 1 !important; transform: none !important; transition: none !important; }
    .win__pulse { 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) {
    .hero { padding: 132px 0 84px; }
}
@media (max-width: 600px) {
    .nav { top: 9px; padding: 0 8px; }
    .nav__inner { height: 56px; gap: 8px; padding: 0 8px 0 12px; }
    .nav__links a { padding: 8px 9px; font-size: 13px; }
    .nav__cta { gap: 6px; }
    .brand__name { font-size: 17px; }
    .avatar { width: 36px; height: 36px; }
    .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; }
}

/* ======================================================
   ACCOUNT MENU -- logout lives under the avatar, not in the bar
====================================================== */
.nav__cta { position: relative; }
.authmenu {
    position: absolute; top: calc(100% + 12px); right: 0; z-index: var(--z-note);
    min-width: 208px; padding: 7px;
    display: flex; flex-direction: column;
    background: #0a0a0e;
    border: 1px solid var(--line-2); border-radius: var(--r);
    box-shadow: 0 24px 50px -32px #000;
}
.authmenu[hidden] { display: none; }
.authmenu__who {
    padding: 9px 11px 11px; margin-bottom: 5px;
    border-bottom: 1px solid var(--line);
    font-size: 13px; font-weight: 700; color: var(--ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.authmenu a {
    padding: 10px 11px; border-radius: 8px;
    font-size: 14px; font-weight: 600; color: var(--ink-2);
    transition: background .15s, color .15s;
}
.authmenu a:hover { background: rgba(255,255,255,.05); color: var(--ink); }
.authmenu__out { color: var(--crit); }
.authmenu__out:hover { background: rgba(242,96,109,.1); color: #ffb3ba; }

/* ======================================================
   /servers -- one purpose, one action
====================================================== */
.tenant-head {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
    padding: clamp(18px,2.4vw,30px) 0 clamp(26px,3.4vw,40px);
}
.tenant-head__txt h1 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(34px,4.4vw,54px); letter-spacing: -0.035em;
}
.tenant-head__txt p { max-width: 52ch; margin-top: 16px; color: var(--muted); font-size: 16px; }
.tenant-head .btn { flex-shrink: 0; }

/* one quiet exit to pricing, out of the way of the primary action */
.page-corner {
    position: fixed; right: clamp(16px,2.4vw,32px); bottom: clamp(16px,2.4vw,28px); z-index: var(--z-nav);
    padding: 10px 16px; border-radius: var(--r-sm);
    font-size: 13.5px; font-weight: 700; color: var(--muted);
    background: #0a0a0e;
    box-shadow: 0 0 0 1px var(--line-2) inset;
    transition: color .18s var(--snap), box-shadow .18s var(--snap);
}
.page-corner:hover { color: var(--ink); box-shadow: 0 0 0 1px var(--line-3) inset; }

.server-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; padding: 0; }
.server-list--empty { display: block; }

.server-card {
    display: flex; flex-direction: column; min-height: 0; padding: 24px;
    border: 0; border-radius: var(--r-lg);
    background: var(--surface);
    box-shadow: 0 0 0 1px var(--line) inset;
    transition: box-shadow .22s var(--snap), background .22s var(--snap);
}
.server-card:hover { background: var(--surface-2); box-shadow: 0 0 0 1px var(--line-3) inset; }
.server-card h3 { font-size: 19px; letter-spacing: -0.02em; }
.server-card p { margin-top: 5px; color: var(--dim); font-size: 13px; text-transform: capitalize; }

.server-badge {
    display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0;
    padding: 5px 11px 5px 9px; border-radius: 999px;
    color: var(--good); background: rgba(63,207,142,.1);
    font-size: 11px; font-weight: 800;
}
.server-badge i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.server-badge--setup { color: var(--warn); background: rgba(226,172,82,.11); }

.server-card__meta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.server-card__meta span {
    padding: 12px 13px; border-radius: 10px;
    background: rgba(255,255,255,.022); box-shadow: 0 0 0 1px var(--line) inset;
    color: var(--dim); font-size: 11.5px;
}
.server-card__meta b { display: block; margin-top: 4px; font-size: 13px; }
.server-card__meta .ok b   { color: var(--ink); }
.server-card__meta .todo b { color: var(--warn); }
.server-card__actions { margin-top: 22px; }

.dash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 18px;
}
.dash-card {
    overflow: hidden;
    border-radius: var(--r-lg);
    background: var(--surface);
    box-shadow: 0 0 0 1px var(--line) inset;
}
.dash-card__cover {
    display: flex;
    align-items: flex-end;
    min-height: 138px;
    padding: 24px;
    background: rgba(255,255,255,.035);
    border-bottom: 1px solid var(--line);
}
.dash-card__mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: var(--r-lg);
    color: var(--ink);
    background: rgba(0,0,0,.34);
    box-shadow: 0 0 0 1px var(--line-2) inset;
    font-size: 24px;
    font-weight: 900;
}
.dash-card__body { padding: 24px; }
.dash-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.dash-card__top h3 { font-size: 21px; letter-spacing: -0.02em; }
.dash-card__top p {
    margin-top: 5px;
    color: var(--muted);
    font-size: 13px;
    text-transform: capitalize;
}
.dash-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}
.dash-card__meta span {
    padding: 11px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,.022);
    box-shadow: 0 0 0 1px var(--line) inset;
    color: var(--dim);
    font-size: 11.5px;
}
.dash-card__meta b {
    display: block;
    margin-top: 4px;
    color: var(--ink);
    font-size: 13px;
}
.dash-card__meta .todo b,
.dash-card__meta .is-soon { color: var(--warn); }
.dash-card__meta .is-gone { color: var(--crit); }
.dash-card__actions {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}
.dash-card__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.dash-card button[disabled] {
    opacity: .7;
    cursor: wait;
}

.tenant-field span em { font-style: normal; font-weight: 500; color: var(--dim); }
/* an identifier, so it reads like one */
.tenant-field__id {
    font-family: var(--mono); font-size: 15px; letter-spacing: .06em; text-align: center;
    text-transform: uppercase;
}
.tenant-field__id::placeholder { letter-spacing: .06em; color: var(--dim); opacity: .55; }

@media (max-width: 720px) {
    .tenant-head { flex-direction: column; align-items: stretch; }
    .tenant-head .btn { width: 100%; }
}

/* ══════════════════════════════════════════════════════
   /pricing
══════════════════════════════════════════════════════ */
.tenant-shell--pricing { max-width: 900px; }
.price-hero { padding: clamp(16px,2.2vw,30px) 0 clamp(38px,4.6vw,56px); text-align: center; }
.price-hero h1 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(36px,4.8vw,60px); line-height: 1.05; letter-spacing: -0.035em;
}
/* .accent no longer paints a word blue — see the hero note. Kept as a hook so
   existing markup is harmless; it only tightens the tracking of the phrase. */
.price-hero h1 .accent, .accent { color: inherit; }
.price-hero p { max-width: 54ch; margin: 22px auto 0; color: var(--muted); font-size: 17px; text-wrap: pretty; }

.plans--page { max-width: 800px; }
.pricing__note { margin-top: clamp(28px,3.5vw,40px); }
.pricing-test-buy { margin-top: 10px; }
.pricing-test-msg {
    margin: 18px auto 0;
    max-width: 520px;
    padding: 12px 14px;
    border-radius: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    background: rgba(255,255,255,.035);
    box-shadow: 0 0 0 1px var(--line) inset;
}
.pricing-test-msg[hidden] { display: none; }
.pricing-test-msg.is-ok { color: var(--good); }
.pricing-test-msg.is-err { color: var(--crit); }

/* three quiet facts that answer the objections a buyer has right after the price */
.price-proof {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
    margin-top: clamp(64px,8vw,96px); padding-top: clamp(40px,5vw,56px);
    border-top: 1px solid var(--line);
}
.price-proof b { display: block; font-size: 16px; color: var(--ink); letter-spacing: -0.015em; }
.price-proof span { display: block; margin-top: 7px; font-size: 13.5px; color: var(--muted); line-height: 1.55; }

.price-faq { margin-top: clamp(64px,8vw,96px); }
.price-faq h2 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(24px,2.8vw,34px); letter-spacing: -0.03em; margin-bottom: 24px;
}
.price-faq .qa:last-of-type { border-bottom: 1px solid var(--line); }

.price-close {
    margin-top: clamp(72px,9vw,110px); padding: clamp(48px,6vw,72px) 26px;
    text-align: center; border-radius: var(--r-lg);
    background: var(--bg-1); box-shadow: 0 0 0 1px var(--line-2) inset;
}
.price-close h2 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(26px,3.4vw,42px); letter-spacing: -0.035em; max-width: 18ch; margin: 0 auto 30px;
}

@media (max-width: 760px) {
    .price-proof { grid-template-columns: 1fr; gap: 22px; }
}
