/* ============================================================
   App Pricing Manager — landing
   Black & gold fintech editorial (the InelQ direction):
   near-black warm ground, white display type with ONE gold line,
   gold pill buttons, floating dark product cards with a gold chart
   in the hero. The app window ships in the app's own dark theme;
   its blue stays — that's the product's truth.
   Type: native SF stack + SF Mono (money voice).
   ============================================================ */

:root {
  color-scheme: dark;
  --bg: #0b0b0a;
  --panel: #141413;
  --card: #161615;
  --card-2: #1c1c1a;
  --t1: rgba(255, 255, 255, 0.95);
  --t2: rgba(255, 255, 255, 0.60);
  --t3: rgba(255, 255, 255, 0.38);
  --line: rgba(255, 255, 255, 0.10);
  --line-soft: rgba(255, 255, 255, 0.07);
  --gold: #f5c542;
  --gold-deep: #e8b429;
  --gold-ink: #1f1700;
  --green: #7ce3a8;
  --red: #ff8a80;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Cascadia Code", "JetBrains Mono", Menlo, Consolas, monospace;
  --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.4), 0 24px 60px -20px rgba(0, 0, 0, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--t1);
  background:
    radial-gradient(1500px 800px at 50% -240px, rgba(245, 197, 66, 0.16), transparent 70%),
    radial-gradient(2300px 1250px at 50% -420px, rgba(255, 250, 235, 0.07), transparent 65%),
    radial-gradient(1000px 600px at 78% -80px, rgba(245, 197, 66, 0.05), transparent 68%),
    var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Engineering graph grid — real graph-paper hierarchy: solid hairlines
   both ways, every 4th line a touch brighter, a sparse gold "price level"
   tick staggered per row (assets/techgrid.svg, 140px cells — the 1120px
   content grid is exactly 8 cells). Sits above the body glow (a child
   always paints over its parent's background) and below all content;
   glass cards frost it. (Film grain was tried and reverted — the grid won.) */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: url("assets/techgrid.svg?v=2") repeat;
  background-size: 560px 560px;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
b, strong { font-weight: 600; }

::selection { background: var(--gold); color: var(--gold-ink); }

:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 3px;
  border-radius: 8px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip {
  position: fixed; top: -48px; left: 16px; z-index: 100;
  background: var(--gold); color: var(--gold-ink); padding: 10px 16px;
  border-radius: 0 0 12px 12px; font-size: 13px; font-weight: 600;
  transition: top 0.2s;
}
.skip:focus { top: 0; }

/* ---------- shared ---------- */

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t2);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex: none;
  box-shadow: 0 0 10px rgba(245, 197, 66, 0.7);
}

.section { max-width: 1120px; margin: 0 auto; padding: 128px 24px 0; position: relative; z-index: 1; }
[id] { scroll-margin-top: 76px; }
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.wide { max-width: none; }
.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 680; letter-spacing: -0.028em; line-height: 1.12;
  margin: 16px 0 0;
  color: var(--t1);
}
h1 .dim, h2 .dim { color: var(--t3); }
h1 .gold, .gnum.gold { color: var(--gold); }
.section-lede { margin-top: 14px; font-size: 15.5px; color: var(--t2); max-width: 560px; }

/* buttons — gold pills with arrows */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 48px; padding: 0 26px; border-radius: 14px;
  font-size: 14.5px; font-weight: 650; letter-spacing: -0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn-gold {
  background: linear-gradient(180deg, #f8cf5a, var(--gold-deep));
  color: var(--gold-ink);
  box-shadow: 0 12px 30px -10px rgba(245, 197, 66, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -10px rgba(245, 197, 66, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35); }
.btn-gold:active { transform: translateY(0); }
.btn-line {
  background: transparent; color: var(--t1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}
.btn-line:hover { background: rgba(255, 255, 255, 0.05); transform: translateY(-1px); }
.btn-sm { height: 38px; padding: 0 18px; font-size: 13px; border-radius: 11px; }
.btn-lg { height: 54px; padding: 0 30px; font-size: 15px; border-radius: 16px; }

/* ---------- nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 10, 0.65);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}
.nav.scrolled { border-bottom-color: var(--line-soft); background: rgba(11, 11, 10, 0.85); }
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 66px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; letter-spacing: -0.01em; justify-self: start; color: var(--t1); }
.brand img { border-radius: 7px; }
.nav-links { display: flex; gap: 30px; justify-self: center; }
.nav-links a { font-size: 13.5px; font-weight: 500; color: var(--t2); transition: color 0.15s; }
.nav-links a:hover { color: var(--t1); }
.nav-actions { justify-self: end; }

/* ---------- hero — copy left, floating product art right ---------- */

.hero { position: relative; padding: 44px 24px 0; }
.hero-grid {
  max-width: 1072px; margin: 0 auto;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  align-items: center; gap: 40px;
}

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  height: 34px; padding: 0 16px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-size: 12.5px; font-weight: 500; color: var(--t1);
}
.hero-pill i {
  width: 7px; height: 7px; border-radius: 50%; flex: none;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(245, 197, 66, 0.8);
}

.hero h1 {
  margin-top: 26px;
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 740; letter-spacing: -0.033em; line-height: 1.04;
  color: var(--t1);
}
.h1-count { font-variant-numeric: tabular-nums; }

.lede {
  margin: 22px 0 0; max-width: 460px;
  font-size: 15.5px; line-height: 1.7; color: var(--t2);
}

.cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.trust {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-top: 22px;
  font-size: 13px; color: var(--t2);
}
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust svg { color: var(--gold); flex: none; }
.trust i { font-style: normal; color: var(--t3); }

/* the floating art */

.heroart { position: relative; height: 500px; }

.acard {
  position: absolute;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.acard.forecast {
  left: 140px; top: 56px; width: 396px; padding: 22px 24px 18px;
  transform: rotate(2.5deg);
}
.ac-label { font-size: 12.5px; color: var(--t2); }
.ac-big {
  margin-top: 4px;
  font-size: 40px; font-weight: 720; letter-spacing: -0.02em; line-height: 1.1;
  color: var(--t1); font-variant-numeric: tabular-nums;
}
.ac-big span { font-size: 17px; font-weight: 500; color: var(--t3); }
.ac-sub { margin-top: 2px; font-family: var(--mono); font-size: 10.5px; color: var(--t3); }
.ac-chart { width: 100%; height: 96px; margin-top: 10px; }
.ac-line { fill: none; stroke: var(--gold); stroke-width: 2.4; stroke-linecap: round; }
.ac-glow { fill: none; stroke: rgba(245, 197, 66, 0.28); stroke-width: 7; stroke-linecap: round; filter: blur(4px); }
.gold-dot-btn {
  position: absolute; top: 18px; right: 18px;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(180deg, #f8cf5a, var(--gold-deep));
  color: var(--gold-ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -6px rgba(245, 197, 66, 0.5);
}

.acard.mini {
  left: 56px; top: 6px; padding: 0 16px; height: 52px;
  display: flex; align-items: center; gap: 10px;
  transform: rotate(-3.5deg);
  white-space: nowrap;
}
.acard.mini em { font-style: normal; font-size: 16px; }
.acard.mini b { font-size: 13px; font-weight: 600; color: var(--t1); }
.mini-chip {
  font-family: var(--mono); font-size: 9.5px; font-weight: 600; color: var(--t3);
  background: rgba(255, 255, 255, 0.07); border-radius: 999px; padding: 1px 7px;
}
.mini-price { font-family: var(--mono); font-size: 12.5px; font-weight: 650; color: var(--gold); }

.acard.toast {
  left: 44px; bottom: 104px; width: 330px; padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  transform: rotate(-2deg);
}
.gold-dot-btn.up { position: static; flex: none; }
.toast-title { font-size: 14.5px; font-weight: 650; color: var(--t1); display: flex; align-items: baseline; gap: 10px; }
.toast-title span { font-family: var(--mono); font-size: 10.5px; font-weight: 500; color: var(--t3); }
.toast-sub { font-size: 12px; color: var(--t2); margin-top: 1px; }

/* ============================================================
   THE WINDOW — the app's dark theme (#1C1C21)
   ============================================================ */

.stage {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 56px auto 0; padding: 0 24px;
}

.window {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  border-radius: 30px; padding: 10px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.13),
    0 60px 120px -30px rgba(0, 0, 0, 0.85);
}

.win-panel {
  display: flex; align-items: stretch;
  background: #1c1c21;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 21px;
  overflow: hidden;
  min-height: 560px;
}

/* sidebar pill */

.win-side {
  flex: none; width: 78px; margin: 9px;
  background: #26262a;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 0 14px;
}
.lights { display: flex; gap: 6px; margin-bottom: 26px; }
.lights i { width: 11px; height: 11px; border-radius: 50%; }
.lights i:nth-child(1) { background: #ff5f57; }
.lights i:nth-child(2) { background: #febc2e; }
.lights i:nth-child(3) { background: #28c840; }

.side-apps { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.tile {
  width: 44px; height: 44px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 2px 8px rgba(0, 0, 0, 0.4);
}
.tile svg { width: 100%; height: 100%; display: block; }
.tile.selected { box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 2px 8px rgba(0,0,0,0.4), 0 0 0 2.5px #26262a, 0 0 0 5px #3f8ef7; }
.tile-weather { background: linear-gradient(170deg, #4fc3f7, #1e88e5); }
.tile-music { background: linear-gradient(170deg, #fb5c74, #fa233b); }
.tile-pilik { background: linear-gradient(160deg, #16407c, #0c2a58); }
.tile-rocket { background: linear-gradient(170deg, #56aaff, #1f6fe0); }

.pilik-ring {
  position: relative; width: 20px; height: 20px;
  border: 3px solid #fff; border-radius: 50%;
  display: inline-block;
}
.pilik-ring::after {
  content: ""; position: absolute; top: -4px; right: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff9f43;
}
.pilik-ring.lg { width: 24px; height: 24px; border-width: 3.5px; }
.pilik-ring.lg::after { width: 9px; height: 9px; }

.side-gear { margin-top: auto; color: var(--t3); display: flex; }

/* main column */

.win-main { flex: 1; min-width: 0; display: flex; flex-direction: column; padding: 20px 0 0 12px; }

.win-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 0 20px 0 8px; }
.app-id { display: flex; gap: 12px; align-items: center; }
.app-badge {
  width: 46px; height: 46px; border-radius: 11px; flex: none;
  background: linear-gradient(160deg, #16407c, #0c2a58);
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 2px 8px rgba(0, 0, 0, 0.4);
}
.app-id h3 { font-size: 17px; font-weight: 650; letter-spacing: -0.015em; line-height: 1.25; color: rgba(255,255,255,0.92); }
.app-id p { font-family: var(--mono); font-size: 10.5px; color: var(--t3); margin-top: 1px; }

.win-menus { text-align: right; font-size: 12px; line-height: 1.9; color: rgba(255,255,255,0.88); }
.win-menus p { display: flex; justify-content: flex-end; align-items: center; gap: 5px; }
.win-menus span { font-weight: 650; }
.win-menus svg { color: var(--t3); }

/* controls row */

.win-controls {
  display: flex; align-items: center; gap: 9px;
  padding: 16px 20px 12px 8px;
}
.search {
  display: flex; align-items: center; gap: 7px;
  width: 200px; height: 29px; padding: 0 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 7px;
  color: var(--t3); font-size: 12px;
}
.search span { flex: 1; text-align: left; }
.search kbd {
  font-family: var(--mono); font-size: 9.5px;
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 4px;
  padding: 1px 4px; color: var(--t3); background: rgba(255, 255, 255, 0.05);
}
.seg {
  display: flex; padding: 2px; gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
}
.seg button {
  border: 0; background: transparent; cursor: default;
  height: 23px; padding: 0 10px; border-radius: 6px;
  font-family: var(--sans); font-size: 11.5px; font-weight: 500; color: rgba(255,255,255,0.6);
}
.seg button.on { background: #45454d; color: #fff; font-weight: 600; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.draft-pill {
  margin-left: auto;
  font-family: var(--mono); font-size: 10.5px; font-weight: 600;
  color: #eac97e; background: rgba(232, 184, 75, 0.14);
  border-radius: 999px; padding: 4px 10px; white-space: nowrap;
  transition: opacity 0.3s, transform 0.3s;
}
.wbtn {
  display: inline-flex; align-items: center; gap: 6px;
  height: 29px; padding: 0 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 7px;
  font-size: 12px; font-weight: 550; color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
}
.wbtn-primary {
  background: linear-gradient(180deg, #3b87f7, #2467e3);
  border-color: transparent; color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 2px 8px rgba(47, 124, 246, 0.35);
  transition: opacity 0.35s, filter 0.35s;
}
.draft-pill.is-off { opacity: 0; transform: translateY(4px) scale(0.92); }
.wbtn-primary.is-off { opacity: 0.45; filter: saturate(0.15); }
.wbtn-primary.pulse { animation: pushPulse 0.75s ease-out 2; }
@keyframes pushPulse {
  0% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 0 0 rgba(63, 142, 247, 0.5); }
  100% { box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 0 0 12px rgba(63, 142, 247, 0); }
}

/* table */

.win-body { flex: 1; display: flex; min-height: 0; }

.grid {
  flex: 1; min-width: 0;
  padding: 0 8px 14px 8px;
  --cols: 30px minmax(150px, 1.5fr) 50px 58px 76px minmax(116px, 1fr) 48px 48px 68px;
}
.row {
  display: grid; grid-template-columns: var(--cols);
  align-items: center;
  min-height: 35px;
  border-radius: 7px;
  font-size: 12.5px;
  padding-right: 6px;
  color: rgba(255, 255, 255, 0.88);
}
.row > span { min-width: 0; }
.grid .row:not(.row-head):nth-child(odd) { background: rgba(255, 255, 255, 0.033); }

.row-head {
  min-height: 30px;
  font-size: 10px; font-weight: 650;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--t3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: none;
}

.c-check { display: flex; justify-content: center; }
.c-check i {
  width: 13px; height: 13px;
  border: 1.5px solid rgba(255, 255, 255, 0.28); border-radius: 3.5px;
  background: rgba(255, 255, 255, 0.04);
}
.c-country { display: flex; align-items: center; gap: 8px; font-weight: 500; white-space: nowrap; overflow: hidden; }
.c-country em { font-style: normal; font-size: 14px; flex: none; }
.c-country > span { overflow: hidden; text-overflow: ellipsis; flex: 0 1 auto; min-width: 64px; }
.c-factor, .c-usd, .c-vat, .c-gdp, .c-rev {
  font-family: var(--mono); font-size: 11.5px; color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}
.c-rev { text-align: right; }
.c-local { font-family: var(--mono); font-variant-numeric: tabular-nums; line-height: 1.25; }
.c-local b { font-size: 12px; font-weight: 650; display: block; color: rgba(255, 255, 255, 0.92); }
.c-local s { font-size: 10.5px; color: var(--t3); display: block; }
.row-head .c-local, .row-head .c-country, .row-head .c-factor, .row-head .c-usd,
.row-head .c-vat, .row-head .c-gdp, .row-head .c-rev { font-family: var(--sans); font-size: 10px; color: var(--t3); display: block; }
.row-head .c-rev { text-align: right; }

.chip {
  display: inline-flex; align-items: center; justify-content: center;
  height: 18px; padding: 0 8px; border-radius: 999px;
  font-family: var(--sans); font-size: 10.5px; font-weight: 700; letter-spacing: 0.02em;
  white-space: nowrap;
}
.chip.t1 { background: rgba(99, 161, 255, 0.17); color: #8fb8ff; }
.chip.t2 { background: rgba(80, 210, 160, 0.15); color: #7fe0b8; }
.chip.t3 { background: rgba(232, 184, 75, 0.15); color: #eac97e; }
.chip.t4 { background: rgba(255, 122, 140, 0.15); color: #ff9aa8; }
.chip.plain { background: rgba(255, 255, 255, 0.07); color: rgba(255, 255, 255, 0.6); font-weight: 600; }
.chip.amber { background: rgba(232, 184, 75, 0.15); color: #eac97e; }

.prop-chip {
  height: 16px; padding: 0 6px; font-size: 8.5px; letter-spacing: 0.02em;
  text-transform: uppercase; flex: 0 1 auto; min-width: 48px;
  overflow: hidden; text-overflow: ellipsis; display: inline-block; line-height: 16px;
  transition: opacity 0.3s, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.grid.no-props .prop-chip { opacity: 0; transform: scale(0.6); }
.grid .c-local s { transition: opacity 0.3s; }
.grid.no-props .c-local s { opacity: 0; }

/* selected row — the product's own accent survives */

.row.is-selected { background: #2e7bf0 !important; color: #fff; }
.row.is-selected .c-factor, .row.is-selected .c-usd, .row.is-selected .c-vat,
.row.is-selected .c-gdp, .row.is-selected .c-rev, .row.is-selected .c-local s { color: rgba(255, 255, 255, 0.78); }
.row.is-selected .c-local b { color: #fff; }
.row.is-selected .chip.t1 { background: rgba(255, 255, 255, 0.22); color: #fff; }
.row.is-selected .c-check i { border-color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.15); }

/* row entrance */

.grid.anim .row:not(.row-head) { opacity: 0; transform: translateY(8px); }
.grid.anim .row.in { opacity: 1; transform: none; transition: opacity 0.32s ease, transform 0.32s ease; }

/* inspector */

.inspector {
  flex: none; width: 282px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 18px 16px;
  display: flex; flex-direction: column; gap: 12px;
}
.insp-head { display: flex; justify-content: space-between; align-items: flex-start; }
.insp-title { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: rgba(255,255,255,0.94); }
.insp-title em { font-style: normal; font-size: 18px; margin-right: 2px; }
.insp-sub { font-family: var(--mono); font-size: 10.5px; color: var(--t3); margin-top: 1px; }
.insp-note { font-size: 11px; line-height: 1.55; color: rgba(255, 255, 255, 0.55); }
.insp-menu {
  display: flex; align-items: center; justify-content: space-between;
  height: 34px; padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--mono); font-size: 13px; font-weight: 650; color: rgba(255,255,255,0.92);
}
.insp-menu svg { color: var(--t3); }
.insp-card {
  background: rgba(255, 255, 255, 0.05); border-radius: 10px; padding: 3px 12px;
}
.insp-card > div {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 29px;
}
.insp-card > div + div { border-top: 1px solid rgba(255, 255, 255, 0.07); }
.insp-card dt { font-size: 11px; color: var(--t3); }
.insp-card dd { font-family: var(--mono); font-size: 11.5px; font-weight: 550; font-variant-numeric: tabular-nums; color: rgba(255,255,255,0.9); }
.insp-apply { justify-content: center; height: 33px; }
.insp-caption {
  margin-top: 4px;
  font-size: 10px; font-weight: 650; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--t3);
}
.insp-chart { width: 100%; height: 84px; color: rgba(255, 255, 255, 0.28); }
.insp-chart .chart-line { stroke: #56a0ff; }
.insp-chart .chart-dots circle { fill: #56a0ff; stroke: #1c1c21; stroke-width: 1.5; }
.insp-history { display: flex; flex-direction: column; gap: 6px; }
.insp-history li {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.6);
}
.insp-history li span { color: var(--t3); margin-right: auto; }
.insp-history s { color: var(--red); }
.insp-history b { color: var(--green); font-weight: 650; }

/* ---------- ticker ---------- */

.ticker { margin-top: 96px; text-align: center; position: relative; z-index: 1; }
.ticker-lead { display: block; font-family: var(--mono); font-size: 12px; color: var(--t3); margin-bottom: 12px; }
.ticker-lead b { color: var(--gold); font-weight: 700; }
.ticker-viewport {
  max-width: 900px; margin: 0 auto; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.ticker-track { display: flex; width: max-content; animation: ticker 46s linear infinite; }
.ticker-viewport:hover .ticker-track { animation-play-state: paused; }
.ticker-list { display: flex; gap: 30px; padding-right: 30px; }
.ticker-list li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 13.5px; font-weight: 500;
  color: rgba(255, 255, 255, 0.66); white-space: nowrap;
}
.ticker-list li i { font-style: normal; font-size: 15px; }
.ticker-note {
  display: block; margin-top: 14px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--t3);
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   hexagons — dark glass, gold icons
   ============================================================ */

.hexi { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; color: var(--gold); }
.hexi-shape { position: absolute; inset: 0; width: 100%; height: 100%; }
.hexi-shape path {
  fill: rgba(255, 255, 255, 0.045);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.hexi-icon { position: relative; }

/* ============================================================
   FLOW
   ============================================================ */

.flow-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px 28px;
}
.flow-grid li { display: flex; flex-direction: column; align-items: flex-start; }
.step-tag {
  margin-top: 16px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold);
}
.flow-grid h3 { font-size: 16.5px; font-weight: 650; letter-spacing: -0.015em; margin: 9px 0 8px; color: var(--t1); }
.flow-grid > li > p:not(.step-tag) { font-size: 13.5px; line-height: 1.65; color: var(--t2); margin-bottom: 18px; }

.vig {
  margin-top: auto; padding: 13px 14px; align-self: stretch;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.vig-row { font-size: 12.5px; font-weight: 500; display: flex; gap: 6px; align-items: center; color: var(--t1); }
.vig-row em { font-style: normal; }
.vig-row b { font-weight: 650; }
.vig-chips { display: flex; gap: 5px; flex-wrap: wrap; }
.vig-price { font-family: var(--mono); font-size: 13px; font-variant-numeric: tabular-nums; color: var(--t2); }
.vig-price s { color: var(--t3); font-size: 11.5px; }
.vig-price b { color: var(--t1); font-weight: 700; }
.vig-line { font-family: var(--mono); font-size: 10.5px; color: var(--t3); }
.vig-line.ok { color: var(--gold); }
.vig-btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; padding: 0 14px; border-radius: 9px;
  background: linear-gradient(180deg, #f8cf5a, var(--gold-deep));
  color: var(--gold-ink);
  font-size: 11.5px; font-weight: 650;
  box-shadow: 0 6px 16px -6px rgba(245, 197, 66, 0.5);
}
.vig-btn.ghost { background: transparent; color: var(--t1); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16); }

/* ============================================================
   FEATURES — the editorial bento, dark
   ============================================================ */

.spread {
  display: grid; gap: 20px;
  grid-template-columns: 1fr 1fr 1.25fr;
  align-items: stretch;
}
.spread-col { display: flex; flex-direction: column; gap: 20px; }

.gcard {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex; flex-direction: column; align-items: flex-start;
  overflow: hidden;
}
.gcard h3 { font-size: 15.5px; font-weight: 650; letter-spacing: -0.01em; color: var(--t1); margin-bottom: 7px; }
.gcard p { font-size: 13px; line-height: 1.6; color: var(--t2); }

.gcard .gnum {
  margin-top: auto; padding-top: 22px;
  font-size: clamp(44px, 4.6vw, 60px); font-weight: 720;
  letter-spacing: -0.035em; line-height: 1; color: var(--t1);
  font-variant-numeric: tabular-nums;
}
.gcard .gnum.md { font-size: clamp(36px, 3.6vw, 46px); }
.gcard .gnum.gold { color: var(--gold); }
.gcard .gsub { margin-top: 7px; font-size: 12px; color: var(--t3); }

.gcard.tall { flex: 1; min-height: 240px; }
.spread-col .gcard { flex: 1; }
.stat175 .worldmap {
  position: absolute; right: -190px; bottom: -64px;
  width: 580px; max-width: none;
  opacity: 0.11;
  pointer-events: none;
}
.stat175 h3, .stat175 p { position: relative; }
.stat175 .gsub { color: var(--t1); }
.gcard .gline { margin-top: auto; padding-top: 16px; font-family: var(--mono); font-size: 11px; color: var(--t3); }
.gcard .gline.ok { color: var(--gold); }

/* ============================================================
   PRICING
   ============================================================ */

.plans {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; max-width: 720px;
}
.plan {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  border: 1px solid var(--line);
  border-radius: 22px; padding: 30px 30px 28px;
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.plan h3 { font-size: 15px; font-weight: 650; color: var(--t1); }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-top: 6px; }
.plan-price b {
  font-size: 42px; font-weight: 720;
  letter-spacing: -0.03em; line-height: 1; font-variant-numeric: tabular-nums;
  color: var(--t1);
}
.plan-price span { font-size: 14px; color: var(--t3); }
.plan-note { font-size: 12.5px; color: var(--t2); }
.plan .btn { margin-top: 22px; align-self: stretch; }
.plan-hot {
  border-color: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(245, 197, 66, 0.55), var(--shadow-card), 0 0 70px -18px rgba(245, 197, 66, 0.3);
}
.plan-chip {
  position: absolute; top: -12px; right: 22px;
  background: linear-gradient(180deg, #f8cf5a, var(--gold-deep));
  color: var(--gold-ink);
  font-family: var(--mono); font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em;
  border-radius: 999px; padding: 5px 12px;
  box-shadow: 0 8px 20px -6px rgba(245, 197, 66, 0.5);
}
.plans-foot { margin-top: 22px; font-size: 13px; color: var(--t3); }

/* ============================================================
   FAQ
   ============================================================ */

.faq .section-head { margin-bottom: 28px; }
.faq-list { max-width: 760px; }
.faq-list details { border-bottom: 1px solid var(--line-soft); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 19px 2px;
  font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em;
  color: var(--t1);
  cursor: pointer; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-x { position: relative; width: 12px; height: 12px; flex: none; transition: transform 0.25s; }
.faq-x::before, .faq-x::after {
  content: ""; position: absolute; background: var(--t3); border-radius: 2px;
}
.faq-x::before { left: 5px; top: 0; width: 2px; height: 12px; }
.faq-x::after { left: 0; top: 5px; width: 12px; height: 2px; }
details[open] .faq-x { transform: rotate(45deg); }
details[open] .faq-x::before, details[open] .faq-x::after { background: var(--gold); }
.faq-list details p {
  padding: 0 40px 20px 2px;
  font-size: 14.5px; line-height: 1.7; color: var(--t2); max-width: 660px;
}
.faq-list details p em { font-style: normal; font-weight: 600; color: var(--t1); }

/* ---------- language switcher ---------- */

.nav-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.lang { display: flex; }
.lang-select {
  -webkit-appearance: none; appearance: none;
  border: 0; cursor: pointer;
  background: rgba(255, 255, 255, 0.06)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23807f7a' stroke-width='1.5'/%3E%3C/svg%3E")
    no-repeat right 12px center;
  border-radius: 999px;
  font-family: var(--sans); font-size: 12px; font-weight: 550;
  color: var(--t1);
  padding: 7px 30px 7px 14px;
  transition: background-color 0.15s;
}
.lang-select:hover { background-color: rgba(255, 255, 255, 0.1); }
.lang-select option { background: #1a1a18; color: #fff; }

/* ---------- subpages (FAQ / docs) ---------- */

.page { max-width: 800px; margin: 0 auto; padding: 64px 24px 0; }
.back {
  display: block; width: fit-content; margin-bottom: 28px;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.back:hover { text-decoration: underline; }
.page h1 {
  font-size: clamp(34px, 4.4vw, 52px);
  font-weight: 720; letter-spacing: -0.03em; line-height: 1.08;
  color: var(--t1);
}
.page-lede { margin: 16px 0 28px; font-size: 16px; line-height: 1.7; color: var(--t2); max-width: 620px; }
.page-lede a { color: var(--gold); }
.page-lede a:hover { text-decoration: underline; }

.support-card {
  margin-top: 44px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 24px 26px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  -webkit-backdrop-filter: blur(12px) saturate(1.5);
  backdrop-filter: blur(12px) saturate(1.5);
  box-shadow: inset 0 0 0 1px rgba(245, 197, 66, 0.22), var(--shadow-card);
}
.support-card h3 { font-size: 16px; font-weight: 650; color: var(--t1); }
.support-card p { font-size: 13.5px; color: var(--t2); margin-top: 3px; }

/* ---------- docs ---------- */

.docs {
  max-width: 1120px; margin: 0 auto; padding: 64px 24px 0;
  display: grid; grid-template-columns: 236px minmax(0, 1fr); gap: 64px;
  align-items: start;
}
.docs-toc { position: sticky; top: 92px; display: flex; flex-direction: column; }
.docs-toc-label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--t3);
  margin-bottom: 10px; padding-left: 12px;
}
.docs-toc a {
  font-size: 13px; color: var(--t2); line-height: 1.4;
  padding: 6px 12px; border-left: 2px solid rgba(255, 255, 255, 0.08);
  transition: color 0.15s, border-color 0.15s;
}
.docs-toc a:hover { color: var(--t1); }
.docs-toc a.on { color: var(--gold); border-color: var(--gold); }

.docs-body h1 {
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 720; letter-spacing: -0.03em; line-height: 1.08;
  color: var(--t1);
}
.docs-body .page-lede { margin-bottom: 8px; }
.docs-section { border-top: 1px solid var(--line-soft); margin-top: 36px; padding-top: 32px; }
.docs-section h2 {
  font-size: 21px; font-weight: 680; letter-spacing: -0.02em; color: var(--t1);
  margin-bottom: 12px; scroll-margin-top: 92px;
}
.docs-section h3 { font-size: 15.5px; font-weight: 650; color: var(--t1); margin: 20px 0 8px; }
.docs-section p { font-size: 15px; line-height: 1.75; color: var(--t2); margin-bottom: 12px; }
.docs-section ol, .docs-section ul { margin: 0 0 12px; display: flex; flex-direction: column; gap: 8px; }
.docs-section li {
  font-size: 15px; line-height: 1.65; color: var(--t2);
  list-style: none; position: relative; padding-left: 34px;
}
.docs-section ol { counter-reset: step; }
.docs-section ol li { counter-increment: step; }
.docs-section ol li::before {
  content: counter(step);
  position: absolute; left: 0; top: 1px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(245, 197, 66, 0.12); color: var(--gold);
  font-family: var(--mono); font-size: 11px; font-weight: 700;
}
.docs-section ul li::before {
  content: ""; position: absolute; left: 8px; top: 9px;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
}
.docs-section b { color: var(--t1); font-weight: 600; }
.docs-section a { color: var(--gold); }
.docs-section a:hover { text-decoration: underline; }
.docs kbd {
  font-family: var(--mono); font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16); border-radius: 5px;
  padding: 1px 6px; background: rgba(255, 255, 255, 0.05); color: var(--t1);
}
.tip {
  display: flex; gap: 12px; align-items: flex-start;
  margin: 16px 0; padding: 14px 16px; border-radius: 12px;
  background: rgba(245, 197, 66, 0.06);
  -webkit-backdrop-filter: blur(10px) saturate(1.4);
  backdrop-filter: blur(10px) saturate(1.4);
  box-shadow: inset 0 0 0 1px rgba(245, 197, 66, 0.16);
}
.tip b {
  flex: none; margin-top: 2px;
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--gold);
}
.tip p { font-size: 13.5px; line-height: 1.65; color: var(--t2); margin: 0; }

@media (max-width: 960px) {
  .docs { grid-template-columns: 1fr; gap: 32px; }
  .docs-toc { position: static; }
}

/* ---------- legal pages ---------- */

.legal { max-width: 760px; margin: 0 auto; padding: 72px 24px 0; }
.legal h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 720; letter-spacing: -0.03em; line-height: 1.1;
  color: var(--t1);
}
.legal-date {
  margin: 12px 0 36px;
  font-family: var(--mono); font-size: 12px; color: var(--t3);
}
.legal h2 {
  margin: 36px 0 10px;
  font-size: 19px; font-weight: 650; letter-spacing: -0.015em;
  color: var(--t1);
}
.legal p { font-size: 15px; line-height: 1.75; color: var(--t2); margin-bottom: 12px; }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }

/* ---------- footer ---------- */

.footer { position: relative; z-index: 1; margin-top: 130px; }
.footer-inner {
  max-width: 1120px; margin: 0 auto; padding: 26px 24px 38px;
  border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
  color: var(--t3);
}
.footer-brand { display: flex; align-items: center; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--t1); }
.footer-brand img { border-radius: 5px; }
.footer-made { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer nav { margin-left: auto; display: flex; gap: 20px; }
.footer nav a { font-size: 13px; color: var(--t2); transition: color 0.15s; }
.footer nav a:hover { color: var(--t1); }
.footer-copy { font-size: 12.5px; }

/* ============================================================
   reveal + motion
   ============================================================ */

html.js [data-reveal] {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
html.js [data-reveal].revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .ticker-list[aria-hidden] { display: none; }
  .grid.anim .row:not(.row-head) { opacity: 1; transform: none; }
  .grid.no-props .prop-chip, .grid.no-props .c-local s { opacity: 1; transform: none; }
  .draft-pill.is-off { opacity: 1; transform: none; }
  .wbtn-primary.is-off { opacity: 1; filter: none; }
  .wbtn-primary.pulse { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================================
   responsive
   ============================================================ */

@media (max-width: 1160px) {
  .acard.forecast { left: 48px; }
}

@media (max-width: 1080px) {
  .grid { --cols: 30px minmax(140px, 1.5fr) 50px 58px 76px minmax(112px, 1fr) 48px 64px; }
  .c-gdp { display: none; }
  .row-head .c-gdp { display: none; }
}

@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero { text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .cta-row, .trust { justify-content: center; }
  .heroart { height: 420px; max-width: 620px; margin: 0 auto; width: 100%; }
  .acard.forecast { left: 50%; transform: translateX(-50%) rotate(2.5deg); }
  .acard.mini { left: 6%; }
  .acard.toast { left: 4%; }
}

@media (max-width: 960px) {
  .inspector { display: none; }
  .flow-grid { grid-template-columns: repeat(2, 1fr); }
  .spread { grid-template-columns: 1fr; }
  .gcard.tall { min-height: 0; }
}

@media (max-width: 820px) {
  .grid { --cols: 30px minmax(130px, 1.5fr) 50px 76px minmax(104px, 1fr) 60px; }
  .c-factor, .c-rev { display: none; }
  .row-head .c-factor, .row-head .c-rev { display: none; }
  .win-menus { display: none; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 640px) {
  .section { padding-top: 92px; }
  .hero { padding-top: 32px; }
  .hero h1 { font-size: clamp(34px, 9.6vw, 44px); }
  .heroart { height: 360px; }
  .acard.forecast { width: min(340px, 92%); }
  .acard.toast { width: min(300px, 88%); bottom: 40px; }
  .stage { padding: 0 12px; margin-top: 44px; }
  .grid { --cols: minmax(116px, 1.6fr) 44px minmax(96px, 1fr); padding: 0 4px 12px; }
  .c-usd, .c-vat, .c-check, .prop-chip { display: none; }
  .row-head .c-usd, .row-head .c-vat { display: none; }
  .row { padding-left: 8px; }
  .win-side { width: 64px; }
  .tile { width: 38px; height: 38px; border-radius: 10px; }
  .search { flex: 1; width: auto; }
  .seg { display: none; }
  .win-controls { flex-wrap: wrap; }
  .draft-pill { order: 5; }
  .flow-grid { grid-template-columns: 1fr; gap: 36px; }
  .plans { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer nav { margin-left: 0; }
}

@media (max-width: 460px) {
  .brand { font-size: 13px; }
}
