:root {
  --bg: #fbf8f1;
  --bg-tint: #f4efe3;
  --paper: #ffffff;
  --ink: #181613;
  --ink-soft: #3d3a35;
  --muted: #807a6f;
  --hairline: rgba(24, 22, 19, 0.10);
  --hairline-strong: rgba(24, 22, 19, 0.20);
  --accent: #d94a1f;          /* warm terracotta */
  --accent-soft: rgba(217, 74, 31, 0.08);
  --accent-deep: #a83712;
  --green: #2c6b4a;
  --shadow-card: 0 1px 0 rgba(24, 22, 19, 0.04), 0 12px 28px rgba(24, 22, 19, 0.05);
  --shadow-soft: 0 1px 0 rgba(24, 22, 19, 0.04), 0 24px 50px rgba(24, 22, 19, 0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Onest', system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -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: #fff; }

/* ============== 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(251, 248, 241, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--hairline);
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.logo-shape {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-shape > span {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -4px; height: 1.5px;
  background: var(--accent);
  transition: left 0.3s var(--ease), right 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { left: 0; right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(217, 74, 31, 0.30);
}
.nav-cta svg { transition: transform 0.25s ease; }
.nav-cta:hover svg { transform: translateX(3px); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(60px, 9vw, 110px) clamp(20px, 4vw, 56px) clamp(80px, 10vw, 140px);
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  overflow: visible;
}
.hero-aura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(900px, 80vw);
  height: 540px;
  transform: translate(-50%, -65%);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(217, 74, 31, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 30%, rgba(44, 107, 74, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-soft);
}
.meta-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(44, 107, 74, 0.18);
  animation: kpulse 2s ease-in-out infinite;
}
@keyframes kpulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(44, 107, 74, 0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(44, 107, 74, 0.04); }
}
.meta-line { flex: 0 1 90px; height: 1px; background: var(--hairline-strong); max-width: 90px; }

.hero-title {
  position: relative;
  z-index: 1;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--ink);
}
.hero-title em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  color: var(--accent);
  padding: 0 0.04em;
}
.hero-line-2 {
  display: inline-block;
  position: relative;
}
.hero-line-2::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: 8%;
  height: 8px;
  background: var(--accent-soft);
  z-index: -1;
  border-radius: 2px;
}

.hero-sub {
  position: relative;
  z-index: 1;
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 36px;
  color: var(--ink-soft);
}

.cta-row {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s, border-color 0.25s;
  font-family: 'Onest', sans-serif;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 4px 14px rgba(24, 22, 19, 0.18);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 74, 31, 0.34);
}
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--hairline-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}
.btn svg { transition: transform 0.25s ease; }
.btn:hover svg { transform: translateX(3px); }

.proof-row {
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0 auto 40px;
  display: inline-flex;
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.proof-row li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.proof-divider {
  width: 1px;
  height: 30px;
  background: var(--hairline-strong);
  flex-shrink: 0;
}
.proof-row strong {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(26px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.proof-row span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* HERO STAGE */
.hero-stage {
  position: relative;
  z-index: 1;
  margin-top: clamp(40px, 6vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(540px, 60vw, 660px);
}
.phone {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(150deg, #2a2a2a 0%, #141414 50%, #0a0a0a 100%);
  border-radius: 44px;
  padding: 9px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.5) inset,
    0 30px 70px rgba(24, 22, 19, 0.30),
    0 12px 24px rgba(24, 22, 19, 0.15);
  z-index: 2;
}
.phone-side {
  position: absolute;
  left: -2px; top: 110px;
  width: 2px; height: 70px;
  background: linear-gradient(180deg, #2a2a2a, #444, #2a2a2a);
  border-radius: 2px;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #1c1c20 0%, #100f12 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px 18px 22px;
  color: #fff;
}
.phone-screen::before {
  content: "";
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 4;
}
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 4px 14px;
}
.locked-pill {
  background: rgba(217, 74, 31, 0.16);
  border: 1px solid rgba(217, 74, 31, 0.35);
  color: #ff9472;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: none;
}
.lock-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.lock-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.lock-glyph {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(217, 74, 31, 0.15);
  border: 1px solid rgba(217, 74, 31, 0.30);
  color: rgba(255, 148, 114, 0.9);
  margin-bottom: 22px;
}
.lock-app {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 8px;
}
.lock-hero h3 {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: #fff;
}
.lock-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

.app-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.app-ico {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0.78;
}
.app-ico svg { width: 18px; height: 18px; }
.app-ico::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 9px; height: 9px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
}
.app-ico.ig { background: linear-gradient(135deg, #f09433, #dc2743 50%, #cc2366); color: #fff; }
.app-ico.yt { background: #ff0000; color: #fff; }
.app-ico.tt { background: #000; color: #fff; border: 1px solid #2a2a2a; }
.app-ico.sc { background: #fffc00; color: #000; }

.hero-card-toast {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(calc(-50% - 200px)) rotate(-3deg);
  width: 230px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 5;
  animation: floatA 5s ease-in-out infinite;
}
@keyframes floatA {
  0%, 100% { transform: translateX(calc(-50% - 200px)) rotate(-3deg) translateY(0); }
  50%      { transform: translateX(calc(-50% - 200px)) rotate(-3deg) translateY(-6px); }
}
.toast-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-size: 18px;
  flex-shrink: 0;
}
.toast-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.toast-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.toast-sub {
  font-size: 11px;
  color: var(--muted);
}

.hero-card-tag {
  position: absolute;
  left: 50%;
  bottom: 14%;
  transform: translateX(calc(-50% + 200px)) rotate(4deg);
  width: 170px;
  height: 200px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-soft);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  animation: floatB 5s ease-in-out infinite;
}
@keyframes floatB {
  0%, 100% { transform: translateX(calc(-50% + 200px)) rotate(4deg) translateY(0); }
  50%      { transform: translateX(calc(-50% + 200px)) rotate(4deg) translateY(-8px); }
}
.hero-card-tag video {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background: #1a1a1a;
}
.tag-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-align: center;
  padding: 2px 0;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.marquee-track {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.005em;
  animation: scroll 42s linear infinite;
  width: max-content;
  opacity: 0.9;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-sep {
  font-style: normal;
  color: var(--accent);
  font-size: 18px;
}

/* ============== SECTIONS ============== */
.section {
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "—";
  color: var(--accent);
  opacity: 0.6;
}

.section h2 {
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 22px;
}
.section h2 em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  color: var(--accent);
}

.section-head {
  max-width: 800px;
  margin: 0 auto clamp(48px, 6vw, 76px);
  text-align: center;
}

/* ============== HOW ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid var(--hairline-strong);
  border-bottom: 1px solid var(--hairline-strong);
}
.step {
  padding: 36px 32px 36px;
  border-right: 1px solid var(--hairline);
  transition: background 0.4s ease;
}
.step:last-child { border-right: none; }
.step:hover { background: var(--bg-tint); }

.step-num {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 38px;
  line-height: 1;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 22px;
}
.step h3 {
  font-family: 'Onest', sans-serif;
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ============== PULL QUOTE ============== */
.pullquote {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 56px);
  text-align: center;
}
.pullquote p {
  font-family: 'Newsreader', serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
  color: var(--ink);
}
.pullquote em {
  font-style: italic;
  color: var(--accent);
}
.pq-attr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

/* ============== LOCATION ============== */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.loc-copy h2 { font-size: clamp(34px, 4.4vw, 54px); }
.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;
  color: var(--ink-soft);
}
.check {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--accent);
  width: 22px;
  flex-shrink: 0;
  line-height: 1.4;
}

.map-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.map-card-head, .map-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-family: 'IBM Plex 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-tint); }
.map-card-foot strong { color: var(--accent); font-weight: 600; }
.map-status { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); }
.map-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: kpulseA 2s ease-in-out infinite;
}
@keyframes kpulseA {
  0%, 100% { box-shadow: 0 0 0 3px rgba(217, 74, 31, 0.2); }
  50%      { box-shadow: 0 0 0 6px rgba(217, 74, 31, 0.04); }
}

.map {
  position: relative;
  height: 320px;
  background:
    radial-gradient(at 70% 20%, rgba(217, 74, 31, 0.06), transparent 55%),
    linear-gradient(135deg, #f1ece0, #e6dfcc);
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.map-route {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  color: var(--accent);
  opacity: 0.7;
}
.pin {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
}
.pin-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.pin-you { top: 60%; left: 18%; background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pin-you .pin-sub { color: rgba(255,255,255,0.55); }
.pin-gym { top: 22%; right: 16%; background: var(--accent); color: #fff; border-color: var(--accent); }
.pin-gym .pin-sub { color: rgba(255,255,255,0.7); }

/* ============== GROUP ============== */
.group {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.group-head { position: sticky; top: 100px; }
.group-head h2 { font-size: clamp(36px, 4.8vw, 56px); }
.group-head p { max-width: 460px; color: var(--ink-soft); }
.group-head p b {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
  color: var(--accent);
}

.scoreboard {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
}
.score-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 16px;
  gap: 12px;
  flex-wrap: wrap;
}
.score-title {
  font-family: 'Onest', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: block;
}
.score-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.score-prize {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.score-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.score-row {
  display: grid;
  grid-template-columns: 28px 80px 1fr 80px 90px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}
.score-row:hover { transform: translateX(2px); }
.rank {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
}
.name { font-weight: 500; }
.bar {
  height: 5px;
  background: rgba(24, 22, 19, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.fill {
  display: block;
  height: 100%;
  background: var(--green);
  border-radius: 999px;
  transition: width 1s var(--ease);
}
.cheats {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}
.status {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  text-align: right;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.score-row.clean .status { color: var(--green); }
.score-row.ok    .status { color: var(--ink-soft); }
.score-row.warn  .fill   { background: #d97706; }
.score-row.warn  .status { color: #d97706; }
.score-row.bad           { background: rgba(217, 74, 31, 0.06); border-color: rgba(217, 74, 31, 0.20); }
.score-row.bad   .fill   { background: var(--accent); }
.score-row.bad   .status { color: var(--accent); }

.score-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--ink-soft);
}
.feed-dot { width: 5px; height: 5px; border-radius: 50%; }
.feed-dot.red   { background: var(--accent); }
.feed-dot.green { background: var(--green); }
.feed-item b { color: var(--ink); font-weight: 600; }

/* ============== PRODUCT ============== */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.product-visual {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid #20202a;
}
.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;
  padding: 16px;
}
.product-video {
  object-fit: cover;
  padding: 0;
  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: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transform: rotate(4deg);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: center;
  box-shadow: var(--shadow-card);
  z-index: 2;
}
.product-copy h2 { font-size: clamp(34px, 4.4vw, 54px); }
.spec-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 32px;
  border-top: 1px solid var(--hairline);
}
.spec-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 15px;
}
.spec-list span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.spec-list strong { font-weight: 600; }
.ships {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: lowercase;
  margin-top: 14px;
}

/* ============== FAQ ============== */
.faq-head { text-align: center; margin-bottom: 56px; }
.faq-head h2 { font-size: clamp(38px, 5vw, 60px); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hairline-strong);
}
.faq-list details {
  border-bottom: 1px solid var(--hairline);
  transition: background 0.25s;
}
.faq-list details[open] { background: var(--bg-tint); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px);
  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: 1px solid var(--hairline-strong);
  transition: transform 0.25s, background 0.25s, border-color 0.25s;
}
.plus::before, .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
}
.plus::before {
  width: 9px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.plus::after {
  width: 1.5px; height: 9px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.faq-list details[open] .plus { background: var(--accent); border-color: var(--accent); }
.faq-list details[open] .plus::before { background: #fff; }
.faq-list details[open] .plus::after  { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-list details p {
  margin: 0;
  padding: 0 4px 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
  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: #fff;
  position: relative;
  overflow: hidden;
}
.closer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 50% 50%, rgba(217, 74, 31, 0.30), transparent 50%);
  pointer-events: none;
}
.closer h2 {
  position: relative;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 40px;
}
.closer h2 em {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  color: var(--accent);
}
.closer-btn {
  position: relative;
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(217, 74, 31, 0.4);
}
.closer-btn:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--bg-tint);
  border-top: 1px solid var(--hairline);
  padding: 48px clamp(20px, 4vw, 56px) 32px;
}
.footer-content {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: 'Newsreader', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 14px;
}
.footer-email {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--accent);
}
.footer-email:hover { text-decoration: underline; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .location     { grid-template-columns: 1fr; }
  .group        { grid-template-columns: 1fr; }
  .group-head   { position: static; }
  .product-grid { grid-template-columns: 1fr; }
  .steps        { grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .step         { border-right: none; border-bottom: 1px solid var(--hairline); }
  .step:last-child { border-bottom: none; }
  .nav-links    { display: none; }
  .score-row    { grid-template-columns: 22px 60px 1fr 80px; }
  .score-row .status { display: none; }
  .hero-card-toast { transform: translateX(calc(-50% - 130px)) rotate(-3deg); width: 200px; }
  .hero-card-tag   { transform: translateX(calc(-50% + 130px)) rotate(4deg); width: 130px; height: 160px; }
  .hero-card-tag video { height: 110px; }
  @keyframes floatA {
    0%, 100% { transform: translateX(calc(-50% - 130px)) rotate(-3deg) translateY(0); }
    50%      { transform: translateX(calc(-50% - 130px)) rotate(-3deg) translateY(-6px); }
  }
  @keyframes floatB {
    0%, 100% { transform: translateX(calc(-50% + 130px)) rotate(4deg) translateY(0); }
    50%      { transform: translateX(calc(-50% + 130px)) rotate(4deg) translateY(-8px); }
  }
}

@media (max-width: 640px) {
  .nav { padding: 14px 18px; }
  .nav-cta { font-size: 12px; padding: 8px 14px; }
  .hero { padding-top: 50px; }
  .hero-meta { flex-wrap: wrap; }
  .meta-line { display: none; }
  .proof-row { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .proof-divider { display: none; }
  .phone { width: 240px; height: 480px; }
  .hero-card-toast,
  .hero-card-tag { display: none; }
  .scoreboard { padding: 20px; }
  .score-row { grid-template-columns: 22px 1fr 70px; gap: 10px; padding: 12px; }
  .score-row .bar { display: none; }
}

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