:root {
  --bg: #0a0a0a;
  --panel: #121212;
  --panel-2: #171717;
  --text: #f5f5f0;
  --muted: #b9b9b2;
  --gold: #ffd700;
  --green: #3de08d;
  --orange: #ff9f43;
  --red: #ff4d4d;
  --red-soft: #e96464;
  --stroke: #242424;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 90% -10%, rgba(255, 215, 0, 0.12), transparent 35%),
    radial-gradient(circle at 0% 10%, rgba(255, 215, 0, 0.08), transparent 30%),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

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

h1,
h2,
h3 {
  margin: 0 0 0.6rem;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 7vw, 4rem);
}

h2 {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
}

p {
  margin: 0;
  color: var(--muted);
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-dot {
  width: 10px;
  height: 10px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 20px var(--gold);
}

.main-nav {
  display: none;
  gap: 1.2rem;
}

.main-nav a {
  color: #e8e8df;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 1.5rem;
  font-weight: 700;
  font-size: 0.96rem;
  background: var(--gold);
  color: #141414;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.25);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.35);
}

.btn-sm {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.btn-lg {
  padding: 1rem 1.7rem;
  font-size: 1rem;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

.btn-ghost:hover {
  border-color: rgba(255, 215, 0, 0.5);
  color: var(--gold);
}

.hero {
  padding-top: clamp(3.5rem, 10vw, 6rem);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--gold);
}

.subhead {
  margin-top: 1rem;
  max-width: 34ch;
  font-size: clamp(1.05rem, 3.8vw, 1.25rem);
}

.hero-cta-row {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.micro-proof {
  font-size: 0.95rem;
}

.phone-stage {
  display: grid;
  place-items: center;
}

.phone-mockup {
  width: min(320px, 100%);
  padding: 0.65rem;
  border-radius: 38px;
  background: linear-gradient(160deg, #1f1f1f, #060606);
  box-shadow: var(--shadow);
  border: 1px solid #2a2a2a;
}

.phone-notch {
  width: 38%;
  height: 18px;
  margin: 0 auto 0.5rem;
  background: #000;
  border-radius: 0 0 14px 14px;
}

.phone-screen {
  background: linear-gradient(180deg, #131313 0%, #0d0d0d 100%);
  border-radius: 30px;
  padding: 1.3rem 1.1rem 1.2rem;
  min-height: 530px;
  border: 1px solid #252525;
}

.mock-label {
  color: #deded6;
  font-weight: 600;
  text-align: center;
}

.score-ring {
  width: 172px;
  aspect-ratio: 1;
  margin: 1.15rem auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  position: relative;
}

.score-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(var(--gold) 0deg 302deg, #343434 302deg);
}

.score-ring::after {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: inherit;
  background: #0f0f0f;
  box-shadow: inset 0 0 0 1px #2f2f2f;
}

.score-ring span {
  position: relative;
  z-index: 1;
}

.mock-vibe {
  text-align: center;
  color: #f0dd89;
  font-weight: 600;
  margin-bottom: 0.9rem;
}

.mock-feedback {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  color: #d2d2cc;
  font-size: 0.93rem;
}

.mock-btn {
  margin-top: 1.25rem;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: #1c1c1c;
  color: var(--text);
  padding: 0.8rem;
  font-weight: 600;
  border: 1px solid #333;
}

.steps-grid,
.benefits-grid,
.pricing-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
}

.card,
.price-card {
  background: linear-gradient(180deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.15rem;
}

.icon {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  display: inline-block;
}

.score-scale {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.score-row {
  border: 1px solid #292929;
  background: #121212;
  border-radius: 14px;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: 0.8rem;
}

.range {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.score-green .range {
  color: var(--green);
}

.score-gold .range {
  color: var(--gold);
}

.score-orange .range {
  color: var(--orange);
}

.score-red .range {
  color: var(--red);
}

.score-red-soft .range {
  color: var(--red-soft);
}

.price-card .plan {
  color: #ecece4;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  color: var(--text);
  margin: 0.2rem 0 0.9rem;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.price-card ul {
  margin: 0 0 1.2rem;
  padding-left: 1rem;
  color: #cecec7;
  display: grid;
  gap: 0.5rem;
}

.featured {
  border-color: rgba(255, 215, 0, 0.5);
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.1);
}

.save-pill {
  display: inline-block;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  background: rgba(255, 215, 0, 0.12);
  color: #ffe983;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

.faq-list {
  margin-top: 1.5rem;
  display: grid;
  gap: 0.65rem;
}

details {
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  background: #101010;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #ededdf;
}

details p {
  margin-top: 0.6rem;
}

.site-footer {
  border-top: 1px solid #1f1f1f;
  padding: 1.5rem 0 2rem;
  background: #090909;
}

.footer-wrap {
  display: grid;
  gap: 0.7rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: #d3d3cb;
  font-size: 0.95rem;
}

.handle {
  color: #a8a8a1;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .main-nav {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero-cta-row {
    flex-direction: row;
    align-items: center;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.is-visible,
  .btn {
    transition: none;
    transform: none;
  }
}
