/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

:root {
  --accent: #E2672A;
  --accent-dark: #C34F1B;
  --accent-light: #FBE4D5;
  --bg: #FFFBF7;
  --bg-alt: #FFF3EA;
  --text: #241A14;
  --text-muted: #6E6058;
  --border: #EFE1D6;
  --success: #2E7D4F;
  --error: #C4402A;
  --max-width: 1120px;
  --radius: 12px;
}

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

.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;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 251, 247, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}
.wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  text-align: center;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 15px 28px;
  box-shadow: 0 6px 16px -6px rgba(226, 103, 42, 0.55);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* Secondary — waitlist, so it never competes with the paid CTAs */
.btn-secondary {
  background: var(--text);
  color: #fff;
  padding: 15px 28px;
}
.btn-secondary:hover { background: #3A2A20; transform: translateY(-1px); }
.btn-secondary:active { transform: translateY(0); }
.btn-secondary:disabled { opacity: 0.7; cursor: default; transform: none; }

.btn-small {
  padding: 9px 18px;
  font-size: 0.85rem;
  white-space: normal;
}
.btn-large {
  padding: 18px 36px;
  font-size: 1.05rem;
}

/* Gentle pulse — primary CTAs only */
.pulse {
  animation: cta-pulse 2.6s ease-in-out infinite;
}
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 6px 16px -6px rgba(226, 103, 42, 0.55), 0 0 0 0 rgba(226, 103, 42, 0.35); }
  50% { box-shadow: 0 6px 20px -4px rgba(226, 103, 42, 0.65), 0 0 0 8px rgba(226, 103, 42, 0); }
}

/* ---------- Section heading defaults ---------- */
h2 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}
.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 680px;
  height: 560px;
  background: radial-gradient(circle, rgba(226,103,42,0.20) 0%, rgba(226,103,42,0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.subhead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 36px;
  max-width: 620px;
}
.micro-line {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-top: 18px;
}
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.payment-badge svg {
  width: 17px;
  height: 17px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

/* ---------- Why section ---------- */
.why {
  padding: 72px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.why-inner {
  max-width: 640px;
  margin: 0 auto;
}
.why h2 { margin-bottom: 24px; }
.why p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.why p + p { margin-top: 16px; }

/* ---------- How it works ---------- */
.how-it-works {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}
.how-it-works h2 {
  margin-bottom: 48px;
  text-align: center;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.step {
  padding: 20px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -16px rgba(36, 26, 20, 0.18);
}
.step-number {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- What you'll experience ---------- */
.experience {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.experience h2 {
  text-align: center;
  margin-bottom: 48px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.exp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -16px rgba(36, 26, 20, 0.18);
}
.exp-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.exp-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.exp-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- Host ---------- */
.host {
  padding: 80px 0;
  text-align: center;
}
.host-inner {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
}
.host h2 { margin-bottom: 20px; }
.host p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.host p + p { margin-top: 12px; }

/* ---------- Pricing ---------- */
.pricing {
  padding: 88px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.pricing h2 { margin-bottom: 40px; }
.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 36px;
  box-shadow: 0 20px 44px -24px rgba(36, 26, 20, 0.22);
}
.price {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 3.2rem;
  color: var(--accent);
  line-height: 1;
}
.price-subtitle {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 10px;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }
.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ---------- Trust ---------- */
.trust {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust h2 {
  text-align: center;
  margin-bottom: 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -16px rgba(36, 26, 20, 0.18);
}
.trust-card .check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
}

/* ---------- Final CTA ---------- */
.final-cta {
  padding: 90px 0;
  text-align: center;
}
.final-cta h2 {
  margin-bottom: 14px;
}
.final-cta p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Waitlist / early access ---------- */
.waitlist {
  padding: 72px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}
.waitlist-inner {
  max-width: 620px;
  margin: 0 auto;
}
.waitlist h2 { margin-bottom: 14px; }
.waitlist-subtext {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 28px;
}
.waitlist-form {
  max-width: 520px;
  margin: 0 auto;
}
.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.email-input {
  flex: 1 1 240px;
  padding: 15px 18px;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.email-input::placeholder { color: #B7A99D; }
.email-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-light);
}
.email-input.invalid { border-color: var(--error); }
.form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-note.is-success { color: var(--success); font-weight: 600; }
.form-note.is-error { color: var(--error); font-weight: 600; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.footer-wordmark {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.site-footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 48px; }
  .why, .how-it-works, .experience, .host, .pricing, .trust, .final-cta, .waitlist { padding: 56px 0; }
  .btn-large { width: 100%; }
  .form-row { flex-direction: column; }
  .btn-secondary { width: 100%; }
  .header-inner { height: auto; padding: 14px 24px; }
  .header-inner .btn-small {
    padding: 8px 14px;
    font-size: 0.78rem;
  }
  .host-inner { padding: 36px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn-primary:hover, .btn-secondary:hover { transform: none; }
  .pulse { animation: none; }
  .step:hover, .exp-card:hover, .trust-card:hover { transform: none; }
}
