:root {
  /* ── Kitchen Table Palette ── */
  --bg-warm:       #FAFAF7;
  --bg-surface:    #FFFFFF;
  --bg-surface-alt:#F3F0E8;
  --border-light:  #EBEBEB;

  --text-main:     #1A1A1A;
  --text-muted:    #6B6B6B;
  --text-on-brand: #FFFFFF;

  /* Brand */
  --spice:         #E8531A;
  --spice-light:   rgba(232, 83, 26, 0.1);
  --spice-glow:    rgba(232, 83, 26, 0.3);
  --honey:         #F5A623;
  --honey-light:   rgba(245, 166, 35, 0.12);
  --herb:          #2D7A4F;
  --herb-light:    rgba(45, 122, 79, 0.12);

  --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-warm);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 800;
  color: var(--text-main);
}

.gradient-text {
  background: linear-gradient(135deg, var(--spice), var(--honey));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emoji { font-family: 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif; }

/* ── Card ── */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--spice);
  color: var(--text-on-brand);
}
.btn-primary:hover {
  background: #D4461A;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--spice-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-light);
}
.btn-secondary:hover {
  border-color: var(--spice);
  color: var(--spice);
}
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-main);
}
.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) {
  font-family: var(--font-display);
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:not(.btn):hover { color: var(--spice); }
.mobile-toggle { display: none; background: none; border: none; color: var(--text-main); cursor: pointer; }

.mobile-menu {
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: var(--bg-surface);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-150%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 100px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-warm);
}
.hero-bg-glow {
  position: absolute;
  top: -10%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(232,83,26,0.12) 0%, rgba(245,166,35,0.08) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block;
  background: var(--spice-light);
  border: 1px solid var(--spice-glow);
  color: var(--spice);
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  color: var(--text-main);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 3vw, 1.375rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-proof {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  font-weight: 500;
}

/* ── Problem Section ── */
.problem-section { padding: 60px 0; background: var(--bg-warm); }
.problem-card {
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.problem-lead {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}
.problem-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 3px solid var(--border-light);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}
.problem-step { position: relative; }
.problem-step::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--spice);
  border: 2px solid var(--bg-surface);
  box-shadow: 0 0 0 2px var(--spice-glow);
}
.problem-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--spice);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.problem-step p { color: var(--text-muted); font-size: 1rem; font-weight: 500; }
.problem-close { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--text-main); }
.problem-close strong { color: var(--spice); }

/* ── Features ── */
.features { padding: 100px 0; background: var(--bg-warm); }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--text-main);
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 500;
}
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.feature-card {
  padding: 2.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.feature-icon {
  width: 60px; height: 60px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}
.feature-card p { color: var(--text-muted); margin-bottom: 0.75rem; font-weight: 500; }
.feature-proof {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--herb) !important;
  border-left: 3px solid var(--herb);
  padding-left: 0.75rem;
  margin-top: 1rem !important;
}

/* ── Social Proof ── */
.social-proof { padding: 100px 0; background: var(--bg-surface-alt); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.testimonial-text::before { content: '"'; font-size: 2rem; color: var(--spice); line-height: 0; vertical-align: -0.5rem; margin-right: 0.2rem; font-family: var(--font-display); }
.testimonial-author {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ── CTA / Form ── */
.cta-section {
  padding: 100px 0;
  background: var(--bg-warm);
  position: relative;
}
.cta-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 2rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  max-width: 720px;
  margin: 0 auto;
}
.cta-badge {
  display: inline-block;
  background: var(--honey-light);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: #9A6B00;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.cta-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 500; }
.cta-content p strong { color: var(--text-main); }
.cta-small { font-size: 0.875rem; margin-top: 1.5rem; color: var(--text-muted); }
.cta-small strong { color: var(--text-main); }
.waitlist-form { display: flex; max-width: 520px; margin: 0 auto; gap: 0.5rem; }
.waitlist-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--border-light);
  background: var(--bg-warm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  transition: border-color 0.2s;
}
.waitlist-form input::placeholder { color: var(--text-muted); }
.waitlist-form input:focus { outline: none; border-color: var(--spice); }
.form-success { color: var(--herb); font-weight: 600; font-family: var(--font-display); margin-top: 1rem; }

/* ── Footer ── */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-light);
  background: var(--bg-surface);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-content p { color: var(--text-muted); font-size: 0.875rem; font-weight: 500; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--spice); }

/* ── Animations ── */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .waitlist-form { flex-direction: column; }
  .footer-content { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-title { letter-spacing: -1px; }
}
