:root {
  --page-bg: #e4e2dd;
  --card-bg: #f9f7f3;
  --surface: #ffffff;
  --text-primary: #2a2520;
  --text-body: #4a453e;
  --text-secondary: #7a756d;
  --text-tertiary: #a09a8e;
  --border: #ddd9d0;
  --border-light: #eae7e0;
  --shadow-card: 0 2px 4px rgba(0, 0, 0, 0.02), 0 12px 40px rgba(0, 0, 0, 0.06);
  --shadow-form: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-btn: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.08);
  --radius-card: 20px;
  --radius: 12px;
  --radius-pill: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--page-bg);
  color: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px 24px 32px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 56px 60px;
}

.strapline {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 44px;
  align-items: start;
}

.hero-text {
  padding-top: 4px;
}

h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.sub-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.body-copy {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.brand-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.625rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.cta-reassurance {
  margin-top: 28px;
}

.hero-text .beta-signup-form {
  margin-top: 36px;
}

.context-section {
  max-width: 620px;
}

.hero-trust-line {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-top: 32px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.trust-link {
  color: #b3261e;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.trust-link:hover {
  color: #d32f23;
  border-bottom-color: rgba(211, 47, 35, 0.4);
}

.hero-benefits {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-benefits li {
  font-size: 0.9375rem;
  color: var(--text-body);
  padding-left: 20px;
  position: relative;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #d32f23;
  font-size: 0.875rem;
  font-weight: 600;
}

.waitlist-line {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  margin-top: 12px;
}

.waitlist-line a {
  color: var(--text-primary);
  text-decoration: underline;
}

.body-copy a,
.proof-list a,
.faq-answer a {
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.body-copy a:hover,
.proof-list a:hover,
.faq-answer a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-secondary);
}

.section-bridge {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.before-after-section {
  padding-top: 16px;
}

.section-subline {
  font-size: 1rem;
  color: var(--text-tertiary);
  margin-top: -16px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.before-after-section h2 {
  margin-bottom: 10px;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.before-after-col {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
}

.after-col {
  border-color: rgba(211, 47, 35, 0.3);
  background: #fdf6f5;
  box-shadow: 0 2px 8px rgba(211, 47, 35, 0.06);
}

.before-after-context-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.after-context-label {
  color: #b3261e;
}

.before-after-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-tertiary);
  margin-bottom: 10px;
  font-style: italic;
}

.after-label {
  color: var(--text-secondary);
}

.before-after-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.65;
}

@media (max-width: 560px) {
  .before-after {
    grid-template-columns: 1fr;
  }
}

.founder-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 32px;
}

.founder-photo {
  width: 100%;
  height: auto;
  display: block;
  background: #f0ede8;
}

.founder-bio {
  padding: 20px 22px 22px;
}

.founder-intro {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.55;
}

.founder-body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.founder-closing {
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  background-color: #d32f23;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-btn);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  margin-top: 16px;
}

.btn-primary:hover {
  background-color: #b3261e;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--text-secondary);
  outline-offset: 3px;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 52px 0;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.6;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--text-tertiary);
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.steps-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  flex-shrink: 0;
}

.steps-list li div strong {
  display: block;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.steps-list li div p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.section-cta {
  margin-top: 32px;
}

.proof-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proof-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.6;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-tldr {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
  font-style: italic;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
}

.form-section {
  max-width: 480px;
}

.form-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.form-container {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin-bottom: 16px;
  min-height: 80px;
  box-shadow: var(--shadow-form);
}

.beta-signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.beta-signup-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  cursor: text;
  -webkit-appearance: none;
}

.thank-you-card {
  text-align: center;
  padding: 80px 60px;
}

.thank-you-card h1 {
  margin-bottom: 24px;
}

.thank-you-card .body-copy {
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.beta-signup-form input[type="email"]::placeholder {
  color: var(--text-secondary);
}

.beta-signup-form input[type="email"]:focus {
  border-color: var(--text-primary);
}

.helper-text {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.margot-moment {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 20px;
}

.margot-img {
  width: 160px;
  height: auto;
  display: block;
  opacity: 0.88;
}

.margot-tagline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.0625rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 6px;
  text-align: center;
  line-height: 1.5;
}

.final-cta-section {
  text-align: center;
}

.final-cta-section .body-copy {
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

footer {
  text-align: center;
  padding: 28px 24px 20px;
}

footer p {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}

.footer-links a {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.legal-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 32px;
}

.legal-content {
  padding: 24px 0;
}

.legal-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.legal-content p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page {
    padding: 24px 16px 24px;
  }

  .card {
    padding: 40px 28px;
    border-radius: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .founder-card {
    position: static;
    max-width: 480px;
    margin: 0 auto;
  }

  h1 {
    font-size: 2.75rem;
  }

  .sub-headline {
    font-size: 1.375rem;
  }

  .form-section {
    max-width: 100%;
  }

  .section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .card {
    padding: 32px 20px;
  }

  h1 {
    font-size: 2.25rem;
    margin-bottom: 16px;
  }

  .sub-headline {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .strapline {
    font-size: 0.625rem;
    margin-bottom: 20px;
  }

  .body-copy {
    font-size: 1rem;
  }

  .benefit-list li,
  .proof-list li {
    font-size: 1rem;
  }

  .founder-photo {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 16px;
  }

  .form-container {
    padding: 24px 20px;
  }

  .form-section h2,
  .section h2 {
    font-size: 1.375rem;
  }

  .btn-primary {
    padding: 14px 32px;
    font-size: 0.9375rem;
  }

  .steps-list li {
    gap: 14px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.8125rem;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 16px 0;
  }

  .divider {
    margin: 40px 0;
  }
}