/* ── Variables ─────────────────────────────────────────── */
:root {
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --coral: #D97757;
  --coral-600: #C4613E;
  --charcoal: #3A2E2A;
  --charcoal-700: #4A3D38;
  --charcoal-600: #6B5C56;
  --charcoal-500: #8C7B75;
  --charcoal-400: #B3A5A0;
  --sage: #6B8E23;
  --sage-600: #567218;
  --beige: #EDE5D6;
  --beige-100: #F8F4EE;
  --beige-200: #EDE5D6;
  --beige-300: #E0D4C0;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; }

/* ── Scroll animations ─────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="1"] { transition-delay: 0.08s; }
.fade-up[data-delay="2"] { transition-delay: 0.16s; }
.fade-up[data-delay="3"] { transition-delay: 0.24s; }
.fade-up[data-delay="4"] { transition-delay: 0.32s; }
.fade-up[data-delay="5"] { transition-delay: 0.40s; }

/* ── NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-300);
}
.nav-inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-text { font-weight: 700; font-size: 18px; color: var(--coral); letter-spacing: -0.01em; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-login {
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal-600);
  transition: color 0.2s;
}
.nav-login:hover { color: var(--charcoal); }
.nav-cta {
  background: var(--coral);
  color: white;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 9999px;
  transition: background 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.nav-cta:hover { background: var(--coral-600); box-shadow: 0 4px 16px rgba(217,119,87,0.3); }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 64px;
}
.hero-bg { position: absolute; inset: 0; background: var(--cream); pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.blob-1 { width: 600px; height: 600px; background: rgba(217,119,87,0.10); top: -200px; right: -200px; }
.blob-2 { width: 320px; height: 320px; background: rgba(107,142,35,0.08); bottom: 0; left: -80px; }
.blob-3 { width: 192px; height: 192px; background: rgba(233,185,73,0.12); top: 50%; right: 25%; }

.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217,119,87,0.10);
  border: 1px solid rgba(217,119,87,0.20);
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.badge-text { font-size: 12px; font-weight: 600; color: var(--coral); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.hero-title {
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--coral); }
.hero-subtitle {
  font-size: 18px;
  color: var(--charcoal-500);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-primary {
  background: var(--coral);
  color: white;
  font-weight: 600;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 9999px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
  display: inline-block;
}
.btn-primary:hover { background: var(--coral-600); box-shadow: 0 8px 24px rgba(217,119,87,0.3); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  color: var(--charcoal-600);
  font-weight: 500;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: 9999px;
  border: 1px solid var(--beige-300);
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { background: var(--beige-100); border-color: var(--beige-200); }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--beige-200);
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: -8px;
  user-select: none;
}
.proof-text { font-size: 14px; color: var(--charcoal-500); margin-left: 12px; }
.proof-text strong { color: var(--charcoal-700); font-weight: 600; }

/* Hero visual + floating cards */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 16px 56px 40px;
}
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--beige-300);
  border-radius: 20px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(58,46,42,0.10);
  white-space: nowrap;
  z-index: 10;
}
.float-card-icon { font-size: 20px; line-height: 1; flex-shrink: 0; }
.float-card-title { display: block; font-size: 12px; font-weight: 600; color: var(--charcoal-700); }
.float-card-sub { display: block; font-size: 11px; color: var(--charcoal-500); margin-top: 1px; }

.fc-tl { top: 8px; left: -16px; animation: fc1 4s ease-in-out infinite; }
.fc-tr { top: 0; right: -8px; animation: fc1 4s ease-in-out infinite 0.8s; }
.fc-bl { bottom: 8px; left: -8px; animation: fc1 4s ease-in-out infinite 1.6s; }
.fc-br { bottom: 0; right: -16px; animation: fc1 4s ease-in-out infinite 0.4s; }
@keyframes fc1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Product Mockup */
.mockup {
  width: 100%;
  max-width: 440px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(58,46,42,0.15);
  border: 1px solid var(--beige-300);
  overflow: hidden;
  animation: floatMockup 5s ease-in-out infinite;
}
@keyframes floatMockup {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mockup-chrome {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--beige-100);
  border-bottom: 1px solid var(--beige-200);
}
.chrome-dots { display: flex; gap: 6px; flex-shrink: 0; }
.chrome-dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #FC5F57; }
.dot-yellow { background: #FDBC2C; }
.dot-green { background: #33C648; }
.chrome-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.chrome-label span { font-size: 11px; font-weight: 600; color: var(--charcoal-600); }
.mockup-body { display: flex; height: 280px; }

.mockup-sidebar {
  width: 144px;
  flex-shrink: 0;
  border-right: 1px solid var(--beige-200);
  background: var(--beige-100);
  padding: 12px;
  display: flex;
  flex-direction: column;
}
.sidebar-label {
  font-size: 9px;
  font-weight: 700;
  color: var(--charcoal-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.sidebar-files { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.sidebar-file {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
}
.sf-icon { font-size: 13px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.sf-name { font-size: 10px; font-weight: 500; color: var(--charcoal-700); line-height: 1.3; }
.sf-meta { font-size: 9px; color: var(--charcoal-400); margin-top: 1px; }
.sidebar-add {
  font-size: 9px;
  font-weight: 600;
  color: var(--coral);
  background: rgba(217,119,87,0.10);
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  margin-top: 8px;
  width: 100%;
}

.mockup-chat { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.chat-topbar { padding: 8px 12px; border-bottom: 1px solid var(--beige-200); }
.chat-topbar p { font-size: 10px; color: var(--charcoal-400); }
.chat-msgs { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }

.msg-user { display: flex; justify-content: flex-end; opacity: 0; animation: fadeUp 0.4s ease forwards 0.7s; }
.bubble-user {
  background: var(--coral);
  color: white;
  border-radius: 16px 16px 4px 16px;
  padding: 8px 12px;
  max-width: 85%;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
}
.msg-assistant { display: flex; align-items: flex-start; gap: 8px; opacity: 0; animation: fadeUp 0.4s ease forwards 1.1s; }
.asst-avatar {
  width: 20px; height: 20px;
  background: rgba(107,142,35,0.15);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  margin-top: 2px;
}
.bubble-assistant {
  background: var(--beige-100);
  border: 1px solid var(--beige-200);
  border-radius: 16px 16px 16px 4px;
  padding: 8px 12px;
  max-width: 85%;
}
.bubble-head { font-size: 10px; font-weight: 600; color: var(--charcoal-700); margin-bottom: 4px; }
.bubble-body { font-size: 10px; color: var(--charcoal-600); line-height: 1.6; }
.bubble-src { font-size: 9px; color: var(--coral); font-weight: 600; margin-top: 6px; }
.chat-input-row { padding: 0 12px 12px; }
.chat-input-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--beige-100);
  border-radius: 9999px;
  padding: 8px 12px;
}
.chat-placeholder { font-size: 10px; color: var(--charcoal-400); flex: 1; }
.chat-send {
  width: 20px; height: 20px;
  background: var(--coral);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 10px;
  font-weight: 700;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Section shell ─────────────────────────────────────── */
.section { padding: 96px 24px; }
.section-inner { max-width: 1152px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-title .accent { color: var(--coral); }
.section-sub {
  font-size: 18px;
  color: var(--charcoal-500);
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ── ANSWERS ───────────────────────────────────────────── */
.bg-beige { background: var(--beige-100); }
.bg-white { background: white; }
.bg-cream { background: var(--cream); }

.answers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.answer-card {
  background: white;
  border: 1px solid var(--beige-300);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 1px 3px rgba(58,46,42,0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}
.answer-card:hover { box-shadow: 0 6px 20px rgba(58,46,42,0.10); transform: translateY(-2px); }
.answer-q { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.answer-q-icon {
  width: 28px; height: 28px;
  background: rgba(217,119,87,0.10);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.answer-bubble {
  background: rgba(217,119,87,0.07);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
}
.answer-reply {
  margin-left: 38px;
  background: var(--beige-100);
  border: 1px solid var(--beige-200);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
}
.answer-reply p { font-size: 11px; color: var(--charcoal-600); line-height: 1.6; }
.answer-source { font-size: 10px; color: var(--coral); font-weight: 600; margin-top: 6px; }

/* ── PROBLEM ───────────────────────────────────────────── */
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.problem-card { border-radius: 20px; padding: 32px; position: relative; overflow: hidden; }
.card-before { background: var(--beige-100); border: 1px solid var(--beige-300); }
.card-after { background: #F2F6E8; border: 1px solid #E4EDD1; }
.problem-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9999px;
  padding: 4px 10px;
  margin-bottom: 24px;
}
.badge-before { background: #FEE2E2; color: #EF4444; }
.badge-after { background: rgba(107,142,35,0.15); color: var(--sage-600); }

.chaos-zone { position: relative; height: 200px; margin-bottom: 16px; }
.chaos-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid var(--beige-300);
  border-radius: 12px;
  padding: 6px 12px;
  box-shadow: 0 1px 4px rgba(58,46,42,0.08);
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal-600);
  white-space: nowrap;
}
.chaos-item:nth-child(1) { top:10%; left:5%;  transform:rotate(-8deg); animation:w1 3.5s ease-in-out infinite; }
.chaos-item:nth-child(2) { top:8%;  left:50%; transform:rotate(5deg);  animation:w2 4s   ease-in-out infinite 0.5s; }
.chaos-item:nth-child(3) { top:42%; left:28%; transform:rotate(-4deg); animation:w1 4.5s ease-in-out infinite 1s; }
.chaos-item:nth-child(4) { top:38%; left:60%; transform:rotate(7deg);  animation:w2 3s   ease-in-out infinite 0.3s; }
.chaos-item:nth-child(5) { top:68%; left:8%;  transform:rotate(-6deg); animation:w1 3.8s ease-in-out infinite 0.8s; }
.chaos-item:nth-child(6) { top:70%; left:53%; transform:rotate(4deg);  animation:w2 4.2s ease-in-out infinite 0.2s; }
@keyframes w1 { 0%,100%{margin-top:0;margin-left:0} 33%{margin-top:-3px;margin-left:4px} 66%{margin-top:3px;margin-left:-2px} }
@keyframes w2 { 0%,100%{margin-top:0;margin-left:0} 33%{margin-top:3px;margin-left:-3px} 66%{margin-top:-2px;margin-left:3px} }

.problem-note { font-size: 13px; color: var(--charcoal-400); text-align: center; margin-top: 16px; }

.organised-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.organised-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border: 1px solid #E4EDD1;
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 1px 3px rgba(58,46,42,0.06);
}
.org-left { display: flex; align-items: center; gap: 12px; }
.org-icon { font-size: 20px; }
.org-name { font-size: 13px; font-weight: 500; color: var(--charcoal-700); }
.org-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(107,142,35,0.15);
  color: var(--sage-600);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 9999px;
}

/* ── WHO IT'S FOR ──────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.who-card {
  background: var(--cream);
  border: 1px solid var(--beige-200);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.who-card:hover { border-color: rgba(217,119,87,0.3); background: rgba(217,119,87,0.04); transform: translateY(-2px); }
.who-icon { font-size: 28px; margin-bottom: 12px; }
.who-title { font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; letter-spacing: -0.01em; }
.who-desc { font-size: 13px; color: var(--charcoal-500); line-height: 1.6; }

/* ── FOUNDING PARTNER ──────────────────────────────────── */
.founding-wrap { max-width: 896px; margin: 0 auto; border-radius: 24px; overflow: hidden; position: relative; }
.founding-bg-grad { position: absolute; inset: 0; background: linear-gradient(135deg, #D97757 0%, #C4613E 60%, #A84C2C 100%); }
.founding-dots {
  position: absolute; inset: 0; opacity: 0.08;
  background-image: radial-gradient(circle at 1.5px 1.5px, white 1px, transparent 0);
  background-size: 22px 22px;
}
.founding-inner {
  position: relative;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.founding-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border-radius: 9999px;
  padding: 4px 12px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.02em;
}
.founding-title { font-size: 32px; font-weight: 800; color: white; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; }
.founding-desc { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.65; margin-bottom: 32px; }
.progress-meta { display: flex; justify-content: space-between; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.progress-meta strong { color: white; font-weight: 700; }
.progress-bar { height: 10px; background: rgba(255,255,255,0.2); border-radius: 9999px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { height: 100%; background: white; border-radius: 9999px; width: 0; transition: width 1s ease-out; }
.progress-remaining { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; margin-bottom: 32px; }
.founding-btn {
  display: inline-block;
  background: white;
  color: var(--coral);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 9999px;
  transition: background 0.2s, box-shadow 0.2s;
}
.founding-btn:hover { background: var(--beige-100); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.benefit-list { display: flex; flex-direction: column; gap: 10px; }
.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 12px 16px;
}
.benefit-check {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.benefit-text { font-size: 13px; color: white; line-height: 1.5; }

/* ── FOUNDER STORY ─────────────────────────────────────── */
.founder-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.founder-emoji { font-size: 40px; margin-bottom: 12px; }
.founder-heading { font-size: 24px; font-weight: 700; color: var(--charcoal); margin-bottom: 40px; letter-spacing: -0.01em; }
.founder-card { background: var(--beige-100); border: 1px solid var(--beige-300); border-radius: 20px; padding: 48px; }
.founder-quote { font-size: 20px; font-style: italic; color: var(--charcoal-700); line-height: 1.6; font-weight: 500; margin-bottom: 32px; }
.founder-divider { border: none; border-top: 1px solid var(--beige-300); margin-bottom: 32px; }
.founder-body { font-size: 15px; color: var(--charcoal-500); line-height: 1.7; }
.founder-icons { display: flex; justify-content: center; gap: 16px; font-size: 24px; margin-top: 32px; opacity: 0.3; user-select: none; }

/* ── WAITLIST ──────────────────────────────────────────── */
.waitlist-header { text-align: center; margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.waitlist-header .section-title { margin-bottom: 12px; }
.waitlist-header p { font-size: 15px; color: var(--charcoal-500); line-height: 1.65; }
.form-card { max-width: 480px; margin: 0 auto; background: white; border: 1px solid var(--beige-300); border-radius: 20px; box-shadow: 0 1px 4px rgba(58,46,42,0.06); padding: 32px; }
.form-field { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--charcoal-700); margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%;
  border: 1px solid var(--beige-300);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--charcoal);
  background: white;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input::placeholder { color: var(--charcoal-400); }
.form-input:focus, .form-select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(217,119,87,0.15); }
.form-submit {
  width: 100%;
  background: var(--coral);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 14px;
  border-radius: 12px;
  margin-top: 4px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.form-submit:hover { background: var(--coral-600); box-shadow: 0 4px 16px rgba(217,119,87,0.3); }
.form-submit:active { transform: scale(0.99); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note { text-align: center; font-size: 12px; color: var(--charcoal-400); margin-top: 12px; }
.form-error {
  font-size: 13px; color: #DC2626;
  background: #FEF2F2; border: 1px solid #FEE2E2;
  border-radius: 12px; padding: 12px 16px; margin-bottom: 12px;
  display: none;
}
.form-error.visible { display: block; }

.success-msg { display: none; text-align: center; padding: 24px 0; }
.success-msg.visible { display: block; }
.success-emoji { font-size: 48px; margin-bottom: 16px; }
.success-title { font-size: 22px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.success-body { font-size: 15px; color: var(--charcoal-500); line-height: 1.6; }

/* ── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--charcoal); padding: 48px 24px 32px; }
.footer-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-logo-text { font-size: 17px; font-weight: 700; color: white; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 300px; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom { max-width: 1152px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.10); padding-top: 24px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── Carousel controls (hidden on desktop) ──────────────── */
.carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.carousel-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--beige-300);
  box-shadow: 0 1px 4px rgba(58,46,42,0.08);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal-600);
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.carousel-arrow:not(:disabled):hover {
  background: var(--coral);
  border-color: var(--coral);
  color: white;
  box-shadow: 0 4px 12px rgba(217,119,87,0.28);
}
.carousel-arrow:disabled { opacity: 0.28; cursor: default; }
.carousel-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--beige-300);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.carousel-dot.active {
  background: var(--coral);
  transform: scale(1.35);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { padding: 16px 24px 48px; }
  .float-card { display: none; }
  .answers-grid { grid-template-columns: 1fr 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .founding-inner { grid-template-columns: 1fr; padding: 36px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .section { padding: 72px 20px; }
  .founder-card { padding: 32px 24px; }
  .form-card { padding: 24px 20px; }
  .founding-inner { padding: 28px 20px; }
  .founding-title { font-size: 26px; }

  /* Carousels */
  .carousel-controls { display: flex; }

  .answers-grid,
  .who-grid,
  .problem-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding-bottom: 4px;
    /* pull grid to full bleed so edge card peeks */
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .answers-grid::-webkit-scrollbar,
  .who-grid::-webkit-scrollbar,
  .problem-grid::-webkit-scrollbar { display: none; }

  .answers-grid .answer-card,
  .who-grid .who-card,
  .problem-grid .problem-card {
    flex: 0 0 88%;
    scroll-snap-align: start;
    min-width: 0;
  }
}
