/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Design System — menna.pt ── */
:root {
  --navy:        #1B1B47;
  --navy-deep:   #14142E;
  --coral:       #E2654F;
  --coral-dark:  #C94F3B;
  --coral-soft:  #FBE3DC;
  --cream:       #FBF6F1;
  --cream-deep:  #F3E8DC;
  --paper:       #FFFFFF;
  --ink-soft:    #5C5A72;
  --line:        #E6DDD0;
  --shadow:      0 2px 8px rgba(27,27,71,.06), 0 1px 0 rgba(27,27,71,.04);
  --shadow-lift: 0 12px 32px rgba(27,27,71,.12);
  --radius:      18px;
  --max-w:       1080px;
  --ease:        cubic-bezier(.16,1,.3,1);
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 8vw, 3.6rem); line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 5vw, 2.375rem); line-height: 1.1; }
h3 { font-size: 1.125rem; }
p  { color: var(--ink-soft); line-height: 1.75; }
em { font-style: normal; color: var(--coral); }

/* ── Layout ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }

/* ── Utilities ── */
.text-center { text-align: center; }
.sr-only { position: absolute; left: -9999px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.625rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: .9375rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: transform .15s, background .15s, border-color .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; box-shadow: var(--shadow-lift); }
.btn-primary:hover { background: var(--coral-dark); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); background: var(--paper); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--coral); }

/* ── Eyebrow ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--coral);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .6875rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.eyebrow-soft {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--coral);
  margin-bottom: .625rem;
}

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(251,246,241,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.nav-logo { height: 42px; }

.nav-links { display: flex; align-items: center; gap: .25rem; }
.nav-links a {
  padding: .375rem .875rem;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--navy); background: rgba(27,27,71,.06); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

.nav-hamburger {
  display: none;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--navy);
  cursor: pointer;
  padding: 7px 9px;
  z-index: 1001;
  position: relative;
  gap: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
.hamburger-icon span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
[aria-expanded="true"] .hamburger-icon span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
[aria-expanded="true"] .hamburger-icon span:nth-child(2) { opacity: 0; }
[aria-expanded="true"] .hamburger-icon span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile menu ── */
#mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: calc(80px + env(safe-area-inset-bottom));
  z-index: 1000;
  background: var(--cream);
  flex-direction: column;
}
#mobile-menu.open { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.mobile-menu-logo img {
  height: 42px;
  display: block;
}
.mobile-menu-close {
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.mobile-menu-close:hover { background: rgba(27,27,71,.06); border-color: var(--navy); }

.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 16px;
  gap: .375rem;
  overflow-y: auto;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-size: 1.0625rem;
  font-weight: 600;
  font-family: 'Baloo 2', sans-serif;
  color: var(--navy);
  border-radius: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: background .15s, border-color .15s;
}
.mobile-menu-nav a:active,
.mobile-menu-nav a:hover { background: var(--cream-deep); border-color: rgba(27,27,71,.15); }

/* ── Mobile bottom bar (sticky CTA) ── */
.mobile-bottom-bar {
  display: none;
}
@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: rgba(251,246,241,.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    padding: .875rem 16px;
    padding-bottom: calc(.875rem + env(safe-area-inset-bottom));
  }
  .mobile-bottom-bar .btn {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: .9375rem 1.5rem;
    border-radius: 14px;
  }
  body {
    padding-bottom: calc(80px + env(safe-area-inset-bottom));
  }
}

/* ── Hero ── */
.hero {
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy { max-width: 480px; }
.hero-copy h1 { margin-bottom: 1.125rem; }
.hero-sub { font-size: 1.0625rem; margin-bottom: 1.75rem; max-width: 440px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .8125rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.proof-dots { display: flex; }
.proof-dot {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--coral-soft);
  border: 2px solid var(--cream);
  margin-left: -8px;
}
.proof-dot:first-child { margin-left: 0; }

/* ── Hero mascot ── */
.hero-mascot {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  margin-bottom: 1rem;
}
.hero-mascot img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* ── Hero bubbles ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  max-width: 360px;
  justify-self: end;
}
.bubble {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px 18px 18px 4px;
  padding: .875rem 1.125rem;
  font-size: .875rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  opacity: 0;
  transform: translateY(10px);
  animation: bubbleIn .5s ease forwards;
}
.bubble:nth-child(1) { animation-delay: .15s; }
.bubble:nth-child(2) { animation-delay: .45s; margin-left: 28px; border-radius: 18px 18px 4px 18px; }
.bubble:nth-child(3) { animation-delay: .75s; }
@keyframes bubbleIn { to { opacity: 1; transform: translateY(0); } }
.bubble .heart { color: var(--coral); flex-shrink: 0; font-size: .9375rem; line-height: 1.5; }
.bubble b { color: var(--navy); }
.bubble span { color: var(--ink-soft); }

/* ── Stats ── */
.stats-section {
  padding: 48px 0;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-number {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: .375rem;
}
.stat-label { font-size: .875rem; color: var(--ink-soft); }

/* ── Pillars / Features ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .875rem;
}
.pillar {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.375rem 1rem;
  box-shadow: var(--shadow);
  transition: transform .18s, box-shadow .18s;
}
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.pillar-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--coral-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .875rem;
  font-size: 1.125rem;
}
.pillar h3 { font-size: .96875rem; margin-bottom: .25rem; }
.pillar p  { font-size: .78125rem; line-height: 1.5; }

/* ── Scenarios ── */
.scenarios-band {
  background: var(--cream-deep);
  border-radius: 28px;
  padding: 56px 32px;
  max-width: 1040px;
  margin: 0 auto;
}
.scenario-list { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.scenario {
  background: var(--paper);
  border-radius: 16px 16px 16px 4px;
  padding: 1rem 1.25rem;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  box-shadow: var(--shadow);
  max-width: 560px;
  font-size: .90625rem;
}
.scenario:nth-child(even) { margin-left: auto; border-radius: 16px 16px 4px 16px; }
.scenario .heart { color: var(--coral); font-size: .9375rem; flex-shrink: 0; }
.scenario b { color: var(--navy); }

/* ── Why ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.why-num {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: .8125rem;
  color: var(--coral);
  margin-bottom: .5rem;
}
.why-item h3 { font-size: 1.125rem; margin-bottom: .375rem; }
.why-item p  { font-size: .875rem; }

/* ── How it works (steps) ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral);
  font-weight: 900;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
}
.step h3 { margin-bottom: .5rem; }

/* ── CTA band ── */
.cta-band {
  background: var(--navy);
  border-radius: 28px;
  padding: 56px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
}
.cta-band::before {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(226,101,79,.25) 0%, transparent 70%);
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2   { color: var(--cream); margin-bottom: .875rem; }
.cta-band .sub { color: rgba(251,246,241,.7); font-size: .96875rem; max-width: 420px; margin: 0 auto 1.75rem; }

/* CTA split layout (with character) */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 2rem;
  align-items: end;
  text-align: left;
}
.cta-split h2  { text-align: left; }
.cta-split .sub { margin: 0 0 1.75rem; text-align: left; }
.cta-split .waitlist-form { margin: 0; }
.cta-split .waitlist-note { text-align: left; }
.cta-col { padding-bottom: 0; }
.cta-mascot {
  border-radius: 16px;
  overflow: hidden;
  align-self: center;
  flex-shrink: 0;
}
.cta-mascot img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  max-width: 380px;
  margin: 0 auto;
}
@media (min-width: 480px) { .waitlist-form { flex-direction: row; } }
.waitlist-form input {
  flex: 1;
  padding: .8125rem 1rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: .875rem;
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.18);
}
.waitlist-form input::placeholder { color: rgba(251,246,241,.5); }
.waitlist-form input:focus { outline: 2px solid var(--coral); }
.waitlist-form button {
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  padding: .8125rem 1.375rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  transition: background .15s;
}
.waitlist-form button:hover { background: var(--coral-dark); }
.waitlist-note { font-size: .75rem; color: rgba(251,246,241,.45); margin-top: .75rem; }

/* ── Footer ── */
.footer {
  background: var(--navy-deep);
  padding: 56px 0 0;
  margin-top: 1.25rem;
}
/* Nav: 3 colunas */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.footer-col h5 {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(251,246,241,.35);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .625rem; }
.footer-col ul a {
  font-size: .9375rem;
  color: rgba(251,246,241,.7);
  transition: color .15s;
}
.footer-col ul a:hover { color: var(--cream); }
/* Bottom */
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(251,246,241,.3);
}
/* Mobile */
@media (max-width: 768px) {
  .footer { padding: 40px 0 0; }
  .footer-nav {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .footer-col {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-col ul { gap: .875rem; }
  .footer-col ul a { font-size: 1rem; }
  .footer-bottom {
    flex-direction: column;
    gap: .375rem;
    text-align: center;
    padding: 1.25rem 0;
  }
}

/* ── Menna banner strip ── */
.menna-banner-section { padding: 0 0 64px; }
.menna-banner {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.menna-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.menna-banner-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(251,246,241,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: .5rem 1rem;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.menna-banner-label .heart { color: var(--coral); }
@media (max-width: 768px) {
  .menna-banner img { height: 260px; object-position: 70% 20%; }
}

/* ── Blog preview (home) ── */
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.blog-preview-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-preview-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.blog-preview-thumb {
  height: 160px;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  overflow: hidden;
}
.blog-preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-preview-body { padding: 1.125rem; flex: 1; }
.blog-preview-cat {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--coral-dark);
  background: var(--coral-soft);
  padding: .2rem .65rem;
  border-radius: 100px;
  display: inline-flex;
  margin-bottom: .625rem;
}
.blog-preview-title {
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: .375rem;
}
.blog-preview-desc { font-size: .8125rem; color: var(--ink-soft); }
.blog-preview-loading { text-align: center; padding: 3rem; color: var(--ink-soft); grid-column: 1/-1; }
@media (max-width: 900px) { .blog-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-preview-grid { grid-template-columns: 1fr; } }

/* ── Waitlist Modal ── */
.wl-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.wl-modal.open { display: flex; }
.wl-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,27,71,.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.wl-modal-box {
  position: relative;
  background: var(--cream);
  border-radius: 24px;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(27,27,71,.22);
  text-align: center;
  animation: wlIn .25s var(--ease);
}
@keyframes wlIn { from { opacity:0; transform:scale(.94) translateY(12px); } to { opacity:1; transform:none; } }
.wl-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.wl-modal-close:hover { border-color: var(--navy); color: var(--navy); }
.wl-heart { font-size: 1.75rem; color: var(--coral); margin-bottom: .75rem; }
.wl-modal-box h2 { font-size: 1.375rem; margin-bottom: .625rem; }
.wl-modal-box p { font-size: .9375rem; color: var(--ink-soft); margin-bottom: 1.25rem; }
.wl-form {
  display: flex;
  flex-direction: column;
  gap: .625rem;
}
.wl-form input {
  padding: .875rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  background: var(--paper);
  color: var(--navy);
  transition: border-color .15s;
  text-align: center;
}
.wl-form input:focus { outline: none; border-color: var(--coral); }
.wl-form button {
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: .9375rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: background .15s;
}
.wl-form button:hover { background: var(--coral-dark); }
.wl-form button:disabled { opacity: .6; cursor: not-allowed; }
.wl-note { font-size: .8125rem !important; margin: .75rem 0 0 !important; min-height: 1.2em; }
.wl-note.success { color: #2a7a4b; }
.wl-note.error   { color: var(--coral-dark); }

/* ── Animations ── */
[data-animate] {
  opacity: 0;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-animate="fade-up"]  { transform: translateY(32px); }
[data-animate="scale-in"] { transform: scale(.94); }
[data-animate].in-view { opacity: 1; transform: none; }
[data-delay="100"] { transition-delay: 100ms; }
[data-delay="200"] { transition-delay: 200ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="400"] { transition-delay: 400ms; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section   { padding: 56px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .steps-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .nav-links   { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .scenarios-band { border-radius: 16px; padding: 40px 20px; }
  .cta-band { border-radius: 16px; padding: 40px 20px; }
  .cta-split { grid-template-columns: 1fr; text-align: center; }
  .cta-split h2 { text-align: center; }
  .cta-split .sub { text-align: center; margin-left: auto; }
  .cta-split .waitlist-form { margin: 0 auto; }
  .cta-split .waitlist-note { text-align: center; }
  .cta-mascot { display: none; }
}
@media (max-width: 480px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; gap: .625rem; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
}
