:root {
  --navy: #1B2B4B;
  --navy-light: #2A3F66;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --rose: #9B4D5A;
  --rose-light: #C47A88;
  --rose-pale: #F5E8EB;
  --gold: #C8A96E;
  --white: #FFFFFF;
  --text-dark: #1A1A2E;
  --text: #374151;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;
  --border: #E5E1DB;
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background: var(--cream);
}
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.25; color: var(--text-dark); }

/* Nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,247,242,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  text-decoration: none;
}
.nav-cta {
  background: var(--navy);
  color: var(--cream); padding: 0.5rem 1.25rem;
  border-radius: 6px; text-decoration: none;
  font-weight: 500; font-size: 0.875rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--navy-light); }
.nav-links { display: flex; gap: 1.5rem; align-items: center; }
.nav-links a:not(.nav-cta) {
  color: var(--text); text-decoration: none;
  font-size: 0.9375rem; font-weight: 500;
}
.nav-links a:not(.nav-cta):hover { color: var(--navy); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(250,247,242,0.98);
    backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.875rem 2rem; width: 100%; }
  .nav-links a:not(.nav-cta):hover { background: var(--cream-dark); }
  .nav-links .nav-cta { margin: 0.5rem 1.5rem; text-align: center; }
}

/* Hero */
.hero {
  padding: 10rem 2rem 6rem;
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.75rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* Email form */
.email-form {
  display: flex; gap: 0.75rem;
  max-width: 460px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.email-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 1rem; font-family: var(--font-body);
  outline: none; transition: border-color 0.2s;
  background: var(--white);
}
.email-form input[type="email"]:focus { border-color: var(--navy); }
.email-form button {
  padding: 0.875rem 2rem;
  background: var(--navy);
  color: var(--cream); border: none; border-radius: 6px;
  font-size: 1rem; font-weight: 500; font-family: var(--font-body);
  cursor: pointer; transition: background 0.2s;
}
.email-form button:hover { background: var(--navy-light); }
.form-note {
  font-size: 0.8125rem; color: var(--text-lighter);
  margin-top: 0.75rem; text-align: center;
}
.form-success {
  display: none;
  background: var(--rose-pale);
  color: var(--rose);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  max-width: 460px; margin: 0 auto;
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Problem section */
.problem-section {
  background: var(--white);
  padding: 5rem 2rem;
}
.section-inner { max-width: 680px; margin: 0 auto; }
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 560px; margin: 0 auto;
}
.pain-point {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.pain-point:last-child { border-bottom: none; }
.pain-point h3 {
  font-family: var(--font-body);
  font-size: 1.0625rem; font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.pain-point p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* Solution section */
.solution-section {
  padding: 5rem 2rem;
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.solution-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}
.solution-section .lead {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 600px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.solution-list {
  text-align: left;
  max-width: 560px; margin: 0 auto;
  list-style: none;
}
.solution-list li {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text);
  display: flex; align-items: baseline; gap: 0.75rem;
}
.solution-list li::before {
  content: "\2713";
  color: var(--rose);
  font-weight: 700;
  flex-shrink: 0;
}

/* Final CTA */
.final-cta {
  padding: 5rem 2rem;
  text-align: center;
  background: var(--navy);
  color: var(--cream);
}
.final-cta h2 {
  font-size: 2.25rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.final-cta p {
  font-size: 1.0625rem;
  color: rgba(250,247,242,0.6);
  max-width: 520px; margin: 0 auto 2rem;
}
.final-cta .email-form input[type="email"] {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: var(--cream);
}
.final-cta .email-form input[type="email"]::placeholder { color: rgba(250,247,242,0.4); }
.final-cta .email-form input[type="email"]:focus { border-color: var(--gold); }
.final-cta .email-form button {
  background: var(--gold);
  color: var(--navy);
}
.final-cta .email-form button:hover { background: #D4B87A; }
.final-cta .form-note { color: rgba(250,247,242,0.35); }

/* Footer */
.footer {
  padding: 2rem;
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.875rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer a { color: var(--rose); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-links { margin-bottom: 0.75rem; }
.footer-links a { margin: 0 0.75rem; }

/* Exit popup */
.exit-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(27,43,75,0.6); backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center; justify-content: center;
  animation: fadeIn 0.3s ease;
}
.exit-overlay.visible { display: flex; }
.exit-popup {
  background: var(--cream); border-radius: 12px;
  max-width: 500px; width: 90%; padding: 2.5rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(27,43,75,0.3);
  animation: slideUp 0.4s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.exit-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  color: var(--text-light); cursor: pointer;
  width: 32px; height: 32px; display: flex;
  align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.exit-close:hover { background: var(--cream-dark); }
.exit-badge {
  display: inline-block;
  background: var(--rose-pale);
  color: var(--rose);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8125rem; font-weight: 500;
  margin-bottom: 1rem;
}
.exit-popup h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.exit-popup p {
  color: var(--text-light);
  font-size: 0.9375rem; line-height: 1.6;
  margin-bottom: 1.25rem;
}
.exit-checklist {
  list-style: none; margin: 0 0 1.25rem; padding: 0;
}
.exit-checklist li {
  padding: 0.25rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}
.exit-checklist li::before {
  content: "\2713"; color: var(--rose);
  font-weight: 700; margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .problem-section { padding: 3.5rem 1.5rem; }
  .solution-section { padding: 3.5rem 1.5rem; }
  .section-header h2 { font-size: 1.75rem; }
  .solution-section h2 { font-size: 1.75rem; }
  .email-form { flex-direction: column; }
  .email-form input[type="email"] { min-width: auto; }
  .email-form button { width: 100%; padding: 1rem 1.5rem; }
  .exit-popup { padding: 2rem 1.5rem; }
  .exit-popup h2 { font-size: 1.25rem; }
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
