/* ============================================================
   SUPAMANPRO — cinematic design system
   Storyboard: LIME #C8FF00 · BLACK #0A0A0A · LIGHT #F5F5F5
   Cinematic · Bold · Human · Progressive
   Light canvas · flat white cards · dark cinematic hero panels
   Inter — 400 / 500 / 600 / 800
   ------------------------------------------------------------
   NOTE: JS hooks preserved for script.js —
   #nav .scrolled/.open, .reveal(-hidden).in, [data-count],
   .card.spot, .faq-item/.faq-q/.faq-a, [data-sheen],
   #heroChat .msg.bot/.user/.typing/.tick, #chat/#chatForm/#chatInput,
   ids waHero/waMini/waPrice/waCta/waFoot, [data-year], .aurora
   ============================================================ */

:root {
  /* Storyboard palette */
  --lime:        #C8FF00;
  --lime-bright: #D6FF45;
  --lime-deep:   #5C7A00;   /* readable lime on white for small text/links */
  --lime-tint:   rgba(200,255,0,0.16);
  --black:       #0A0A0A;
  --black-2:     #121311;
  --black-soft:  #17181500;

  /* Surfaces */
  --canvas:      #ECECEA;   /* deck grey canvas */
  --canvas-2:    #F5F5F5;   /* storyboard light */
  --surface:     #FFFFFF;
  --surface-2:   #FAFAF8;

  /* Ink / text */
  --ink:         #0A0A0A;
  --ink-2:       #232420;
  --body:        #4C4E48;
  --muted:       #83857C;
  --faint:       #AFB1A8;
  --line:        rgba(10,10,10,0.09);
  --line-2:      rgba(10,10,10,0.06);

  /* On dark */
  --d-body:      rgba(255,255,255,0.72);
  --d-muted:     rgba(255,255,255,0.52);
  --d-line:      rgba(255,255,255,0.12);

  /* Radii */
  --r:           26px;
  --r-lg:        32px;
  --r-md:        18px;
  --r-sm:        13px;
  --pill:        999px;

  /* Shadow — soft, physical */
  --shadow:      0 30px 60px -30px rgba(10,10,10,0.30);
  --shadow-sm:   0 14px 32px -18px rgba(10,10,10,0.22);
  --shadow-lime: 0 16px 34px -12px rgba(150,200,0,0.55);
  --hi:          inset 0 1px 0 rgba(255,255,255,0.6);

  --maxw:        1240px;
  --gutter:      28px;
  --nav-h:       66px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --spring:      cubic-bezier(0.34, 1.56, 0.64, 1);
  --font: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* ---- Backward-compat aliases (legacy per-page head CSS uses these) ---- */
  --bg:          var(--canvas);
  --bg-2:        var(--canvas-2);
  --white:       #FFFFFF;
  --glass:       var(--surface);
  --glass-2:     var(--surface);
  --glass-line:  var(--line);
  --glass-edge:  var(--line);
  --glass-blur:  none;
  --nav-glass:   rgba(245,245,245,0.92);
  --nav-blur:    saturate(180%) blur(20px);
  --radius:      var(--r);
  --radius-lg:   var(--r-lg);
  --radius-sm:   var(--r-sm);
  --shadow-card: var(--shadow-sm);
  --lime-bright2: var(--lime-bright);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--canvas);
  color: var(--body);
  line-height: 1.62;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* Aurora field is disabled in the cinematic system (flat deck canvas). */
.aurora { display: none !important; }
body::after { content: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; padding: 96px 0; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 800; letter-spacing: -0.04em; line-height: 1.03; }
h1 { font-size: clamp(2.9rem, 6.4vw, 5rem); letter-spacing: -0.05em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.025em; }
.lead { color: var(--muted); font-size: clamp(1.06rem, 1.5vw, 1.28rem); max-width: 620px; line-height: 1.55; font-weight: 400; }

/* Lime highlight — solid marker, dark text: readable on ANY background,
   wraps cleanly across lines. (Deck "highlighter" style.) */
.hl { color: var(--black); background-color: var(--lime);
  padding: 0.02em 0.14em; border-radius: 4px; box-decoration-break: clone;
  -webkit-box-decoration-break: clone; }
.accent { color: var(--lime-deep); }
/* On dark surfaces a lime-marked word must be dark for contrast */
.chero .hl, .cta-band .hl, .chapter__panel--dark .hl, .shero .hl, .frost .hl { color: var(--black); }

/* Eyebrow / screen tag — the "SCREEN 0X" lime pill from the deck */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); padding: 8px 14px; border-radius: var(--pill);
  background: var(--surface); border: 1px solid var(--line);
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.eyebrow--lime { background: var(--lime); border-color: transparent; color: var(--black); }
.eyebrow--lime::before { background: var(--black); }
.eyebrow--dark { background: var(--black); border-color: transparent; color: #fff; }

.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head h2 { margin: 18px 0 14px; }

/* ---------- Cards (flat, white, rounded) ---------- */
.panel, .card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.card { padding: 30px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--body); font-size: 0.97rem; }
.card.spot::after { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s; background: radial-gradient(340px circle at var(--mx,50%) var(--my,50%), var(--lime-tint), transparent 45%); }
.card.spot:hover::after { opacity: 1; }
/* Dark card variant */
.card--dark, .panel--dark { background: var(--black); border-color: rgba(255,255,255,0.08); color: var(--d-body); box-shadow: var(--shadow); }
.card--dark h1,.card--dark h2,.card--dark h3,.card--dark h4,.panel--dark h1,.panel--dark h2,.panel--dark h3,.panel--dark h4 { color: #fff; }
.card--dark p, .panel--dark p { color: var(--d-body); }

/* Kept for legacy pages: glass now reads as a clean flat card */
.glass { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-sm); position: relative; }
.glass::before { content: none; }

/* Icon chips */
.ci { width: 44px; height: 44px; border-radius: 12px; background: var(--lime); display: grid; place-items: center; color: var(--black); margin-bottom: 14px; }
.ci svg { width: 21px; height: 21px; }
.card .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--lime); color: var(--black); margin-bottom: 18px; }
.card .ico svg { width: 24px; height: 24px; }
.ck { flex-shrink: 0; width: 22px; height: 22px; border-radius: 7px; background: var(--lime); display: grid; place-items: center; color: var(--black); }
.ck svg { width: 12px; height: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 0.98rem; padding: 14px 26px; border-radius: var(--pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary, .btn--lime { background: var(--lime); color: var(--black); box-shadow: var(--shadow-lime); }
.btn-primary:hover, .btn--lime:hover { transform: translateY(-2px); background: var(--lime-bright); box-shadow: 0 20px 40px -12px rgba(150,200,0,0.7); }
.btn-primary:active, .btn--lime:active { transform: translateY(0) scale(0.99); }
.btn-primary:focus-visible, .btn--lime:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(200,255,0,0.5), var(--shadow-lime); }
.btn--dark, .btn-dark { background: var(--black); color: #fff; }
.btn--dark:hover, .btn-dark:hover { transform: translateY(-2px); background: var(--black-2); box-shadow: var(--shadow); }
.btn-glass, .btn--ghost {
  background: var(--surface); color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-glass:hover, .btn--ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-glass:focus-visible, .btn--ghost:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
/* Ghost on dark heroes */
.btn--ghost-d { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.24); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.btn--ghost-d:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: #04140a; }
.btn-wa:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .3s, box-shadow .3s, backdrop-filter .3s; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  height: var(--nav-h); max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter);
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; letter-spacing: -0.045em; font-size: 1.24rem; color: var(--ink); }
.brand-mark { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; background: var(--lime); color: var(--black); font-weight: 900; font-size: 1.05rem; }
.brand b { color: var(--ink); font-weight: 800; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--body); font-size: 0.92rem; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn-glass { background: transparent; box-shadow: none; border: none; color: var(--ink); padding: 10px 6px; font-weight: 600; }
.nav-cta .btn-glass:hover { transform: none; color: var(--lime-deep); }
.nav-cta .btn-primary { padding: 11px 22px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* Solid bar once scrolled */
.nav.scrolled .nav-inner { }
.nav.scrolled { background: rgba(245,245,245,0.82); -webkit-backdrop-filter: saturate(180%) blur(20px); backdrop-filter: saturate(180%) blur(20px); box-shadow: 0 1px 0 var(--line); }

/* Over a dark cinematic hero: white nav until scrolled */
.nav.on-dark:not(.scrolled) .brand { color: #fff; }
.nav.on-dark:not(.scrolled) .brand b { color: var(--lime); }
.nav.on-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.82); }
.nav.on-dark:not(.scrolled) .nav-links a:hover { color: var(--lime); }
.nav.on-dark:not(.scrolled) .nav-cta .btn-glass { color: #fff; }
.nav.on-dark:not(.scrolled) .nav-cta .btn-glass:hover { color: var(--lime); }
.nav.on-dark:not(.scrolled) .nav-toggle span { background: #fff; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 22px; }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }

/* ============================================================
   SHERO — the signature dark cinematic hero panel (screens 02–07)
   ============================================================ */
.shero {
  position: relative; overflow: hidden; border-radius: var(--r-lg);
  background: var(--black); color: #fff; isolation: isolate;
  min-height: 560px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow);
}
.shero--tall { min-height: 640px; }
.shero__media { position: absolute; inset: 0; z-index: -2; }
.shero__media img { width: 100%; height: 100%; object-fit: cover; }
.shero__media::after { /* lime cinematic grade */
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 78% 20%, rgba(200,255,0,0.16), transparent 55%);
  mix-blend-mode: screen;
}
.shero__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.15) 40%, rgba(10,10,10,0.82) 100%),
              linear-gradient(90deg, rgba(10,10,10,0.6), transparent 60%);
}
.shero__inner { padding: clamp(28px, 5vw, 60px); max-width: 760px; }
.shero__num { position: absolute; right: clamp(20px,4vw,48px); bottom: clamp(16px,3vw,34px); z-index: 1;
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; color: rgba(255,255,255,0.14); letter-spacing: -0.05em; line-height: 1; }
.shero h1, .shero h2 { color: #fff; font-size: clamp(2.3rem, 4.6vw, 3.7rem); letter-spacing: -0.045em; line-height: 1.05; }
.shero .lead { color: var(--d-body); }
.shero__tag { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--pill);
  background: var(--lime); color: var(--black); margin-bottom: 18px; }
.shero .btn-glass { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); color: #fff; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.shero .btn-glass:hover { background: rgba(255,255,255,0.18); }

/* ============================================================
   SCREEN CARD — the deck's signature "chapter" card
   (white rounded card · dark cinematic media band · label pills
    · component body · big number badge).  Reproduces the mockup.
   ============================================================ */
.screen { position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow); overflow: visible; margin-bottom: 26px; }
.screen__media { position: relative; height: clamp(280px, 34vw, 400px); overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0; background: var(--black); }
.screen__media img { width: 100%; height: 100%; object-fit: cover; }
.screen__media::after { content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.30), rgba(10,10,10,0.06) 45%, rgba(10,10,10,0.55));
  pointer-events: none; }
/* Headline can sit over the media (screens 03/04/05) */
.screen__media--over { display: flex; align-items: flex-end; }
.screen__media--over .screen__overlaytext { position: relative; z-index: 2; padding: clamp(22px,3vw,40px); max-width: 640px; }
.screen__media--over h2, .screen__media--over h1 { color: #fff; }
.screen__media--over .lead { color: var(--d-body); }
.screen__label { position: absolute; top: 18px; left: 18px; z-index: 3; display: flex; gap: 8px; align-items: center; }
.tag-lime { display: inline-flex; align-items: center; font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 11px; border-radius: var(--pill); background: var(--lime); color: var(--black); }
.tag-name { display: inline-flex; align-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 6px 12px; border-radius: var(--pill); background: rgba(10,10,10,0.72);
  color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.screen__body { padding: clamp(26px, 3.4vw, 46px); position: relative; }
.screen__headrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
.screen__headrow h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); }
.screen__headrow .lead { margin-top: 12px; }
.screen__num { position: absolute; right: 22px; bottom: 18px; z-index: 4;
  min-width: 72px; height: 72px; padding: 0 6px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); display: grid; place-items: center;
  font-size: 2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; }
.screen__num--onmedia { bottom: -26px; }
@media (max-width: 720px){
  .screen__headrow { flex-direction: column; align-items: flex-start; }
  .screen__num { width: 56px; min-width: 56px; height: 56px; font-size: 1.5rem; right: 16px; bottom: 14px; }
}

/* Page-top hero wrapper spacing (pushes below fixed nav) */
.hero-band { padding: calc(var(--nav-h) + 24px) 0 0; }
.subhero { padding: calc(var(--nav-h) + 70px) 0 40px; text-align: center; }
.subhero h1 { max-width: 940px; margin: 22px auto; }
.subhero .lead { margin: 0 auto 30px; }
.subhero .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PRODUCT / FEATURE GRID (screen 02) — dark tiles
   ============================================================ */
.ptile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ptile {
  position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 190px;
  background: var(--black); color: #fff; padding: 22px; display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.06); transition: transform .3s var(--ease);
}
.ptile:hover { transform: translateY(-4px); }
.ptile__ico { width: 42px; height: 42px; border-radius: 11px; background: var(--lime); color: var(--black); display: grid; place-items: center; }
.ptile__ico svg { width: 21px; height: 21px; }
.ptile h4 { color: #fff; font-size: 1.02rem; }
.ptile p { color: var(--d-muted); font-size: 0.88rem; margin-top: 4px; }
.ptile--lime { background: var(--lime); border-color: transparent; }
.ptile--lime h4, .ptile--lime p { color: var(--black); }
.ptile--lime .ptile__ico { background: var(--black); color: var(--lime); }

/* ============================================================
   SPLIT CAPTURE slider (screen 03)
   ============================================================ */
.splitcap { position: relative; border-radius: var(--r-md); overflow: hidden; }
.splitcap__track { position: relative; height: 12px; border-radius: var(--pill); background: rgba(255,255,255,0.16); overflow: hidden; }
.splitcap__fill { position: absolute; inset: 0 55% 0 0; background: var(--lime); }
.splitcap__handle { position: absolute; top: 50%; left: 45%; transform: translate(-50%,-50%);
  background: var(--lime); color: var(--black); font-weight: 700; font-size: 0.82rem;
  padding: 8px 18px; border-radius: var(--pill); box-shadow: var(--shadow-lime); }

/* ============================================================
   CHAT (screens: hero MiniMe, minime page) — restyled bubbles
   ============================================================ */
.phone { width: 380px; max-width: 100%; margin: 0 auto; padding: 16px; border-radius: 30px; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.phone-top { display: flex; align-items: center; gap: 11px; padding: 8px 10px 14px; border-bottom: 1px solid var(--line-2); }
.phone-top .pic { width: 40px; height: 40px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; color: var(--black); font-weight: 900; }
.phone-top .nm { font-weight: 700; color: var(--ink); font-size: 0.95rem; line-height: 1.2; }
.phone-top .st { font-size: 0.74rem; color: var(--lime-deep); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.chat { min-height: 340px; padding: 16px 6px; display: flex; flex-direction: column; gap: 10px; }
.msg { max-width: 84%; padding: 11px 15px; border-radius: 18px; font-size: 0.92rem; line-height: 1.45; }
.msg.bot { align-self: flex-start; background: #F0F1EC; border: 1px solid var(--line-2); border-bottom-left-radius: 5px; color: var(--ink); }
.msg.user { align-self: flex-end; background: var(--lime); color: var(--black); border-bottom-right-radius: 5px; font-weight: 500; }
.msg.typing { display: inline-flex; gap: 4px; }
.msg.typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: blink 1.2s infinite both; }
.msg.typing i:nth-child(2){ animation-delay:.2s } .msg.typing i:nth-child(3){ animation-delay:.4s }
@keyframes blink { 0%,80%,100%{opacity:.3} 40%{opacity:1} }
.msg .tick { color: var(--lime-deep); font-weight: 800; }
/* Chat over a portrait (screen 04) */
.chathero { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--black); min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(20px,3vw,34px); }
.chathero__media { position: absolute; inset: 0; z-index: -2; }
.chathero__media img { width: 100%; height: 100%; object-fit: cover; }
.chathero__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,10,0.5), transparent 70%); }
.chathero .msg.bot { background: rgba(255,255,255,0.92); }

/* ============================================================
   DASHBOARD (screens 05 growth · 07 demo) — dark data card
   ============================================================ */
.dash { border-radius: var(--r); overflow: hidden; background: var(--black); color: #fff; border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow); }
.dash__head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.dash__title { font-size: 0.86rem; font-weight: 600; color: var(--d-body); }
.dash__chart { padding: 16px 12px 4px; }
.dash__chart svg { width: 100%; height: auto; display: block; }
.dash__row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.dash__stat { background: var(--black); padding: 18px 22px; }
.dash__stat .n { font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.dash__stat .l { font-size: 0.76rem; color: var(--d-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 3px; }
.dash__stat .n .accent, .dash__stat .n em { color: var(--lime); font-style: normal; }

/* KPI tiles (screen 07 footer stats) */
.kpi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.kpi { background: var(--black); color: #fff; border-radius: var(--r-md); padding: 22px 24px; }
.kpi .n { font-size: 2.1rem; font-weight: 800; color: var(--lime); letter-spacing: -0.03em; line-height: 1; }
.kpi .l { font-size: 0.82rem; color: var(--d-muted); margin-top: 8px; }

/* Recent-activity list (demo dashboard) */
.activity { display: flex; flex-direction: column; }
.activity__item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.activity__item:last-child { border-bottom: none; }
.activity__dot { width: 30px; height: 30px; border-radius: 9px; background: rgba(200,255,0,0.16); color: var(--lime); display: grid; place-items: center; flex-shrink: 0; }
.activity__dot svg { width: 15px; height: 15px; }
.activity__t { font-size: 0.9rem; color: #fff; font-weight: 500; }
.activity__s { font-size: 0.78rem; color: var(--d-muted); }

/* ============================================================
   PRICING (screen 06) — 3 tiers, middle featured
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 28px; display: flex; flex-direction: column; }
.tier__name { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.tier__price { font-size: 3rem; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; margin: 14px 0 2px; line-height: 1; }
.tier__price .per { font-size: 0.95rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.tier__desc { color: var(--muted); font-size: 0.92rem; margin-bottom: 20px; }
.tier ul { display: flex; flex-direction: column; gap: 11px; margin: 6px 0 26px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--body); }
.tier .btn { width: 100%; margin-top: auto; }
.tier--featured { background: var(--black); border-color: transparent; color: #fff; box-shadow: var(--shadow); transform: scale(1.02); }
.tier--featured .tier__name { color: var(--lime); }
.tier--featured .tier__price, .tier--featured .tier__price .per { color: #fff; }
.tier--featured .tier__desc { color: var(--d-muted); }
.tier--featured li { color: var(--d-body); }
.tier--featured .tier__badge { display: inline-block; align-self: flex-start; background: var(--lime); color: var(--black); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--pill); margin-bottom: 10px; }

/* ============================================================
   PARTNERS & TEAM (screen: partners)
   ============================================================ */
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px; }
.logos .logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; color: var(--ink); letter-spacing: -0.03em; opacity: 0.72; transition: opacity .2s; }
.logos .logo:hover { opacity: 1; }
.logos .logo svg { width: 26px; height: 26px; }
.team { display: flex; align-items: center; gap: 12px; }
.team img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--surface); margin-left: -12px; box-shadow: var(--shadow-sm); object-fit: cover; }
.team img:first-child { margin-left: 0; }

/* ============================================================
   CONTACT (screen: contact) — text + lime portrait split
   ============================================================ */
.contact-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; border-radius: var(--r-lg); overflow: hidden; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-split__l { padding: clamp(34px, 5vw, 60px); display: flex; flex-direction: column; justify-content: center; }
.contact-split__r { position: relative; background: var(--lime); min-height: 340px; }
.contact-split__r img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: 0.92; }
.contact-mail { font-size: clamp(1.1rem, 2.4vw, 1.7rem); font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }

/* ---------- Metrics (kept for case study/home) ---------- */
.metrics { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.metric { text-align: center; padding: 26px 18px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); }
.metric .m { font-size: 2.2rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.metric .m .u { color: var(--lime-deep); }
.metric .lab { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { border-radius: var(--r); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; padding: 22px 26px; font-weight: 600; font-size: 1.05rem; color: var(--ink); }
.faq-q .pm { font-size: 1.4rem; color: var(--lime-deep); transition: transform .3s; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 26px 22px; color: var(--body); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; padding: 64px 32px; border-radius: var(--r-lg); overflow: hidden; background: var(--black); color: #fff; box-shadow: var(--shadow); position: relative; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: var(--d-body); margin-left: auto; margin-right: auto; }
.cta-band::after { content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(600px 320px at 50% -10%, rgba(200,255,0,0.18), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; }
.cta-band .hero-cta, .cta-band .cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 1; transform: none; }
.reveal-hidden { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-hidden.in { opacity: 1; transform: none; }
.reveal-hidden[data-d="1"]{transition-delay:.08s}.reveal-hidden[data-d="2"]{transition-delay:.16s}.reveal-hidden[data-d="3"]{transition-delay:.24s}
@media (prefers-reduced-motion: reduce) { .reveal-hidden { opacity: 1; transform: none; transition: none; } }

/* ---------- Footer ---------- */
footer { padding: 70px 0 44px; }
.foot-card { padding: 50px 44px; border-radius: var(--r-lg); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.foot-grid h4 { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 14px; font-weight: 700; }
.foot-grid a { display: block; color: var(--body); font-size: 0.94rem; padding: 5px 0; transition: color .2s; }
.foot-grid a:hover { color: var(--lime-deep); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: 0.86rem; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   PREMIUM LAYER — full-bleed cinematic heroes,
   frosted UI overlays, device mockups, chapter bands.
   (cinematic full-bleed reference designs)
   ============================================================ */

/* Chapter/screen label */
.clabel { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime-deep); }
.clabel--ondark { color: var(--lime); }
.clabel--num::before { content: attr(data-n); color: var(--muted); margin-right: 6px; font-variant-numeric: tabular-nums; }

/* Lime rule under a headline */
.lime-rule { width: 120px; height: 4px; background: var(--lime); border-radius: 4px; margin: 26px 0 0; }

/* Full-bleed cinematic hero */
.chero { position: relative; min-height: 82vh; display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--black); color: #fff; padding-bottom: 50px; padding-top: calc(var(--nav-h) + 40px); }
.chero__bg { position: absolute; inset: 0; z-index: 0; }
.chero__bg img { width: 100%; height: 100%; object-fit: cover; }
.chero__scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(10,10,10,0.66) 0%, rgba(10,10,10,0.38) 32%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.92) 100%),
  linear-gradient(90deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.4) 55%, rgba(10,10,10,0.15) 100%); }
.chero .wrap { position: relative; z-index: 2; width: 100%; }
.chero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: end; gap: 40px; }
.chero__copy h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.04em;
  line-height: 1.04; text-wrap: balance; padding-bottom: 0.06em; overflow-wrap: break-word; }
.chero__copy .lead { color: rgba(255,255,255,0.82); margin-top: 22px; max-width: 500px; }
.chero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.chero__foot { position: relative; z-index: 2; margin-top: 40px; display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; }
.chero__progress { flex: 1; height: 3px; background: rgba(255,255,255,0.18); border-radius: 3px; margin: 0 24px; max-width: 620px; position: relative; overflow: hidden; }
.chero__progress::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 34%; background: var(--lime); border-radius: 3px; }
@media (max-width: 900px){ .chero__inner { grid-template-columns: 1fr; } }

/* Frosted glass card (overlay on imagery) */
.frost { border-radius: var(--r); border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10); -webkit-backdrop-filter: saturate(160%) blur(22px); backdrop-filter: saturate(160%) blur(22px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.65); color: #fff; }
.frost--light { background: rgba(255,255,255,0.72); border-color: rgba(255,255,255,0.6); color: var(--ink);
  -webkit-backdrop-filter: saturate(160%) blur(26px); backdrop-filter: saturate(160%) blur(26px); }

/* ---- Shopfront_OS window mockup ---- */
.oswin { border-radius: 16px; overflow: hidden; background: #fff; color: var(--ink);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.6); border: 1px solid var(--line); }
.oswin__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #fff; border-bottom: 1px solid var(--line-2); }
.oswin__dots { display: flex; gap: 6px; }
.oswin__dots i { width: 11px; height: 11px; border-radius: 50%; background: #E2E2DE; }
.oswin__name { font-size: 0.82rem; font-weight: 600; color: var(--muted); margin-left: 6px; }
.oswin__body { display: grid; grid-template-columns: 168px 1fr; min-height: 300px; }
.oswin__side { background: var(--black); padding: 16px 12px; display: flex; flex-direction: column; gap: 3px; }
.oswin__logo { width: 30px; height: 30px; border-radius: 8px; background: var(--lime); display: grid; place-items: center; color: var(--black); font-weight: 900; margin-bottom: 14px; }
.oswin__side a { display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 9px; color: rgba(255,255,255,0.6); font-size: 0.84rem; font-weight: 500; }
.oswin__side a.on { background: var(--lime); color: var(--black); font-weight: 600; }
.oswin__main { padding: 22px 26px; }
.oswin__ey { font-size: 0.74rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.oswin__h { font-size: 1.4rem; font-weight: 700; margin: 2px 0 16px; }
.oswin__big { font-size: 3rem; font-weight: 800; color: var(--lime-deep); letter-spacing: -0.04em; line-height: 1; }
.oswin__sub { font-size: 0.82rem; color: var(--muted); margin: 6px 0 18px; }
.oswin__sub b { color: var(--lime-deep); }
.oswin__lt { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink); margin-bottom: 8px; }
.enq { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-top: 1px solid var(--line-2); }
.enq img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.enq .nm { font-size: 0.84rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.enq .via { font-size: 0.72rem; color: var(--muted); }
.enq .msg2 { margin-left: auto; text-align: right; font-size: 0.74rem; color: var(--muted); max-width: 46%; }
@media (max-width: 560px){ .oswin__body { grid-template-columns: 1fr; } .oswin__side { flex-direction: row; overflow-x: auto; } }

/* ---- WhatsApp phone mockup ---- */
.wa { width: 340px; max-width: 100%; border-radius: 40px; background: #0b141a; padding: 12px 12px 0;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); border: 1px solid rgba(255,255,255,0.08); }
.wa__status { display: flex; justify-content: space-between; align-items: center; padding: 6px 16px 8px; color: #fff; font-size: 0.74rem; font-weight: 600; }
.wa__hdr { display: flex; align-items: center; gap: 11px; padding: 10px 14px; background: #1f2c34; border-radius: 16px 16px 0 0; }
.wa__av { width: 40px; height: 40px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; color: var(--black); font-weight: 900; }
.wa__nm { color: #fff; font-weight: 600; font-size: 0.92rem; line-height: 1.1; }
.wa__on { color: #8fce4a; font-size: 0.74rem; }
.wa__body { background: #0b141a; padding: 16px 12px 14px; display: flex; flex-direction: column; gap: 8px;
  background-image: linear-gradient(rgba(11,20,26,0.94), rgba(11,20,26,0.94)); min-height: 300px; }
.wa__b { max-width: 82%; padding: 8px 12px; border-radius: 10px; font-size: 0.86rem; line-height: 1.4; position: relative; }
.wa__b .t { display: block; font-size: 0.64rem; opacity: 0.6; text-align: right; margin-top: 2px; }
.wa__in { align-self: flex-start; background: #202c33; color: #e9edef; border-top-left-radius: 3px; }
.wa__out { align-self: flex-end; background: #d9fdd3; color: #0b1410; border-top-right-radius: 3px; }
.wa__out .tick { color: #34b7f1; font-weight: 700; }
.wa__card { align-self: stretch; background: #202c33; border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 12px; }
.wa__card .ic { width: 34px; height: 34px; border-radius: 9px; background: var(--lime); display: grid; place-items: center; color: var(--black); }
.wa__card .ct { color: #fff; font-size: 0.86rem; font-weight: 600; }
.wa__card .cs { color: #8696a0; font-size: 0.74rem; }
.wa__inputbar { display: flex; align-items: center; gap: 10px; padding: 10px 12px 14px; }
.wa__inputbar .f { flex: 1; background: #202c33; border-radius: 20px; padding: 9px 14px; color: #8696a0; font-size: 0.82rem; }
.wa__inputbar .mic { width: 38px; height: 38px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; color: var(--black); }

/* ---- Chapter band (full-width split) ---- */
.chapter { position: relative; display: grid; grid-template-columns: 1fr 1fr; min-height: 78vh; align-items: stretch; }
.chapter__panel { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 6vw, 96px); }
.chapter__panel--light { background: var(--canvas-2); }
.chapter__panel--dark { background: var(--black); color: #fff; }
.chapter__panel--media { position: relative; overflow: hidden; padding: 0; }
.chapter__panel--media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.chapter__big { font-size: clamp(2.6rem, 5.4vw, 5rem); font-weight: 700; letter-spacing: -0.045em; line-height: 1.02;
  padding-bottom: 0.08em; overflow-wrap: break-word; }
.chapter__panel--dark .chapter__big { color: #fff; }
.chapter__lede { color: var(--muted); margin-top: 22px; max-width: 420px; }
.chapter__panel--dark .chapter__lede { color: var(--d-body); }
@media (max-width: 860px){ .chapter { grid-template-columns: 1fr; } .chapter__panel--media { min-height: 340px; } }

/* Stat strip / KPI on dark */
.statstrip { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border-radius: var(--r-md); overflow: hidden; }
.statstrip > div { background: var(--surface); padding: 22px 24px; }
.statstrip .n { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; color: var(--ink); }
.statstrip .n em { color: var(--lime-deep); font-style: normal; }
.statstrip .l { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .g-4 { grid-template-columns: repeat(2,1fr); }
  .g-3, .ptile-grid, .price-grid, .kpi-grid, .dash__row { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .contact-split { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta .btn-glass { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-inner { }
  .nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; padding: 18px 26px; gap: 16px; background: rgba(245,245,245,0.96); -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px); border-bottom: 1px solid var(--line); }
  .nav.open.on-dark .nav-links a { color: var(--ink); }
  section { padding: 74px 0; }
}
@media (max-width: 620px) {
  :root { --gutter: 18px; }
  .g-2, .g-4 { grid-template-columns: 1fr; }
  .ptile-grid { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-card { padding: 34px 24px; }
  .shero { min-height: 480px; }
}

/* ============================================================
   AMBIENT + MOTION — living background, cinematic reveals,
   parallax, glow, marquee, animated charts. (global)
   ============================================================ */

/* Living background: drifting lime/teal glow fields + fine grain.
   Sits behind everything on the light canvas; dark heroes cover it. */
body::before {
  content: ''; position: fixed; inset: -20%; z-index: -3; pointer-events: none;
  background:
    radial-gradient(520px 420px at 12% 8%,  rgba(200,255,0,0.16), transparent 60%),
    radial-gradient(560px 480px at 88% 22%, rgba(90,180,120,0.14), transparent 62%),
    radial-gradient(620px 520px at 78% 92%, rgba(200,255,0,0.12), transparent 62%),
    radial-gradient(480px 420px at 8% 88%,  rgba(70,150,110,0.12), transparent 60%);
  filter: saturate(120%);
  animation: bgdrift 30s ease-in-out infinite alternate;
}
@keyframes bgdrift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-2.5%, 1.8%, 0) scale(1.06); }
  100% { transform: translate3d(2.5%, -1.8%, 0) scale(1.03); }
}
body::after { /* fine grain, faded near the top */
  content: ''; position: fixed; inset: 0; z-index: -2; opacity: 0.5; pointer-events: none;
  background-image: radial-gradient(rgba(10,10,10,0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 40%, transparent 85%);
  mask-image: radial-gradient(ellipse 100% 80% at 50% 30%, #000 40%, transparent 85%);
}

/* Scroll progress bar (JS sets --sp) */
.scrollbar { position: fixed; top: 0; left: 0; height: 3px; z-index: 200;
  width: 100%; transform-origin: left; transform: scaleX(var(--sp, 0));
  background: linear-gradient(90deg, var(--lime), #7fd23a); box-shadow: 0 0 12px rgba(200,255,0,0.6); }

/* Cinematic hero image: slow ken-burns drift + parallax (JS sets --py) */
.chero__bg img, .chapter__panel--media img, .screen__media img {
  animation: kenburns 26s ease-in-out infinite alternate;
  will-change: transform;
}
.chero__bg img { transform: translateY(var(--py, 0)); }
@keyframes kenburns { 0% { scale: 1; } 100% { scale: 1.09; } }

/* Reveal — subtle, robust (used site-wide via .reveal) */
.reveal-hidden { opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-hidden.in { opacity: 1; transform: none; }

/* Card hover: lift + lime glow */
.card { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -24px rgba(120,160,20,0.4), var(--shadow); }
.tier { transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier--featured:hover { transform: translateY(-6px) scale(1.02); }

/* Floating device mockups / glass cards */
.oswin, .wa, .frost { animation: floaty 7s ease-in-out infinite; }
.wa { animation-delay: -2s; }
.frost { animation-delay: -4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* Button sheen sweep on hover */
.btn-primary, .btn--lime, .btn-dark { position: relative; overflow: hidden; }
.btn-primary::after, .btn--lime::after, .btn-dark::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn-primary:hover::after, .btn--lime:hover::after { left: 130%; }
.btn-dark:hover::after { left: 130%; background: linear-gradient(100deg, transparent, rgba(200,255,0,0.35), transparent); }

/* Featured tier: clean static lime edge + soft glow (no beam) */
.tier--featured { position: relative; box-shadow: 0 0 0 1.5px var(--lime), 0 30px 60px -28px rgba(120,160,20,0.45), var(--shadow); }

/* Marquee (logos / brands) */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; gap: 56px; align-items: center; white-space: nowrap;
  animation: marquee 26s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Animated line-chart draw (SVG path with .spark) */
.spark { stroke-dasharray: 1200; stroke-dashoffset: 1200; }
.spark.in, .in .spark, .reveal-hidden.in .spark { animation: draw 2.4s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Live pulse dot */
.pulse { position: relative; }
.pulse::before { content: ''; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(200,255,0,0.6); animation: pulsering 2s infinite; }
@keyframes pulsering { 70% { box-shadow: 0 0 0 10px rgba(200,255,0,0); } 100% { box-shadow: 0 0 0 0 rgba(200,255,0,0); } }

@media (prefers-reduced-motion: reduce) {
  body::before, .chero__bg img, .chapter__panel--media img, .screen__media img,
  .oswin, .wa, .frost, .tier--featured::before, .marquee__track { animation: none !important; }
  .reveal-hidden { filter: none; transform: none; }
  .chero__bg img { scale: 1; }
}

/* Stage-1 scroll hint — the scroll cue flashes lime on a loop to invite scroll */
.chero__foot span:last-child { animation: cueFlash 2.6s ease-in-out infinite; }
@keyframes cueFlash { 0%, 100% { opacity: 0.5; } 45% { opacity: 1; color: var(--lime); } }
@media (prefers-reduced-motion: reduce) { .chero__foot span:last-child { animation: none; } }
