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

:root {
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-dark: #5b21b6;
  --peach: #ffb347;
  --peach-light: #ffd4a3;
  --peach-bg: #fff7f0;
  --cream: #fdf8f5;
  --dark: #1c1220;
  --text: #3d2d4a;
  --muted: #8b7a9a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(253, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.nav-logo span {
  font-family: 'Georgia', serif;
  font-size: 1.15rem;
  color: var(--purple-dark);
  font-weight: bold;
  letter-spacing: 0.01em;
}

.nav-cta {
  display: inline-block;
  background: var(--purple);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--purple-dark); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f5f0ff 0%, var(--peach-bg) 60%, var(--cream) 100%);
}

.hero-badge {
  display: inline-block;
  background: var(--peach-light);
  color: #7c3a00;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--purple);
}

.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--muted);
  margin-bottom: 0.75rem;
  max-width: 52ch;
  font-style: italic;
}

.hero-tagline {
  font-family: sans-serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  background: var(--purple);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--purple);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid var(--purple-light);
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--purple); }

.hero-logo-wrap {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-wrap img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(124,58,237,0.2));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ─── SECTION BASE ─── */
section { padding: 6rem 2rem; }

.container {
  max-width: 960px;
  margin: 0 auto;
}

.section-label {
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: normal;
  color: var(--purple);
}

/* ─── PROBLEM ─── */
.problem {
  background: var(--white);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.problem-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--peach);
}

.problem-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.problem-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  font-family: sans-serif;
}

/* ─── SOLUTION ─── */
.solution {
  background: linear-gradient(135deg, #f5f0ff 0%, var(--peach-bg) 100%);
}

.solution-body {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 58ch;
  margin-bottom: 2.5rem;
}

.science-callout {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid var(--purple-light);
  margin-top: 2.5rem;
}

.science-callout h3 {
  font-size: 1.25rem;
  color: var(--purple-dark);
  margin-bottom: 1rem;
}

.science-callout p {
  font-family: sans-serif;
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
}

.wow-quote {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--peach-bg);
  border-radius: 12px;
  border-left: 4px solid var(--peach);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
}

/* ─── HOW IT WORKS ─── */
.how {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--cream);
  border-radius: 20px;
  text-align: center;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--purple);
  color: white;
  font-family: sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step p {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── RESULTS ─── */
.results {
  background: var(--purple-dark);
  color: white;
}

.results .section-label { color: var(--peach-light); }
.results .section-title { color: white; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.result-item {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
}

.result-item .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.result-item h3 {
  font-size: 1rem;
  color: var(--peach-light);
  margin-bottom: 0.4rem;
}

.result-item p {
  font-family: sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ─── OFFER ─── */
.offer {
  background: linear-gradient(160deg, var(--peach-bg) 0%, var(--cream) 100%);
}

.founding-badge {
  display: inline-block;
  background: var(--purple);
  color: white;
  font-family: sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.offer-note {
  font-family: sans-serif;
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 48ch;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 32px rgba(124,58,237,0.08);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--purple);
}

.pricing-card .card-label {
  font-family: sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.pricing-card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.price-main {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--purple-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-sub {
  font-family: sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-card ul li {
  font-family: sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--cream);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-card ul li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 700;
  flex-shrink: 0;
}

.trial-box {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(124,58,237,0.07);
  border: 1px solid var(--peach-light);
  max-width: 560px;
  margin: 0 auto;
}

.trial-box h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.trial-price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--purple-dark);
  margin-bottom: 0.25rem;
}

.trial-box p {
  font-family: sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.guarantee {
  font-family: sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

/* ─── FOUNDER ─── */
.founder {
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 4rem;
  align-items: start;
}

.founder-photo {
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-light), var(--purple-light));
  aspect-ratio: 3/4;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.cred-tag {
  background: var(--peach-bg);
  color: #7c3a00;
  font-family: sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

.founder-bio p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.founder-moment {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f0ff, var(--peach-bg));
  border-radius: 12px;
  font-size: 0.97rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
}

/* ─── BOOKING CTA ─── */
.booking {
  background: var(--purple-dark);
  text-align: center;
  color: white;
}

.booking .section-title { color: white; }
.booking .section-label { color: var(--peach-light); }

.booking p {
  font-family: sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.booking .btn-primary {
  background: var(--peach);
  color: var(--dark);
}
.booking .btn-primary:hover { background: var(--peach-light); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-family: sans-serif;
  font-size: 0.85rem;
}

footer a { color: var(--purple-light); text-decoration: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 700px) {
  nav { padding: 1rem 1.25rem; }
  .nav-logo span { display: none; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo { aspect-ratio: 4/3; }
  section { padding: 4rem 1.25rem; }
}
