@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

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

:root {
  --bg: #FAF4EC;
  --bg-warm: #F1E4D6;
  --surface: #F1E4D6;
  --card: #FFFDF9;
  --scarlet: #7E2438; /* Garnet */
  --scarlet-deep: #5A1624;
  --scarlet-light: #B14B5E; /* Rosewood */
  --scarlet-wash: rgba(126, 36, 56, 0.08);
  --scarlet-glow: rgba(126, 36, 56, 0.12);
  --pink-soft: #EA96AA;
  --cream: #FAF4EC;
  --text: #2A171D; /* Ink */
  --text-secondary: #7C6259; /* Ink Secondary */
  --text-muted: #B4A499; /* Ink Muted */
  --border: #E6D6C7; /* Warm hairline */
  --border-light: rgba(126, 36, 56, 0.12);
  --shadow-sm: 0 2px 8px rgba(126,36,56,.06);
  --shadow-md: 0 8px 32px rgba(126,36,56,.08);
  --shadow-lg: 0 16px 48px rgba(126,36,56,.1);
  --gold: #B8873C; /* Champagne Gold */
  --teal: #3E6E78; /* Teal */
  --amber: #B8873C;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: var(--scarlet); border-radius: 3px; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

/* ─── Background decorations ─── */
.blob { position: fixed; border-radius: 50%; pointer-events: none; z-index: 0; }
.b1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(126,36,56,.06) 0%, transparent 70%); top: -200px; right: -100px; animation: bp 14s ease-in-out infinite alternate; }
.b2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(177,75,94,.05) 0%, transparent 70%); bottom: -150px; left: -100px; animation: bp 16s ease-in-out infinite alternate-reverse; }
.b3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(234,150,170,.15) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: bp3 12s ease-in-out infinite; }
@keyframes bp { from { transform: scale(1) translate(0,0); } to { transform: scale(1.3) translate(30px,20px); } }
@keyframes bp3 { from { transform: translate(-50%,-50%) scale(1); } to { transform: translate(-50%,-50%) scale(1.15); } }

/* ─── Typography ─── */
.serif { font-family: 'Fraunces', Georgia, serif; font-style: italic; }
.gradient-text { background: linear-gradient(135deg, var(--scarlet), var(--scarlet-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.accent-text { color: var(--scarlet); }

h1 { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.08; font-weight: 400; letter-spacing: -0.025em; color: var(--text); }
h2 { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.15; font-weight: 400; letter-spacing: -0.02em; color: var(--text); }
h3 { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 1.5rem; font-weight: 400; color: var(--text); }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--text); }
p { color: var(--text-secondary); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px; border-radius: 100px; font-weight: 600; font-size: .95rem;
  cursor: pointer; transition: all .3s ease; border: none; font-family: inherit;
}
.btn-primary {
  background: linear-gradient(135deg, var(--scarlet), var(--scarlet-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(220,20,60,.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,20,60,.35); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--scarlet); color: var(--scarlet); transform: translateY(-2px); }

/* ─── Pill badge ─── */
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  background: var(--scarlet-wash); border: 1px solid var(--border-light);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--scarlet);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}
nav.scrolled { border-bottom-color: var(--border-light); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { height: 30px; width: auto; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--scarlet); }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: .88rem; font-weight: 500; color: var(--text-secondary); transition: color .2s; }
.nav-links a:hover { color: var(--scarlet); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.hamburger { display: none; background: none; border: none; color: var(--text); cursor: pointer; }
.hamburger svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .nav-cta .btn { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 5; padding: 140px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 60%, var(--surface) 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-bg-img img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .08;
  filter: saturate(0.3);
}
.hero-inner { max-width: 800px; margin: 0 auto; position: relative; z-index: 1; }

/* Orb */
.orb-wrap { display: flex; justify-content: center; margin-bottom: 48px; }
.orb {
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(220,20,60,.15), rgba(239,75,97,.08), rgba(255,255,255,.6));
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  animation: op 4s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(220,20,60,.08), inset 0 0 30px rgba(220,20,60,.04);
  position: relative;
}
.orb::before { content: ''; position: absolute; width: 170px; height: 170px; border-radius: 50%; border: 1px solid rgba(220,20,60,.08); animation: re 4s ease-in-out infinite; }
.orb::after { content: ''; position: absolute; width: 210px; height: 210px; border-radius: 50%; border: 1px solid rgba(220,20,60,.04); animation: re 4s ease-in-out infinite 1s; }
@keyframes op { 0%,100% { box-shadow: 0 0 40px rgba(220,20,60,.06); } 50% { box-shadow: 0 0 80px rgba(220,20,60,.12); } }
@keyframes re { 0%,100% { transform: scale(1); opacity: .4; } 50% { transform: scale(1.1); opacity: 1; } }

.wf-orb { display: flex; align-items: center; gap: 3.5px; height: 36px; }
.wb { width: 3.5px; background: linear-gradient(to top, var(--scarlet), var(--scarlet-light)); border-radius: 2px; animation: wv 1.1s ease-in-out infinite; }
@keyframes wv { 0%,100% { transform: scaleY(.2); opacity: .3; } 50% { transform: scaleY(1); opacity: 1; } }

.hero h1 { margin-bottom: 24px; }
.hero .hero-sub { font-size: clamp(1rem, 2vw, 1.15rem); color: var(--text-secondary); line-height: 1.8; max-width: 550px; margin: 0 auto 36px; }
.hero-cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }

/* ─── Hero Lead Form Card (1st View) ─── */
.hero-lead-card {
  background: var(--card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 28px 32px;
  max-width: 580px;
  margin: 0 auto 40px;
  box-shadow: 0 16px 48px rgba(126, 36, 56, 0.08);
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero-lead-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--scarlet), var(--scarlet-light), var(--gold));
}
.hero-lead-header {
  margin-bottom: 18px;
  text-align: center;
}
.hero-lead-header h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  margin-bottom: 4px;
  color: var(--text);
}
.hero-lead-header p {
  font-size: .88rem;
  color: var(--text-secondary);
}
.hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.hero-input-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
}
.hero-input {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: .92rem;
  transition: all .2s ease;
}
.hero-input:focus {
  border-color: var(--scarlet);
  background: #FFF;
  outline: none;
  box-shadow: 0 0 0 3px var(--scarlet-wash);
}
.hero-input:disabled {
  opacity: 0.7;
  background: var(--bg-warm);
  cursor: not-allowed;
}
.hero-submit-btn {
  width: 100%;
  padding: 16px;
  border-radius: 100px;
  font-size: .98rem;
  margin-top: 4px;
}
.hero-lead-msg {
  font-size: .86rem;
  min-height: 1.2em;
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
}
.hero-note {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

.hero-stats { display: flex; align-items: center; gap: 16px; margin-top: 40px; justify-content: center; }
.stat-item { text-align: center; padding: 0 20px; }
.stat-item:not(:last-child) { border-right: 1px solid var(--border-light); }
.stat-num { font-size: 1.6rem; margin-bottom: 4px; }
.stat-label { font-size: .78rem; color: var(--text-muted); font-weight: 500; }

@media (max-width: 640px) {
  .hero { padding-top: 120px; }
  .hero-lead-card { padding: 22px 18px; }
  .hero-input-row { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 8px; }
  .stat-item { padding: 12px 16px; border: none !important; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 550px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   CONCEPT — 3 Cards
   ═══════════════════════════════════════════════════════════ */
.concept-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.concept-card {
  background: var(--card); border: 1px solid var(--border-light); border-radius: 24px;
  padding: 40px 28px; text-align: center;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
}
.concept-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--pink-soft); }
.concept-card::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 100px;
  background: radial-gradient(ellipse, rgba(220,20,60,.04) 0%, transparent 70%);
  pointer-events: none;
}
.concept-icon {
  width: 80px; height: 80px; margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--scarlet-wash); border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  transition: transform .3s;
}
.concept-card:hover .concept-icon { transform: scale(1.08); }
.concept-card h4 { font-size: 1.2rem; margin-bottom: 12px; }
.concept-card p { font-size: .92rem; line-height: 1.7; }

@media (max-width: 768px) { .concept-cards { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   FEATURES — Alternating rows
   ═══════════════════════════════════════════════════════════ */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  margin-bottom: 80px;
}
.feature-row:nth-child(even) .feature-visual { order: -1; }
.feature-row:nth-child(even) .feature-visual-img { order: -1; }
.feature-visual {
  background: var(--surface); border: 1px solid var(--border-light); border-radius: 24px;
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature-visual-img {
  border-radius: 24px; overflow: hidden; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.feature-visual-img img.fv-img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 24px;
}

.feature-text .pill-badge { margin-bottom: 20px; }
.feature-text h3 { font-size: 1.9rem; margin-bottom: 16px; line-height: 1.2; }
.feature-text p { font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }
.feature-list { list-style: none; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .9rem; color: var(--text-secondary); margin-bottom: 14px; line-height: 1.6;
}
.feature-list li::before { content: '✦'; color: var(--scarlet); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .feature-row { grid-template-columns: 1fr; gap: 40px; }
  .feature-row:nth-child(even) .feature-visual,
  .feature-row:nth-child(even) .feature-visual-img { order: 0; }
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — Timeline
   ═══════════════════════════════════════════════════════════ */
.timeline {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute; top: 48px; left: 8%; right: 8%;
  height: 2px; background: linear-gradient(90deg, transparent, var(--border), var(--scarlet-wash), var(--border), transparent);
}
.timeline-step { text-align: center; position: relative; }
.step-num {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--card); border: 2px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 900; color: var(--text-muted);
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.timeline-step:hover .step-num {
  background: linear-gradient(135deg, var(--scarlet), var(--scarlet-light)); color: #fff;
  border-color: transparent; box-shadow: 0 8px 24px rgba(220,20,60,.2);
  transform: scale(1.08);
}
.timeline-step h4 { font-size: 1rem; margin-bottom: 8px; }
.timeline-step p { font-size: .84rem; color: var(--text-muted); }

@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; gap: 40px; } .timeline::before { display: none; } }

/* ═══════════════════════════════════════════════════════════
   SAFETY
   ═══════════════════════════════════════════════════════════ */
.safety-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.safety-card {
  background: var(--card); border: 1px solid var(--border-light); border-radius: 20px;
  padding: 32px 24px; text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.safety-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.safety-icon { font-size: 1.8rem; margin-bottom: 16px; }
.safety-card h4 { margin-bottom: 8px; font-size: .95rem; }
.safety-card p { font-size: .82rem; }

@media (max-width: 900px) { .safety-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .safety-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   PREMIUM
   ═══════════════════════════════════════════════════════════ */
.premium-section {
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--surface) 50%, var(--bg-warm) 100%);
  border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light);
}
.premium-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.premium-text h2 { margin-bottom: 20px; }
.premium-text p { margin-bottom: 32px; font-size: 1rem; }
.premium-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pf-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-secondary); line-height: 1.5;
}
.pf-item span { color: var(--scarlet); flex-shrink: 0; }
.premium-visual { display: flex; justify-content: center; align-items: center; }
.premium-badge-mock {
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(212,175,55,.12), rgba(220,20,60,.06), rgba(255,255,255,.5));
  border: 2px solid rgba(212,175,55,.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: op 4s ease-in-out infinite;
  position: relative;
}
.premium-badge-mock::before { content: ''; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(212,175,55,.08); animation: re 4s ease-in-out infinite; }
.premium-crown { font-size: 3rem; margin-bottom: 8px; }
.premium-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.premium-freq { font-size: .78rem; color: var(--text-muted); }

@media (max-width: 900px) { .premium-grid { grid-template-columns: 1fr; } .premium-features { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   WAITLIST / JOIN
   ═══════════════════════════════════════════════════════════ */
.waitlist-section {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.waitlist-inner { max-width: 600px; margin: 0 auto; }
.waitlist-inner h2 { margin-bottom: 16px; }
.waitlist-inner > p { margin-bottom: 40px; font-size: 1.05rem; }

.notify-card {
  background: var(--card); border: 1px solid var(--border-light); border-radius: 24px;
  padding: 40px 32px; margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.notify-card h3 { margin-bottom: 8px; }
.notify-card > p { font-size: .88rem; margin-bottom: 24px; }
.notify-btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: 1rem 2.4rem; border-radius: 100px;
  background: linear-gradient(135deg, var(--scarlet), var(--scarlet-light));
  color: #fff; font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(220,20,60,.25);
  transition: all .3s;
  width: 100%; justify-content: center;
}
.notify-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(220,20,60,.35); }
#notify-msg { margin-top: 14px; font-size: .84rem; min-height: 1.2em; }
.notify-note { font-size: .72rem; color: var(--text-muted); margin-top: 12px; }

.or-divider { color: var(--text-muted); font-size: .84rem; display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-light); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  position: relative; z-index: 5;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  padding: 40px 0;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: .84rem; color: var(--text-muted); transition: color .2s; }
.footer-links a:hover { color: var(--scarlet); }
.footer-copy { font-size: .78rem; color: var(--text-muted); }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border-light); background: var(--card);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; font-size: .85rem;
}
.social-links a:hover { border-color: var(--scarlet); background: var(--scarlet-wash); transform: translateY(-2px); }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Mobile nav overlay ─── */
@media (max-width: 900px) {
  .nav-links.mobile-open {
    display: flex !important; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    z-index: 999; justify-content: center; align-items: center; gap: 32px;
  }
  .nav-links.mobile-open a { font-size: 1.4rem; color: var(--text); }
  .nav-links.mobile-open a:hover { color: var(--scarlet); }
}
