/* ================================================================
   Home Hub Waitlist — style.css
   ================================================================ */

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border-color: rgba(33,56,90,.1); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  background: #f7f3ec;
  color: #21385A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Design tokens ---------- */
:root {
  --cream: #f7f3ec;
  --cream-warm: #ede7db;
  --dark-blue: #21385A;
  --accent-blue: #5B9BE6;
  --fw-blue: #4784EC;
  --text-mid: #3e5478;
  --text-soft: #7b8fa8;
  --font-display: 'Inter Tight', ui-sans-serif, system-ui, sans-serif;
  --font-body: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
}

/* ---------- Utility: sr-only ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- Animations ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up .6s ease-out both; }

@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.animate-scroll-left { animation: scroll-left linear infinite; }

@keyframes scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
.animate-scroll-up { animation: scroll-up linear infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.animate-float { animation: float 5s ease-in-out infinite; }

@keyframes progress-bar {
  from { width: 0%; }
  to   { width: 100%; }
}
.animate-progress-bar { animation: progress-bar linear forwards; }

@media (prefers-reduced-motion: reduce) {
  .animate-float, .animate-scroll-left, .animate-scroll-up { animation: none; }
}

/* ---------- Scrollbar hide ---------- */
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* =================================================================
   NAV
   ================================================================= */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 0 1.5rem;
  transition: background .3s, box-shadow .3s;
  background: rgba(247,243,236,.01);
}
.site-nav.scrolled {
  background: rgba(247,243,236,.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 72rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0;
}
.nav-logo { height: 2rem; }

/* Language selector */
.lang-selector {
  display: flex;
  gap: 0.25rem;
  margin-left: auto;
  margin-right: 1rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--dark-blue);
}

.lang-btn[data-lang]:not([data-lang=""]) {
  position: relative;
}

/* Highlight active language */
.lang-btn.active {
  background: var(--dark-blue);
  color: white;
  border-color: var(--dark-blue);
}
.nav-cta {
  display: inline-flex; align-items: center;
  border-radius: 9999px; background: var(--fw-blue);
  padding: .625rem 1.25rem;
  font-size: .875rem; font-weight: 500; color: #fff;
  transition: background .2s;
}
.nav-cta:hover { background: rgba(71,132,236,.9); }

/* Variant switcher */

/* =================================================================
   HERO (Version A — two-column)
   ================================================================= */
.hero { padding: 7rem 1.5rem 4rem; }
@media (min-width: 768px) {
  .hero { padding-top: 8rem; padding-bottom: 5rem; }
}

.hero h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 2.25rem;
  line-height: 1.1; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 1024px) { .hero h1 { font-size: 3.5rem; } }

.hero-sub { margin-top: 1.25rem; max-width: 32rem; font-size: 1.125rem; color: var(--text-mid); }

/* Social proof row */
.hero-social-proof {
  margin-top: 1.5rem; display: flex; align-items: center; gap: .75rem;
  font-size: .875rem; color: var(--text-mid); flex-wrap: wrap;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 1.75rem; height: 1.75rem; border-radius: 9999px;
  border: 2px solid var(--cream); object-fit: cover;
}
.avatar-stack img + img { margin-left: -.5rem; }
.hero-social-proof .sep { color: var(--text-soft); }
.hero-social-proof .star { color: #eab308; }

.play-pill {
  display: flex; align-items: center; gap: .625rem;
  background: rgba(255,255,255,.9); backdrop-filter: blur(4px);
  padding: .625rem 1rem; border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: transform .3s;
}
.play-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px; background: var(--dark-blue);
  display: flex; align-items: center; justify-content: center;
}
.play-icon svg { width: 1rem; height: 1rem; fill: #fff; }
.play-pill span { font-size: .875rem; font-weight: 500; color: var(--dark-blue); }

/* Hero B — centered */
.hero-b { padding-top: 5rem; }
@media (min-width: 768px) { .hero-b { padding-top: 6.5rem; } }
.hero-b-inner { max-width: 48rem; margin: 0 auto; text-align: center; }
.hero-b-inner h1 {
  font-family: var(--font-display); font-weight: 800; font-size: 2.25rem;
  line-height: 1.1; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .hero-b-inner h1 { font-size: 3.5rem; } }
@media (min-width: 1024px) { .hero-b-inner h1 { font-size: 4rem; } }
.hero-b-inner .hero-sub { margin-left: auto; margin-right: auto; }

/* Tablet showcase B — clickable play button */
.tablet-overlay-clickable { pointer-events: auto; }
.tablet-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
}
.tablet-play-btn .play-pill { transition: transform .3s; }
.tablet-play-btn:hover .play-pill { transform: scale(1.05); }

/* =================================================================
   VIDEO MODAL
   ================================================================= */
.video-modal {
  display: none; position: fixed; inset: 0; z-index: 10000;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,.8); padding: 1rem;
}
.video-modal.open { display: flex; }
.video-modal-inner { position: relative; width: 100%; max-width: 56rem; }
.video-close {
  position: absolute; top: -3rem; right: 0;
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  background: rgba(255,255,255,.15); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s; font-size: 1.25rem;
}
.video-close:hover { background: rgba(255,255,255,.3); }
.video-modal video {
  width: 100%; border-radius: 1rem; background: #000;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  aspect-ratio: 16/9;
}

/* =================================================================
   SIZE SELECTOR
   ================================================================= */
.size-selector-label { margin-bottom: 1.5rem; font-size: .875rem; font-weight: 500; color: var(--text-mid); }
.size-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .size-grid { grid-template-columns: repeat(3, 1fr); } }
.size-card {
  position: relative; border-radius: 1rem; border: 2px solid rgba(33,56,90,.1);
  padding: 1.5rem; text-align: left; background: #fff;
  transition: all .2s; cursor: pointer;
}
.size-card:hover { border-color: rgba(33,56,90,.2); box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.size-card.selected { border-color: var(--dark-blue); background: rgba(33,56,90,.05); box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }
.size-popular {
  position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%);
  white-space: nowrap; background: var(--dark-blue); color: #fff;
  font-size: .75rem; font-weight: 500; padding: .125rem .75rem;
  border-radius: 9999px;
}
.size-label { font-family: var(--font-display); font-size: 1.875rem; font-weight: 600; color: var(--dark-blue); }
.size-price { margin-top: .25rem; font-size: 1.5rem; font-weight: 600; color: var(--dark-blue); }
.size-target { margin-top: .125rem; font-size: .75rem; color: var(--text-soft); }
.size-desc { margin-top: .5rem; font-size: .875rem; color: var(--text-mid); }
.size-premium { margin-top: .25rem; font-size: .75rem; color: var(--text-soft); }

/* =================================================================
   WAITLIST FORM
   ================================================================= */
#waitlist { scroll-margin-top: 6rem; }
.waitlist-form { width: 100%; }
.waitlist-row { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .waitlist-row { flex-direction: row; } }
.waitlist-input {
  flex: 1; border-radius: .75rem; border: 1px solid rgba(33,56,90,.15);
  background: #fff; padding: .75rem 1rem; font-size: 1rem;
  color: var(--dark-blue); outline: none; transition: border .2s, box-shadow .2s;
}
.waitlist-input::placeholder { color: var(--text-soft); }
.waitlist-input:focus { border-color: var(--fw-blue); box-shadow: 0 0 0 3px rgba(71,132,236,.2); }
.waitlist-btn {
  border: none; border-radius: .75rem; background: var(--fw-blue);
  padding: .75rem 2rem; font-weight: 500; color: #fff;
  transition: background .2s; white-space: nowrap;
}
.waitlist-btn:hover { background: rgba(71,132,236,.9); }
.waitlist-btn:disabled { opacity: .6; cursor: not-allowed; }
.waitlist-note { margin-top: .75rem; font-size: .75rem; color: var(--text-soft); }
.waitlist-error { margin-top: .5rem; font-size: .875rem; color: #dc2626; }
.waitlist-success {
  border-radius: 1rem; background: rgba(91,155,230,.1); padding: 1.5rem;
  text-align: center;
}
.waitlist-success h3 {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--dark-blue);
}
.waitlist-success p { margin-top: .5rem; font-size: .875rem; color: var(--text-mid); }

/* =================================================================
   TABLET SHOWCASE
   ================================================================= */
.tablet-showcase { position: relative; width: 100%; overflow-x: clip; overflow-y: visible; }
@media (max-width: 767px) { .tablet-showcase { margin-left: -1.5rem; margin-right: -1.5rem; width: calc(100% + 3rem); } }
.tablet-rows { position: relative; display: flex; flex-direction: column; gap: 1.25rem; padding: 1.25rem 0; }
@media (min-width: 768px) { .tablet-rows { padding: 7rem 0; } }

.scroll-row { display: flex; width: max-content; gap: 1.25rem; }

.info-card {
  width: 150px; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: .625rem;
  background: #fff; border-radius: 1rem; padding: 1.25rem 1rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.info-card-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.info-card p { text-align: center; font-size: 13px; line-height: 1.35; color: var(--dark-blue); }
.info-card p strong { font-weight: 600; }

.photo-card {
  width: 200px; flex-shrink: 0; overflow: hidden; border-radius: 1rem;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.photo-card img { width: 100%; height: auto; object-fit: cover; display: block; }

/* Tablet overlay */
.tablet-overlay {
  position: absolute; inset: 0; z-index: 25;
  display: flex; align-items: center; justify-content: center;
}
.tablet-overlay-inner { width: 81%; max-width: 1010px; margin-bottom: 3rem; }
@media (max-width: 767px) { .tablet-overlay-inner { width: 100%; } }
.tablet-overlay img {
  width: 100%; height: auto;
  filter: drop-shadow(0 12px 48px rgba(0,0,0,.13));
}

/* Fade masks */
.fade-left, .fade-right {
  pointer-events: none; position: absolute; top: 0; bottom: 0; z-index: 20; width: 6rem;
}
@media (max-width: 767px) { .fade-left, .fade-right { width: 4rem; } }
.fade-left  { left: 0;  background: linear-gradient(to right, var(--cream), transparent); }
.fade-right { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.fade-left-warm  { left: 0;  background: linear-gradient(to right, var(--cream-warm), transparent); }
.fade-right-warm { right: 0; background: linear-gradient(to left, var(--cream-warm), transparent); }
@media (max-width: 767px) { .fade-left-warm, .fade-right-warm { display: none !important; } }

/* =================================================================
   PROBLEM SECTION
   ================================================================= */
.problem { background: var(--cream-warm); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .problem { padding: 7rem 1.5rem; } }
.problem-inner { max-width: 64rem; margin: 0 auto; }
.problem .tag { text-align: center; font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--fw-blue); }
.problem h2 {
  margin-top: .75rem; text-align: center; font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 800; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .problem h2 { font-size: 2.5rem; line-height: 1.15; } }
.problem > .problem-inner > p:not(.tag) { margin-top: 1rem; text-align: center; color: var(--text-mid); max-width: 42rem; margin-left: auto; margin-right: auto; }
.problem-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card { background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.problem-card .icon { font-size: 1.875rem; }
.problem-card h3 {
  margin-top: .75rem; font-family: var(--font-display); font-size: 1.125rem;
  font-weight: 700; color: var(--dark-blue);
}
.problem-card .desc { margin-top: .5rem; font-size: .875rem; line-height: 1.6; color: var(--text-mid); }
.problem-fix {
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid rgba(33,56,90,.08);
  display: flex; align-items: flex-start; gap: .5rem;
}
.fix-check {
  margin-top: .125rem; width: 1rem; height: 1rem; flex-shrink: 0;
  border-radius: 9999px; background: rgba(91,155,230,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-blue); font-size: 10px;
}
.fix-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-blue); }
.fix-text { margin-top: .125rem; font-size: .875rem; color: var(--dark-blue); }

/* =================================================================
   FEATURES SECTION
   ================================================================= */
.features { padding: 5rem 1.5rem; }
@media (min-width: 768px) { .features { padding: 7rem 1.5rem; } }
.features-inner { max-width: 72rem; margin: 0 auto; }
.features .section-tag {
  text-align: center; font-size: .875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em; color: var(--fw-blue);
}
.features h2 {
  margin-top: .75rem; max-width: 36rem; margin-left: auto; margin-right: auto;
  text-align: center; font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 800; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .features h2 { font-size: 2.8rem; line-height: 1.12; } }
.features > .features-inner > p:not(.section-tag) { margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; color: var(--text-mid); }

/* Desktop two-column */
.features-desktop { display: none; margin-top: 3.5rem; }
@media (min-width: 768px) { .features-desktop { display: grid; grid-template-columns: 2fr 3fr; gap: 2.5rem; } }
@media (min-width: 1024px) { .features-desktop { gap: 3.5rem; } }

.features-tabs { display: flex; flex-direction: column; gap: .25rem; }
.feature-tab {
  position: relative; display: flex; flex-direction: column;
  border-radius: .75rem; padding: 1rem 1.25rem; text-align: left;
  background: transparent; border: none; transition: all .2s; overflow: hidden; width: 100%;
}
.feature-tab:hover { background: rgba(255,255,255,.5); }
.feature-tab.active { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.feature-tab .progress {
  position: absolute; bottom: 0; left: 0; height: 2px;
  background: rgba(71,132,236,.4); border-radius: 9999px;
}
.feature-tab-header { display: flex; align-items: center; gap: .75rem; }
.feature-icon {
  width: 2rem; height: 2rem; flex-shrink: 0; border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.feature-icon-mask { display: inline-block; width: 1.25rem; height: 1.25rem; }
.feature-tab h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  color: var(--text-mid); transition: color .2s;
}
.feature-tab.active h3 { color: var(--dark-blue); }
.feature-tab .teaser { margin-top: .25rem; padding-left: 2.75rem; font-size: .875rem; color: var(--text-soft); transition: color .2s; }
.feature-tab.active .teaser { color: var(--text-mid); }
.feature-tab .detail {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .3s, opacity .3s;
}
.feature-tab.active .detail { grid-template-rows: 1fr; opacity: 1; }
.feature-tab .detail-inner { overflow: hidden; }
.feature-tab .detail p { padding-top: .5rem; padding-left: 2.75rem; font-size: .875rem; line-height: 1.6; color: var(--text-mid); }

/* Image panel */
.features-image-panel { position: sticky; top: 7rem; align-self: start; }
.features-image-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  border-radius: 1rem; background: var(--cream-warm);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}
.features-image-wrap img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .3s, transform .3s;
  opacity: 0; transform: scale(1.02);
}
.features-image-wrap img.active { opacity: 1; transform: scale(1); }
.features-caption { margin-top: .75rem; text-align: center; font-size: .75rem; color: var(--text-soft); }

/* Mobile features */
.features-mobile { margin-top: 2.5rem; }
@media (min-width: 768px) { .features-mobile { display: none; } }
.features-pills {
  display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .75rem;
  margin: 0 -1.5rem; padding-left: 1.5rem; padding-right: 1.5rem;
}
.feature-pill {
  flex-shrink: 0; display: flex; align-items: center; gap: .375rem;
  border-radius: 9999px; padding: .5rem .875rem;
  font-size: .875rem; font-weight: 500; border: 2px solid transparent;
  background: rgba(255,255,255,.6); color: var(--text-mid); transition: all .2s;
}
.feature-pill.active { border-color: var(--fw-blue); background: #fff; color: var(--dark-blue); box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.feature-pill .pill-icon { display: inline-block; width: 1rem; height: 1rem; }
.features-mobile .features-image-wrap { margin-top: 1rem; }
.features-mobile-content {
  margin-top: 1rem; background: #fff; border-radius: .75rem; padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.features-mobile-content .content-header { display: flex; align-items: center; gap: .625rem; }
.features-mobile-content .content-icon {
  width: 2rem; height: 2rem; border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
}
.features-mobile-content h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--dark-blue); }
.features-mobile-content .content-desc { margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: var(--text-mid); }

/* =================================================================
   BENEFITS MARQUEE
   ================================================================= */
.benefits-marquee { background: var(--cream-warm); padding: 5rem 0; overflow: hidden; }
@media (min-width: 768px) { .benefits-marquee { padding: 7rem 0; } }
.benefits-header { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.benefits-header .tag { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--fw-blue); }
.benefits-header h2 {
  margin-top: .75rem; max-width: 36rem;
  font-family: var(--font-display); font-size: 1.875rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .benefits-header h2 { font-size: 2.5rem; line-height: 1.12; } }

.bento-track-wrap { position: relative; margin-top: 3rem; }
.bento-track { display: flex; width: max-content; gap: 1.5rem; padding-left: 1.5rem; will-change: transform; -webkit-transform: translateZ(0); }

/* Bento module: tall card + 2 stacked */
.bento-module { display: flex; flex-shrink: 0; gap: 1rem; }
.bento-stack { display: flex; flex-direction: column; gap: 1rem; }

.bento-card {
  position: relative; width: 340px; flex-shrink: 0; overflow: hidden; border-radius: 1rem;
}
.bento-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bento-card.has-overlay::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(255,255,255,.75) 0%, rgba(255,255,255,.2) 50%, transparent 100%); z-index: 0; pointer-events: none; }
.bento-card-content { position: relative; z-index: 1; padding: 1.5rem; }
.bento-card.stacked .bento-card-content { padding: 1.25rem; }
.bento-card .card-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.bento-card h3 { margin-top: .375rem; font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; line-height: 1.3; letter-spacing: -.01em; color: var(--dark-blue); }

/* =================================================================
   SOCIAL PROOF
   ================================================================= */
.social-proof { padding: 5rem 1.5rem; overflow: hidden; }
@media (min-width: 768px) { .social-proof { padding: 7rem 1.5rem; } }
.social-proof-inner { max-width: 64rem; margin: 0 auto; }
.social-proof .tag { text-align: center; font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--fw-blue); }
.social-proof h2 {
  margin-top: .75rem; max-width: 42rem; margin-left: auto; margin-right: auto;
  text-align: center; font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 800; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .social-proof h2 { font-size: 2.6rem; line-height: 1.12; } }
.social-proof > .social-proof-inner > p:not(.tag) { margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; color: var(--text-mid); }
.inline-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; font-weight: 600; margin-top: .75rem; display: inline-block; }
.inline-link:hover { opacity: 0.7; }

/* KPI cards */
.kpi-row { margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .kpi-row { flex-direction: row; gap: 1.5rem; } }
.kpi-card {
  display: flex; align-items: center; gap: 1rem;
  border-radius: 1rem; border: 1px solid rgba(33,56,90,.06);
  background: #fff; padding: 1rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.kpi-card .kpi-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; color: var(--dark-blue); }
.kpi-card .kpi-num .kpi-sub { font-size: 1.5rem; color: var(--text-soft); font-weight: 400; }
.kpi-card .kpi-text { font-size: .875rem; line-height: 1.4; color: var(--text-mid); }
.kpi-stars { display: flex; gap: .125rem; color: #f59e0b; }
.kpi-stars svg { width: 1rem; height: 1rem; }
.kpi-reviews { margin-top: .125rem; font-size: .75rem; color: var(--text-soft); }

/* Testimonial columns */
.testimonials-wall { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .testimonials-wall { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-wall { grid-template-columns: repeat(3, 1fr); } }

.scroll-column { position: relative; height: 520px; overflow: hidden; }
.scroll-column .fade-top,
.scroll-column .fade-bottom {
  pointer-events: none; position: absolute; left: 0; right: 0; z-index: 10; height: 5rem;
}
.scroll-column .fade-top { top: 0; background: linear-gradient(to bottom, var(--cream), transparent); }
.scroll-column .fade-bottom { bottom: 0; background: linear-gradient(to top, var(--cream), transparent); }
.scroll-column-inner { display: flex; flex-direction: column; gap: 1rem; }
.testimonial-card {
  border-radius: 1rem; border: 1px solid rgba(33,56,90,.06);
  background: #fff; padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.testimonial-stars { display: flex; gap: .125rem; color: #f59e0b; }
.testimonial-quote { margin-top: .5rem; font-size: .9rem; line-height: 1.6; color: var(--text-mid); }
.testimonial-author { margin-top: 1rem; }
.testimonial-author .name { font-size: .875rem; font-weight: 600; color: var(--dark-blue); }
.testimonial-author .source { font-size: .75rem; color: var(--text-soft); }

/* =================================================================
   MISSION
   ================================================================= */
.mission { padding: 5rem 1.5rem; background: var(--cream-warm); }
@media (min-width: 768px) { .mission { padding: 7rem 1.5rem; } }
.mission-inner { max-width: 72rem; margin: 0 auto; display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .mission-inner { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.mission .tag { font-size: .875rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--fw-blue); }
.mission h2 {
  margin-top: .75rem; font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 800; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .mission h2 { font-size: 2.5rem; line-height: 1.12; } }
.mission .body { margin-top: 1.25rem; color: var(--text-mid); line-height: 1.7; }
.mission .body + .body { margin-top: 1rem; }
.mission-image { overflow: hidden; border-radius: 1rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,.1); }
.mission-image img { width: 100%; height: auto; object-fit: cover; }

/* =================================================================
   FAQ
   ================================================================= */
.faq { background: #fff; padding: 5rem 1.5rem; }
@media (min-width: 768px) { .faq { padding: 7rem 1.5rem; } }
.faq-inner { max-width: 42rem; margin: 0 auto; }
.faq h2 {
  text-align: center; font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 800; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .faq h2 { font-size: 2.5rem; line-height: 1.15; } }
.faq-list {
  margin-top: 2.5rem; border-radius: 1rem; border: 1px solid rgba(33,56,90,.06);
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.04);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid rgba(33,56,90,.1); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; text-align: left; border: none;
  background: transparent; transition: background .2s;
  font-weight: 500; color: var(--dark-blue);
}
.faq-question:hover { background: rgba(33,56,90,.03); }
.faq-question svg {
  width: 1.25rem; height: 1.25rem; flex-shrink: 0; color: var(--text-soft);
  transition: transform .2s;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .3s, opacity .3s;
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; opacity: 1; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding: 0 1.5rem 1.25rem; font-size: 1rem; line-height: 1.6; color: var(--text-mid); }
.faq-answer a { color: var(--fw-blue); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: rgba(71,132,236,.8); }

/* =================================================================
   FINAL CTA
   ================================================================= */
.final-cta { background: var(--cream-warm); padding: 5rem 1.5rem; }
@media (min-width: 768px) { .final-cta { padding: 7rem 1.5rem; } }
.final-cta-inner { max-width: 56rem; margin: 0 auto; text-align: center; }
.final-cta h2 {
  font-family: var(--font-display); font-size: 1.875rem;
  font-weight: 800; letter-spacing: -.02em; color: var(--dark-blue);
}
@media (min-width: 768px) { .final-cta h2 { font-size: 2.5rem; line-height: 1.15; } }
.final-cta > .final-cta-inner > p { margin-top: 1rem; max-width: 42rem; margin-left: auto; margin-right: auto; text-align: center; color: var(--text-mid); }
.final-cta .size-grid { margin-top: 2.5rem; }
.final-cta .waitlist-form { margin-top: 1.5rem; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  border-top: 1px solid rgba(33,56,90,.08);
  background: var(--cream); padding: 2.5rem 1.5rem;
}
.footer-inner { max-width: 64rem; margin: 0 auto; }
.footer-row {
  display: flex; flex-direction: column; align-items: center; gap: 1rem;
}
@media (min-width: 640px) { .footer-row { flex-direction: row; justify-content: space-between; } }
.footer-brand { display: flex; align-items: center; gap: .625rem; }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 600; color: var(--dark-blue); }
.footer-brand .brand-by { display: flex; align-items: center; gap: .375rem; font-size: .875rem; color: var(--text-soft); }
.footer-brand .brand-by img { height: 1.25rem; }
.footer-links { display: flex; gap: 1.5rem; font-size: .875rem; color: var(--text-mid); }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--fw-blue); }
.footer-note { margin-top: 1.5rem; text-align: center; font-size: .75rem; color: var(--text-soft); }
.footer-note + .footer-note { margin-top: .5rem; }
