:root {
  --bg: #FAFAF7;
  --ink: #1A1A1A;
  --muted: #6B6B66;
  --line: #E5E3DD;
  --line-soft: #EFEDE8;
  --accent: #1E3A4C;
  --accent-hover: #16303D;
  --accent-soft: #ECF0F2;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}
.nav-cta {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.nav-cta:hover { color: var(--accent); border-color: var(--accent); }

/* HERO */
.hero {
  padding: 112px 0 96px;
  border-bottom: 1px solid var(--line);
}
.eyebrow,
.section-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin: 0 0 24px;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  max-width: 1040px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.hero .lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.55;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 14px 22px;
  border-radius: 6px;
}
.btn-primary:hover { background: var(--accent); }
.btn-primary:active { transform: translateY(1px); }
.btn-text {
  color: var(--ink);
  padding: 14px 0;
}
.btn-text:hover { color: var(--accent); }

/* SECTIONS */
section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}
section h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 48px;
}

/* FEATURES */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.feature h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.feature p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* HOW */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.steps li { position: relative; }
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  display: block;
  margin-bottom: 24px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.steps h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 12px;
}
.steps p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

/* PRICING */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing .section-label {
  text-align: center;
}
.pricing-bare {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.pricing-bare .price {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 48px;
}
.pricing-bare .amount {
  font-size: clamp(3rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
}
.pricing-bare .period {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
  min-width: min(360px, 100%);
  border-top: 1px solid var(--line);
}
.pricing-list li {
  font-size: 15px;
  padding: 16px 0 16px 28px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 12px;
  height: 7px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.plan {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  background: #fff;
  position: relative;
}
.plan-feature {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.plan-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 8px;
}
.plan h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.amount {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 44px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.period {
  font-size: 14px;
  color: var(--muted);
}
.plan-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 24px;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.plan ul li {
  font-size: 14px;
  padding: 12px 0 12px 22px;
  position: relative;
  border-top: 1px solid var(--line-soft);
}
.plan ul li:first-child { border-top: none; }
.plan ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 11px;
  height: 6px;
  border-left: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(-45deg);
}
.plan-feature ul li { border-color: rgba(30, 58, 76, 0.12); }

/* WAITLIST */
.waitlist-inner { max-width: 640px; }
.waitlist .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 32px;
}
.form { max-width: 520px; }
.form-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(30, 58, 76, 0.08);
}
.form input[type="email"]::placeholder { color: #A5A5A0; }
.form-status {
  margin: 16px 0 0;
  font-size: 14px;
  color: var(--accent);
  min-height: 20px;
}
.form-status.error { color: #B83A26; }
.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;
}

/* FOOTER */
.site-footer {
  padding: 72px 0 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
}
.footer-tag {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 14px;
}
.footer-meta {
  text-align: right;
  font-size: 14px;
  color: var(--muted);
}
.footer-meta p { margin: 4px 0; }
.footer-meta a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color .2s, border-color .2s;
}
.footer-meta a:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.copyright {
  margin-top: 18px !important;
  color: var(--muted);
}

/* PRIVACY PAGE */
.prose {
  max-width: 680px;
}
.prose p {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 18px;
}
.prose a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.prose a:hover { border-color: var(--accent); }

/* RESPONSIVE */
@media (max-width: 760px) {
  .hero { padding: 72px 0 64px; }
  section { padding: 64px 0; }
  .feature-grid,
  .steps,
  .plans { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
  .form input[type="email"] { width: 100%; }
  .form-row .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
