/* ============================================================================
   Fixiom marketing site — shared stylesheet
   Design language = the real app (lib/theme.ts, v3 "Aetheric Obsidian" light):
   off-white ground, charcoal structure ink, white surfaces, ONE amber accent
   used functionally (EKG pulse, Diagnose orb, live/active states — never
   decorative). Fonts mirror the app: Orbitron (headers / big-letter identity
   ONLY), Hanken Grotesk (body), JetBrains Mono (labels + data).
   Self-hosted variable fonts in /fonts. Committed LIGHT theme (the app is
   light-only).
   ============================================================================ */

@font-face {
  font-family: "Orbitron";
  src: url("/fonts/orbitron-var.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/fonts/jetbrains-mono-var.woff2") format("woff2");
  font-weight: 100 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  /* palette — lib/theme.ts values */
  --bg: #F8FAFA;
  --surface: #FFFFFF;
  --raised: #FCFDFD;
  --surface2: #E6E8E9;
  --ink: #0F1419;
  --text: #191C1D;
  --muted: #536471;
  --faint: #7F848B;
  --data: #42474D;
  --line: #C5C6CB;
  --line-soft: #E4E7E8;
  --amber: #F59E0B;
  --amber-edge: #B8914E;
  --amber-text: #78581A;
  --success: #16A34A;
  --danger: #BA1A1A;
  --user-bubble: #171C21;
  --chip-bg: rgba(15, 20, 25, 0.05);
  --chip-border: rgba(15, 20, 25, 0.12);
  --glyph: #44474A;
  --track: rgba(15, 20, 25, 0.10);
  --warm-fade: rgba(245, 158, 11, 0.14);

  --font-display: "Orbitron", "Segoe UI", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", -apple-system, "Segoe UI", system-ui, Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", "Cascadia Code", Consolas, monospace;

  --maxw: 1120px;
  --measure: 42em;
  --product-shadow: 0 2px 6px rgba(15,20,25,0.05), 0 14px 28px -8px rgba(15,20,25,0.10), 0 44px 84px -30px rgba(15,20,25,0.32);
  --card-shadow: 0 8px 26px -14px rgba(15,20,25,0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  font-variant-numeric: tabular-nums;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
::selection { background: rgba(245, 158, 11, 0.22); }
a:focus-visible, .btn:focus-visible, summary:focus-visible, .store-btn:focus-visible, button:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 6px;
}

.atmosphere {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 620px at 88% 2%, rgba(83,100,113,0.09), transparent 60%),
    radial-gradient(760px 620px at 3% 0%, rgba(245,158,11,0.045), transparent 55%),
    radial-gradient(900px 720px at 14% 98%, rgba(245,158,11,0.05), transparent 62%),
    linear-gradient(180deg, rgba(226,230,232,0.5), rgba(226,230,232,0) 32%), var(--bg);
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 18px;
}
h1, h2 { font-family: var(--font-display); color: var(--ink); font-weight: 700; letter-spacing: 0.005em; }
h1 { font-size: clamp(27px, 4.2vw, 46px); line-height: 1.12; margin: 0 0 20px; text-wrap: balance; }
h2 { font-size: clamp(21px, 2.6vw, 31px); line-height: 1.16; margin: 0 0 14px; text-wrap: balance; }
h3 { font-family: var(--font-body); font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--muted); margin: 0; max-width: var(--measure); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
  background: rgba(248, 250, 250, 0.78); border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 22px; width: auto; display: block; }
.header-nav { display: flex; align-items: center; gap: 26px; }
.navlink {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color .16s ease; white-space: nowrap;
}
.navlink:hover, .navlink[aria-current="page"] { color: var(--ink); }
.nav-toggle { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 13px 22px; border-radius: 12px; text-decoration: none; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(15,20,25,0.16); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(15,20,25,0.24); }
.btn-ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-text { color: var(--ink); background: transparent; padding: 13px 8px; }
.btn-text:hover { color: var(--amber-text); }
.btn.sm { padding: 9px 16px; font-size: 14px; }

/* ---------- chips ---------- */
.tagchip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--glyph); background: var(--chip-bg); border: 1px solid var(--chip-border);
  border-radius: 999px; padding: 5px 11px;
}
.tagchip svg { width: 13px; height: 13px; }
.tagchip.live { color: var(--amber-text); background: rgba(245,158,11,0.10); border-color: rgba(245,158,11,0.32); }
.tagchip .opt { color: var(--faint); }

/* ---------- sections ---------- */
section.block { padding: clamp(58px, 8vw, 104px) 0; position: relative; }
section.alt { background: linear-gradient(180deg, rgba(236,239,240,0.7), rgba(244,246,246,0.5)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section-head { max-width: var(--measure); margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 17px; color: var(--muted); margin: 0; }

/* ---------- hero ---------- */
.hero { position: relative; }
.hero-wave {
  position: absolute; top: 88px; left: 0; right: 0; height: 300px; z-index: 0; pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, #000 42%, transparent 96%);
  mask-image: linear-gradient(180deg, #000 42%, transparent 96%);
}
.hero-wave svg { width: 100%; height: 100%; }
.hero .wrap {
  position: relative; z-index: 1; display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 48px; align-items: center; padding-top: 66px; padding-bottom: 84px;
}
.hero-cta { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 30px; }
.microline {
  margin-top: 18px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  color: var(--faint); display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.microline .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); flex-shrink: 0; }
.microline b { color: var(--amber-text); font-weight: 600; }

.sweep { stroke-dasharray: 60 1400; stroke-dashoffset: 1460; animation: sweep 4.5s linear infinite; }
@keyframes sweep { to { stroke-dashoffset: 0; } }

/* ---------- outcome strip ---------- */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.outcome {
  display: flex; align-items: center; gap: 13px; background: var(--surface);
  border: 1px solid var(--line-soft); border-radius: 14px; padding: 18px 20px;
}
.outcome .oc-ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  background: var(--chip-bg); border: 1px solid var(--chip-border);
  display: grid; place-items: center;
}
.outcome .oc-ic svg { width: 19px; height: 19px; stroke: var(--glyph); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.outcome p { margin: 0; font-size: 14.5px; color: var(--muted); line-height: 1.35; }
.outcome p b { display: block; color: var(--ink); font-size: 15px; letter-spacing: -0.01em; }

/* ---------- phone mockup ---------- */
.phone-stage { position: relative; display: flex; justify-content: center; }
.phone { width: 318px; border-radius: 44px; padding: 11px; background: linear-gradient(158deg, #262b30, #0d1216); box-shadow: var(--product-shadow); }
.screen { border-radius: 33px; overflow: hidden; background: var(--bg); position: relative; height: 624px; }
.screen-wave { position: absolute; top: 16px; left: 0; right: 0; height: 90px; opacity: 0.9; overflow: hidden; -webkit-mask-image: linear-gradient(180deg,#000 40%,transparent); mask-image: linear-gradient(180deg,#000 40%,transparent); }
.screen-wave svg { width: 200%; height: 100%; animation: scroller 9s linear infinite; }
@keyframes scroller { to { transform: translateX(-50%); } }
.screen-inner { position: relative; z-index: 1; padding: 15px 18px 0; height: 100%; display: flex; flex-direction: column; }
.notch { width: 44px; height: 5px; border-radius: 3px; background: rgba(15,20,25,0.16); margin: 0 auto 15px; }
.s-nav { display: flex; align-items: center; margin-bottom: 24px; }
.s-nav img { height: 15px; width: auto; }
.s-title { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: 0.01em; color: var(--ink); margin-bottom: 8px; }
.s-sub { font-size: 12.5px; line-height: 1.42; color: var(--muted); margin-bottom: 16px; }
.s-chip { align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; border: 1px dashed var(--line); border-radius: 8px; padding: 6px 11px; font-size: 11.5px; color: var(--muted); margin-bottom: 14px; }
.s-chip svg { width: 12px; height: 12px; }
.s-composer { border-radius: 16px; background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 4px 18px rgba(15,20,25,0.05); padding: 14px; margin-bottom: 22px; }
.s-composer .ph { font-size: 12.5px; color: #90959B; min-height: 46px; }
.s-composer .row { display: flex; justify-content: flex-end; align-items: center; gap: 10px; margin-top: 6px; }
.s-mic svg { width: 17px; height: 17px; }
.s-send { width: 40px; height: 40px; border-radius: 50%; background: var(--surface); border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 2px 6px rgba(15,20,25,0.12); display: grid; place-items: center; }
.s-send svg { width: 19px; height: 19px; }
.s-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.18em; color: var(--muted); opacity: 0.75; margin-bottom: 10px; }
.s-vcard { display: flex; align-items: center; gap: 10px; padding: 13px 15px; border-radius: 12px; background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.9); box-shadow: 0 4px 18px rgba(15,20,25,0.05); }
.s-vdot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.s-vname { font-weight: 700; font-size: 12.5px; color: var(--ink); }
.s-tabs { margin-top: auto; height: 64px; position: relative; border-top: 1px solid rgba(255,255,255,0.9); background: rgba(255,255,255,0.55); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: flex; align-items: flex-start; justify-content: space-around; padding-top: 9px; margin: 0 -18px; }
.s-tab { display: flex; flex-direction: column; align-items: center; gap: 4px; width: 20%; }
.s-tab svg { width: 19px; height: 19px; color: var(--faint); }
.s-tab span { font-family: var(--font-mono); font-size: 8px; color: var(--faint); }
.s-orb-slot { width: 20%; display: flex; flex-direction: column; align-items: center; }
.s-orb { width: 52px; height: 52px; border-radius: 50%; margin-top: -25px; background: var(--amber); display: grid; place-items: center; box-shadow: 0 8px 16px rgba(245,158,11,0.4); }
.s-orb img { width: 22px; height: 22px; object-fit: contain; }
.s-orb-label { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 7.5px; color: var(--ink); margin-top: 3px; }

/* ---------- two ways / demo chat ---------- */
.ways { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.way { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 20px; padding: 26px; box-shadow: var(--card-shadow); }
.way.live { border-color: rgba(245,158,11,0.28); }
.way-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.way h3 { font-size: 20px; letter-spacing: -0.02em; margin: 14px 0 8px; }
.way > p { margin: 0 0 18px; color: var(--muted); font-size: 15px; }
.demo { border-top: 1px dashed var(--line-soft); padding-top: 16px; }
.demo .q { display: flex; justify-content: flex-end; margin-bottom: 10px; }
.demo .q span { background: var(--user-bubble); color: #fff; border-radius: 13px 13px 4px 13px; padding: 9px 13px; font-size: 13px; max-width: 88%; }
.demo .a { background: var(--raised); border: 1px solid var(--line-soft); border-radius: 13px 13px 13px 4px; padding: 12px 14px; font-size: 13px; color: var(--text); line-height: 1.5; }
.demo .a .data { font-family: var(--font-mono); font-weight: 600; color: var(--ink); }
.demo .a.flag { border-color: rgba(245,158,11,0.4); border-left: 3px solid var(--amber); background: linear-gradient(180deg, rgba(245,158,11,0.06), rgba(245,158,11,0.02)); margin-top: 8px; }
.demo .mtag { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; display: inline-flex; align-items: center; gap: 6px; }
.demo .a.flag .mtag { color: var(--amber-text); }
.demo .mtag svg { width: 12px; height: 12px; }
.gauges { margin: 11px 0 2px; display: grid; gap: 7px; }
.gauge { display: grid; grid-template-columns: 62px 1fr 52px; align-items: center; gap: 9px; }
.gauge .g-lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; color: var(--muted); }
.gauge .g-track { display: block; height: 6px; background: var(--track); border-radius: 3px; overflow: hidden; }
.gauge .g-fill { display: block; height: 100%; background: var(--amber); border-radius: 3px; }
.gauge .g-val { font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--amber-text); text-align: right; }

/* ---------- statement band ---------- */
.statement { text-align: center; }
.statement .big {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(25px, 4.4vw, 48px); line-height: 1.12; letter-spacing: 0.005em;
  color: var(--ink); margin: 0 auto 18px; max-width: 21ch; text-wrap: balance;
}
.statement .big em { font-style: normal; color: var(--amber-text); }
.statement p { max-width: 36em; margin: 0 auto 26px; color: var(--muted); font-size: 17px; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.step { position: relative; padding: 26px 26px 26px 0; }
.step .n { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: #fff; background: var(--ink); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 18px; }
.step.opt .n { background: var(--amber); }
.step h3 { font-size: 18px; letter-spacing: -0.02em; margin: 0 0 8px; display: flex; align-items: center; gap: 8px; }
.step h3 .o { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--amber-text); border: 1px solid rgba(245,158,11,0.4); border-radius: 999px; padding: 2px 7px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 42px; right: 20px; width: 16px; height: 1px; background: var(--line); }

/* ---------- feature grid ---------- */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 14px; padding: 24px; }
.ichip { width: 42px; height: 42px; border-radius: 12px; background: var(--chip-bg); border: 1px solid var(--chip-border); display: grid; place-items: center; margin-bottom: 18px; }
.ichip svg { width: 21px; height: 21px; stroke: var(--glyph); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 16px; margin: 0 0 6px; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- live section ---------- */
.live-sec .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.live-copy .chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.lchip { font-family: var(--font-mono); font-size: 12px; color: var(--ink); background: var(--surface); border: 1px solid var(--line-soft); border-radius: 999px; padding: 8px 14px; display: inline-flex; align-items: center; gap: 7px; }
.lchip .d { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.free-note { margin-top: 20px; display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); background: rgba(22,163,74,0.08); border: 1px solid rgba(22,163,74,0.28); border-radius: 10px; padding: 10px 14px; }
.free-note svg { width: 16px; height: 16px; stroke: var(--success); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.live-phone { display: flex; justify-content: center; }
.live-screen-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: 0.01em; color: var(--ink); margin-bottom: 3px; }
.live-screen-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--amber-text); display: inline-flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.live-screen-sub .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 0 rgba(245,158,11,.5); animation: pulse 2.2s infinite; }
.pid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.pid { background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.9); border-radius: 12px; padding: 11px 13px; box-shadow: 0 4px 14px rgba(15,20,25,0.04); }
.pid .k { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); }
.pid .v { font-family: var(--font-mono); font-size: 21px; font-weight: 600; color: var(--ink); display: flex; align-items: baseline; gap: 3px; }
.pid .v small { font-size: 10px; color: var(--muted); font-weight: 400; }
.pid.flag .v { color: var(--amber-text); }
.pid .bar { height: 4px; background: var(--track); border-radius: 2px; margin-top: 8px; overflow: hidden; }
.pid .bar i { display: block; height: 100%; background: var(--amber); border-radius: 2px; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(245,158,11,.5); } 70% { box-shadow: 0 0 0 8px rgba(245,158,11,0); } 100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); } }

/* ---------- honesty / proof section ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.proof { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; padding: 26px; box-shadow: var(--card-shadow); }
.proof .p-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.proof .p-head .ichip { margin-bottom: 0; }
.proof h3 { font-size: 17px; margin: 0; }
.proof p { margin: 0; color: var(--muted); font-size: 14.5px; }
.proof p b { color: var(--ink); font-weight: 600; }
.proof .contrast { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line-soft); font-size: 13px; color: var(--faint); }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
details { border-bottom: 1px solid var(--line-soft); }
summary { cursor: pointer; list-style: none; padding: 20px 4px; font-weight: 600; font-size: 17px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
summary::-webkit-details-marker { display: none; }
summary .chev { font-family: var(--font-mono); color: var(--muted); font-weight: 400; transition: transform .2s ease; flex-shrink: 0; }
details[open] summary .chev { transform: rotate(45deg); }
details p, details ul { margin: 0 4px 20px; color: var(--muted); font-size: 15.5px; }

/* ---------- download band ---------- */
.download { background: var(--ink); color: #EEF1F1; padding: clamp(62px, 8.5vw, 104px) 0; position: relative; overflow: hidden; }
.download::before { content: ""; position: absolute; top: -40%; right: -10%; width: 60%; height: 180%; background: radial-gradient(closest-side, rgba(245,158,11,0.12), transparent 70%); pointer-events: none; }
.download .wrap { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center; }
.download .eyebrow { color: #C9A76A; }
.download h2 { color: #fff; }
.download p.lead { color: #AEB6B8; margin-top: 12px; }
.stores { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.store-btn { position: relative; display: inline-flex; align-items: center; gap: 12px; background: #fff; color: var(--ink); text-decoration: none; padding: 11px 20px; border-radius: 13px; transition: transform .16s ease; }
.store-btn:hover { transform: translateY(-1px); }
.store-btn svg { width: 22px; height: 22px; fill: var(--ink); }
.store-btn .st { display: flex; flex-direction: column; line-height: 1.15; }
.store-btn .st small { font-size: 10px; letter-spacing: 0.04em; opacity: 0.7; font-family: var(--font-mono); text-transform: uppercase; }
.store-btn .st b { font-size: 15px; font-weight: 600; }
.store-btn .soon-tag { position: absolute; top: -9px; right: -6px; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.08em; background: var(--amber); color: #1B1F22; border-radius: 999px; padding: 3px 8px; font-weight: 600; }
.store-note { margin-top: 18px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.03em; color: #7E8688; }
.qr-panel { text-align: center; }
.qr-frame { background: #fff; border-radius: 18px; padding: 15px; box-shadow: 0 16px 40px -12px rgba(0,0,0,0.45); display: inline-block; }
.qr-frame img { display: block; width: 168px; height: 168px; image-rendering: pixelated; }
.qr-cap { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #C7CDCE; margin-top: 14px; }
.qr-sub { font-family: var(--font-mono); font-size: 10px; color: #7E8688; margin-top: 4px; }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line-soft); background: rgba(242,244,244,0.55); padding: 48px 0 40px; }
.foot-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; margin-bottom: 32px; }
.foot-brand { max-width: 26em; }
.foot-brand img { height: 20px; width: auto; }
.foot-brand p { color: var(--muted); font-size: 14px; margin: 14px 0 0; }
.foot-links { display: flex; gap: 44px; flex-wrap: wrap; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; font-weight: 500; }
.foot-col a { display: block; color: var(--muted); text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.foot-col a:hover { color: var(--ink); }
.foot-bottom { border-top: 1px solid var(--line-soft); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.03em; color: var(--faint); }

/* ---------- page hero (subpages) ---------- */
.page-hero { padding: clamp(44px, 6vw, 72px) 0 clamp(26px, 4vw, 44px); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero .lead { max-width: 46em; }

/* ---------- doc pages (legal / capabilities) ---------- */
.doc { max-width: 780px; margin: 0 auto; padding-bottom: clamp(60px, 8vw, 100px); }
.doc .updated { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--faint); margin-bottom: 34px; }
.doc h2 { font-family: var(--font-body); font-weight: 700; font-size: 22px; letter-spacing: -0.015em; margin: 42px 0 12px; }
.doc h3 { font-size: 17px; margin: 28px 0 8px; }
.doc p, .doc li { color: var(--text); font-size: 15.5px; line-height: 1.65; }
.doc p { margin: 0 0 14px; }
.doc ul { padding-left: 22px; margin: 0 0 16px; }
.doc li { margin-bottom: 8px; }
.doc li b, .doc p b { color: var(--ink); }
.doc .note { background: var(--surface); border: 1px solid var(--line-soft); border-left: 3px solid var(--amber); border-radius: 10px; padding: 14px 16px; font-size: 14.5px; color: var(--muted); margin: 18px 0; }
.doc .callout-safety { background: #FFF7ED; border: 1px solid rgba(245,158,11,0.4); border-radius: 12px; padding: 18px 20px; margin: 18px 0; }
.doc .callout-safety p { margin: 0; color: var(--amber-text); font-weight: 500; }
.doc a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.doc hr { border: 0; border-top: 1px solid var(--line-soft); margin: 36px 0; }

/* ---------- guide page ---------- */
.guide-toc { display: flex; flex-wrap: wrap; gap: 9px; margin: 6px 0 12px; }
.guide-toc a { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); text-decoration: none; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 999px; padding: 8px 14px; transition: color .16s, border-color .16s; }
.guide-toc a:hover { color: var(--ink); border-color: var(--line); }
.gsec { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--line-soft); }
.gsec:first-of-type { border-top: 0; }
.gsec.rev .gviz { order: -1; }
.gsec .gnum { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: #fff; background: var(--ink); width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; margin-bottom: 16px; }
.gsec h2 { font-size: clamp(19px, 2.2vw, 26px); }
.gsec p { color: var(--muted); font-size: 15.5px; margin: 0 0 12px; }
.gsec p b, .gsec li b { color: var(--ink); font-weight: 600; }
.gsec ul { padding-left: 20px; color: var(--muted); font-size: 15px; margin: 0 0 12px; }
.gsec li { margin-bottom: 7px; }
.gviz { display: flex; justify-content: center; }
.gcard { width: 100%; max-width: 400px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: 18px; box-shadow: var(--card-shadow); padding: 20px; }
.gcard .gc-head { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.gstep-tip { border-left: 3px solid var(--amber); background: linear-gradient(180deg, rgba(245,158,11,0.05), rgba(245,158,11,0.01)); border-radius: 8px; padding: 10px 14px; font-size: 14px; color: var(--muted); margin-top: 14px; }
.gstep-tip b { color: var(--amber-text); }

/* mini mock rows used in guide cards */
.mrow { display: flex; align-items: center; gap: 11px; padding: 11px 12px; border: 1px solid var(--line-soft); border-radius: 11px; margin-bottom: 9px; background: var(--raised); }
.mrow:last-child { margin-bottom: 0; }
.mrow .mic { width: 32px; height: 32px; border-radius: 9px; background: var(--chip-bg); border: 1px solid var(--chip-border); display: grid; place-items: center; flex-shrink: 0; }
.mrow .mic svg { width: 16px; height: 16px; stroke: var(--glyph); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mrow .mt { font-size: 13.5px; color: var(--ink); font-weight: 600; line-height: 1.25; }
.mrow .ms { font-size: 12px; color: var(--muted); line-height: 1.35; }
.mrow .badge { margin-left: auto; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-text); background: rgba(245,158,11,0.10); border: 1px solid rgba(245,158,11,0.32); border-radius: 999px; padding: 3px 8px; flex-shrink: 0; }
.mrow .badge.free { color: var(--success); background: rgba(22,163,74,0.08); border-color: rgba(22,163,74,0.3); }

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; margin-bottom: 20px; }
.plan { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; box-shadow: var(--card-shadow); }
.plan.hot { border-color: rgba(245,158,11,0.45); position: relative; }
.plan.hot .hot-tag { position: absolute; top: -11px; left: 22px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; background: var(--amber); color: #1B1F22; font-weight: 600; border-radius: 999px; padding: 4px 10px; }
.plan h3 { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; margin: 0 0 14px; }
.plan .amount { font-family: var(--font-mono); font-weight: 600; font-size: 34px; color: var(--ink); line-height: 1; }
.plan .amount small { font-size: 13px; color: var(--muted); font-weight: 400; }
.plan .annual { font-family: var(--font-mono); font-size: 11.5px; color: var(--faint); margin-top: 6px; }
.plan ul { list-style: none; padding: 0; margin: 18px 0 0; }
.plan li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--muted); margin-bottom: 10px; }
.plan li svg { width: 15px; height: 15px; stroke: var(--success); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 3px; }
.plan li b { color: var(--ink); font-weight: 600; }
.plan .fineline { margin-top: auto; padding-top: 16px; font-size: 12.5px; color: var(--faint); }
.topups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.topup { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 13px; padding: 16px 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.topup .t-cr { font-family: var(--font-mono); font-weight: 600; font-size: 17px; color: var(--ink); }
.topup .t-pr { font-family: var(--font-mono); font-size: 14px; color: var(--muted); }
.price-notes { max-width: 760px; margin-top: 26px; }
.price-notes p { font-size: 13.5px; color: var(--faint); margin: 0 0 8px; }

/* ---------- support ---------- */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 8px; }
.support-card { background: var(--surface); border: 1px solid var(--line-soft); border-radius: 16px; padding: 24px; }
.support-card h3 { margin: 0 0 8px; font-size: 17px; }
.support-card p { margin: 0 0 10px; color: var(--muted); font-size: 14.5px; }
.support-card a.mail { font-family: var(--font-mono); font-size: 15px; color: var(--ink); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s cubic-bezier(.2,.6,.2,1), transform .6s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 44px; padding-bottom: 52px; }
  .phone-stage { order: 2; }
  .outcomes { grid-template-columns: 1fr; }
  .ways, .steps, .features-grid, .proof-grid, .price-grid, .topups, .support-grid { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .step { padding: 20px 0; }
  .live-sec .wrap { grid-template-columns: 1fr; gap: 36px; }
  .live-phone { order: 2; }
  .download .wrap { grid-template-columns: 1fr; gap: 34px; }
  .qr-panel { justify-self: start; }
  .gsec { grid-template-columns: 1fr; gap: 26px; }
  .gsec.rev .gviz { order: 0; }

  /* mobile nav */
  .nav-toggle { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line-soft); background: var(--surface); border-radius: 10px; cursor: pointer; }
  .nav-toggle svg { width: 19px; height: 19px; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; fill: none; }
  .header-nav { position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(248,250,250,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--line-soft); padding: 8px 24px 18px; display: none; }
  .header-nav.open { display: flex; }
  .header-nav .navlink { padding: 13px 2px; font-size: 13px; border-bottom: 1px solid var(--line-soft); }
  .header-nav .navlink:last-of-type { border-bottom: 0; }
  .header-nav .btn { margin-top: 10px; }
}
@media (max-width: 560px) {
  .pid-grid { grid-template-columns: 1fr 1fr; }
  .phone { width: 292px; }
  .screen { height: 590px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sweep { animation: none; stroke-dashoffset: 0; stroke-dasharray: none; opacity: 0; }
  .screen-wave svg { animation: none; }
  .pulse, .live-screen-sub .pulse { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .store-btn { transition: none; }
}
