/* ============================================================================
   Sentry Recovery — sentry-recovery.com
   "Forensic recovery console" design system.
   Dark, cinematic, surveillance-grade. Brand tokens carried from Qloud
   (DM Mono + Libre Baskerville) with a modern, animated treatment.
   ========================================================================== */

:root {
    /* Canvas */
    --bg:        #0a0b0d;
    --bg-2:      #0e1014;
    --panel:     #14171c;
    --panel-2:   #181c22;
    --doc:       #f5f4ef;   /* light "evidence document" sections */
    --doc-ink:   #15171a;
    --doc-mid:   #565b61;
    --doc-line:  #e3e1d8;

    /* Ink */
    --ink:       #f4f6f8;
    --ink-mid:   rgba(244,246,248,0.64);
    --ink-soft:  rgba(244,246,248,0.6);
    --ink-faint: rgba(244,246,248,0.6);
    --line:      rgba(255,255,255,0.09);
    --line-2:    rgba(255,255,255,0.06);

    /* Accents */
    --cyan:      #50e6ff;   /* signal / scan / data */
    --cyan-deep: #0a9fc7;   /* borders / backgrounds / gradients on dark + light */
    --cyan-text: #0e7490;   /* AA-compliant cyan for TEXT on light bgs (#324) */
    --amber:     #ff6b35;   /* recovery / urgency */
    --amber-2:   #f7b731;

    --font-mono:  'DM Mono', 'SFMono-Regular', ui-monospace, monospace;
    --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
    --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);

    --maxw: 1240px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Film-grain / noise overlay for atmosphere */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--cyan); color: #04222b; }

a { color: inherit; }
img, picture, video { max-width: 100%; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .container { padding: 0 22px; } }

/* ── Scroll progress bar ─────────────────────────────────────────────── */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 2px;
    width: 100%;
    transform: scaleX(0);
    transform-origin: 0 50%;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-deep));
    z-index: 1001;
    will-change: transform;
}

/* ── Nav ─────────────────────────────────────────────────────────────── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: 64px;
    display: flex;
    align-items: center;
    background: rgba(10,11,13,0.72);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--line-2);
    transition: background 0.3s, border-color 0.3s;
}
nav.scrolled { background: rgba(10,11,13,0.92); border-bottom-color: var(--line); }
nav .container { width: 100%; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav-brand img { height: 22px; width: auto; opacity: 0.9; }
.nav-brand .nav-sep { width: 1px; height: 18px; background: var(--line); }
.nav-brand .nav-product {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-mid);
}

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a:not(.btn) {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.nav-links a:not(.btn)::after {
    content: ""; position: absolute; left: 0; bottom: -6px;
    width: 100%; height: 1px; background: var(--cyan);
    transform: scaleX(0); transform-origin: 0 50%;
    transition: transform 0.25s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-toggle { display: none; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 13px 24px;
    font-family: var(--font-mono);
    font-size: 11px; font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.11em;
    line-height: 1; white-space: nowrap; text-decoration: none;
    cursor: pointer; border: 1px solid transparent;
    transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn i { font-size: 13px; }
.btn-primary {
    background: var(--cyan); color: #04222b; border-color: var(--cyan);
    box-shadow: 0 0 0 0 rgba(80,230,255,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(80,230,255,0.25); }
.btn-ghost { background: rgba(255,255,255,0.04); color: var(--ink-mid); border-color: var(--line); }
.btn-ghost:hover { color: var(--ink); border-color: rgba(255,255,255,0.28); transform: translateY(-2px); }
.btn-white { background: #ffffff; color: #0a0b0d; border-color: #ffffff; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,255,255,0.18); }
.btn-amber { background: var(--amber); color: #1a0a00; border-color: var(--amber); }
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,107,53,0.28); }
.btn-line-dark { background: transparent; color: var(--doc-ink); border-color: var(--doc-ink); }
.btn-line-dark:hover { background: var(--doc-ink); color: var(--doc); transform: translateY(-2px); }
.btn-sm { padding: 9px 16px; font-size: 10px; }

/* ── Eyebrow / tags ──────────────────────────────────────────────────── */
.eyebrow {
    font-family: var(--font-mono);
    font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.26em;
    color: var(--cyan); display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: ""; width: 22px; height: 1px; background: var(--cyan); opacity: 0.7;
}
.eyebrow.amber { color: var(--amber); }
.eyebrow.amber::before { background: var(--amber); }
.eyebrow.dark { color: var(--cyan-deep); }
.eyebrow.dark::before { background: var(--cyan-deep); }

.tag {
    font-family: var(--font-mono);
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em;
    padding: 6px 12px; border: 1px solid var(--line); color: var(--ink-soft);
    display: inline-flex; align-items: center; gap: 7px;
}
.tag.hot { border-color: rgba(255,107,53,0.4); color: var(--amber-2); }

/* ── Section headings ────────────────────────────────────────────────── */
.section { padding: 110px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 68px 0; } }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -0.015em; }
.h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.08; }
.lead { font-size: 17px; color: var(--ink-mid); line-height: 1.7; max-width: 680px; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head .lead { margin-top: 18px; }

/* dot-grid + glow helpers for dark sections */
.dotgrid::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
    background-size: 30px 30px;
    -webkit-mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(180deg, transparent, #000 12%, #000 88%, transparent);
}
.glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; z-index: 0; }
.section > .container { position: relative; z-index: 1; }

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    /* The source footage is a bright app UI — knock it back so white text reads
       cleanly over any frame and the cyan accent stays the brightest thing. */
    filter: brightness(0.46) contrast(1.06) saturate(1.06);
}
.hero-scrim {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
        linear-gradient(100deg, rgba(10,11,13,0.94) 0%, rgba(10,11,13,0.82) 40%, rgba(10,11,13,0.52) 72%, rgba(10,11,13,0.38) 100%),
        linear-gradient(0deg, rgba(10,11,13,0.96) 0%, rgba(10,11,13,0.30) 50%, rgba(10,11,13,0.20) 100%);
}
.hero-grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}
/* animated scan-line sweep */
.hero-scan {
    position: absolute; left: 0; right: 0; height: 180px; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, transparent, rgba(80,230,255,0.06) 50%, transparent);
    border-top: 1px solid rgba(80,230,255,0.18);
    animation: scan 7s linear infinite;
}
@keyframes scan {
    0%   { transform: translateY(-200px); opacity: 0; }
    8%   { opacity: 1; }
    92%  { opacity: 1; }
    100% { transform: translateY(100svh); opacity: 0; }
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 {
    font-size: clamp(46px, 7.4vw, 96px);
    line-height: 1.02;
    margin: 16px 0 24px;
}
.hero h1 .l1 { display: block; color: var(--ink); }
.hero h1 .l2 { display: block; color: var(--ink-faint); }
.hero h1 .l2 em { font-style: italic; color: var(--cyan); }
.hero-body { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-mid); max-width: 540px; margin-bottom: 26px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-strip {
    margin-top: 26px; display: flex; flex-wrap: wrap; gap: 8px 22px;
    font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--ink-soft);
}
.trust-strip span { display: inline-flex; align-items: center; gap: 7px; }
.trust-strip i { color: var(--cyan); }
.hero-scrollcue {
    position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
    z-index: 2; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.3em;
    text-transform: uppercase; color: var(--ink-faint); display: flex; flex-direction: column;
    align-items: center; gap: 10px;
}
.hero-scrollcue::after {
    content: ""; width: 1px; height: 34px;
    background: linear-gradient(180deg, var(--cyan), transparent);
    animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ============================================================================
   STAT BAND
   ========================================================================== */
.statband { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
    padding: 40px 28px; border-left: 1px solid var(--line-2);
    text-align: center;
}
.stat:first-child { border-left: none; }
.stat-num {
    font-family: var(--font-serif); font-weight: 700;
    font-size: clamp(30px, 3.4vw, 46px); line-height: 1; color: var(--ink);
}
.stat-num .u { color: var(--cyan); }
.stat-label {
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em;
    text-transform: uppercase; color: var(--ink-soft); margin-top: 12px;
}
@media (max-width: 720px) {
    .stat-grid { grid-template-columns: 1fr 1fr; }
    .stat:nth-child(odd) { border-left: none; }
    .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--line-2); }
}

/* ============================================================================
   SCREENSHOT REVEAL (3D tilt + parallax)
   ========================================================================== */
.shot-section { background: var(--bg); text-align: center; overflow: hidden; }
.shot-frame {
    position: relative; max-width: 1080px; margin: 48px auto 0;
    perspective: 1800px;
}
.shot-frame img {
    width: 100%; height: auto; border-radius: 12px;
    border: 1px solid var(--line);
    box-shadow: 0 50px 120px rgba(0,0,0,0.65), 0 0 0 1px rgba(80,230,255,0.05);
    transform: translateY(36px) scale(0.97);
    opacity: 0;
    transition: transform 1s var(--ease), opacity 0.85s var(--ease);
}
.shot-frame.in img { transform: none; opacity: 1; }
.shot-frame::before {
    content: ""; position: absolute; inset: -10% 10% auto; height: 60%; top: -8%;
    background: radial-gradient(ellipse at 50% 0%, rgba(80,230,255,0.14), transparent 70%);
    pointer-events: none; z-index: -1;
}

/* ============================================================================
   ACCORDION (crisis + general FAQ)
   ========================================================================== */
.accordion { max-width: 860px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:first-child { border-top: 1px solid var(--line); }
.acc-q {
    width: 100%; background: none; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding: 24px 0; text-align: left; color: var(--ink);
    font-family: var(--font-sans); font-size: 16.5px; font-weight: 500; line-height: 1.45;
}
.acc-q i { font-size: 12px; color: var(--cyan); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.acc-item.amber .acc-q i { color: var(--amber); }
.acc-item.open .acc-q i { transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-item.open .acc-a { max-height: 640px; }
.acc-a-inner { padding-bottom: 24px; color: var(--ink-mid); font-size: 15px; line-height: 1.78; max-width: 760px; }
.acc-a-inner strong { color: var(--ink); font-weight: 600; }
.acc-a-inner a { color: var(--cyan); text-decoration: none; }
.acc-a-inner a:hover { text-decoration: underline; }

/* crisis section flavour */
.crisis { background: var(--bg-2); position: relative; overflow: hidden; }
.crisis .glow { width: 520px; height: 520px; top: -180px; right: -120px;
    background: radial-gradient(circle, rgba(255,107,53,0.12), transparent 68%); }

/* ============================================================================
   FEATURES
   ========================================================================== */
.features { background: var(--bg); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); }
.feature-card {
    background: var(--panel); padding: 38px 34px;
    transition: background 0.3s, transform 0.3s var(--ease);
    position: relative;
}
.feature-card:hover { background: var(--panel-2); }
.feature-card::after {
    content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, var(--cyan), transparent);
    transform: scaleX(0); transform-origin: 0 50%; transition: transform 0.4s var(--ease);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-ic { width: 46px; height: 46px; border-radius: 11px; overflow: hidden; margin-bottom: 22px; }
.feature-ic img { width: 46px; height: 46px; border-radius: 11px; }
.feature-card h3 { font-size: 18px; color: var(--ink); margin-bottom: 11px; }
.feature-card p { font-size: 14px; color: var(--ink-mid); line-height: 1.62; }
.feature-card ul { list-style: none; margin-top: 14px; }
.feature-card li {
    font-size: 12.5px; color: var(--ink-soft); padding: 5px 0 5px 18px;
    position: relative; line-height: 1.5; font-family: var(--font-mono); letter-spacing: 0.01em;
}
.feature-card li::before { content: "›"; position: absolute; left: 0; color: var(--cyan); }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   STICKY STEP SEQUENCE  (the showpiece)
   ========================================================================== */
.steps { background: var(--bg-2); }
.steps-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start; }
.steps-text { display: flex; flex-direction: column; gap: 14vh; padding: 6vh 0; }
.step-block { min-height: 22vh; }
.step-block .step-no {
    font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em;
    color: var(--cyan); margin-bottom: 14px;
}
.step-block h3 { font-size: clamp(26px, 3vw, 38px); color: var(--ink-faint); transition: color 0.4s; }
.step-block p { font-size: 16px; color: var(--ink-soft); margin-top: 14px; max-width: 440px; transition: color 0.4s; opacity: 0.92; transition: opacity 0.4s, color 0.4s; }
.step-block.active h3 { color: var(--ink); }
.step-block.active p { opacity: 1; color: var(--ink-mid); }

.steps-media {
    position: sticky; top: 96px; height: 78vh; border-radius: 14px; overflow: hidden;
    border: 1px solid var(--line); background: #000;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.steps-media .frame {
    position: absolute; inset: 0; opacity: 0; transform: scale(1.06);
    transition: opacity 0.7s var(--ease), transform 1.2s var(--ease);
}
.steps-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.steps-media .frame.show { opacity: 1; transform: scale(1); }
.steps-media .frame-label {
    position: absolute; left: 16px; bottom: 16px; z-index: 2;
    font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--ink); background: rgba(10,11,13,0.6); border: 1px solid var(--line);
    padding: 7px 12px; backdrop-filter: blur(8px);
}
.steps-media .scanbar {
    position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 3;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: scanbar 3.4s linear infinite;
}
@keyframes scanbar { 0% { transform: translateY(0); } 100% { transform: translateY(78vh); } }
@media (max-width: 860px) {
    .steps-layout { grid-template-columns: 1fr; gap: 0; }
    .steps-media { display: none; }
    .steps-text { gap: 0; padding: 0; }
    .step-block { min-height: 0; padding: 26px 0; border-bottom: 1px solid var(--line); }
    .step-block h3, .step-block p { color: var(--ink) !important; opacity: 1 !important; }
    .step-block .step-shot { display: block; height: auto; margin-top: 18px; border-radius: 10px; border: 1px solid var(--line); }
}
.step-shot { display: none; }

/* ============================================================================
   WALKTHROUGH VIDEO
   ========================================================================== */
.walk { background: var(--bg); text-align: center; }
.walk .section-head { margin: 0 auto 40px; }
.video-embed {
    position: relative; aspect-ratio: 16/9; max-width: 920px; margin: 0 auto;
    border-radius: 14px; overflow: hidden; border: 1px solid var(--line);
    box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-facade { position: absolute; inset: 0; border: 0; padding: 0; margin: 0; cursor: pointer; background: #000; display: block; width: 100%; height: 100%; }
.video-facade img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; transition: opacity 0.3s; }
.video-facade:hover img { opacity: 1; }
.video-facade .play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 86px; height: 86px; border-radius: 50%;
    background: rgba(80,230,255,0.92); display: grid; place-items: center;
    transition: transform 0.25s var(--ease), background 0.25s;
}
.video-facade .play::after {
    content: ""; border-style: solid; border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #04222b; margin-left: 5px;
}
.video-facade:hover .play, .video-facade:focus-visible .play { transform: translate(-50%,-50%) scale(1.08); }
.video-facade:focus-visible { outline: 3px solid var(--cyan); outline-offset: -3px; }

/* ============================================================================
   USE CASES
   ========================================================================== */
.usecases { background: var(--bg-2); }
.uc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 28px; }
.uc-item { display: flex; gap: 16px; align-items: flex-start; padding: 22px 24px; background: var(--panel); border: 1px solid var(--line-2); transition: border-color 0.3s, transform 0.3s var(--ease); }
.uc-item:hover { border-color: var(--line); transform: translateX(4px); }
.uc-ic { width: 42px; height: 42px; border-radius: 9px; overflow: hidden; flex-shrink: 0; }
.uc-ic img { width: 42px; height: 42px; }
.uc-item h3 { font-size: 15px; color: var(--ink); margin-bottom: 4px; }
.uc-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; }
.notice {
    border-left: 3px solid var(--amber); background: rgba(255,107,53,0.07);
    padding: 16px 22px; font-size: 14.5px; color: var(--ink-mid); line-height: 1.65;
}
.notice strong { color: var(--amber-2); }
@media (max-width: 720px) { .uc-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   PRICING
   ========================================================================== */
.pricing { background: var(--bg); position: relative; overflow: hidden; }
.pricing .glow { width: 600px; height: 600px; bottom: -240px; left: -140px;
    background: radial-gradient(circle, rgba(80,230,255,0.08), transparent 70%); }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.price-card { background: var(--panel); border: 1px solid var(--line); padding: 40px; position: relative; }
.price-card.feat { border-color: rgba(255,107,53,0.45); background: linear-gradient(180deg, rgba(255,107,53,0.06), rgba(20,23,28,0.4)); }
.price-card .plabel { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 18px; }
.price-card.feat .plabel { color: var(--amber-2); }
.price-amt { font-family: var(--font-serif); font-weight: 700; font-size: 58px; line-height: 1; color: var(--ink); }
.price-amt sup { font-size: 26px; top: -0.7em; }
.price-per { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin: 8px 0 26px; }
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li { display: flex; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--line-2); font-size: 14px; color: var(--ink-mid); line-height: 1.45; }
.price-list li:last-child { border-bottom: none; }
.price-list i { color: var(--amber); font-size: 12px; margin-top: 4px; flex-shrink: 0; }
.price-card.free .price-list i { color: var(--cyan); }
.dl-row { display: flex; flex-direction: column; gap: 10px; }
.dl-btn { display: flex; align-items: center; gap: 11px; padding: 13px 18px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); color: var(--ink-mid); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-decoration: none; transition: all 0.2s; }
.dl-btn:hover { background: rgba(255,255,255,0.1); color: var(--ink); border-color: rgba(255,255,255,0.25); }
.dl-btn i { font-size: 15px; }
.ptrust { margin-top: 14px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.ptrust i { color: var(--cyan); }
.pnote { font-size: 12px; color: var(--ink-faint); line-height: 1.6; margin-top: 12px; }
.pnote a { color: var(--ink-soft); }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } .price-card { padding: 28px 22px; } }

/* ============================================================================
   LIGHT "DOCUMENT" SECTIONS  (licensing, requirements, technical, FAQ-light)
   ========================================================================== */
.doc { background: var(--doc); color: var(--doc-ink); }
.doc .eyebrow { color: var(--cyan-text); }
.doc .eyebrow::before { background: var(--cyan-deep); }
.doc h2, .doc h3 { color: var(--doc-ink); }
.doc .lead { color: var(--doc-mid); }
.doc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.doc-block { border: 1px solid var(--doc-line); padding: 36px; background: #fff; }
.doc-block h3 { font-size: 19px; margin-bottom: 14px; }
.doc-block p { font-size: 14px; color: var(--doc-mid); line-height: 1.68; margin-bottom: 12px; }
.doc-block ol { padding-left: 20px; color: var(--doc-mid); font-size: 14px; line-height: 1.85; }
.doc-block ul { list-style: none; }
.doc-block ul li { font-size: 14px; color: var(--doc-mid); padding: 9px 0; border-bottom: 1px solid var(--doc-line); line-height: 1.55; }
.doc-block ul li:last-child { border-bottom: none; }
.doc-block strong { color: var(--doc-ink); }
.doc-block h3 i { color: var(--cyan-text); margin-right: 8px; }
.span-2 { grid-column: 1 / -1; }
@media (max-width: 760px) { .doc-grid { grid-template-columns: 1fr; } .doc-block { padding: 26px; } }

/* light FAQ list */
.faq-light .accordion { max-width: 820px; }
.faq-light .acc-item, .faq-light .acc-item:first-child { border-color: var(--doc-line); }
.faq-light .acc-q { color: var(--doc-ink); font-weight: 600; }
.faq-light .acc-q i { color: var(--cyan-text); }
.faq-light .acc-a-inner { color: var(--doc-mid); }
.faq-light .acc-a-inner strong { color: var(--doc-ink); }
.faq-light .acc-a-inner a { color: var(--cyan-text); }

/* ============================================================================
   PRIVACY
   ========================================================================== */
.privacy { background: var(--bg-2); }
.priv-list { list-style: none; max-width: 760px; }
.priv-list li { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-2); font-size: 15px; color: var(--ink-mid); }
.priv-list li:last-child { border-bottom: none; }
.priv-list img { width: 34px; height: 34px; flex-shrink: 0; border-radius: 7px; }
.link-mono { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); text-decoration: none; display: inline-flex; gap: 8px; align-items: center; margin-top: 26px; }
.link-mono:hover { gap: 12px; }

/* disclaimer / callout */
.callout { max-width: 820px; background: rgba(80,230,255,0.05); border: 1px solid rgba(80,230,255,0.15); padding: 30px 34px; }
.callout .eyebrow { margin-bottom: 12px; }
.callout p { font-size: 14px; color: var(--ink-mid); line-height: 1.72; }
.callout .sub { font-size: 13px; color: var(--ink-faint); margin-top: 12px; }
.callout a { color: var(--cyan); text-decoration: none; }

/* ============================================================================
   KNOWLEDGE BASE
   ========================================================================== */
.kb { background: var(--bg); }
.kb-grid { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.kb-grid a {
    display: block; padding: 24px 26px; background: var(--panel); border: 1px solid var(--line-2);
    text-decoration: none; color: var(--ink); font-size: 15.5px; line-height: 1.5;
    transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.kb-grid a:hover { border-color: rgba(80,230,255,0.4); transform: translateY(-3px); background: var(--panel-2); }
.kb-grid a .kbk { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan); display: block; margin-bottom: 12px; }

/* ============================================================================
   RELATED CROSS-SELL
   ========================================================================== */
.related { background: var(--bg-2); }
.related h2 { font-size: clamp(24px, 3vw, 38px); }

/* ============================================================================
   SUPPORT
   ========================================================================== */
.support { background: var(--bg); }
.sup-grid { display: flex; flex-wrap: wrap; gap: 36px; }
.sup-item { display: flex; align-items: center; gap: 15px; }
.sup-ic { width: 44px; height: 44px; border-radius: 11px; background: rgba(80,230,255,0.08); display: grid; place-items: center; color: var(--cyan); font-size: 16px; }
.sup-l { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 4px; }
.sup-v { font-size: 15px; color: var(--ink); }
.sup-v a { color: var(--cyan); text-decoration: none; }

/* ============================================================================
   FOOTER
   ========================================================================== */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { height: 20px; width: auto; opacity: 0.4; }
.footer-brand .fb-by { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(244,246,248,0.6); }
.footer-nav { display: flex; gap: 26px; list-style: none; flex-wrap: wrap; }
.footer-nav a { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244,246,248,0.6); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--ink); }
.footer-copy { font-family: var(--font-mono); font-size: 10px; color: rgba(244,246,248,0.6); }
@media (max-width: 720px) { .footer-inner { flex-direction: column; text-align: center; } }

/* ============================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ── Mobile nav ─────────────────────────────────────────────────────── */
@media (max-width: 940px) {
    .nav-links { display: none; }
    .nav-links.open {
        display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
        position: absolute; top: 64px; left: 0; right: 0; padding: 26px 22px 32px;
        background: rgba(10,11,13,0.97); border-bottom: 1px solid var(--line);
        backdrop-filter: blur(18px);
    }
    .nav-toggle { display: inline-flex; background: none; border: none; color: var(--ink); font-size: 18px; cursor: pointer; }
}

/* On small screens the hero text sits over the brighter middle of the video —
   darken the scrim so copy + CTAs stay legible. */
@media (max-width: 720px) {
    .hero { min-height: 100svh; padding: 96px 0 64px; }
    /* Mobile LCP (#167): the decorative autoplay hero <video> competes for
       throttled-mobile bandwidth/decode and delays LCP. Drop it on small screens
       and settle the (preloaded, 77 KB) poster as the hero background instead. */
    .hero-video { display: none; }
    .hero { background: linear-gradient(rgba(10,11,13,0.62), rgba(10,11,13,0.88)), #000 url("../img/hero-poster.jpg") center/cover no-repeat; }
    .hero-scrim { background: linear-gradient(180deg, rgba(10,11,13,0.58) 0%, rgba(10,11,13,0.84) 52%, rgba(10,11,13,0.97) 100%); }
    .hero-ctas { width: 100%; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
    .hero-video { display: none; }
    .hero { background: linear-gradient(rgba(10,11,13,0.62), rgba(10,11,13,0.88)), #000 url("../img/hero-poster.jpg") center/cover no-repeat; }
    .reveal { opacity: 1; transform: none; }
    .shot-frame img { opacity: 1; transform: none; }
    .hero-scan, .scanbar, .hero-scrollcue::after { display: none; }
}
