:root {
  --mint: #21E6C1;
  --lime: #CDEF63;
  --bg-mint: #D0F5F0;
  --bg-sage: #E8F5D6;
  --bg-white: #F4F8FA;
  --orange: #FF9F29;
  --peach: #FFE8D1;
  --navy: #0F2537;
  --text-dark: #1F2E3C;
  --text-muted: #5B6B77;
  --radius: 20px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
}

#page-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--bg-white);
  transition: background 1s ease;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.navbar {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 10;
}
.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(31, 46, 60, 0.72);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 10px 12px 10px 20px;
}
.navbar .logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 600; font-family: 'Inter', sans-serif; }
.navbar .logo img { height: 32px; width: 32px; border-radius: 50%; object-fit: cover; }
.navbar nav { display: flex; gap: 28px; }
.navbar nav a { color: #fff; font-size: 14px; opacity: 0.9; }
.navbar nav a:hover { opacity: 1; }
.navbar .cta {
  background: linear-gradient(135deg, var(--mint) 20%, var(--lime));
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 999px;
}

/* HERO */
.hero {
  position: relative;
  padding: 140px 0 100px;
  background: radial-gradient(50% 50% at 50% 0%, var(--bg-white) 26.92%, var(--bg-mint) 54.33%, var(--bg-sage) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero h1 {
  font-size: 56px;
  color: var(--navy);
  margin-bottom: 20px;
}
.hero .lede {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
}
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--mint) 20%, var(--lime));
  color: var(--navy);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
}
.btn-secondary {
  display: inline-block;
  background: linear-gradient(90deg, var(--peach), var(--bg-white));
  color: var(--navy);
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  margin-left: 12px;
}
.hero-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--mint), var(--bg-mint));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual img { width: 55%; opacity: 0.95; filter: drop-shadow(0 20px 40px rgba(15,37,55,0.25)); }
.hero-visual .placeholder-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15,37,55,0.7);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
}
.badges {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.badge { font-size: 14px; color: var(--navy); font-weight: 600; display: flex; align-items: center; gap: 8px; }
.badge::before { content: "✓"; color: var(--mint); background: var(--navy); border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* SECTION HEADER */
.section { padding: 90px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: 36px; color: var(--navy); }
.section-header p { color: var(--text-muted); font-size: 17px; margin-top: 14px; }

/* SCENARIO CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.scenario-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(15,37,55,0.08);
}
.scenario-card .icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mint), var(--bg-mint));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.scenario-card h3 { font-size: 18px; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 8px; }
.scenario-card p { color: var(--text-muted); font-size: 15px; line-height: 1.5; margin: 0; }

/* HOW IT WORKS */
.steps { counter-reset: step; }
.step-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid rgba(15,37,55,0.1);
}
.step-row:last-child { border-bottom: 1px solid rgba(15,37,55,0.1); }
.step-num {
  counter-increment: step;
  font-family: Georgia, serif;
  font-size: 28px;
  color: var(--mint);
}
.step-num::before { content: counter(step, decimal-leading-zero); }
.step-content h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.step-content p { color: var(--text-muted); margin: 0; max-width: 560px; }

/* COMPARISON TABLE */
.comparison-wrap {
  border-radius: 28px;
  padding: 4px;
  background: radial-gradient(circle farthest-side at 50% 5%, var(--bg-sage), var(--orange) 74%);
}
.comparison-table {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  text-align: left;
  font-size: 15px;
}
.comparison-table thead th {
  font-family: Georgia, serif;
  font-size: 17px;
  color: var(--navy);
}
.comparison-table thead th.highlight {
  background: linear-gradient(180deg, var(--peach), transparent);
}
.comparison-table tbody td.highlight {
  background: rgba(255,159,41,0.08);
  font-weight: 600;
}
.comparison-table tbody tr { border-top: 1px solid rgba(15,37,55,0.08); }
.comparison-table td:first-child { color: var(--text-muted); }

/* FAQ */
.faq-item {
  border-top: 1px solid rgba(15,37,55,0.1);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(15,37,55,0.1); }
.faq-item h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.faq-item p { color: var(--text-muted); margin: 0; font-size: 15px; line-height: 1.6; }

/* WAITLIST / FOOTER CTA */
.cta-section {
  background: radial-gradient(circle at 50% 125%, rgba(33,230,193,0.25), rgba(255,255,255,0) 54%), var(--navy);
  padding: 90px 0;
  color: #fff;
}
.cta-inner { text-align: center; max-width: 560px; margin: 0 auto; }
.cta-section h2 { font-size: 38px; color: #fff; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.waitlist-form { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  font-size: 15px;
}
.waitlist-form button {
  background: linear-gradient(135deg, var(--mint) 20%, var(--lime));
  color: var(--navy);
  font-weight: 600;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 32px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .foot-links { display: flex; gap: 20px; }
footer a:hover { color: #fff; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .cards-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 40px 1fr; }
  .navbar nav { display: none; }
}
