/* ============================================================
   POSTKODEX — "VIOLET CONSOLE" design system
   8-bit arcade DNA · zero rounded corners · hard offset shadows
   Space Grotesk (display+body) · Press Start 2P (HUD) · JetBrains Mono (code)
   One accent: violet. Desktop-first, tight.
   ============================================================ */

:root {
  --void:   #FAFAF7;   /* paper white bg */
  --panel:  #FFFFFF;
  --panel2: #F1F0EC;
  --line:   #E4E3DD;
  --line-2: #C9C8C1;
  --ink:    #17171A;
  --gray:   #5D5C64;
  --dim:    #8A8992;
  --ghost:  #17171A;   /* inverted block = black */

  --vio:      #17171A;   /* accent = black (paper console) */
  --vio-hi:   #000000;
  --vio-deep: #4A4A50;
  --vio-soft: rgba(0,0,0,.05);
  --danger:   #FF6B64;

  /* compat aliases used inline in pages */
  --red:    var(--vio);
  --or:     var(--vio-hi);
  --orange: var(--vio-hi);
  --amber:  var(--vio-hi);
  --white:  var(--ink);
  --muted:  var(--gray);
  --faint:  var(--dim);
  --igblue: #0095F6;

  --terminal:   #0E0E11;
  --terminal-2: #16161A;
  --code-main:  #E9E8EE;
  --code-dim:   #55545E;

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Space Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --font-pixel: "Press Start 2P", monospace;

  --shadow-pop: 8px 8px 0 rgba(0,0,0,.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--void);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* faint CRT scanlines */
body::after {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 999;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.025) 0 1px, transparent 1px 3px);
}

::selection { background: var(--vio); color: #F7F6F3; }
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select { font: inherit; color: inherit; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.mono { font-family: var(--font-mono); }

/* scroll progress */
#scrollbar { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: var(--vio); z-index: 300; }

/* squiggle retired in this theme */
.squig { display: none; }

/* ---------- promo ticker ---------- */
.promobar {
  background: var(--vio); color: #F7F6F3;
  font-family: var(--font-pixel); font-size: 9px; letter-spacing: .06em;
  padding: 10px 18px; overflow: hidden; white-space: normal; text-align: center;
  border-bottom: 2px solid #F7F6F3;
}
.promobar .tick { display: block; padding-left: 0; animation: none; }
.promobar b { background: #F7F6F3; color: var(--vio-hi); padding: 2px 8px; font-weight: 400; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap); margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; gap: 28px;
}
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
.logo-mark {
  width: 36px; height: 36px;
  background: var(--vio); color: #F7F6F3;
  font-family: var(--font-mono); font-size: 14px; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: 3px 3px 0 rgba(0,0,0,.35);
  transition: transform .25s var(--ease);
}
.logo:hover .logo-mark { animation: glitch .3s steps(2) 2; }
@keyframes glitch { 25% { transform: translate(-2px,1px); } 75% { transform: translate(2px,-1px); } }
.logo em { font-style: normal; color: var(--vio-hi); }

.nav-links { display: flex; gap: 24px; margin-left: auto; font-family: var(--font-mono); font-size: 13px; font-weight: 500; color: var(--gray); }
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); border-color: var(--vio); }
.nav-links a::before { content: "/"; color: var(--dim); margin-right: 4px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px; letter-spacing: .02em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 0;
  transition: transform .15s, box-shadow .15s, background .15s, color .15s, border-color .15s;
}
.btn:focus-visible, a:focus-visible, input:focus-visible, .selectable:focus-visible {
  outline: 2px solid var(--vio); outline-offset: 3px;
}
.btn-primary {
  background: var(--vio); color: #F7F6F3;
  box-shadow: 4px 4px 0 rgba(0,0,0,.16);
}
.btn-primary:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,.2); background: var(--vio-hi); color: #F7F6F3; }
.btn-primary:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 rgba(0,0,0,.14); }
.btn-ghost { border: 2px solid var(--line-2); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--vio); color: var(--vio-hi); transform: translate(-1px,-1px); }
.btn-lg { padding: 18px 34px; font-size: 15px; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 84px 0 96px; overflow: hidden; border-bottom: 1px solid var(--line); }
#rain { position: absolute; inset: 0; z-index: 0; opacity: .7; pointer-events: none; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at 30% 42%, rgba(250,250,247,.5), rgba(250,250,247,.94) 74%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 56px; align-items: center;
}

.boot { opacity: 0; transform: translateY(20px); animation: boot .6s var(--ease) forwards; }
.boot-1 { animation-delay: .05s; } .boot-2 { animation-delay: .15s; }
.boot-3 { animation-delay: .27s; } .boot-4 { animation-delay: .4s; }
.boot-5 { animation-delay: .53s; } .boot-6 { animation-delay: .66s; }
@keyframes boot { to { opacity: 1; transform: none; } }

.eyebrow {
  font-family: var(--font-pixel); font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  color: #F7F6F3; background: var(--vio);
  padding: 9px 14px; display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow .dot { width: 8px; height: 8px; background: #F7F6F3; animation: pulse 1.3s steps(2) infinite; }
@keyframes pulse { 50% { opacity: .2; } }

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.02; letter-spacing: -0.03em;
  margin: 26px 0 22px;
  text-wrap: balance;
}
.hl { color: var(--ink); white-space: nowrap; border-bottom: 5px solid var(--ink); }
.scramble { color: var(--vio-hi); display: inline-block; min-width: 5.2ch; text-align: left; }
.scramble::after { content: "▮"; color: var(--vio); animation: pulse 1s steps(2) infinite; margin-left: 3px; font-size: .65em; vertical-align: .1em; }

.hero p.lede { font-size: 18px; color: var(--gray); max-width: 47ch; margin-bottom: 32px; line-height: 1.65; }
.hero p.lede b { color: var(--ink); font-weight: 600; }

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 12px; color: var(--dim); margin-top: 18px; font-family: var(--font-mono); }

.hud-chips { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; }
.hud-chip {
  border: 1px solid var(--line); background: rgba(255,255,255,.85); padding: 13px 20px;
  font-family: var(--font-mono); font-size: 12px; color: var(--gray);
  transition: border-color .15s, transform .15s;
}
.hud-chip:hover { border-color: var(--vio); transform: translateY(-3px); }
.hud-chip b { display: block; font-family: var(--font-pixel); font-size: 13px; color: var(--vio-hi); margin-bottom: 6px; }

/* terminal */
.term {
  background: var(--terminal); border: 1px solid var(--line);
  box-shadow: var(--shadow-pop);
  font-family: var(--font-mono); font-size: 13.5px; line-height: 1.75;
  color: var(--code-main); overflow: hidden;
}
.term-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--terminal-2); border-bottom: 1px solid var(--line); }
.term-bar i { width: 10px; height: 10px; background: var(--line-2); }
.term-bar i:first-child { background: var(--vio); animation: pulse 2s steps(2) infinite; }
.term-bar .term-title { margin-left: auto; font-size: 11px; color: var(--code-dim); }
.term-body { padding: 20px 22px 26px; min-height: 320px; }
.term-body .ln { display: block; white-space: pre-wrap; word-break: break-word; }
.term-body .p  { color: var(--vio-hi); font-weight: 700; }
.term-body .c  { color: var(--code-dim); }
.term-body .w  { color: var(--ink); }
.term-body .ok { color: var(--gray); }
.term-body .num { color: var(--vio-hi); font-weight: 700; }
.cursor { display: inline-block; width: 9px; height: 15px; background: var(--vio); vertical-align: -2px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- sections ---------- */
section { padding: 96px 0; border-bottom: 1px solid var(--line); }
.section-alt { background: var(--panel); }
.kicker { font-family: var(--font-pixel); font-size: 9px; color: var(--vio-hi); letter-spacing: .14em; text-transform: uppercase; }
.kicker::before { content: "▸ "; color: var(--dim); }
h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 3.8vw, 48px); letter-spacing: -0.03em; line-height: 1.06;
  margin: 16px 0 14px; text-wrap: balance;
}
h2 .red, h2 .hl2 { color: var(--vio-hi); }
.sub { color: var(--gray); font-size: 16.5px; max-width: 58ch; line-height: 1.65; }
.center { text-align: center; }
.center .sub { margin: 0 auto; }

.rv { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.stagger.in > * { opacity: 1; transform: none; }
.stagger.in > *:nth-child(1) { transition-delay: 0s; }
.stagger.in > *:nth-child(2) { transition-delay: .08s; }
.stagger.in > *:nth-child(3) { transition-delay: .16s; }
.stagger.in > *:nth-child(4) { transition-delay: .24s; }
.stagger.in > *:nth-child(5) { transition-delay: .32s; }
.stagger.in > *:nth-child(6) { transition-delay: .4s; }

/* ---------- platform grid — bordered console strip ---------- */
.plat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; margin-top: 50px; border: 1px solid var(--line); }
.plat-card {
  background: var(--void); border-right: 1px solid var(--line); border-radius: 0;
  padding: 28px 12px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-weight: 500; font-size: 13px; color: var(--ink);
  transition: background .2s; position: relative; overflow: hidden;
}
.plat-card:last-child { border-right: none; }
.plat-card::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: var(--vio);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.plat-card:hover { background: var(--panel2); }
.plat-card:hover::after { transform: scaleX(1); }
.plat-card svg { width: 28px; height: 28px; transition: transform .25s var(--ease); }
.plat-card:hover svg { transform: scale(1.18) rotate(-4deg); }
.plat-card small { font-family: var(--font-pixel); font-size: 7.5px; color: var(--dim); letter-spacing: .05em; }

/* ---------- BEFORE/AFTER — IG profile (device stays authentic) ---------- */
.ba-wrap { margin-top: 54px; }
.ba {
  position: relative; border: 1px solid var(--line-2);
  overflow: hidden; user-select: none; background: #000;
  box-shadow: 10px 10px 0 rgba(0,0,0,.18);
  max-width: 920px; margin: 0 auto;
}
.ba-side { padding: 26px 26px 22px; background: #000; }
.ba-after { position: absolute; inset: 0; background: #000; clip-path: inset(0 0 0 var(--pos, 50%)); }

.igp-top { display: flex; align-items: center; gap: 28px; margin-bottom: 16px; }
.igp-av { width: 74px; height: 74px; border-radius: 50%; object-fit: cover; border: 2px solid #262626; flex-shrink: 0; }
.igp-stats { display: flex; gap: 34px; flex: 1; justify-content: center; }
.igp-stats div { text-align: center; color: #F5F5F5; }
.igp-stats b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.igp-stats span { font-size: 12.5px; color: #A8A8A8; }
.igp-name { color: #F5F5F5; margin-bottom: 12px; }
.igp-name b { display: block; font-size: 14px; font-weight: 600; }
.igp-name span { font-size: 13px; color: #A8A8A8; }
.igp-btn {
  width: 100%; background: var(--igblue); color: #fff; font-weight: 600; font-size: 14px;
  padding: 8px 0; border-radius: 8px; margin-bottom: 18px; text-align: center;
}
.igp-btn.dim { background: #262626; color: #F5F5F5; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.ba-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ba-before .ba-grid img { filter: grayscale(1) contrast(.75) brightness(.55); }
.ba-before .igp-av { filter: grayscale(1) brightness(.7); }
.ba-before .igp-stats b { color: #8a8a8a; }
.ba-after .igp-stats div:nth-child(2) b { color: var(--vio-hi); }

.ba-tag {
  position: absolute; top: 16px; font-family: var(--font-pixel); font-size: 8px;
  letter-spacing: .08em; padding: 7px 12px; z-index: 3; text-transform: uppercase;
}
.ba-tag.before { left: 16px; background: #262626; color: #d5d5d5; }
.ba-tag.after { right: 16px; background: var(--vio); color: #F7F6F3; }
.ba-bar {
  position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 3px; background: var(--vio); z-index: 4;
  transform: translateX(-50%); pointer-events: none;
}
.ba-bar::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--vio); color: #F7F6F3; font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  padding: 10px 12px; white-space: nowrap;
  box-shadow: 4px 4px 0 rgba(0,0,0,.5);
}
.ba input[type=range] {
  position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 5; margin: 0;
}
.ba-caption { display: flex; justify-content: space-between; gap: 16px; margin: 16px auto 0; max-width: 920px; font-family: var(--font-mono); font-size: 12.5px; color: var(--dim); flex-wrap: wrap; }
.ba-caption b { color: var(--vio-hi); }

/* ---------- GROWTH CHART — self-drawing 8-bit graph ---------- */
.chart-box {
  margin-top: 54px; border: 1px solid var(--line-2); background: var(--terminal);
  box-shadow: var(--shadow-pop); max-width: 980px; margin-left: auto; margin-right: auto;
}
.chart-head {
  display: flex; align-items: center; gap: 12px; padding: 14px 18px;
  background: var(--terminal-2); border-bottom: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 12px; color: var(--gray);
}
.chart-head .px-label { font-family: var(--font-pixel); font-size: 8.5px; color: var(--vio-hi); letter-spacing: .08em; }
.chart-head .live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 11px; color: var(--dim); }
.chart-head .live::before { content: ""; width: 8px; height: 8px; background: var(--vio); animation: pulse 1.4s steps(2) infinite; }
#growth-chart { width: 100%; height: 320px; display: block; }
.chart-foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 13px 18px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: 11.5px; color: var(--dim);
}
.chart-foot b { color: var(--vio-hi); }

/* ---------- flow timeline — sharp console nodes ---------- */
.flow { margin-top: 60px; position: relative; }
.flow-row { display: flex; align-items: center; gap: 0; flex-wrap: nowrap; }
.flow-row.rev { justify-content: flex-end; margin-top: 52px; }
.flow-start {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--vio); color: #F7F6F3; display: grid; place-items: center; margin-right: 18px;
  box-shadow: 4px 4px 0 rgba(0,0,0,.3);
}
.flow-start svg { width: 20px; height: 20px; }
.flow-pill {
  background: var(--ghost); color: #F7F6F3;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .02em;
  padding: 15px 24px; white-space: nowrap;
  box-shadow: 4px 4px 0 rgba(0,0,0,.14);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.flow-pill:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 rgba(0,0,0,.35); }
.flow-pill.violet { background: var(--vio); color: #F7F6F3; }
.flow-arr {
  flex: 1; min-width: 40px; height: 0; border-top: 2px dashed var(--line-2);
  position: relative; margin: 0 8px;
}
.flow-arr::after {
  content: ""; position: absolute; right: -2px; top: -6px;
  border: 5px solid transparent; border-left: 8px solid var(--line-2);
}
.flow-arr.rev::after { right: auto; left: -2px; border-left: none; border-right: 8px solid var(--line-2); }
.flow-bend {
  width: 46%; height: 54px; margin-left: auto; margin-top: -2px;
  border-right: 2px dashed var(--line-2); border-bottom: 2px dashed var(--line-2);
  transform: translateY(26px);
}
.flow-note { margin-top: 66px; font-family: var(--font-mono); font-size: 12.5px; color: var(--dim); text-align: center; }
.flow-note b { color: var(--vio-hi); }

/* ---------- pack cards ---------- */
.pack-row { display: grid; grid-template-columns: 1fr 1.14fr 1fr; gap: 20px; margin-top: 54px; align-items: start; }
.pack-card {
  background: var(--panel); border: 1px solid var(--line);
  padding: 32px 28px; position: relative;
  display: flex; flex-direction: column; text-align: left;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  border-radius: 0;
}
.pack-card:nth-child(1), .pack-card:nth-child(3) { margin-top: 24px; }
.pack-card:hover { transform: translate(-3px,-3px); box-shadow: 6px 6px 0 rgba(0,0,0,.1); }
.pack-card.featured { border: 2px solid var(--vio); box-shadow: 8px 8px 0 rgba(0,0,0,.25); }
.pack-flag {
  position: absolute; top: -13px; left: 24px;
  background: var(--vio); color: #F7F6F3;
  font-family: var(--font-pixel); font-size: 8px; padding: 6px 10px; letter-spacing: .08em;
  animation: pulse 2s steps(2) infinite;
}
.pack-card .pk-name { font-family: var(--font-pixel); font-size: 9px; color: var(--vio-hi); letter-spacing: .1em; }
.pack-card .pk-size { font-family: var(--font-display); font-size: 52px; font-weight: 700; letter-spacing: -0.03em; margin: 12px 0 2px; line-height: 1; }
.pack-card .pk-size small { font-size: 17px; font-weight: 600; color: var(--gray); letter-spacing: 0; }
.pack-card .pk-price { font-family: var(--font-mono); font-size: 14px; color: var(--gray); margin-bottom: 18px; }
.pack-card .pk-price b { color: var(--vio-hi); font-size: 18px; }
.pack-card ul { list-style: none; display: grid; gap: 10px; font-size: 14px; color: var(--gray); margin-bottom: 28px; }
.pack-card ul li { display: flex; gap: 10px; align-items: flex-start; }
.pack-card ul li::before { content: "+"; color: var(--vio-hi); font-family: var(--font-mono); font-weight: 700; flex-shrink: 0; }
.pack-card .btn { margin-top: auto; }

/* ---------- stats — console strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 50px; border: 1px solid var(--line); }
.stat { background: var(--void); border-right: 1px solid var(--line); padding: 30px 26px; transition: background .15s; border-radius: 0; }
.stat:hover { background: var(--panel2); }
.stat:last-child { border-right: none; }
.stat .n { font-family: var(--font-display); font-weight: 700; font-size: 40px; letter-spacing: -0.02em; color: var(--vio-hi); line-height: 1.1; }
.stat .n span { color: var(--vio-hi); }
.stat .l { font-family: var(--font-mono); font-size: 12.5px; color: var(--gray); margin-top: 10px; }

/* ---------- reviews ---------- */
.review-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-top: 52px; align-items: start; }
.review { background: var(--panel); border: 1px solid var(--line); padding: 26px; font-size: 14.5px; text-align: left; transition: transform .15s, box-shadow .15s; border-radius: 0; }
.review:nth-child(2) { transform: translateY(20px); }
.review:hover { box-shadow: 5px 5px 0 rgba(0,0,0,.2); }
.review .rev-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.avatar {
  width: 40px; height: 40px; flex-shrink: 0; border: none;
  display: grid; place-items: center; font-family: var(--font-pixel); font-size: 12px;
  color: #F7F6F3; background: var(--vio) !important; border-radius: 0;
}
.review .who b { display: block; font-size: 14px; font-weight: 600; }
.review .who span { font-family: var(--font-mono); font-size: 11.5px; color: var(--dim); }
.review .merged { margin-left: auto; font-family: var(--font-pixel); font-size: 7px; color: #F7F6F3; background: var(--vio-hi); padding: 5px 8px; letter-spacing: .06em; border-radius: 0; }
.review p { color: var(--gray); line-height: 1.65; }
.review .stars { color: var(--vio-hi); letter-spacing: 3px; margin-top: 14px; font-size: 13px; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 48px auto 0; display: grid; gap: 0; border: 1px solid var(--line); }
details { background: var(--void); border-bottom: 1px solid var(--line); padding: 22px 26px; text-align: left; transition: background .15s; border-radius: 0; }
details:last-child { border-bottom: none; }
details[open] { background: var(--panel2); }
summary { font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; display: flex; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::before { content: "▸"; font-family: var(--font-mono); margin-right: 14px; color: var(--vio-hi); transition: transform .15s; }
details[open] summary::before { transform: rotate(90deg); }
details p { margin-top: 12px; color: var(--gray); font-size: 14.5px; padding-left: 26px; line-height: 1.65; max-width: 60ch; animation: boot .3s var(--ease); }

/* ---------- big CTA ---------- */
.cta-banner {
  background: var(--vio); color: #F7F6F3;
  padding: 76px 56px; text-align: center; position: relative; overflow: hidden;
  box-shadow: 12px 12px 0 rgba(0,0,0,.1); border-radius: 0;
}
.cta-banner .kicker { color: rgba(0,0,0,.9); }
.cta-banner .kicker::before { color: rgba(20,20,23,.6); }
.cta-banner h2 { color: #fff; }
.cta-banner .sub { color: rgba(0,0,0,.85); margin: 0 auto 32px; }
.cta-banner .btn-primary { background: #F7F6F3; color: var(--vio-hi); box-shadow: 4px 4px 0 rgba(18,9,58,.4); }
.cta-banner .btn-primary:hover { background: #0b0524; color: #fff; }
.cta-banner .btn-ghost { border-color: rgba(0,0,0,.6); color: #fff; background: transparent; }
.cta-banner .press { font-family: var(--font-pixel); font-size: 9px; margin-top: 28px; color: rgba(0,0,0,.7); animation: pulse 1.6s steps(2) infinite; text-transform: uppercase; letter-spacing: .1em; }

/* ---------- footer ---------- */
footer { padding: 60px 0 42px; }
.foot-grid { display: flex; gap: 48px; flex-wrap: wrap; justify-content: space-between; }
.foot-grid .col h4 { font-family: var(--font-pixel); font-size: 8.5px; letter-spacing: .12em; color: var(--vio-hi); margin-bottom: 16px; text-transform: uppercase; }
.foot-grid .col a { display: block; font-family: var(--font-mono); font-size: 13.5px; color: var(--gray); padding: 4px 0; transition: color .12s, transform .12s; }
.foot-grid .col a:hover { color: var(--ink); transform: translateX(4px); }
.foot-bottom { margin-top: 44px; font-family: var(--font-mono); font-size: 12px; color: var(--dim); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--line); padding-top: 24px; }
.status-ok { display: inline-flex; align-items: center; gap: 8px; color: var(--gray); }
.status-ok::before { content: ""; width: 8px; height: 8px; background: var(--vio); animation: pulse 1.6s steps(2) infinite; }

/* ============================================================
   ORDER PAGE
   ============================================================ */
.order-main { padding: 52px 0 110px; }

.xp-wrap { max-width: 640px; margin: 0 auto 16px; }
.xp-head { display: flex; justify-content: space-between; font-family: var(--font-pixel); font-size: 8.5px; color: var(--gray); margin-bottom: 9px; letter-spacing: .1em; text-transform: uppercase; }
.xp-head b { color: var(--vio-hi); }
.xpbar { height: 14px; border: 1px solid var(--line-2); padding: 2px; border-radius: 0; }
.xpbar i { display: block; height: 100%; width: 0%; background: repeating-linear-gradient(90deg, var(--vio) 0 8px, rgba(0,0,0,.35) 8px 10px); transition: width .4s steps(8); border-radius: 0; }

.steps-bar { display: flex; align-items: center; max-width: 640px; margin: 0 auto 56px; }
.step-dot { display: flex; flex-direction: column; align-items: center; gap: 10px; font-family: var(--font-pixel); font-size: 8px; color: var(--dim); letter-spacing: .08em; text-transform: uppercase; }
.step-dot .ic {
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 1px solid var(--line-2); background: var(--panel); font-family: var(--font-mono); font-size: 15px;
  transition: all .2s; border-radius: 0;
}
.step-dot.active { color: var(--ink); }
.step-dot.active .ic { border-color: var(--vio); color: var(--vio-hi); box-shadow: 3px 3px 0 rgba(0,0,0,.3); }
.step-dot.done .ic { background: var(--vio); border-color: var(--vio); color: #F7F6F3; }
.step-link { flex: 1; height: 1px; background: var(--line-2); margin: 0 12px 24px; }
.step-link.done { background: var(--vio); height: 2px; }

.order-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 36px; align-items: start; }

.panel { background: var(--panel); border: 1px solid var(--line); padding: 32px; margin-bottom: 24px; border-radius: 0; }
.panel h3 { font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 4px; }
.panel h3 .px-tag { font-family: var(--font-pixel); font-size: 8px; color: #F7F6F3; background: var(--vio-hi); padding: 5px 8px; vertical-align: 4px; margin-right: 12px; border-radius: 0; width: auto; height: auto; display: inline; }
.panel .hint { font-size: 14px; color: var(--gray); margin-bottom: 22px; }

.selectable {
  border: 1px solid var(--line-2); background: var(--void);
  cursor: pointer; text-align: center;
  transition: all .13s; position: relative; font-weight: 600; color: var(--ink);
  border-radius: 0;
}
.selectable:hover { border-color: var(--gray); transform: translate(-2px,-2px); box-shadow: 3px 3px 0 rgba(0,0,0,.12); }
.selectable:active { transform: translate(0,0); box-shadow: none; }
.selectable.on { border-color: var(--vio); background: var(--vio-soft); box-shadow: 4px 4px 0 rgba(0,0,0,.28); animation: select-pop .18s steps(3); }
@keyframes select-pop { 50% { transform: scale(1.04); } }
.selectable.on small { color: var(--gray) !important; }

.plat-select { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
.plat-select .selectable { padding: 16px 6px 12px; display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 12px; }
.plat-select svg { width: 24px; height: 24px; }

.goal-select { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 8px; }
.goal-select .selectable { padding: 16px 8px; font-size: 13.5px; display: flex; flex-direction: column; gap: 6px; align-items: center; font-family: var(--font-mono); }
.goal-select .selectable small { font-family: var(--font-body); font-weight: 400; font-size: 11.5px; color: var(--dim); }

.size-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.size-grid .selectable { padding: 22px 6px 16px; }
.size-grid .selectable .n { font-family: var(--font-display); font-weight: 700; font-size: 30px; letter-spacing: -0.02em; line-height: 1.1; display: block; margin-bottom: 4px; }
.size-grid .selectable .per { font-family: var(--font-mono); font-size: 10.5px; color: var(--dim); font-weight: 400; display: block; }
.size-grid .off {
  position: absolute; top: -10px; right: -6px; background: var(--ghost); color: #F7F6F3;
  font-family: var(--font-pixel); font-size: 7px; padding: 4px 6px; border-radius: 0;
}
.size-grid .flag-pop {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--vio); color: #F7F6F3;
  font-family: var(--font-pixel); font-size: 6.5px; padding: 4px 7px; white-space: nowrap; letter-spacing: .04em;
  animation: pulse 2s steps(2) infinite; border-radius: 0;
}

.field label { display: block; font-family: var(--font-mono); font-weight: 600; font-size: 13px; margin-bottom: 8px; color: var(--gray); }
.input {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--line-2); background: var(--void); font-size: 15px; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  border-radius: 0;
}
.input::placeholder { color: var(--dim); }
.input:focus { outline: none; border-color: var(--vio); box-shadow: 3px 3px 0 rgba(0,0,0,.25); }
.handle-wrap { position: relative; }
.handle-wrap .at { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); font-family: var(--font-mono); color: var(--vio-hi); font-weight: 700; }
.handle-wrap .input { padding-left: 38px; font-family: var(--font-mono); }
.handle-ok { font-family: var(--font-mono); font-size: 12.5px; margin-top: 8px; color: var(--vio-hi); min-height: 20px; }
.handle-ok.err { color: var(--danger); }

.speed-row { display: flex; gap: 10px; flex-wrap: wrap; }
.speed-row .selectable { padding: 12px 18px; font-size: 13px; font-family: var(--font-mono); border-radius: 0; }

.summary-sticky { position: sticky; top: 90px; }
.code-card {
  background: var(--terminal); border: 1px solid var(--line); overflow: hidden;
  box-shadow: var(--shadow-pop); font-family: var(--font-mono); font-size: 12.5px; color: var(--code-main);
  border-radius: 0;
}
.code-card .term-body { min-height: 0; padding: 18px 22px; line-height: 1.9; }
.code-card .term-body, .code-card .ln { color: #E9E8EE; }
.code-card .k { color: #B8B6C2; }
.code-card .s { color: #AE96FA; font-weight: 700; }
.code-card .n2 { color: #AE96FA; font-weight: 700; }
.code-card .cm { color: #777581; }

.summary-box { background: var(--panel); border: 1px solid var(--line); padding: 26px; margin-top: 18px; border-radius: 0; }
.sum-row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 13.5px; padding: 7px 0; color: var(--gray); }
.sum-row b { color: var(--ink); }
.sum-row.total { border-top: 1px dashed var(--line-2); margin-top: 10px; padding-top: 16px; font-size: 15px; }
.sum-row.total b { font-family: var(--font-pixel); font-size: 16px; color: var(--vio-hi); }
.sum-row.total b.bump { animation: select-pop .25s steps(3); }
.sum-row .strike { text-decoration: line-through; color: var(--dim); }
.sum-row.saving { color: var(--vio-hi); font-weight: 600; }
.coupon-row { display: flex; gap: 8px; margin: 14px 0 4px; }
.coupon-row .input { padding: 10px 14px; font-size: 13px; font-family: var(--font-mono); text-transform: uppercase; }
.coupon-msg { font-family: var(--font-mono); font-size: 12px; min-height: 18px; margin-bottom: 6px; }
.coupon-msg.ok { color: var(--vio-hi); }
.coupon-msg.err { color: var(--danger); }
.auto-offer { margin: 14px 0 8px; padding: 10px 12px; border: 1px solid rgba(52,199,123,.45); background: rgba(52,199,123,.08); color: var(--accG); font-family: var(--font-mono); font-size: 12px; font-weight: 700; }
.summary-box .btn { width: 100%; margin-top: 12px; }
.pay-note { text-align: center; font-size: 11.5px; color: var(--dim); margin-top: 12px; font-family: var(--font-mono); }

.eta-box {
  display: flex; gap: 14px; align-items: center; background: var(--void);
  border: 1px dashed var(--line-2);
  padding: 16px 18px; margin-top: 18px; font-size: 13.5px; border-radius: 0;
}
.eta-box .clock { width: 40px; height: 40px; background: var(--vio); color: #F7F6F3; display: grid; place-items: center; flex-shrink: 0; font-size: 16px; border-radius: 0; }
.eta-box b { display: block; font-size: 14.5px; font-family: var(--font-mono); }
.eta-box span { color: var(--gray); font-size: 12.5px; }

.modal-veil {
  position: fixed; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.modal-veil.show { display: flex; }
.modal {
  background: var(--panel); border: 2px solid var(--vio); max-width: 460px; width: 100%;
  padding: 36px; position: relative;
  box-shadow: 10px 10px 0 rgba(0,0,0,.28);
  animation: modalin .22s steps(4); border-radius: 0;
}
@keyframes modalin { from { opacity: 0; transform: translateY(14px) scale(.98); } }
.modal h3 { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.02em; margin-bottom: 8px; }
.modal .hint { color: var(--gray); font-size: 13.5px; margin-bottom: 22px; }
.modal .field { margin-bottom: 16px; }
.modal-close { position: absolute; top: 14px; right: 18px; font-size: 20px; color: var(--dim); font-family: var(--font-mono); }
.modal-close:hover { color: var(--vio-hi); }

/* Branded embedded checkout */
body.checkout-open { overflow: hidden; }
.modal-veil { background: rgba(14,14,17,.78); padding: 24px; overflow-y: auto; }
.checkout-modal {
  max-width: 1060px; width: 100%; padding: 0; border: 1px solid var(--line-2);
  box-shadow: 12px 12px 0 rgba(139,108,247,.3); max-height: calc(100vh - 48px); overflow-y: auto;
}
.checkout-head { min-height: 72px; display: grid; grid-template-columns:1fr auto 1fr; align-items:center; padding: 0 28px; border-bottom:1px solid var(--line); background:var(--panel); position:sticky; top:0; z-index:3; }
.checkout-head .logo { justify-self:center; }
.checkout-back { justify-self:start; font-family:var(--font-mono); font-size:12px; color:var(--gray); padding:10px 0; }
.checkout-back:hover { color:var(--accV); }
.secure-chip { justify-self:end; font-family:var(--font-pixel); font-size:7px; letter-spacing:.08em; color:var(--accG); text-transform:uppercase; }
.checkout-steps { display:flex; align-items:center; max-width:660px; margin:26px auto 8px; padding:0 24px; }
.checkout-steps > div { min-width:86px; display:flex; flex-direction:column; align-items:center; gap:7px; font-family:var(--font-pixel); font-size:7px; color:var(--dim); text-transform:uppercase; letter-spacing:.05em; }
.checkout-steps i { width:34px; height:34px; display:grid; place-items:center; font-family:var(--font-mono); font-style:normal; font-size:12px; border:1px solid var(--line-2); background:var(--void); }
.checkout-steps b { flex:1; height:1px; background:var(--line-2); margin-bottom:21px; }
.checkout-steps .done, .checkout-steps .active { color:var(--ink); }
.checkout-steps .done i { color:#fff; background:var(--accV); border-color:var(--accV); }
.checkout-steps .active i { color:var(--accV); border-color:var(--accV); box-shadow:3px 3px 0 rgba(139,108,247,.25); }
.checkout-steps .done + b { height:2px; background:var(--accV); }
.checkout-grid { display:grid; grid-template-columns:.86fr 1.14fr; gap:26px; padding:26px 34px 36px; align-items:start; }
.checkout-grid section { padding:28px; border:1px solid var(--line); background:var(--panel); }
.checkout-grid h3 { font-family:var(--font-display); font-size:27px; letter-spacing:-.03em; margin:4px 0 18px; }
.checkout-order { position:sticky; top:98px; box-shadow:6px 6px 0 rgba(0,0,0,.08); }
.checkout-product { display:flex; gap:14px; padding:16px 0 20px; border-bottom:1px solid var(--line); }
.checkout-product-icon { width:42px; height:42px; display:grid; place-items:center; background:var(--terminal); color:var(--accVh); font-size:18px; flex:0 0 auto; }
.checkout-product b, .checkout-product span, .checkout-product small { display:block; }
.checkout-product b { font-size:15px; }
.checkout-product span { color:var(--accV); font-family:var(--font-mono); font-size:12px; margin-top:2px; }
.checkout-product small { color:var(--dim); font-size:11.5px; margin-top:5px; }
.checkout-lines { padding-top:12px; }
.checkout-lines > div { display:flex; justify-content:space-between; gap:20px; padding:7px 0; font-family:var(--font-mono); color:var(--gray); font-size:12.5px; }
.checkout-lines .saving strong { color:var(--accG); font-weight:600; }
.checkout-lines .checkout-total { border-top:1px dashed var(--line-2); margin-top:10px; padding-top:16px; color:var(--ink); font-family:var(--font-display); font-size:18px; font-weight:700; }
.checkout-total b { font-family:var(--font-pixel); font-size:15px; color:var(--accV); }
.checkout-note { margin-top:18px; color:var(--dim); text-align:center; font-size:11.5px; line-height:1.8; }
.checkout-payment .hint { margin-bottom:20px; }
.checkout-fields { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.checkout-fields .field { margin:0; }
.stripe-shell { min-height:168px; margin-top:18px; position:relative; }
.payment-loading { min-height:168px; border:1px dashed var(--line-2); background:var(--void); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:var(--dim); font-family:var(--font-mono); font-size:12px; }
.payment-loading span { width:24px; height:24px; border:3px solid var(--line-2); border-top-color:var(--accV); animation:spin .8s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
.payment-error { color:var(--danger); font-family:var(--font-mono); font-size:12px; min-height:20px; margin-top:10px; }
.pay-submit { width:100%; margin-top:8px; }
.checkout-trust { display:flex; justify-content:center; flex-wrap:wrap; gap:12px 18px; padding-top:16px; color:var(--dim); font-family:var(--font-mono); font-size:9.5px; text-transform:uppercase; }

@media (max-width:760px) {
  .modal-veil { padding:0; align-items:stretch; }
  .checkout-modal { max-height:none; min-height:100vh; border:0; box-shadow:none; }
  .checkout-head { padding:0 16px; min-height:62px; }
  .secure-chip { display:none; }
  .checkout-head { grid-template-columns:1fr auto 1fr; }
  .checkout-steps { margin-top:20px; }
  .checkout-grid { grid-template-columns:1fr; padding:18px 16px 30px; }
  .checkout-order { position:static; }
  .checkout-grid section { padding:22px 18px; }
  .checkout-fields { grid-template-columns:1fr; }
}

.success-wrap { max-width: 640px; margin: 0 auto; text-align: center; padding: 40px 0; }
.success-check {
  width: 96px; height: 96px; background: var(--vio); color: #F7F6F3;
  display: grid; place-items: center; margin: 0 auto 30px;
  box-shadow: 6px 6px 0 rgba(0,0,0,.3);
  animation: popin .45s steps(5); border-radius: 0;
}
@keyframes popin { from { transform: scale(.3); opacity: 0; } }
.level-complete { font-family: var(--font-pixel); font-size: 10px; letter-spacing: .2em; color: var(--vio-hi); animation: pulse 1.4s steps(2) infinite; margin-bottom: 14px; text-transform: uppercase; }
.order-id-chip {
  font-family: var(--font-mono); font-size: 13px; background: var(--void);
  border: 1px dashed var(--line-2); padding: 12px 20px;
  display: inline-block; margin: 20px 0 30px; user-select: all; color: var(--gray); border-radius: 0;
}

.confetti { position: fixed; width: 8px; height: 8px; z-index: 300; pointer-events: none; animation: confetti-fall linear forwards; border-radius: 0; }
@keyframes confetti-fall { to { transform: translateY(110vh) rotate(540deg); opacity: .2; } }

/* ============================================================
   TRACK PAGE
   ============================================================ */
.track-main { padding: 64px 0 110px; }
.track-card { max-width: 580px; margin: 0 auto; }
.order-card { background: var(--panel); border: 1px solid var(--line); padding: 28px; margin-top: 22px; text-align: left; transition: transform .15s, box-shadow .15s; border-radius: 0; }
.order-card:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 rgba(0,0,0,.18); }
.order-card.found { border: 2px solid var(--vio); box-shadow: 6px 6px 0 rgba(0,0,0,.25); }
.order-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; }
.order-head .oh-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; }
.order-head .price { font-family: var(--font-pixel); font-size: 14px; color: var(--vio-hi); }
.order-meta { font-family: var(--font-mono); font-size: 12px; color: var(--dim); margin-top: 7px; line-height: 1.9; }
.badge { font-family: var(--font-pixel); font-size: 7px; padding: 5px 9px; display: inline-block; letter-spacing: .08em; background: var(--vio); color: #F7F6F3; border-radius: 0; }
.progress-block { background: var(--void); border: 1px solid var(--line); padding: 20px; margin-top: 20px; border-radius: 0; }
.progress-block .pb-head { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 13px; font-weight: 600; }
.progress-block .pb-head .pct { font-family: var(--font-pixel); font-size: 11px; color: var(--vio-hi); }
.progress-block p { font-size: 13px; color: var(--gray); margin: 9px 0 15px; line-height: 1.6; }
.pbar { height: 14px; border: 1px solid var(--line-2); padding: 2px; border-radius: 0; background: none; }
.pbar i { display: block; height: 100%; width: 0; background: repeating-linear-gradient(90deg, var(--vio) 0 8px, rgba(0,0,0,.35) 8px 10px); transition: width 1.2s steps(14); border-radius: 0; }
.order-actions { display: flex; gap: 16px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.order-actions .link { font-family: var(--font-mono); font-weight: 600; color: var(--vio-hi); font-size: 13px; }
.order-actions .link:hover { text-decoration: underline; }
.track-empty { text-align: center; color: var(--gray); font-size: 14px; padding: 26px 0 4px; font-family: var(--font-mono); line-height: 1.8; }

/* ---------- toast ---------- */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(90px);
  background: var(--vio); color: #F7F6F3; font-family: var(--font-mono); font-size: 13.5px; font-weight: 700;
  padding: 13px 24px; box-shadow: 5px 5px 0 rgba(0,0,0,.5);
  transition: transform .25s steps(5); z-index: 200; border-radius: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero { padding: 60px 0 76px; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  section { padding: 70px 0; }
  .plat-grid { grid-template-columns: repeat(3, 1fr); }
  .plat-card { border-bottom: 1px solid var(--line); }
  .flow-row, .flow-row.rev { flex-wrap: wrap; justify-content: flex-start; gap: 12px; margin-top: 0; }
  .flow-row.rev { flex-direction: column-reverse; align-items: flex-start; margin-top: 12px; }
  .flow-arr, .flow-bend { display: none; }
  .flow-pill { white-space: normal; }
  .pack-row, .review-grid { grid-template-columns: 1fr; }
  .pack-card:nth-child(1), .pack-card:nth-child(3) { margin-top: 0; }
  .review:nth-child(2) { transform: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-bottom: 1px solid var(--line); }
  .order-grid { grid-template-columns: 1fr; }
  .summary-sticky { position: static; }
  .plat-select { grid-template-columns: repeat(3, 1fr); }
  .goal-select { grid-template-columns: repeat(2, 1fr); }
  .size-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-links { display: none; }
  .igp-stats { gap: 18px; }
  #growth-chart { height: 240px; }
}
@media (max-width: 560px) {
  section { padding: 58px 0; }
  .cta-banner { padding: 50px 24px; }
  .plat-grid { grid-template-columns: repeat(2, 1fr); }
  .size-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-bar { transform: scale(.86); }
  .ba-side { padding: 16px 14px 14px; }
  .igp-top { gap: 14px; }
  .igp-av { width: 56px; height: 56px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  #rain { display: none; }
  .promobar .tick { animation: none; padding-left: 0; }
  .boot, .rv, .stagger > * { opacity: 1; transform: none; }
}


/* ============================================================
   ACCENT DETAILS OVERRIDE — mono base, color only in small doses
   violet = interactive details · orange = tiny highlights · green = status
   ============================================================ */
:root { --accV: #8B6CF7; --accVh: #AE96FA; --accO: #F0863C; --accG: #34C77B; }

/* violet micro-details */
#scrollbar { background: var(--accV); }
.term-bar i:first-child { background: var(--accV); }
.kicker { color: var(--accVh); }
.kicker::before { color: var(--dim); }
.nav-links a:hover, .nav-links a.active { border-color: var(--accV); }
.plat-card::after { background: var(--accV); }
.selectable.on { border-color: var(--accV); box-shadow: 4px 4px 0 rgba(139,108,247,.3); background: rgba(139,108,247,.1); }
.step-dot.active .ic { border-color: var(--accV); color: var(--accVh); box-shadow: 3px 3px 0 rgba(139,108,247,.3); }
.step-dot.done .ic { background: var(--accV); border-color: var(--accV); color: #fff; }
.step-link.done { background: var(--accV); }
.xpbar i { background: repeating-linear-gradient(90deg, var(--accV) 0 8px, rgba(139,108,247,.35) 8px 10px); }
.pbar i { background: repeating-linear-gradient(90deg, var(--accV) 0 8px, rgba(139,108,247,.35) 8px 10px); }
.sum-row.total b { color: var(--accVh); }
.flow-start { background: var(--accV); color: #fff; box-shadow: 3px 3px 0 rgba(139,108,247,.3); }
.flow-pill.violet { background: var(--accV); color: #fff; }
.ba-bar { background: var(--accV); }
.ba-bar::after { background: var(--accV); color: #fff; }
.level-complete { color: var(--accVh); }
.success-check { background: var(--accV); color: #fff; box-shadow: 6px 6px 0 rgba(139,108,247,.3); }
.chart-foot b { color: var(--accVh); }
.flow-note b { color: var(--accVh); }
.input:focus { border-color: var(--accV); box-shadow: 3px 3px 0 rgba(139,108,247,.25); }
.handle-wrap .at { color: var(--accVh); }
.modal { border-color: var(--accV); box-shadow: 10px 10px 0 rgba(139,108,247,.25); }
.order-card.found { border-color: var(--accV); box-shadow: 6px 6px 0 rgba(139,108,247,.25); }
details[open] summary::before { color: var(--accVh); }

/* orange micro-details */
.review .stars { color: var(--accO); }
.pack-flag { background: var(--accO); color: #1A0E04; animation: pulse 2s steps(2) infinite; }
.size-grid .flag-pop { background: var(--accO); color: #1A0E04; }
.promobar b { background: #F7F6F3; color: var(--accO); }

/* green = status/success details */
.status-ok::before { background: var(--accG); }
.chart-head .live::before { background: var(--accG); }
.handle-ok { color: var(--accG); }
.coupon-msg.ok { color: var(--accG); }
.badge { background: var(--accG); color: #08130C; }
.ba-tag.after { background: var(--accG); color: #08130C; }
.eyebrow .dot { background: var(--accG); }

/* ============================================================
   FLOW TIMELINE — compact, like the reference
   ============================================================ */
.flow { margin-top: 44px; max-width: 980px; margin-left: auto; margin-right: auto; }
.flow-pill {
  font-size: 11.5px; padding: 10px 16px; letter-spacing: .03em;
  box-shadow: 3px 3px 0 rgba(0,0,0,.12);
}
.flow-pill:hover { transform: translate(-2px,-2px); box-shadow: 4px 4px 0 rgba(139,108,247,.35); }
.flow-start { width: 34px; height: 34px; margin-right: 12px; }
.flow-start svg { width: 15px; height: 15px; }
.flow-arr { min-width: 28px; margin: 0 6px; }
.flow-row.rev { margin-top: 36px; }
.flow-bend { height: 36px; transform: translateY(18px); width: 40%; }
.flow-note { margin-top: 44px; font-size: 11.5px; }
#how .sub { margin-bottom: 0; }
#how { padding: 80px 0; }


/* ============================================================
   PROOF SECTION — compact two-column (slider left, copy right)
   ============================================================ */
.proof-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 60px; align-items: center; }
.proof-media .ba-wrap { margin-top: 0; }
.proof-media .ba { max-width: 620px; margin: 0; }
.proof-media .ba-side { padding: 18px 18px 16px; }
.proof-media .igp-top { gap: 20px; margin-bottom: 12px; }
.proof-media .igp-av { width: 56px; height: 56px; }
.proof-media .igp-stats { gap: 22px; }
.proof-media .igp-stats b { font-size: 16px; }
.proof-media .igp-stats span { font-size: 11.5px; }
.proof-media .igp-name { margin-bottom: 10px; }
.proof-media .igp-btn { padding: 7px 0; font-size: 13px; margin-bottom: 14px; }
.proof-copy .kicker { display: inline-block; }
.proof-copy h2 { margin-top: 14px; }
.proof-copy .sub { margin-bottom: 4px; }
.proof-copy .ba-caption {
  flex-direction: column; align-items: flex-start; gap: 8px;
  margin: 22px 0 0; max-width: none;
  border-top: 1px solid var(--line); padding-top: 18px;
}
#proof { padding: 84px 0; }

@media (max-width: 980px) {
  .proof-grid { grid-template-columns: 1fr; gap: 36px; }
  .proof-copy { order: -1; }
  .proof-media .ba { max-width: 560px; margin: 0 auto; }
}

/* ============================================================
   ORDER FLOW — marketing goals, account card, unfold
   ============================================================ */

/* "We found your account" card */
.acct-card {
  display: flex; gap: 16px; align-items: flex-start;
  margin-top: 18px; padding: 18px;
  background: var(--panel2); border: 1px solid var(--line-2);
  box-shadow: 4px 4px 0 rgba(0,0,0,.08);
  animation: boot .45s var(--ease);
}
.acct-ava {
  flex: 0 0 auto; width: 46px; height: 46px;
  background: var(--accV, var(--vio)); color: #F7F6F3;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  display: grid; place-items: center;
  box-shadow: 3px 3px 0 rgba(0,0,0,.2);
}
.acct-info { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.acct-info b { font-family: var(--font-display); font-size: 15.5px; letter-spacing: -0.01em; }
.acct-info > span { font-size: 13px; color: var(--gray); }
.acct-info em { font-style: normal; font-family: var(--font-mono); color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }
.acct-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 2px; }
.acct-tag {
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 10px; background: var(--accV, var(--vio)); color: #F7F6F3;
}
.acct-tag.alt { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.acct-note { font-size: 12px; color: var(--dim); font-family: var(--font-mono); }

/* locked stub + unfold reveal */
.unfold-lock {
  display: flex; flex-direction: column; gap: 6px; align-items: flex-start;
  border-style: dashed; border-color: var(--line-2);
  box-shadow: none; background: transparent;
}
.unfold-lock .lock-ic {
  font-family: var(--font-pixel); font-size: 11px; color: var(--accV, var(--vio));
  animation: pulse 1.6s steps(2) infinite;
}
.unfold-lock b { font-family: var(--font-display); font-size: 15.5px; }
.unfold-lock span:not(.lock-ic) { font-size: 13px; color: var(--gray); font-family: var(--font-mono); }
.unfold { display: none; }
.unfold.open { display: block; animation: boot .5s var(--ease); }
@media (prefers-reduced-motion: reduce) {
  .acct-card, .unfold.open { animation: none; }
}

/* ============================================================
   SOCIAL PROOF — Trustpilot reviews, laurels, feature grid, logos
   ============================================================ */

/* laurel-wrapped label */
.tp-laurel { display:flex; align-items:center; justify-content:center; gap:14px; margin-bottom:6px; }
.tp-laurel .lf, .laurel .lf { font-family:var(--font-display); font-size:26px; color:var(--line-2); font-weight:700; }

/* inline "Excellent 4.9/5" badge */
.tp-badge-inline {
  display:inline-flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:center;
  margin:20px auto 40px; padding:12px 20px;
  background:var(--panel); border:1px solid var(--line-2);
  box-shadow:var(--shadow-pop); font-size:14px;
}
.tp-badge-inline > b { font-family:var(--font-display); font-size:15px; }
.tp-stars { color:var(--accG,#34C77B); letter-spacing:2px; }
.tp-stars.sm { font-size:13px; letter-spacing:1px; }
.tp-rated { color:var(--gray); font-family:var(--font-mono); font-size:13px; }
.tp-rated b { color:var(--ink); }
.tp-div { width:1px; height:20px; background:var(--line-2); }
.tp-faces { display:inline-flex; }
.tp-faces i {
  width:26px; height:26px; margin-left:-8px; border:2px solid var(--panel);
  background:var(--ink); color:var(--void); font-style:normal; font-weight:700;
  font-size:12px; display:grid; place-items:center; font-family:var(--font-display);
}
.tp-faces i:first-child { margin-left:0; }
.tp-faces i:nth-child(2){ background:var(--accV,#8B6CF7); }
.tp-faces i:nth-child(3){ background:var(--accG,#34C77B); }
.tp-trust { font-family:var(--font-mono); font-size:12.5px; color:var(--gray); }

/* review cards */
.tp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; text-align:left; }
.tp-card {
  background:var(--panel); border:1px solid var(--line); padding:22px;
  box-shadow:4px 4px 0 rgba(0,0,0,.06); transition:transform .18s var(--ease), box-shadow .18s var(--ease);
  display:flex; flex-direction:column; gap:12px;
}
.tp-card:hover { transform:translate(-3px,-3px); box-shadow:7px 7px 0 rgba(0,0,0,.1); }
.tp-top { display:flex; align-items:center; justify-content:space-between; }
.tp-date { font-family:var(--font-mono); font-size:12px; color:var(--dim); }
.tp-card h4 { font-family:var(--font-display); font-size:17px; letter-spacing:-.01em; }
.tp-card p { font-size:14px; color:var(--gray); line-height:1.6; flex:1; }
.tp-who { display:flex; align-items:center; gap:11px; border-top:1px solid var(--line); padding-top:14px; }
.tp-who .avatar {
  width:38px; height:38px; flex:0 0 auto; background:var(--ink); color:var(--void);
  font-family:var(--font-display); font-weight:700; display:grid; place-items:center; font-size:16px;
}
.tp-who b { display:block; font-size:14px; font-family:var(--font-display); }
.tp-who span { font-size:12px; color:var(--dim); font-family:var(--font-mono); }

/* award laurels strip — real leaf wreaths */
.laurels { display:flex; justify-content:center; gap:56px; flex-wrap:wrap; margin-top:46px; }
.laurel { display:flex; align-items:center; gap:6px; }
.laurel div { text-align:center; padding:0 2px; }
.laurel b { display:block; font-family:var(--font-display); font-size:30px; letter-spacing:-.02em; line-height:1.1; }
.laurel span { font-family:var(--font-mono); font-size:11.5px; color:var(--gray); text-transform:uppercase; letter-spacing:.06em; }
.laurel-svg { width:26px; height:42px; color:var(--line-2); flex:0 0 auto; }
.laurel-svg.flip { transform:scaleX(-1); }

/* feature grid (dark cards) */
#features { padding:84px 0 40px; }
.feat-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:36px; }
.feat-card {
  background:var(--terminal,#0E0E11); color:#F1F0EC; border:1px solid #24242A;
  padding:26px 28px; min-height:120px;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  transition:transform .18s var(--ease), border-color .18s;
}
.feat-card:hover { transform:translate(-2px,-2px); border-color:var(--accG,#34C77B); }
.feat-card.big { grid-column:span 1; min-height:150px; }
.feat-tx b { font-family:var(--font-display); font-size:20px; letter-spacing:-.01em; display:block; margin-bottom:7px; }
.feat-tx span { font-size:14px; color:#A9A8B0; line-height:1.55; max-width:38ch; display:block; }
.feat-ic {
  font-size:34px; color:var(--accG,#34C77B); flex:0 0 auto;
  width:58px; height:58px; display:grid; place-items:center;
  border:1px solid #24242A; background:#16161A;
}

/* trust logos bar */
.trust-strip { padding:44px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--panel2); }
.trust-cap { font-family:var(--font-mono); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--gray); margin-bottom:22px; }
.trust-logos { display:flex; align-items:center; justify-content:center; gap:40px; flex-wrap:wrap; }
.trust-logos span {
  font-family:var(--font-display); font-weight:700; font-size:20px; letter-spacing:-.01em;
  color:var(--dim); filter:grayscale(1); opacity:.7; transition:opacity .2s, color .2s;
}
.trust-logos span:hover { opacity:1; color:var(--ink); }

/* order-page compact proof */
.ord-proof { margin-top:22px; }
.ord-badge {
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  padding:11px 14px; background:var(--panel2); border:1px solid var(--line-2);
  font-size:13px; margin-bottom:14px;
}
.ord-badge .tp-stars { font-size:12px; }
.ord-badge b { font-family:var(--font-display); font-size:13.5px; }
.ord-badge .om { font-family:var(--font-mono); font-size:12px; color:var(--gray); }
.ord-revs { display:flex; flex-direction:column; gap:10px; }
.ord-rev { padding:13px 15px; background:var(--panel); border:1px solid var(--line); }
.ord-rev .tp-top { margin-bottom:6px; }
.ord-rev p { font-size:12.5px; color:var(--gray); line-height:1.5; margin-bottom:8px; }
.ord-rev .rn { font-family:var(--font-mono); font-size:11.5px; color:var(--dim); }
.ord-rev .rn b { color:var(--ink); font-family:var(--font-display); }

.payment-free {
  display:grid; gap:7px; padding:22px; margin:10px 0;
  border:1px solid var(--ink); background:#E9FFB9;
  box-shadow:3px 3px 0 var(--ink);
}
.payment-free b { font-family:var(--font-display); }
.payment-free span { color:var(--gray); font-size:13px; }

@media (max-width:900px){
  .tp-grid { grid-template-columns:1fr; }
  .feat-grid { grid-template-columns:1fr; }
  .laurels { gap:30px; }
}
