:root {
  --bg: #f3efe6;
  --bg-2: #ebe6d8;
  --ink: #0d0d0d;
  --ink-soft: #2a2a2a;
  --muted: #6f6a5f;
  --line: #0d0d0d;
  --accent: #c6ff3a;        /* acid lime */
  --accent-2: #ff5a3c;      /* hot tangerine */
  --accent-3: #6e5cff;      /* electric violet */
  --danger: #ff3b30;
  --ok: #1f9d55;
  --warn: #f5b400;
  --card: #ffffff;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --radius: 22px;
  --radius-sm: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 48px);
  background: var(--bg);
  border-bottom: 2px solid var(--ink);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -.02em;
}
.logo-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid var(--ink);
  display: inline-block;
  align-self: center;
}
.logo-tm { font-size: 11px; font-weight: 600; color: var(--muted); }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--accent-2); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ink);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--ink);
  transition: transform .15s ease;
}
.nav-cta:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-sm); background: var(--accent); color: var(--ink); }
.arrow { display: inline-block; transition: transform .2s; }
.nav-cta:hover .arrow { transform: rotate(45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 0 clamp(20px, 4vw, 48px) 60px;
}

.ticker {
  border-bottom: 2px solid var(--ink);
  margin: 0 calc(clamp(20px, 4vw, 48px) * -1);
  overflow: hidden;
  background: var(--accent);
}
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  padding: 10px 0;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.ticker-track span { padding: 0 6px; }
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(40px, 7vw, 80px) 0 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--card);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(255, 59, 48, .2);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,59,48,.2); }
  50% { box-shadow: 0 0 0 7px rgba(255,59,48,.05); }
}

.hero-title {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: .96;
  letter-spacing: -.035em;
  margin: 0 0 28px;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--muted);
}
.hero-title .strike {
  position: relative;
  white-space: nowrap;
}
.hero-title .strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 52%;
  height: 8px;
  background: var(--accent-2);
  transform: rotate(-3deg);
}
.hl {
  background: var(--accent);
  padding: 0 .12em;
  display: inline-block;
  transform: rotate(-1.5deg);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.hl-2 {
  background: var(--accent-3);
  color: var(--bg);
  padding: 0 .15em;
  display: inline-block;
  transform: rotate(-1deg);
}
.hl-3 {
  background: var(--accent-2);
  color: var(--bg);
  padding: 0 .15em;
  display: inline-block;
  transform: rotate(1deg);
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 520px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.hero-sub b { font-weight: 700; background: var(--accent); padding: 0 4px; }

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .2s;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--ink);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn.big { padding: 20px 32px; font-size: 18px; }
.btn-arrow { transition: transform .2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.proof-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.proof-row li {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.proof-row strong {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  display: block;
  line-height: 1;
  margin-bottom: 2px;
}

/* HERO STAGE */
.hero-stage {
  position: relative;
  height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticker {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--ink);
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: lowercase;
  transform: rotate(-12deg);
  z-index: 4;
  box-shadow: var(--shadow);
  animation: spin 16s linear infinite;
}
@keyframes spin { from { transform: rotate(-12deg);} to { transform: rotate(348deg);} }
.sticker span:nth-child(2) { font-size: 14px; font-weight: 500; margin: 4px 0; opacity: .9; }

.phone {
  position: relative;
  width: 290px;
  height: 580px;
  background: var(--ink);
  border-radius: 46px;
  border: 2px solid var(--ink);
  padding: 14px;
  box-shadow: var(--shadow);
  z-index: 2;
  transform: rotate(-3deg);
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  background: #111;
  background-image: radial-gradient(at top right, rgba(110,92,255,.18), transparent 50%),
                    radial-gradient(at bottom left, rgba(198,255,58,.10), transparent 50%);
  color: #fff;
  border-radius: 36px;
  height: 100%;
  padding: 36px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  color: #cfcabf;
  padding: 4px 6px 0;
}
.locked-pill {
  background: rgba(255, 59, 48, .15);
  border: 1px solid rgba(255, 59, 48, .5);
  color: #ff8273;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.lock-icon { font-size: 10px; }

.lock-card {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 18px;
  margin-top: 4px;
  position: relative;
}
.lock-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  border-radius: 2px;
}
.lock-app {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #cfcabf;
  margin: 0 0 6px;
}
.lock-card h3 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.lock-hint { font-size: 13px; color: #aaa39a; margin: 0 0 14px; }
.lock-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: #8a857a;
  text-transform: uppercase;
}
.lock-meta .dot {
  width: 4px; height: 4px; border-radius: 50%; background: #555;
}

.app-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
}
.app-ico {
  aspect-ratio: 1;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  position: relative;
  opacity: .9;
}
.app-ico::after {
  content: "🔒";
  position: absolute;
  top: 4px; right: 4px;
  font-size: 9px;
  background: rgba(0,0,0,.5);
  border-radius: 50%;
  width: 14px; height: 14px;
  display: flex; align-items: center; justify-content: center;
}
.app-ico.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366); }
.app-ico.yt { background: #ff0000; }
.app-ico.tt { background: #000; border: 1px solid #333; }
.app-ico.sc { background: #fffc00; color: #000; }

.scan-cta {
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.scan-ring {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px var(--accent), 0 0 0 6px var(--ink);
  animation: ring 1.4s ease-out infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 var(--ink), 0 0 0 2px var(--ink); }
  100% { box-shadow: 0 0 0 14px transparent, 0 0 0 16px transparent; }
}

.snitch-card {
  position: absolute;
  right: -10px;
  bottom: 30px;
  width: 220px;
  height: 220px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
  z-index: 3;
  transform: rotate(6deg);
  padding: 8px;
  overflow: hidden;
}
.snitch-video {
  width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 16px;
  background: #1a1a1a;
}
.snitch-card-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 6px 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.snitch-card-label strong { color: var(--accent-2); font-weight: 700; }

.alert-toast {
  position: absolute;
  left: -30px;
  bottom: 70px;
  width: 280px;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  z-index: 5;
  transform: rotate(-4deg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-8px); }
}
.alert-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: 'Bricolage Grotesque', serif;
  border: 2px solid var(--ink);
}
.alert-body { display: flex; flex-direction: column; flex: 1; }
.alert-title { font-weight: 700; font-size: 14px; line-height: 1.2; }
.alert-sub { font-size: 12px; color: var(--muted); }
.alert-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

/* ---------- BIG MARQUEE ---------- */
.big-marquee {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 22px 0;
}
.big-marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -.03em;
  animation: tickerScroll 22s linear infinite;
  width: max-content;
}
.dot-big { color: var(--accent); }

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 48px);
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
  color: var(--ink);
}
.eyebrow-line {
  width: 40px; height: 2px; background: var(--ink);
}

.section h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 24px;
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(50px, 6vw, 80px);
  text-align: center;
}
.section-head h2 { font-size: clamp(36px, 5vw, 64px); }

/* ---------- HOW ---------- */
.steps {
  display: grid;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  display: grid;
  grid-template-columns: 100px 1fr 130px;
  gap: 28px;
  align-items: center;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px 36px;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}
.step:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.step.alt { background: var(--accent); }
.step-num {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.04em;
}
.step h3 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 0 0 8px;
}
.step p { margin: 0; color: var(--ink-soft); }

.step-tag {
  background: var(--ink);
  color: var(--bg);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.step-tag::before {
  content: "";
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg);
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}
.step-tag.alt-tag { background: var(--accent-2); color: var(--bg); }
.step-tag.alt-tag::before { background: var(--bg); }

/* ---------- LOCATION ---------- */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  background: var(--bg-2);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.loc-copy h2 { font-size: clamp(34px, 4.6vw, 60px); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.map-card {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.map-card-head, .map-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.map-card-head { border-bottom: 2px solid var(--ink); }
.map-card-foot { border-top: 2px solid var(--ink); background: var(--bg-2); }
.map-card-foot strong { color: var(--danger); }
.map-status { display: inline-flex; align-items: center; gap: 8px; color: var(--danger); }
.map-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--danger);
  animation: pulse 1.6s ease-in-out infinite;
}

.map {
  position: relative;
  height: 340px;
  background: linear-gradient(135deg, #d8d2c0, #c9c2ad);
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.map-route {
  position: absolute;
  top: 64%;
  left: 22%;
  width: 56%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink) 0 6px, transparent 6px 12px);
  transform: rotate(-12deg);
}
.pin {
  position: absolute;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
}
.pin::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 16px;
  width: 4px; height: 12px;
  background: var(--ink);
}
.pin-sub {
  font-weight: 500;
  font-size: 10px;
  color: var(--muted);
  text-transform: none;
  margin-top: 2px;
}
.pin-you { top: 60%; left: 18%; background: var(--accent-2); color: var(--bg); }
.pin-you .pin-sub { color: rgba(255,255,255,.85); }
.pin-gym { top: 22%; right: 16%; background: var(--accent); }

/* ---------- GROUP ---------- */
.group {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.group-head { position: sticky; top: 100px; }
.group-head h2 { font-size: clamp(42px, 5.5vw, 76px); }
.group-head p { max-width: 460px; color: var(--ink-soft); }
.group-head p b { background: var(--accent); padding: 0 4px; font-weight: 700; }

.scoreboard {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
}
.score-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid #333;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.score-title {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 26px;
  font-weight: 800;
  display: block;
  letter-spacing: -.02em;
}
.score-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #9a9489;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.score-prize {
  background: var(--accent);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: 2px solid var(--bg);
}

.score-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.score-row {
  display: grid;
  grid-template-columns: 28px 80px 1fr 100px 90px;
  gap: 14px;
  align-items: center;
  padding: 14px 14px;
  background: #1a1a1a;
  border-radius: 14px;
  font-size: 14px;
}
.rank {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: 18px;
}
.name { font-weight: 600; text-transform: lowercase; }
.bar {
  height: 8px;
  background: #2a2a2a;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 1s ease;
}
.cheats {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #aaa39a;
  text-align: right;
  text-transform: uppercase;
}
.status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  text-align: right;
  letter-spacing: .04em;
  font-weight: 700;
}
.score-row.clean { background: #1a1a1a; }
.score-row.clean .status { color: var(--accent); }
.score-row.ok .status { color: #cfcabf; }
.score-row.warn .fill { background: var(--warn); }
.score-row.warn .status { color: var(--warn); }
.score-row.bad { background: rgba(255, 59, 48, .15); border: 1px solid rgba(255,59,48,.4); }
.score-row.bad .fill { background: var(--danger); }
.score-row.bad .status { color: var(--danger); }

.score-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid #333;
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #cfcabf;
  text-transform: lowercase;
}
.feed-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.feed-dot.red { background: var(--danger); }
.feed-dot.green { background: var(--accent); }
.feed-item b { color: #fff; font-weight: 700; }

/* ---------- PRODUCT ---------- */
.product {
  background: var(--accent);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.product-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.5));
}
.product-stamp {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-2);
  color: var(--bg);
  border: 2px solid var(--bg);
  border-radius: 12px;
  padding: 8px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  transform: rotate(8deg);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: center;
}
.product-copy h2 { font-size: clamp(34px, 4.4vw, 56px); }
.spec-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  border-top: 2px solid var(--ink);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 2px solid var(--ink);
  font-size: 15px;
}
.spec-list span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-soft);
}
.spec-list strong { font-weight: 700; }
.ships {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-soft);
  text-transform: lowercase;
  margin-top: 14px;
}

/* ---------- FAQ ---------- */
.faq-head {
  text-align: center;
  margin-bottom: 60px;
}
.faq-head h2 { font-size: clamp(40px, 5.5vw, 72px); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list details {
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.faq-list details[open] {
  background: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.plus {
  position: relative;
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--ink);
  transition: transform .2s, background .2s;
}
.plus::before, .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.plus::before {
  width: 12px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.plus::after {
  width: 2px; height: 12px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform .2s;
}
.faq-list details[open] .plus { background: var(--ink); }
.faq-list details[open] .plus::before { background: var(--bg); }
.faq-list details[open] .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-list details p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.faq-list details[open] p { color: var(--ink); }

/* ---------- CLOSER ---------- */
.closer {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 48px);
  text-align: center;
  background: var(--ink);
  color: var(--bg);
  border-top: 2px solid var(--ink);
}
.closer h2 {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 140px);
  line-height: .95;
  letter-spacing: -.04em;
  margin: 0 0 40px;
}
.closer .hl {
  background: var(--accent);
  color: var(--ink);
}
.closer .btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--bg);
  box-shadow: 6px 6px 0 var(--bg);
}
.closer .btn-primary:hover {
  background: var(--bg);
  box-shadow: 9px 9px 0 var(--bg);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 40px clamp(20px, 4vw, 48px);
  border-top: 1px solid #2a2a2a;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 30px;
  border-bottom: 1px solid #2a2a2a;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-logo {
  font-family: 'Bricolage Grotesque', serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -.02em;
}
.footer-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: #9a9489;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.footer-bottom {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #9a9489;
  text-transform: lowercase;
}
.footer-bottom a:hover { color: var(--accent); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { height: 560px; margin-top: 40px; }
  .location { grid-template-columns: 1fr; }
  .group { grid-template-columns: 1fr; }
  .group-head { position: static; }
  .product-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 70px 1fr; }
  .step-tag { display: none; }
  .nav-links { display: none; }
  .score-row { grid-template-columns: 22px 60px 1fr 80px; }
  .score-row .status { display: none; }
}

@media (max-width: 560px) {
  .nav { padding: 14px 18px; }
  .logo { font-size: 20px; }
  .nav-cta { font-size: 12px; padding: 8px 12px; }
  .hero-stage { height: 480px; transform: scale(.85); }
  .sticker { width: 100px; height: 100px; font-size: 14px; }
  .alert-toast { width: 240px; left: -10px; }
  .snitch-card { width: 170px; height: 170px; right: -10px; }
  .proof-row { gap: 24px; }
  .proof-row strong { font-size: 28px; }
  .step { padding: 24px; }
  .step-num { font-size: 52px; }
  .step h3 { font-size: 22px; }
  .scoreboard { padding: 18px; }
  .score-row { grid-template-columns: 22px 1fr 70px; gap: 8px; padding: 12px; }
  .score-row .bar { display: none; }
  .footer-bottom { flex-direction: column; }
}
