/* =====================================================
   Arogya Bite — Design tokens & global styles
   ===================================================== */
:root {
  --bg: #FAF7F2;         /* warm cream */
  --bg-2: #F2EDE3;        /* slightly deeper cream */
  --ink: #0E1116;        /* near-black */
  --ink-2: #2A2F38;
  --muted: #6B6F78;
  --line: rgba(14,17,22,0.08);
  --line-2: rgba(14,17,22,0.14);

  --orange: #FF6A3D;
  --orange-soft: #FFE2D4;
  --blue: #2E6CF6;
  --blue-soft: #D9E4FF;
  --green: #1FA971;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-sm: 0 1px 2px rgba(14,17,22,0.04), 0 1px 1px rgba(14,17,22,0.03);
  --shadow-md: 0 8px 24px -8px rgba(14,17,22,0.10), 0 2px 6px rgba(14,17,22,0.04);
  --shadow-lg: 0 30px 60px -20px rgba(14,17,22,0.18), 0 8px 20px -8px rgba(14,17,22,0.08);

  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

::selection { background: var(--orange); color: white; }

/* =====================================================
   Type
   ===================================================== */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 56ch;
}

/* =====================================================
   Layout
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head .display {
  font-size: clamp(36px, 5vw, 56px);
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.18s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px -10px rgba(14,17,22,0.45);
}
.btn-primary:hover { box-shadow: 0 14px 32px -10px rgba(14,17,22,0.55); }
.btn-secondary {
  background: white;
  color: var(--ink);
  border-color: var(--line-2);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--bg-2); }
.btn-accent {
  background: var(--orange);
  color: white;
  box-shadow: 0 10px 24px -10px rgba(255,106,61,0.6);
}
.btn-accent:hover { background: #ff5824; }
.btn-ghost {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(255,255,255,0.85); }
.btn-sm { padding: 10px 16px; font-size: 14px; }

/* =====================================================
   Chips / pills
   ===================================================== */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(31,169,113,0.18);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(31,169,113,0.18); }
  50% { box-shadow: 0 0 0 6px rgba(31,169,113,0.05); }
}

/* =====================================================
   Nav
   ===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(18px);
  background: rgba(250,247,242,0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--ink);
  display: grid; place-items: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, var(--orange) 0%, transparent 60%),
              radial-gradient(circle at 70% 80%, var(--blue) 0%, transparent 60%);
  opacity: 0.85;
}
.brand-mark span { position: relative; z-index: 1; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.brand-tag { font-size: 11px; color: var(--muted); margin-top: 3px; }

.nav-links {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
  position: relative;
}
.nav-link:hover { background: rgba(14,17,22,0.05); }
.nav-link.active { color: var(--ink); background: rgba(14,17,22,0.07); }

.nav-mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  background: white;
  border: 1px solid var(--line);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-cta-desktop { display: none; }
}

.nav-mobile-sheet {
  position: fixed;
  inset: 68px 0 0 0;
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(20px);
  z-index: 70;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-mobile-sheet.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-mobile-sheet a {
  padding: 18px 16px;
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}

/* =====================================================
   Hero
   ===================================================== */
.hero {
  padding-top: clamp(48px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-blob.orange { width: 420px; height: 420px; background: var(--orange); top: -80px; left: -120px; }
.hero-blob.blue { width: 480px; height: 480px; background: var(--blue); bottom: -200px; right: -160px; opacity: 0.35; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1.display {
  font-size: clamp(44px, 6.5vw, 84px);
  margin: 24px 0 0;
}
.hero h1 .ink-grad {
  background: linear-gradient(105deg, var(--orange) 0%, var(--blue) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero .lede { margin-top: 26px; font-size: clamp(17px, 1.4vw, 19px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

/* =====================================================
   Phone mockup
   ===================================================== */
.mock-wrap {
  position: relative;
  perspective: 1400px;
}
.mock-frame {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 9 / 19;
  background: var(--ink);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 60px 120px -40px rgba(14,17,22,0.45),
    0 30px 60px -30px rgba(255,106,61,0.18),
    inset 0 0 0 1.5px rgba(255,255,255,0.06);
  transform: rotate(-2deg) translateZ(0);
  position: relative;
}
.mock-screen {
  width: 100%; height: 100%;
  border-radius: 38px;
  background: linear-gradient(180deg, #FBF7F0 0%, #F5EFE3 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mock-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 22px;
  background: var(--ink);
  border-radius: 999px;
  z-index: 4;
}
.mock-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}
.mock-status-right { display: flex; gap: 4px; align-items: center; opacity: 0.8; font-size: 11px; }

.mock-body { padding: 30px 22px 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; overflow: hidden; }
.mock-greet { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.mock-greet h3 { margin: 0; font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.02em; }
.mock-greet p { margin: 2px 0 0; font-size: 12px; color: var(--muted); }
.mock-avatar {
  width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  display: grid; place-items: center;
  color: white; font-family: var(--font-display); font-weight: 700; font-size: 14px;
}

.mock-card {
  background: white;
  border-radius: 22px;
  padding: 14px 16px;
  box-shadow: 0 2px 6px rgba(14,17,22,0.04), 0 0 0 1px rgba(14,17,22,0.04);
}
.mock-card .lbl { font-size: 11px; color: var(--muted); font-weight: 500; }
.mock-card .val { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; }
.mock-card .sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mock-ring-wrap { display: flex; align-items: center; gap: 12px; }
.mock-ring { position: relative; width: 56px; height: 56px; }
.mock-ring svg { transform: rotate(-90deg); }
.mock-ring .pct {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
}

.mock-ai {
  background: var(--ink);
  color: white;
  border-radius: 22px;
  padding: 14px 16px;
  position: relative;
  overflow: hidden;
}
.mock-ai::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 20% 30%, rgba(255,106,61,0.4), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(46,108,246,0.4), transparent 50%);
  z-index: 0;
}
.mock-ai > * { position: relative; z-index: 1; }
.mock-ai .lbl { font-size: 11px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 6px; }
.mock-ai .lbl::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.mock-ai p { margin: 6px 0 0; font-size: 13px; line-height: 1.45; font-weight: 500; }

.mock-meal {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 2px 6px rgba(14,17,22,0.04), 0 0 0 1px rgba(14,17,22,0.04);
}
.mock-meal-thumb {
  width: 38px; height: 38px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #FFD7C2, #FFE9D9);
  display: grid; place-items: center;
  font-size: 18px;
}
.mock-meal-info { flex: 1; min-width: 0; }
.mock-meal-info .name { font-size: 13px; font-weight: 600; }
.mock-meal-info .macro { font-size: 11px; color: var(--muted); margin-top: 2px; }
.mock-meal-cal { font-family: var(--font-display); font-weight: 700; font-size: 14px; }

.mock-tab {
  display: flex; justify-content: space-around; padding: 12px 18px 14px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
}
.mock-tab-btn { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 9px; color: var(--muted); font-weight: 600; }
.mock-tab-btn.active { color: var(--ink); }
.mock-tab-btn .icon { width: 22px; height: 22px; border-radius: 7px; background: rgba(14,17,22,0.08); display: grid; place-items: center; }
.mock-tab-btn.active .icon { background: var(--ink); color: white; }

/* Floating cards around phone */
.mock-float {
  position: absolute;
  background: white;
  border-radius: 18px;
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 6s ease-in-out infinite;
}
.mock-float.f1 { top: 14%; left: -12%; animation-delay: 0s; }
.mock-float.f2 { bottom: 22%; right: -8%; animation-delay: -2s; }
.mock-float.f3 { bottom: 8%; left: -8%; animation-delay: -4s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.mock-float .ic {
  width: 32px; height: 32px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
}
.mock-float .ic.o { background: var(--orange-soft); color: var(--orange); }
.mock-float .ic.b { background: var(--blue-soft); color: var(--blue); }
.mock-float .ic.g { background: #DCF4E8; color: var(--green); }
.mock-float .t { font-size: 11px; color: var(--muted); }
.mock-float .v { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }

@media (max-width: 540px) {
  .mock-float.f1, .mock-float.f3 { left: -4%; }
  .mock-float.f2 { right: -4%; }
}

/* =====================================================
   Marquee (trust strip)
   ===================================================== */
.marquee {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
  align-items: center;
}
.marquee-item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  opacity: 0.7;
  display: flex; align-items: center; gap: 12px;
}
.marquee-item::after {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-left: 48px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   Features
   ===================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-2);
}
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--bg-2);
  color: var(--ink);
}
.feature-card.accent-o .icon { background: var(--orange-soft); color: var(--orange); }
.feature-card.accent-b .icon { background: var(--blue-soft); color: var(--blue); }
.feature-card.accent-g .icon { background: #DCF4E8; color: var(--green); }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.feature-card .arrow {
  align-self: flex-start;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.feature-card:hover .arrow { opacity: 1; transform: translateX(0); }

.feature-card.span-2 { grid-column: span 2; }
.feature-card.dark {
  background: var(--ink);
  color: white;
  border-color: transparent;
}
.feature-card.dark p { color: rgba(255,255,255,0.7); }
.feature-card.dark .icon { background: rgba(255,255,255,0.1); color: white; }

@media (max-width: 900px) { .feature-card.span-2 { grid-column: span 2; } }
@media (max-width: 600px) { .feature-card.span-2 { grid-column: span 1; } }

/* =====================================================
   How it works
   ===================================================== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
@media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .how-grid { grid-template-columns: 1fr; } }

.how-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.how-card .step {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.how-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.how-card .ill {
  height: 96px;
  margin-top: 12px;
  border-radius: 14px;
  background: var(--bg-2);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  color: var(--muted);
  font-size: 11px;
  position: relative;
  overflow: hidden;
}

/* =====================================================
   Ecosystem (dark)
   ===================================================== */
.eco {
  background: var(--ink);
  color: white;
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  margin: 0 24px;
}
.eco-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,61,0.35), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(46,108,246,0.32), transparent 40%);
}
.eco-inner { position: relative; z-index: 1; }
.eco h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 16px 0 0;
  text-wrap: balance;
  max-width: 18ch;
}
.eco .lede { color: rgba(255,255,255,0.72); margin-top: 24px; }
.eco .eyebrow { color: var(--orange); }

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 48px;
}
@media (max-width: 900px) { .eco-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .eco-grid { grid-template-columns: 1fr; } }

.eco-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease;
}
.eco-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.eco-card .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.eco-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}
.eco-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 6px 0 0;
  line-height: 1.5;
}

/* =====================================================
   Roadmap
   ===================================================== */
.roadmap {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 700px) { .roadmap { grid-template-columns: 1fr; } }

.roadmap-row {
  display: contents;
}
.roadmap-phase {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.roadmap-phase .ph {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  letter-spacing: 0.06em;
}
.roadmap-phase .ph-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.roadmap-body {
  padding: 28px 0 28px 32px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}
@media (max-width: 700px) {
  .roadmap-body { padding: 0 0 28px 0; border-left: 0; }
  .roadmap-phase { padding-bottom: 12px; border-bottom: 0; }
}
.roadmap-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.roadmap-tag.now { background: var(--ink); color: white; }

/* =====================================================
   FAQ
   ===================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  gap: 24px;
  color: var(--ink);
}
.faq-q .plus {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--bg-2);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.25s ease;
}
.faq-item.open .faq-q .plus { background: var(--ink); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 4px;
}
.faq-item.open .faq-a { max-height: 220px; padding-bottom: 22px; }

/* =====================================================
   CTA
   ===================================================== */
.cta {
  position: relative;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #FFE3D2 0%, #FAF7F2 50%, #D9E4FF 100%);
  padding: clamp(48px, 7vw, 96px) 32px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--line);
  margin: 0 24px;
}
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 auto;
  max-width: 18ch;
  text-wrap: balance;
}
.cta p { margin: 20px auto 0; max-width: 56ch; color: var(--ink-2); }

.signup-form {
  margin: 36px auto 0;
  max-width: 480px;
  display: flex;
  gap: 8px;
  background: white;
  padding: 6px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.signup-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 12px 18px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.signup-form input::placeholder { color: var(--muted); }
.signup-form button {
  border-radius: 999px;
  padding: 12px 22px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s ease, transform 0.15s ease;
}
.signup-form button:hover { background: var(--orange); }
.signup-form button:active { transform: scale(0.97); }
.signup-form.success button { background: var(--green); }
.signup-form.error input { color: #C9342D; }

.signup-msg {
  margin: 16px auto 0;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-mono);
  height: 16px;
}
.signup-msg.ok { color: var(--green); }
.signup-msg.err { color: #C9342D; }

@media (max-width: 540px) {
  .signup-form { flex-direction: column; padding: 12px; border-radius: 24px; }
  .signup-form button { width: 100%; }
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom .socials { display: flex; gap: 14px; }
.footer-bottom .socials a {
  width: 34px; height: 34px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.footer-bottom .socials a:hover { background: var(--ink); color: white; }

/* Wordmark behind footer */
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 16vw, 220px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(180deg, rgba(14,17,22,0.07) 0%, rgba(14,17,22,0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  pointer-events: none;
  user-select: none;
  margin: 40px 0 -20px;
}

/* =====================================================
   Reveal on scroll
   ===================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
