:root {
  --bg: #f6f1e6;
  --bg-warm: #efe8d6;
  --ink: #11110f;
  --ink-soft: #2a2a26;
  --muted: #6c6759;
  --line: #11110f;
  --hairline: rgba(17, 17, 15, 0.14);
  --accent: #d4ff3c;       /* one acid lime */
  --alarm: #ff4a26;        /* tangerine, used sparingly */
  --paper: #fffaee;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

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

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

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* Subtle paper grain */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.06;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .55 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, 56px);
  background: rgba(246, 241, 230, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--hairline);
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
}
.logo-mark {
  font-size: 22px;
  color: var(--ink);
  align-self: center;
  line-height: 1;
}
.logo-tm {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  align-self: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.02em;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--ink);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
  background: var(--accent);
  color: var(--ink);
}
.nav-cta-arrow { transition: transform 0.2s ease; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px) rotate(-8deg); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(36px, 5vw, 56px) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 100px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-bottom: clamp(28px, 4vw, 56px);
}
.meta-line { flex: 1; height: 1px; background: var(--hairline); }

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  padding: 8px 14px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  margin-bottom: 28px;
}
.kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--alarm);
  box-shadow: 0 0 0 4px rgba(255, 74, 38, 0.18);
  animation: kpulse 1.6s ease-in-out infinite;
}
@keyframes kpulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 74, 38, 0.20); }
  50%      { box-shadow: 0 0 0 7px rgba(255, 74, 38, 0.04); }
}

.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}
.hl {
  background: var(--accent);
  padding: 0 0.14em 0.04em;
  display: inline-block;
  border: 1.5px solid var(--ink);
  box-shadow: var(--shadow-sm);
  transform: rotate(-1.2deg);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.55;
  max-width: 540px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1.5px solid var(--ink);
  cursor: pointer;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s;
  font-family: 'Geist', sans-serif;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--accent);
  color: var(--ink);
}
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-sm);
}
.btn.big { padding: 18px 30px; font-size: 16px; }
.btn-arrow { transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1); display: inline-block; }
.btn:hover .btn-arrow { transform: translateX(5px); }

.proof-row {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
}
.proof-row li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.proof-row strong {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.proof-row span {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* HERO STAGE */
.hero-stage {
  position: relative;
  height: clamp(560px, 60vw, 660px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  width: 290px;
  height: 580px;
  background: var(--ink);
  border-radius: 46px;
  border: 1.5px solid var(--ink);
  padding: 14px;
  box-shadow: var(--shadow);
  z-index: 2;
  transform: rotate(-2.2deg);
}
.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: linear-gradient(180deg, #14140f 0%, #0d0d0a 100%);
  background-image:
    radial-gradient(at top right, rgba(212, 255, 60, 0.10), transparent 55%),
    radial-gradient(at bottom left, rgba(255, 74, 38, 0.06), transparent 55%);
  color: #faf6e8;
  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: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  color: #cfcabf;
  padding: 4px 6px 0;
}
.locked-pill {
  background: rgba(255, 74, 38, 0.14);
  border: 1px solid rgba(255, 74, 38, 0.5);
  color: #ff8773;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lock-icon {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--alarm);
  box-shadow: 0 0 0 2px rgba(255, 74, 38, 0.3);
  display: inline-block;
}

.lock-card {
  background: #1a1a14;
  border: 1px solid #2a2a22;
  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: var(--accent);
  border-radius: 2px;
}
.lock-app {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #cfcabf;
  margin: 0 0 8px;
}
.lock-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 8px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.lock-hint { font-size: 13px; color: #aaa39a; margin: 0 0 16px; }
.lock-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: #8a857a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lock-meta .dot {
  width: 3px; height: 3px; 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: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
  position: relative;
  opacity: 0.9;
}
.app-ico::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 12px; height: 12px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.app-ico.ig { background: linear-gradient(135deg, #f09433, #dc2743 50%, #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: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 12px;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.scan-ring {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px var(--accent), 0 0 0 5px 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 12px transparent, 0 0 0 14px transparent; }
}

.snitch-card {
  position: absolute;
  right: -10px;
  bottom: 30px;
  width: 220px;
  height: 220px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 24px;
  box-shadow: var(--shadow);
  z-index: 3;
  transform: rotate(5deg);
  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: 'Geist Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.snitch-card-label strong { color: var(--ink); font-weight: 700; }

.alert-toast {
  position: absolute;
  left: -28px;
  bottom: 70px;
  width: 280px;
  background: var(--paper);
  border: 1.5px 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(-3deg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-7px); }
}
.alert-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 800;
  border: 1.5px solid var(--ink);
}
.alert-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.alert-title { font-weight: 600; font-size: 14px; line-height: 1.2; }
.alert-sub { font-size: 12px; color: var(--muted); }
.alert-time {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  color: var(--muted);
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding: 22px 0;
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.03em;
  animation: scroll 26s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-dot { color: var(--accent); font-style: normal; font-size: 0.6em; }

/* ============== SECTIONS ============== */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.eb-dash {
  width: 28px; height: 1.5px; background: var(--ink);
}

.section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.section h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
}

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

/* ============== HOW ============== */
.steps {
  display: grid;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  border-top: 1.5px solid var(--ink);
}
.step {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 3.5vw, 44px) clamp(8px, 2vw, 20px);
  border-bottom: 1px solid var(--hairline);
  transition: background 0.3s ease;
}
.step:last-child { border-bottom: 1.5px solid var(--ink); }
.step:hover { background: var(--bg-warm); }

.step-num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(56px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--muted);
}
.step:hover .step-num { color: var(--ink); }
.step-body h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
}
.step-body p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 60ch;
}
.step-tag {
  justify-self: end;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--ink);
}

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

.map-card {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  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: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.map-card-head { border-bottom: 1px solid var(--hairline); }
.map-card-foot { border-top: 1px solid var(--hairline); background: var(--bg-warm); }
.map-card-foot strong { color: var(--alarm); }
.map-status { display: inline-flex; align-items: center; gap: 8px; color: var(--alarm); }
.map-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--alarm);
  animation: kpulse 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, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.07) 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(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}
.pin-sub {
  font-weight: 400;
  font-size: 10px;
  color: var(--muted);
  text-transform: none;
  margin-top: 2px;
}
.pin-you { top: 60%; left: 18%; background: var(--ink); color: var(--paper); }
.pin-you .pin-sub { color: rgba(255, 250, 238, 0.7); }
.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: 600;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

.scoreboard {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1.5px 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 #2a2a22;
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.score-title {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  display: block;
  letter-spacing: -0.02em;
}
.score-sub {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: #9a9489;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.score-prize {
  background: var(--accent);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.score-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.score-row {
  display: grid;
  grid-template-columns: 28px 80px 1fr 80px 90px;
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  background: #1a1a14;
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid transparent;
}
.rank {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 18px;
}
.name { font-weight: 500; text-transform: lowercase; }
.bar {
  height: 6px;
  background: #2a2a22;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.fill {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.cheats {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: #aaa39a;
  text-align: right;
  text-transform: uppercase;
}
.status {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  text-align: right;
  letter-spacing: 0.04em;
  font-weight: 600;
}
.score-row.clean .status { color: var(--accent); }
.score-row.ok .status    { color: #cfcabf; }
.score-row.warn .fill    { background: #f5b400; }
.score-row.warn .status  { color: #f5b400; }
.score-row.bad           { background: rgba(255, 74, 38, 0.14); border-color: rgba(255, 74, 38, 0.4); }
.score-row.bad .fill     { background: var(--alarm); }
.score-row.bad .status   { color: var(--alarm); }

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

/* ============== PRODUCT ============== */
.product {
  background: var(--accent);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px 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: 1.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.product-img,
.product-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: opacity 0.5s ease;
}
.product-video {
  object-fit: cover;
  opacity: 0;
}
.product-visual:hover .product-video { opacity: 1; }
.product-visual:hover .product-img   { opacity: 0; }
.product-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  font-family: 'Geist Mono', monospace;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: rotate(6deg);
  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: 28px 0 32px;
  border-top: 1.5px solid var(--ink);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1.5px solid var(--ink);
  font-size: 15px;
}
.spec-list span {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.spec-list strong { font-weight: 600; }
.ships {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  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;
  border-top: 1.5px solid var(--ink);
}
.faq-list details {
  border-bottom: 1px solid var(--hairline);
  transition: background 0.2s;
}
.faq-list details:last-child { border-bottom: 1.5px solid var(--ink); }
.faq-list details[open]      { background: var(--bg-warm); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 24px);
  letter-spacing: -0.01em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.plus {
  position: relative;
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  transition: transform 0.25s, background 0.25s;
}
.plus::before, .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.plus::before {
  width: 10px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.plus::after {
  width: 1.5px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.faq-list details[open] .plus { background: var(--ink); }
.faq-list details[open] .plus::before { background: var(--paper); }
.faq-list details[open] .plus::after  { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-list details p {
  margin: 0;
  padding: 0 4px 24px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ============== CLOSER ============== */
.closer {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 56px);
  text-align: center;
  background: var(--ink);
  color: var(--paper);
}
.closer h2 {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: clamp(56px, 10vw, 140px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 40px;
}
.closer h2 em {
  font-style: italic;
  font-weight: 400;
  background: var(--accent);
  color: var(--ink);
  padding: 0 0.12em 0.04em;
  display: inline-block;
}
.closer-btn {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--paper);
  box-shadow: 6px 6px 0 var(--paper);
}
.closer-btn:hover {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 9px 9px 0 var(--paper);
}

/* ============== FOOTER ============== */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 40px clamp(20px, 4vw, 56px);
  border-top: 1px solid #2a2a22;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 28px;
  border-bottom: 1px solid #2a2a22;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.02em;
}
.footer-tm {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: #9a9489;
  letter-spacing: 0.06em;
}
.footer-tag {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: #9a9489;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  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: 540px; margin-top: 30px; }
  .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: 22px; }
  .nav-cta { font-size: 12px; padding: 8px 12px; }
  .hero-stage { height: 480px; transform: scale(0.88); }
  .alert-toast { width: 240px; left: -10px; }
  .snitch-card { width: 170px; height: 170px; right: -10px; }
  .proof-row strong { font-size: 30px; }
  .step { padding: 24px 8px; }
  .step-num { font-size: 48px; }
  .step h3 { font-size: 22px; }
  .scoreboard { padding: 20px; }
  .score-row { grid-template-columns: 22px 1fr 70px; gap: 10px; padding: 12px; }
  .score-row .bar { display: none; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
