:root {
  --bg: #fbfaf6;
  --bg-tint: #f5f2ea;
  --ink: #15151a;
  --ink-soft: #3a3a44;
  --muted: #6b6b76;
  --hairline: rgba(21, 21, 26, 0.10);
  --paper: #ffffff;
  --accent: #5b50ff;        /* electric indigo */
  --accent-soft: rgba(91, 80, 255, 0.10);
  --alarm: #ff4f3c;
  --shadow-card: 0 1px 0 rgba(21,21,26,0.04), 0 2px 6px rgba(21,21,26,0.04), 0 12px 30px rgba(21,21,26,0.06);
  --shadow-pop: 6px 6px 0 var(--ink);
  --radius-lg: 28px;
  --radius-md: 18px;
  --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: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-optical-sizing: auto;
  font-size: 16.5px;
  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: #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, 250, 246, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 14px; height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, transparent 35%),
    var(--accent);
  box-shadow: inset 0 0 0 1.5px var(--ink), 0 1px 2px rgba(91,80,255,0.4);
}
.logo-mark.dark { background: var(--accent); box-shadow: inset 0 0 0 1.5px #fff; }

.nav-links {
  display: flex;
  gap: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  transition: color 0.2s ease;
  position: relative;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid var(--ink);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.25s, color 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(91, 80, 255, 0.35);
}
.nav-cta-arrow { transition: transform 0.25s ease; display: inline-block; }
.nav-cta:hover .nav-cta-arrow { transform: translateX(3px); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 4vw, 56px) clamp(60px, 8vw, 100px);
  max-width: 1320px;
  margin: 0 auto;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  padding: 7px 14px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-card);
}
.kicker-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: kpulse 2s ease-in-out infinite;
}
@keyframes kpulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.05); }
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 26px;
  color: var(--ink);
}
.hero-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.06em;
  background: linear-gradient(105deg, var(--accent), #ff4f9d 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.04em;
}

.hero-sub {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  max-width: 540px;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.hero-sub strong {
  font-weight: 600;
  color: var(--ink);
  background: linear-gradient(180deg, transparent 60%, rgba(91, 80, 255, 0.18) 60%);
  padding: 0 2px;
}

.cta-row {
  display: flex;
  gap: 12px;
  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;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s, background 0.25s;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(21,21,26,0.15);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91, 80, 255, 0.4);
}
.btn-ghost {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--hairline);
  box-shadow: var(--shadow-card);
}
.btn-ghost:hover {
  border-color: var(--ink);
  transform: translateY(-1px);
}
.btn.big { padding: 17px 28px; 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(4px); }

.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: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(38px, 4vw, 50px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.proof-row span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* HERO CARD - the signature dark card */
.hero-card {
  position: relative;
  background:
    radial-gradient(at top right, rgba(91, 80, 255, 0.22), transparent 55%),
    radial-gradient(at bottom left, rgba(255, 79, 60, 0.10), transparent 60%),
    linear-gradient(180deg, #1a1a22 0%, #111118 100%);
  color: #f1f1f3;
  border-radius: var(--radius-lg);
  padding: 28px 24px 32px;
  min-height: 600px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 70px rgba(15, 15, 25, 0.30),
    var(--shadow-pop);
  border: 1px solid #20202a;
}
.hero-card-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .5 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.hc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
}
.hc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(91, 80, 255, 0.25);
  animation: kpulse 2s ease-in-out infinite;
}
.hc-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.08em;
}

/* PHONE inside hero-card */
.phone {
  position: relative;
  width: 270px;
  height: 540px;
  margin: 0 auto;
  background: linear-gradient(145deg, #2c2c36 0%, #1a1a22 100%);
  border-radius: 42px;
  padding: 12px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #0a0a10;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.phone-screen {
  background: linear-gradient(180deg, #0d0d14 0%, #14141c 100%);
  background-image:
    radial-gradient(at top right, rgba(91, 80, 255, 0.18), transparent 50%),
    radial-gradient(at bottom left, rgba(255, 79, 60, 0.08), transparent 50%);
  color: #fff;
  border-radius: 32px;
  height: 100%;
  padding: 36px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  color: #aaa6b3;
  padding: 4px 6px 0;
}
.locked-pill {
  background: rgba(255, 79, 60, 0.14);
  border: 1px solid rgba(255, 79, 60, 0.3);
  color: #ff8b7a;
  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: 5px; height: 5px;
  border-radius: 50%;
  background: var(--alarm);
  display: inline-block;
}

.lock-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  margin-top: 4px;
  position: relative;
  backdrop-filter: blur(8px);
}
.lock-card::before {
  content: "";
  position: absolute;
  top: -1px; left: 16px; right: 16px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #ff4f9d);
  border-radius: 2px;
}
.lock-app {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #aaa6b3;
  margin: 0 0 8px;
}
.lock-card h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 8px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
}
.lock-hint { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0 0 14px; }
.lock-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.lock-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.3); }

.app-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: auto;
}
.app-ico {
  aspect-ratio: 1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  font-size: 11px;
  color: #fff;
  position: relative;
  opacity: 0.85;
}
.app-ico::after {
  content: "";
  position: absolute;
  top: 4px; right: 4px;
  width: 10px; height: 10px;
  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 #2a2a30; }
.app-ico.sc { background: #fffc00; color: #000; }

.scan-cta {
  background: linear-gradient(135deg, var(--accent), #7d65ff);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 22px rgba(91, 80, 255, 0.40);
}
.scan-ring {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
  animation: ring 1.4s ease-out infinite;
}
@keyframes ring {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  100% { box-shadow: 0 0 0 12px transparent; }
}

.alert-toast {
  position: absolute;
  left: 24px;
  bottom: 36px;
  width: 250px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 5;
  transform: rotate(-2deg);
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-6px); }
}
.alert-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff4f9d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-size: 18px;
}
.alert-body { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.alert-title { font-weight: 600; font-size: 13px; line-height: 1.2; color: #fff; }
.alert-sub { font-size: 11px; color: rgba(255,255,255,0.5); }
.alert-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
}

.tag-video {
  position: absolute;
  right: 24px;
  bottom: 36px;
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 16px 30px rgba(0,0,0,0.35);
  transform: rotate(4deg);
  background: #0a0a10;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.marquee-track {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.01em;
  animation: scroll 36s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.m-sep {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  color: var(--accent);
  font-size: 24px;
}

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

.eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 18px;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.section h2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.section h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  color: var(--accent);
}

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

/* ============== HOW ============== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.step {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--accent);
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 24px;
}
.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin: 0 0 10px;
}
.step p {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 15px;
}
.step-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ============== 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, 56px); }
.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);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.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: 'JetBrains 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(--alarm); font-weight: 600; }
.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 2s ease-in-out infinite;
}

.map {
  position: relative;
  height: 340px;
  background:
    radial-gradient(at 70% 20%, rgba(91, 80, 255, 0.10), transparent 55%),
    linear-gradient(135deg, #f0ede4, #e6e2d4);
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.10) 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.65;
}
.pin {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-card);
}
.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(--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.1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: start;
}
.group-head { position: sticky; top: 100px; }
.group-head h2 { font-size: clamp(38px, 5vw, 64px); }
.group-head p { max-width: 460px; color: var(--ink-soft); }
.group-head p b {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.1em;
  color: var(--accent);
  background: none;
  padding: 0;
}

.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: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  display: block;
  letter-spacing: -0.02em;
}
.score-sub {
  font-family: 'JetBrains 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: 'JetBrains 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: 8px;
}
.score-row {
  display: grid;
  grid-template-columns: 28px 80px 1fr 80px 90px;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--bg-tint);
  border-radius: 12px;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.2s ease;
}
.score-row:hover { transform: translateX(2px); }
.rank {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  color: var(--ink);
}
.name { font-weight: 500; }
.bar {
  height: 6px;
  background: rgba(21, 21, 26, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.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: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-align: right;
}
.status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  text-align: right;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.score-row.clean .status { color: #16a34a; }
.score-row.ok .status    { color: var(--ink-soft); }
.score-row.warn .fill    { background: #f59e0b; }
.score-row.warn .status  { color: #d97706; }
.score-row.bad           { background: rgba(255, 79, 60, 0.08); border-color: rgba(255, 79, 60, 0.25); }
.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 var(--hairline);
}
.feed-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-soft);
}
.feed-dot { width: 5px; height: 5px; border-radius: 50%; }
.feed-dot.red   { background: var(--alarm); }
.feed-dot.green { background: #16a34a; }
.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, #1a1a22, #0f0f15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.05);
  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.92);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-radius: 12px;
  padding: 8px 12px;
  font-family: 'JetBrains 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, 56px); }
.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: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.spec-list strong { font-weight: 600; }
.ships {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-transform: lowercase;
  margin-top: 14px;
}

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

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  transition: border-color 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.faq-list details[open] {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(91, 80, 255, 0.08);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  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: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-tint);
  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(--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 26px 24px;
  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 30% 50%, rgba(91, 80, 255, 0.30), transparent 55%),
    radial-gradient(at 70% 50%, rgba(255, 79, 157, 0.18), transparent 60%);
  pointer-events: none;
}
.closer h2 {
  position: relative;
  font-family: 'DM Sans', 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: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.08em;
  background: linear-gradient(105deg, #b3aaff, #ff8aa9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.closer-btn {
  position: relative;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.closer-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(91, 80, 255, 0.5);
}

/* ============== FOOTER ============== */
.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: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--muted);
  margin: 0 0 14px;
}
.footer-email {
  font-family: 'JetBrains 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: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .hero-grid    { grid-template-columns: 1fr; }
  .hero-card    { min-height: 540px; }
  .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; }
  .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; }
  .nav-cta { font-size: 12px; padding: 8px 12px; }
  .hero-card { padding: 20px 16px 24px; }
  .phone { width: 240px; height: 480px; }
  .alert-toast { width: 200px; left: 12px; }
  .tag-video { width: 100px; height: 100px; right: 12px; }
  .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;
  }
}
