:root {
  --bg: #050a12;
  --surface: #0d1625;
  --surface-2: #111e30;
  --accent: #00e887;
  --accent-dim: rgba(0,232,135,0.12);
  --text: #e8edf5;
  --text-muted: #7a8fa8;
  --text-dim: #4a5c72;
  --border: rgba(255,255,255,0.06);
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  background: rgba(5,10,18,0.85);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-dim);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(0,232,135,0.18) 0%, rgba(0,100,200,0.06) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto;
}

/* Section label */
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
  text-align: center;
}

/* What it is */
.what-it-is {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-it-is-inner { max-width: 1100px; margin: 0 auto; }
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
}
.problem-card {
  background: var(--surface-2);
  padding: 40px 36px;
}
.problem-icon {
  display: block;
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-head);
}
.problem-card p {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}
.problem-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.solution-divider {
  text-align: center;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--accent-dim);
}
.solution-divider p {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

/* Who's it for */
.whos-it-for { padding: 100px 40px; }
.whos-it-for-inner { max-width: 1100px; margin: 0 auto; }
.personas-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.persona {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 24px;
}
.persona-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.persona-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

/* What's inside */
.whats-inside {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whats-inside-inner { max-width: 1100px; margin: 0 auto; }
.inside-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  text-align: center;
  margin-bottom: 56px;
}
.kit-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}
.kit-item {
  background: var(--surface-2);
  padding: 36px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.kit-num {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
  padding-top: 3px;
}
.kit-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.kit-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}
.price-block {
  text-align: center;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--accent-dim);
}
.price-tag {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 12px;
}
.price-sub {
  font-size: 15px;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials { padding: 100px 40px; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-initial {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  color: var(--accent);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.author-role { font-size: 13px; color: var(--text-dim); }

/* Closing statement */
.closing-statement {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-text {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.footer-powered { font-size: 13px; color: var(--text-dim); }

/* Mobile */
@media (max-width: 768px) {
  .problems-grid { grid-template-columns: 1fr; }
  .kit-items { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 24px 60px; }
  .what-it-is, .whos-it-for, .whats-inside, .testimonials, .closing-statement { padding: 70px 24px; }
  .navbar { padding: 16px 24px; }
  .personas-row { gap: 10px; }
}