:root {
  --accent: #a3ff12;
  --accent-hover: #6ebf00;
  --stage: radial-gradient(100% 52% at 50% 0%, #17280a 0%, #0a0e05 46%, #050602 100%);
  --ground: #050602;
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --text: #fff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.55);
  --text-faint: rgba(255, 255, 255, 0.5);
  --shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  --gutter: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Manrope, -apple-system, "Helvetica Neue", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: var(--text);
  background: var(--ground);
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, p { margin: 0; }

.stage {
  background: var(--stage);
  min-height: 100vh;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
}
.brand:hover { color: var(--text); }
.brand img { width: 34px; height: 34px; border-radius: 8px; }

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.nav-links a { color: rgba(255, 255, 255, 0.75); }
.nav-links a:hover { color: var(--text); }

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-block: 56px 24px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 900px;
}

.lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 640px;
}

.cta {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.cta-note { font-size: 14px; color: rgba(255, 255, 255, 0.6); }

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  border-radius: 10px;
  background: #000;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.store-badge:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.5); }
.store-badge div { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge small { font-size: 10px; opacity: 0.8; }
.store-badge strong { font-size: 17px; font-weight: 700; }

.phone {
  flex: 0 0 auto;
  width: 252px;
  padding: 8px;
  border-radius: 40px;
  background: #16180f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow), 0 0 70px rgba(163, 255, 18, 0.07);
}
.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.shots {
  display: flex;
  justify-content: safe center;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-block: 20px 64px;
}
.shots .phone { scroll-snap-align: center; }

.section {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-block: 24px 64px;
}
.section h2, .spotlight h2 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.section-intro {
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-soft);
  max-width: 720px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
}
.card h3 { font-size: 20px; font-weight: 700; }
.card p { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.7); }

.spotlight {
  display: flex;
  gap: 56px;
  align-items: center;
  padding-block: 24px 56px;
}
.spotlight-text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}
.spotlight-text p { font-size: 16px; line-height: 1.55; color: var(--text-soft); }

.pills { display: flex; gap: 10px; flex-wrap: wrap; }
.pills span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-block: 40px 64px;
  text-align: center;
  border-top: 1px solid var(--line);
}
.closing .cta-note { max-width: 560px; line-height: 1.5; }

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  font-size: 13px;
  color: var(--text-faint);
}
.footer nav { display: flex; gap: 22px; }
.footer a { color: var(--text-faint); }
.footer a:hover { color: var(--text); }

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding-block: 40px 80px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
}
.legal h1 { font-size: 38px; line-height: 1.1; letter-spacing: -1px; color: var(--text); margin-bottom: 8px; }
.legal h2 { font-size: 22px; font-weight: 700; color: var(--text); margin-top: 36px; margin-bottom: 8px; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal .updated { font-size: 14px; color: var(--text-dim); }
.legal .back { display: inline-block; margin-top: 32px; }

@media (max-width: 900px) {
  :root { --gutter: 32px; }
  .cards { grid-template-columns: 1fr; }
  .spotlight { flex-direction: column; align-items: flex-start; gap: 32px; }
  .spotlight .phone { align-self: center; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  .hero { padding-top: 32px; }
  .hero h1 { letter-spacing: -1px; }
  .lead { font-size: 17px; }
  .section h2, .spotlight h2 { font-size: 28px; }
  .phone { width: 228px; border-radius: 34px; }
  .phone img { border-radius: 27px; }
  .shots { gap: 16px; padding-bottom: 48px; }
}
