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

:root {
  --ink:        oklch(0.24 0.028 262);
  --ink-soft:   oklch(0.50 0.03  262);
  --paper:      oklch(0.985 0.004 250);
  --blue:       oklch(0.47 0.135 260);
  --blue-bright:oklch(0.60 0.15  257);
  --blue-deep:  oklch(0.33 0.10  263);
  --accent:     oklch(0.69 0.17   47);

  --border-light: rgba(0,0,0,.08);
  --border-dark:  rgba(255,255,255,.18);
  --shadow-card:  0 1px 3px rgba(0,0,0,.08), 0 12px 36px rgba(15,17,24,.10);

  --max-w: 1080px;
}

html { scroll-behavior: smooth; }


body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(155deg, #23283A, #0F1118);
  color: var(--paper);
  text-align: center;
  padding: 48px 24px 80px;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-logo {
  display: block;
  height: 38px;
  width: auto;
  margin: 0 auto 36px;
}

.hero-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 36px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
}
.hero-cta:hover { background: oklch(0.60 0.18 47); }
.hero-cta:active { transform: scale(0.98); }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
  color: var(--paper);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue-bright);
}
.hero .subheading {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 400;
  color: rgba(249,251,253,0.72);
  max-width: 580px;
  margin: 0 auto 56px;
  font-style: italic;
  line-height: 1.55;
}

/* ── VIDEO ── */
.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,.3), 0 24px 64px rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.play-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(62,129,216,.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-wrap:hover .play-ring {
  transform: scale(1.07);
  box-shadow: 0 0 0 16px rgba(62,129,216,.22);
}
.play-ring svg { margin-left: 4px; }
.video-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(249,251,253,.55);
}

/* ── PRICING ── */
.pricing-section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 24px 96px;
  text-align: center;
}
.pricing-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.pricing-section h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  color: var(--ink);
  margin-bottom: 12px;
}
.pricing-note {
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 56px;
}

.founder-block {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  text-align: left;
}
.founder-heading {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.founder-body {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.founder-counter {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.founder-spots {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  margin-right: 2px;
}

.pricing-layout {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(360px * 2 + 20px);
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 580px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ── PLAN CARD ── */
.plan {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 30px 32px;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  position: relative;
}
.plan.featured {
  background: #fff;
}
.plan.featured::before {
  content: 'Best Value';
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-bright);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.plan-price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}
.plan-price sub {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
  vertical-align: baseline;
  margin-left: 2px;
}


.plan-price-original {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.plan-caption {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 6px;
}

.plan-desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 8px 0 28px;
}
.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.plan-features li {
  font-size: 15px;
  color: var(--ink-soft);
  padding: 13px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.plan-features li:last-child { border-bottom: none; }
.check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(41,88,165,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.check svg { display: block; }

/* ── BUTTONS ── */
.cta-btn {
  display: block;
  width: 100%;
  padding: 15px 24px;
  border-radius: 100px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
}
.cta-btn:active { transform: scale(0.98); }

.plan:not(.featured) .cta-btn {
  background: var(--blue);
  color: #fff;
}
.plan:not(.featured) .cta-btn:hover { background: var(--blue-deep); }

.plan.featured .cta-btn {
  background: var(--blue);
  color: #fff;
}
.plan.featured .cta-btn:hover { background: var(--blue-deep); }

.plan-reassurance {
  font-size: 13px;
  font-style: italic;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── GUARANTEE ── */
.guarantee {
  margin-top: 40px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  font-size: 15px;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.6;
}
.guarantee strong { color: var(--ink); }
.guarantee .shield {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

/* ── DIVIDER ── */
.divider {
  max-width: var(--max-w);
  margin: 0 auto;
  border: none;
  border-top: 1px solid var(--border-light);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border-light);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
}
footer a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
footer a:hover { color: var(--blue); }
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.footer-links a { text-decoration: none; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-soft);
  opacity: 0.4;
}
