@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --navy: #15233f;
  --navy-deep: #101a30;
  --amber: #f59e0b;
  --amber-deep: #d97706;
  --amber-soft: rgba(245, 158, 11, 0.12);
  --paper: #fbf9f5;
  --paper-2: #f1ede2;
  --white: #ffffff;
  --muted: #6b7689;
  --rule: #e8e1cf;
  --shadow: 0 4px 20px rgba(21, 35, 63, 0.08);
  --shadow-lg: 0 12px 36px rgba(21, 35, 63, 0.14);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
}

h1 { font-size: 56px; }
h2 { font-size: 38px; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }

a { color: var(--amber-deep); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--navy); text-decoration: underline; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.sr-only { position: absolute; left: -9999px; }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 12px;
}

.kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.accent { color: var(--amber); }

/* ============== HEADER ============== */

header.site-header {
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.005em;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}
.brand-mark:hover { color: var(--white); text-decoration: none; }
.brand-mark .dot {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}
.brand-mark .name .accent { color: var(--amber); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 15px;
}
.site-nav a:hover { color: var(--white); text-decoration: none; }
.site-nav a.cta {
  background: var(--amber);
  color: var(--navy-deep);
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
}
.site-nav a.cta:hover { background: var(--amber-deep); color: var(--white); }

/* ============== HERO ============== */

.hero {
  background:
    radial-gradient(ellipse at top right, rgba(245, 158, 11, 0.10), transparent 50%),
    var(--navy-deep);
  color: var(--white);
  padding: 96px 0 110px;
}
.hero h1 {
  color: var(--white);
  max-width: 880px;
  margin-bottom: 28px;
}
.hero .lede {
  font-size: 21px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 700px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero .trust {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============== BUTTONS ============== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
  text-decoration: none;
}
.btn-primary {
  background: var(--amber);
  color: var(--navy-deep);
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-deep);
  border-color: var(--amber-deep);
  color: var(--white);
  text-decoration: none;
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  text-decoration: none;
}
.btn-full { width: 100%; }

/* in light bands, ghost flips dark */
.band.light .btn-ghost {
  color: var(--navy);
  border-color: rgba(21, 35, 63, 0.22);
}
.band.light .btn-ghost:hover {
  background: rgba(21, 35, 63, 0.04);
  color: var(--navy);
}

/* ============== BANDS ============== */

.band { padding: 92px 0; }
.band.light { background: var(--paper-2); }
.band > .container > .eyebrow { text-align: center; }
.band > .container > h2 { text-align: center; margin-bottom: 48px; }

/* ============== HOW IT WORKS ============== */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--amber-soft);
  color: var(--amber-deep);
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
  margin-bottom: 18px;
  font-family: 'Fraunces', serif;
}
.how-card p { color: var(--muted); font-size: 15.5px; }

/* ============== SAMPLE LEAD CARD ============== */

.sample-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--amber);
}
.sample-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 22px;
}
.sample-meta .src {
  background: var(--paper-2);
  padding: 6px 10px;
  border-radius: 6px;
  color: var(--navy);
}
.sample-meta .when { color: var(--muted); }
.sample-meta .match {
  color: var(--amber-deep);
  background: var(--amber-soft);
  padding: 6px 10px;
  border-radius: 6px;
}
.sample-quote {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}
.sample-meta-row { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.sample-meta-row strong { color: var(--navy); }
.sample-link { font-weight: 600; font-size: 14px; }

/* ============== PRICING ============== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--rule);
  border-radius: 14px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.price-free {
  background: var(--navy-deep);
  color: var(--white);
  border-color: var(--navy-deep);
}
.price-card.price-free .price-tier,
.price-card.price-free .price-unit,
.price-card.price-free .price-features li { color: rgba(255,255,255,0.78); }
.price-card.price-free .price-amount,
.price-card.price-free strong { color: var(--white); }
.price-card.price-featured {
  border-color: var(--amber);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.18);
  transform: translateY(-4px);
}
.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy-deep);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.price-amount .per { font-size: 16px; color: var(--muted); font-weight: 400; font-family: 'Inter', sans-serif; }
.price-unit {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--navy);
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.4;
}
.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: rotate(-45deg);
}

/* ============== SIGNUP BAND ============== */

.signup-band {
  background:
    radial-gradient(ellipse at center, rgba(245, 158, 11, 0.10), transparent 60%),
    var(--navy-deep);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
}
.signup-band .eyebrow { color: var(--amber); text-align: center; }
.signup-band h2 { color: var(--white); text-align: center; }
.signup-band .lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  margin: 0 auto 32px;
  max-width: 520px;
}
.signup-form {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto 18px;
}
.signup-form input[type=email] {
  flex: 1;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
}
.signup-form input[type=email]::placeholder { color: rgba(255,255,255,0.45); }
.signup-form input[type=email]:focus {
  outline: none;
  border-color: var(--amber);
  background: rgba(255,255,255,0.10);
}
.signup-band .trust { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ============== FAQ ============== */

.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-item summary {
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  padding-right: 30px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: var(--amber);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ============== FOOTER ============== */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  padding: 56px 0 36px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 36px;
  align-items: start;
}
.footer-brand .brand-mark { margin-bottom: 12px; }
.footer-tagline { color: rgba(255,255,255,0.5); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.7); font-weight: 500; }
.footer-links a:hover { color: var(--white); text-decoration: none; }
.footer-legal { text-align: right; }
.footer-legal a { color: rgba(255,255,255,0.6); }

/* ============== RESPONSIVE ============== */

@media (max-width: 880px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  .hero { padding: 64px 0 80px; }
  .hero .lede { font-size: 18px; }
  .how-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.price-featured { transform: none; }
  .signup-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { text-align: left; }
  .site-nav { gap: 14px; }
  .site-nav a:not(.cta) { display: none; }
}
