/* mobile.css — Intentional mobile redesign (≤768px)
   Desktop/tablet layout is completely untouched.
   This file contains three formerly-named blocks:
     #mobile-redesign | #mobile-polish | #mobile-single-column */



/* ════════════════════════════════════════════════════════════
   ATUNELLE — MOBILE REDESIGN  (≤768px)
   Purpose-built from scratch. No override conflicts.
   Designed for thumb-first, app-like browsing experience.
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --sp-section: 36px;
  --sp-side: 20px;
  --mob-card-radius: 20px;
  --mob-btn-h: 52px;
}

/* ── BODY ────────────────────────────────────────────────── */
body {
  padding-bottom: env(safe-area-inset-bottom);
  -webkit-text-size-adjust: 100%;
}

/* ── DOWNLOAD BANNER ─────────────────────────────────────── */
#foundingBanner,
.download-banner {
  min-height: 40px;
  padding: 0 44px 0 16px;
  font-size: 11px;
  line-height: 1.4;
}
#foundingBanner a,
.download-banner a { font-size: 11px; }

/* ── NAV ─────────────────────────────────────────────────── */
.site-nav {
  height: 56px;
  padding: 0 20px;
}
.nav-logo__img { height: 34px; }
.nav-links { display: none; }
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 56px; left: 0; right: 0;
  background: rgba(253,251,255,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 20px 28px;
  gap: 0;
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 12px 40px rgba(61,37,80,0.12);
  z-index: 998;
}
.nav-links.open li { border-bottom: 1px solid var(--c-border); }
.nav-links.open li:last-child { border-bottom: none; }
.nav-links.open a {
  display: block;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-text);
}
.nav-toggle { display: flex; }

/* ── STICKY BOTTOM CTA BAR ───────────────────────────────── */
.mob-cta-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(253,251,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-border);
  padding: 10px 16px calc(12px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -4px 28px rgba(61,37,80,0.10);
}
.mob-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.15s;
}
.mob-cta-bar a:active { opacity: 0.75; transform: scale(0.98); }
.mob-cta-bar__primary { background: var(--c-primary); color: #fff; }
.mob-cta-bar__secondary {
  background: var(--c-pill-tint);
  color: var(--c-primary);
  border: 1.5px solid rgba(155,126,189,0.3);
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: auto;
  padding: 88px 20px 52px;
}
.hero__inner {
  grid-template-columns: 1fr;
  gap: 0;
}
.hero__visual { display: none; }
.hero__watermark { display: none; }
.hero__eyebrow {
  font-size: 11px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(34px, 10vw, 46px);
  line-height: 1.05;
  margin-bottom: 16px;
  text-align: left;
}
.hero__sub {
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 100%;
  text-align: left;
}
.hero__cta {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  align-items: stretch;
}
.hero__cta .btn {
  text-align: center;
  justify-content: center;
  height: var(--mob-btn-h);
  font-size: 15px;
  border-radius: var(--r-pill);
}
.hero__trust {
  font-size: 12px;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero__quiz {
  max-width: 100%;
  margin-top: 24px;
  padding: 18px 16px;
  border-radius: var(--mob-card-radius);
}
.quiz-opt {
  font-size: 13px;
  padding: 10px 12px;
}

/* ── PROOF BAR (mobile tweaks) ───────────────────────────── */
@media (max-width: 768px) {
  .proof-bar {
    background: transparent;
    border-bottom: none;
    padding: 10px 0;
  }
  .proof-bar__track {
    gap: 12px;
    animation-duration: 28s;
  }
  .proof-bar__track .proof-item {
    font-size: 11px;
    padding: 7px 12px;
  }
  .proof-bar__track .proof-item__icon {
    font-size: 14px;
  }
}

/* ── SECTION BASE ────────────────────────────────────────── */
.section-inner {
  padding: 0;
}
.display-title {
  font-size: clamp(28px, 7.5vw, 38px);
  line-height: 1.08;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 16px;
}
.eyebrow {
  font-size: 10px;
  padding: 5px 12px;
  margin-bottom: 8px;
}

/* ── PHASE & LIFE STAGE WHEELS ───────────────────────────── */
#phases-lifestages { padding: 52px 20px 56px; }
#phases-lifestages > .section-inner > div:nth-child(2) {
  flex-wrap: wrap;
  justify-content: center;
}
#tab-phases, #tab-stages {
  font-size: 13px;
  padding: 9px 20px;
  min-height: 40px;
}

/* ── APP SCREENSHOTS ─────────────────────────────────────── */
.screens-section { padding: 48px 20px 52px; }
.sc-viewport { width: 260px; }
.sc-slide { flex: 0 0 260px; }
.sc-img { width: 240px; }
.sc-btn--prev { left: calc(50% - 130px - 50px); }
.sc-btn--next { right: calc(50% - 130px - 50px); }

/* ── PROBLEM SECTION (desktop only) ─────────────────────── */
.problem-section { display: none; }
.mob-problem { display: block; }

/* ── BODY CALCULATOR ─────────────────────────────────────── */
.body-section { padding: 52px 20px 56px; }
.body-grid {
  grid-template-columns: 1fr;
  gap: 36px;
}
.body-visual {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.body-step { padding: 18px 14px; }
.body-quote { padding: 16px 18px; font-size: 13px; }

/* ── FEATURE DEEP-DIVES ──────────────────────────────────── */
.hero-features { padding: 52px 0 56px; }
.hero-features .section-inner > h2 { padding: 0 20px; }
.hero-features .section-sub { padding: 0 20px; }
.hero-feat-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 14px;
  margin-top: 24px;
  padding: 4px 20px 12px;
}
.hero-feat-grid::-webkit-scrollbar { display: none; }
.hfeat {
  flex: 0 0 82vw;
  max-width: 300px;
  min-width: 260px;
  padding: 24px 20px 20px;
  border-radius: var(--mob-card-radius);
}
.hfeat__icon { font-size: 28px; margin-bottom: 12px; }
.hfeat__headline { font-size: 17px; margin-bottom: 10px; }
.hfeat__desc { font-size: 13px; margin-bottom: 14px; line-height: 1.6; }
.hfeat__detail { font-size: 11px; }
.log-methods { grid-template-columns: 1fr 1fr; gap: 7px; margin: 10px 0 12px; }
.log-method { padding: 9px 10px; border-radius: 10px; }
.log-method__label { font-size: 11px; }
.log-method__sub   { font-size: 10px; }

/* Scroll hint: right padding shows peek of next card */
.hero-feat-grid::after {
  content: '';
  flex: 0 0 4px;
}

/* ── EVERYTHING SECTION (features + flex merged) ─────────── */
#everything { padding: 52px 20px 56px; }
#everything > .section-inner > div:last-child {
  grid-template-columns: 1fr;
  gap: 36px;
}
#everything .feat-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#everything .feat {
  flex-direction: column;
  gap: 10px;
  padding: 16px 14px;
  border-radius: 14px;
}
#everything .feat__icon-wrap {
  width: 36px; height: 36px;
  font-size: 16px;
  border-radius: 10px;
}
#everything .feat__title { font-size: 13px; margin-bottom: 3px; }
#everything .feat__desc  { font-size: 11px; line-height: 1.5; }
.flex-chips { grid-template-columns: 1fr; gap: 10px; }
.flex-chip { padding: 14px 16px; border-radius: 14px; }
.flex-chip__icon { font-size: 20px; }
.flex-chip__title { font-size: 14px; margin-bottom: 3px; }
.flex-chip__desc  { font-size: 12px; line-height: 1.5; }

/* ── ONE SYSTEM (dark section) ───────────────────────────── */
#onesystem { padding: 52px 20px 56px; }
#onesystem > div > div:first-child { margin-bottom: 36px; }
#onesystem h2 { font-size: clamp(28px, 7vw, 38px); line-height: 1.08; }
.onesystem-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 100%;
  margin-bottom: 36px;
}
/* Old way card */
.onesystem-grid > div:first-child {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px 16px 0 0;
  padding: 20px 16px;
}
/* VS divider */
.onesystem-grid > div:nth-child(2) {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.1);
}
.onesystem-grid > div:nth-child(2) > div:first-child {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.onesystem-grid > div:nth-child(2) > div:last-child {
  width: auto; height: 1px;
  flex: 1;
  background: linear-gradient(to right, rgba(192,132,252,0.4), transparent);
  margin: 0;
}
/* Atunelle card */
.onesystem-grid > div:last-child {
  border-radius: 0 0 16px 16px;
}
/* Old way app items: 2-col grid */
.onesystem-grid > div:first-child > div:last-child {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.onesystem-grid > div:first-child > div:last-child > div:not(:last-child) {
  border-radius: 10px;
  padding: 10px;
}
.onesystem-grid > div:first-child > div:last-child > div:last-child {
  grid-column: 1/-1;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 10px 0 0;
  border-radius: 0;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.steps-section { padding: 40px 20px 48px; }
.steps-section .display-title {
  font-size: clamp(22px, 6vw, 28px);
  line-height: 1.15;
  text-align: left !important;
}
.steps-section .section-sub {
  text-align: left;
  margin: 10px 0 0 !important;
}
.steps-grid {
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 28px;
}
.steps-grid::before { display: none; }
.step {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-border);
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  text-align: left;
}
.step:last-child { border-bottom: none; }
.step__num {
  width: 32px; height: 32px;
  flex-shrink: 0;
  font-size: 13px;
  border-radius: 50%;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  margin-top: 2px;
}
.step__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  grid-column: 2;
  grid-row: 1;
  line-height: 1.3;
}
.step__desc {
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
  grid-column: 2;
  grid-row: 2;
  color: var(--c-text-2);
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-section { padding: 44px 20px 48px; }
.testimonials-section .section-inner > .eyebrow,
.testimonials-section .section-inner > h2 { padding: 0; }
.testi-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  overflow-x: visible;
  gap: 14px;
  margin-top: 24px;
  padding: 0;
}
.testi-grid::-webkit-scrollbar { display: none; }
.testi-grid::after { display: none; }
.testi {
  width: 100%;
  max-width: none;
  min-width: 0;
  padding: 20px 18px;
  border-radius: var(--mob-card-radius);
  border-left-width: 3px;
}
.testi__stars  { font-size: 14px; margin-bottom: 12px; }
.testi__quote  { font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.testi__quote::before { font-size: 32px; margin-bottom: 6px; }
.testi__name   { font-size: 13px; }
.testi__phase  { font-size: 12px; }
.testi__avatar { width: 34px; height: 34px; font-size: 14px; }

/* ── VICTORIA / ABOUT ────────────────────────────────────── */
.victoria-section { padding: 52px 20px 56px; }
.victoria-section::before { display: none; }
.victoria-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}
.victoria-text .display-title { font-size: clamp(28px, 7.5vw, 38px); }
.victoria-text p { font-size: 14px; line-height: 1.7; }
.victoria-pullquote { padding: 16px 18px; font-size: 14px; margin: 20px 0; }
.victoria-card { padding: 22px 18px; border-radius: var(--mob-card-radius); }
.victoria-card__avatar { width: 40px; height: 40px; font-size: 16px; }
.victoria-card__name { font-size: 15px; }
.victoria-card__role { font-size: 12px; }
.victoria-card__bio  { font-size: 13px; line-height: 1.65; }

/* ── PRICING ─────────────────────────────────────────────── */
.pricing-section { padding: 52px 20px 56px; }
.pricing-grid-home {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 28px auto 0;
  gap: 14px;
}
.price-card {
  padding: 28px 20px 24px;
  border-radius: var(--mob-card-radius);
}
.price-card__amount { font-size: 44px; }
.price-card__features li { font-size: 13px; padding: 6px 0; }
.pricing-note { font-size: 12px; margin-top: 16px; }

/* Anchoring comparison — hidden on mobile (too wide) */
.pricing-section .reveal[style*="max-width:640px"] {
  display: none;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 52px 20px 56px; }
.faq-list { margin-top: 28px; }
.faq-btn  { padding: 16px 4px; min-height: 52px; }
.faq-q    { font-size: 14px; line-height: 1.4; }
.faq-answer p { font-size: 13px; padding-bottom: 16px; line-height: 1.65; }
.faq-icon { width: 28px; height: 28px; font-size: 18px; flex-shrink: 0; }

/* ── COMPETITOR COMPARISON ───────────────────────────────── */
#compare { display: block; }
.compare-table-wrap { display: none; }
.compare-mobile-cards {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.compare-card {
  background: var(--c-glass-solid);
  border: 1px solid var(--c-border);
  border-radius: var(--mob-card-radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}
.compare-card__feature {
  font-size: 12px;
  font-weight: var(--w-semi);
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}
.compare-card__winner {
  color: var(--c-primary);
  font-size: 16px;
  font-weight: var(--w-semi);
  margin-bottom: 6px;
}
.compare-card__others {
  font-size: 13px;
  color: var(--c-text-2);
  line-height: 1.55;
}

/* ── FINAL CTA BAND ──────────────────────────────────────── */
.cta-band { padding: 0 20px calc(28px + env(safe-area-inset-bottom)); }
.cta-band__box {
  padding: 48px 24px 40px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(30px, 8vw, 40px);
  line-height: 1.06;
  margin-bottom: 12px;
}
.cta-band__sub {
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.6;
}
.cta-band__actions {
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.cta-band__actions .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  height: var(--mob-btn-h);
  font-size: 15px;
  border-radius: var(--r-pill);
}
.cta-band__trust {
  font-size: 11px;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer { padding: 48px 20px 32px; }
.site-footer__grid {
  grid-template-columns: 1fr 1fr;
  gap: 32px 20px;
  padding-bottom: 36px;
  margin-bottom: 24px;
}
.footer-brand { grid-column: 1/-1; }
.footer-brand__logo { font-size: 32px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; max-width: 100%; }
.footer-col h4 { font-size: 10px; margin-bottom: 12px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; }
.site-footer__bottom {
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.site-footer__bottom p { font-size: 11px; }

/* ── MOB PROBLEM SECTION ─────────────────────────────────── */
.mob-problem {
  display: block;
  padding: 48px 20px 52px;
  background: var(--gradient-soft);
}
.mob-problem__inner { max-width: 100%; margin: 0; }
.mob-problem__header { text-align: left; margin-bottom: 24px; }
.mob-problem__title {
  font-family: var(--f-display);
  font-size: clamp(26px, 7vw, 34px);
  font-weight: var(--w-light);
  color: var(--c-text);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.mob-problem__title em { font-style: italic; color: var(--c-primary); }
.mob-problem__sub {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.6;
  font-weight: var(--w-light);
}
.mob-problem__cards {
  position: relative;
  height: 200px;
  margin-bottom: 16px;
}
.mob-pcard {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--c-border);
  border-radius: var(--mob-card-radius);
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateX(40px) scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
  box-shadow: 0 6px 24px rgba(61,37,80,0.08);
}
.mob-pcard--active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
  z-index: 2;
}
.mob-pcard--exit {
  opacity: 0;
  transform: translateX(-40px) scale(0.97);
}
.mob-pcard__top { display: flex; align-items: center; justify-content: space-between; }
.mob-pcard__emoji { font-size: 28px; line-height: 1; }
.mob-pcard__counter {
  font-size: 11px;
  color: var(--c-text-3);
  font-weight: var(--w-med);
  background: var(--c-pill-tint);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}
.mob-pcard__quote {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.55;
  font-weight: var(--w-light);
  font-style: italic;
  flex: 1;
}
.mob-pcard__tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: var(--w-semi);
  color: var(--c-primary);
  background: var(--c-pill-tint);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  cursor: pointer;
  border: none;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.mob-problem__dots {
  display: flex;
  justify-content: flex-start;
  gap: 7px;
  margin-bottom: 24px;
}
.mob-pdot {
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(155,126,189,0.22);
  cursor: pointer;
  transition: background 0.22s, width 0.22s, border-radius 0.22s;
}
.mob-pdot--on { background: var(--c-primary); width: 20px; border-radius: 3px; }
.mob-problem__resolve {
  background: linear-gradient(135deg, rgba(155,126,189,0.12), rgba(212,197,232,0.16));
  border: 1px solid rgba(155,126,189,0.18);
  border-radius: var(--mob-card-radius);
  padding: 22px 20px;
  text-align: left;
}
.mob-problem__resolve-icon { font-size: 24px; margin-bottom: 10px; }
.mob-problem__resolve p {
  font-size: 14px;
  color: var(--c-text-2);
  line-height: 1.65;
  font-weight: var(--w-light);
  margin-bottom: 4px;
}
.mob-problem__resolve p strong { color: var(--c-text); font-weight: var(--w-semi); }
.mob-problem__resolve-cta {
  font-size: 16px;
  font-weight: var(--w-semi);
  color: var(--c-primary);
  margin-top: 8px;
}

/* ── GENERIC GRID COLLAPSES ──────────────────────────────── */
.body-visual  { grid-template-columns: 1fr 1fr; }
.feat-grid    { grid-template-columns: 1fr 1fr; }
.week-compare { grid-template-columns: 1fr; }

/* ── HIDDEN ON MOBILE ────────────────────────────────────── */
.hero__visual,
.hero__watermark,
.chip,
.proof-sep,
.steps-grid::before,
.victoria-section::before { display: none; }

/* ── REVEAL ANIMATION ────────────────────────────────────── */
.reveal { opacity: 1; transform: none; }

} /* end @media 768px */

/* ── 480px refinements ───────────────────────────────────── */
@media (max-width: 480px) {
  :root { --sp-side: 16px; }
  .hero h1 { font-size: clamp(30px, 9vw, 38px); }
  .site-footer__grid { grid-template-columns: 1fr; }
  #everything .feat-grid { grid-template-columns: 1fr; }
  #pl-stages > div { grid-template-columns: 1fr; }
  .cw-svg { width: 200px; height: 200px; }
  .sc-viewport { width: 220px; }
  .sc-slide { flex: 0 0 220px; }
  .sc-img { width: 200px; }
  .sc-btn--prev { left: calc(50% - 110px - 46px); }
  .sc-btn--next { right: calc(50% - 110px - 46px); }
}


/* Focused responsive polish: header offsets, mobile proof, CTA timing, and keyboard states. */
:root { --offer-banner-height: 0px; }
.site-nav { top: var(--offer-banner-height, 0px); }
.hero__mobile-preview,
.mob-cta-bar { display: none; }

.btn:focus-visible,
.quiz-opt:focus-visible,
.nav-toggle:focus-visible,
.faq-btn:focus-visible,
.sc-btn:focus-visible,
.sc-dot:focus-visible,
.mob-cta-bar a:focus-visible {
  outline: 3px solid rgba(155,126,189,0.38);
  outline-offset: 3px;
}

@media (max-width: 768px) {
  body { color: #352044; }

  #foundingBanner,
  .download-banner {
    min-height: 38px !important;
    padding: 7px 38px 7px 12px !important;
    gap: 6px !important;
  }
  .download-banner__inner {
    width: 100%;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 7px !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .download-banner__brand {
    flex: 0 0 auto;
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
  }
  .download-banner__price {
    flex: 0 0 auto;
    font-size: 12px !important;
  }
  .download-banner__save {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px !important;
    text-align: right;
    padding: 2px 8px !important;
  }
  .download-banner__dot,
  .download-banner__stores {
    display: none !important;
  }
  #foundingBanner button {
    right: 7px !important;
    color: rgba(255,255,255,0.72) !important;
  }

  .site-nav {
    height: 52px;
    padding: 0 16px;
    background: rgba(253,251,255,0.94);
    border-bottom: 1px solid rgba(233,221,246,0.75);
  }
  .nav-logo__img { height: 30px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav-links.open {
    top: 52px;
    max-height: calc(100svh - var(--offer-banner-height, 0px) - 52px);
    overflow-y: auto;
    padding: 12px 20px 18px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 64px 16px 40px;
  }
  .hero__content {
    max-width: 430px;
    margin: 0 auto;
  }
  .hero__eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
  }
  .hero h1 {
    font-size: clamp(31px, 8.7vw, 40px);
    margin-bottom: 14px;
  }
  .hero__sub {
    color: #725F82;
    margin-bottom: 20px;
  }
  .hero__cta {
    gap: 10px;
    margin-bottom: 12px;
  }
  .hero__cta .btn {
    min-height: 50px;
    height: auto;
    padding: 13px 20px !important;
  }
  .hero__trust {
    margin-bottom: 16px;
    color: #7A668C;
  }

  .mob-cta-bar {
    display: flex;
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.2s ease;
  }
  .mob-cta-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .section-sub,
  .hfeat__desc,
  .feat__desc,
  .step__desc,
  .testi__phase,
  .faq-answer p {
    color: #725F82;
  }
}

@media (max-width: 480px) {
  .download-banner__brand { max-width: 88px; overflow: hidden; text-overflow: ellipsis; }
  .hero { padding-top: 58px; }
  .mob-cta-bar a {
    height: 44px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cw-spinner { animation: none !important; }
  .sc-track,
  .mob-cta-bar,
  .nav-toggle span,
  .faq-answer {
    transition: none !important;
  }
}


/* Mobile is intentionally one column: no split cards, no side-by-side choices, no hidden horizontal reading paths. */
@media (max-width: 768px) {
  body {
    padding-bottom: 0 !important;
  }

  .hero__quiz [style*="grid-template-columns"],
  #atunelleCalc [style*="grid-template-columns"],
  .body-visual,
  .feat-grid,
  #everything .feat-grid,
  .log-methods,
  #pl-stages > div,
  .onesystem-grid > div:first-child > div:last-child,
  .site-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .quiz-opt {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 12px 14px !important;
    font-size: 14px !important;
    line-height: 1.35;
  }

  .quiz-opt {
  .testi-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    gap: 14px;
    padding: 0 20px;
  }
  .hero-feat-grid::after,
  .testi-grid::after {
    display: none;
  }
  .hfeat,
  .testi {
    width: 100%;
    min-width: 0;
    max-width: none;
    flex: none;
  }

  .body-step,
  .feat,
  #everything .feat,
  .log-method,
  .phase-card,
  .flex-chip {
    flex-direction: row;
    align-items: flex-start;
  }

  .onesystem-grid > div:first-child > div:last-child > div:last-child {
    grid-column: auto !important;
  }

  .pricing-grid-home > div[style*="grid-column"] {
    grid-column: auto !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .mob-cta-bar {
    flex-direction: column;
    gap: 8px;
  }
  .mob-cta-bar a {
    width: 100%;
  }
  .mob-cta-bar__secondary {
    background: rgba(155,126,189,0.10);
  }

  .site-footer__grid {
    gap: 28px;
  }
  .footer-brand,
  .footer-col {
    grid-column: auto !important;
  }
}

@media (max-width: 768px) {

/* Hero */
.hero h1 {
  font-size: clamp(27px, 7.5vw, 36px) !important;
  line-height: 1.06 !important;
}
.hero__sub {
  font-size: 14px !important;
  line-height: 1.6 !important;
}
.hero__eyebrow { font-size: 9px !important; }

/* Section titles */
.display-title {
  font-size: clamp(22px, 6.5vw, 30px) !important;
  line-height: 1.1 !important;
}
.section-sub { font-size: 13px !important; }
.eyebrow { font-size: 9px !important; }

/* Body text across cards */
.hfeat__headline { font-size: 15px !important; }
.hfeat__desc { font-size: 12px !important; }
.testi__quote { font-size: 13px !important; }
.testi__name  { font-size: 12px !important; }
.step__title  { font-size: 13px !important; }
.step__desc   { font-size: 12px !important; }
.phase-card__title { font-size: 12px !important; }
.phase-card__desc  { font-size: 11px !important; }
.victoria-text p { font-size: 13px !important; }
.mob-problem__title { font-size: clamp(22px, 6.5vw, 28px) !important; }
.mob-pcard__quote { font-size: 13px !important; }
.price-card__amount { font-size: 38px !important; }
.price-card__features li { font-size: 12px !important; }
.faq-q { font-size: 13px !important; }
.faq-answer p { font-size: 12px !important; }
.cta-band h2 { font-size: clamp(24px, 7vw, 34px) !important; }
.cta-band__sub { font-size: 13px !important; }

/* ── CARD SIZES — PROPORTIONAL, TIGHTER ──────────────────── */
.hfeat {
  flex: 0 0 76vw !important;
  max-width: 280px !important;
  min-width: 240px !important;
  padding: 18px 16px 16px !important;
  border-radius: 16px !important;
}

.testi {
  padding: 16px 14px !important;
  border-radius: 16px !important;
}
.testi__stars { font-size: 12px !important; margin-bottom: 8px !important; }
.testi__avatar { width: 30px !important; height: 30px !important; font-size: 12px !important; }
.testi__quote::before { font-size: 26px !important; margin-bottom: 4px !important; }

.price-card { padding: 22px 16px 18px !important; }

.victoria-card { padding: 18px 14px !important; }
.victoria-card__avatar { width: 34px !important; height: 34px !important; font-size: 14px !important; }

.phase-card { padding: 12px 11px !important; }

.body-step { padding: 14px 12px !important; }
.flex-chip { padding: 12px 14px !important; }
.flex-chip__icon { font-size: 18px !important; }
.flex-chip__title { font-size: 13px !important; }
.flex-chip__desc  { font-size: 11px !important; }

#everything .feat { padding: 13px 11px !important; border-radius: 12px !important; }
#everything .feat__title { font-size: 12px !important; }
#everything .feat__desc  { font-size: 10px !important; }
#everything .feat__icon-wrap { width: 32px !important; height: 32px !important; font-size: 14px !important; }

/* cw cards tighter on small screens */
.cw-card { padding: 10px 12px !important; }
.ls-tile { min-height: 72px; }

/* Mob problem cards — a touch shorter */
.mob-problem__cards { height: 180px !important; }
.mob-pcard { padding: 18px 16px 14px !important; gap: 10px !important; }

/* Proof items compact */
.proof-item { padding: 8px 11px !important; font-size: 11px !important; }

/* Steps */
.step { padding: 14px 0 !important; }
.step__num { width: 28px !important; height: 28px !important; font-size: 11px !important; }

/* Screenshots */
.sc-viewport { width: 230px !important; }
.sc-slide { flex: 0 0 230px !important; }
.sc-img { width: 210px !important; }

/* Body section cards */
.body-quote { font-size: 12px !important; padding: 13px 15px !important; }

/* FAQ */
.faq-btn  { padding: 13px 4px !important; min-height: 46px !important; }
.faq-icon { width: 24px !important; height: 24px !important; font-size: 15px !important; }

/* CTA band */
.cta-band__box { padding: 36px 20px 32px !important; }
.cta-band__actions .btn { height: 46px !important; font-size: 14px !important; }

/* Section padding tighter */
.hero { padding: 52px 16px 32px !important; min-height: auto !important; }
.mob-problem { padding: 36px 16px 40px !important; }
.hero-features { padding: 36px 0 40px !important; }
#everything { padding: 36px 16px 40px !important; }
#phases-lifestages { padding: 36px 16px 40px !important; }
.steps-section { padding: 32px 16px 36px !important; }
.testimonials-section { padding: 32px 16px 36px !important; }
.victoria-section { padding: 36px 16px 40px !important; }
.pricing-section { padding: 36px 16px 40px !important; }
.faq-section { padding: 36px 16px 40px !important; }
.screens-section { padding: 32px 16px 36px !important; }
.body-section { padding: 36px 16px 40px !important; }
.smarter-way,
#onesystem { padding: 36px 16px 40px !important; }
.pricing-teaser-section,
.faq-teaser-section { padding: 36px 16px 40px !important; }
.cta-band { padding: 0 16px calc(20px + env(safe-area-inset-bottom)) !important; }

/* ── BODY PADDING — account for sticky nav ───────────────── */
body {
  scroll-padding-top: calc(52px + 12px);
}

/* ── SMOOTH SCROLL OFFSET for section anchors ──────────── */
#home, #body, #features, #onesystem, #download,
#everything, #phases-lifestages, #pricing, #faq {
  scroll-margin-top: calc(52px + 12px);
}

} /* end @media 768px */

/* ── 380px micro refinements ─────────────────────────────── */
@media (max-width: 380px) {
  .hfeat { flex: 0 0 84vw !important; }
  .display-title { font-size: clamp(20px, 6vw, 26px) !important; }
  .hero h1 { font-size: clamp(25px, 7.5vw, 32px) !important; }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE CARD UNIFY — hero layout + consistent card widths
   Matches guidance-panel ("What you get back") on small screens
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --mob-section-x: 20px;
    --mob-card-pad: 16px 14px;
  }

  /* Hero: clearer reading order and one full-width preview card */
  .hero {
    padding: 52px var(--mob-section-x) 32px !important;
    min-height: auto !important;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
  }
  .hero__eyebrow { order: 1; }
  .hero__content > h1 { order: 2; }
  .hero__sub { order: 3; }
  .hero__cta { order: 4; margin-bottom: 12px; }
  .hero__trust { order: 5; margin-bottom: 16px; }
  .hero__mobile-preview {
    order: 6;
    display: block !important;
    width: 100%;
    margin: 0 0 20px;
    padding: var(--mob-card-pad);
    border-radius: var(--mob-card-radius);
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(155,126,189,0.18);
    box-shadow: 0 8px 28px rgba(61,37,80,0.07);
    text-align: center;
  }
  .hero__quiz {
    order: 7;
    max-width: none !important;
    width: 100%;
    margin-top: 0 !important;
    padding: var(--mob-card-pad) !important;
    border-radius: var(--mob-card-radius) !important;
    box-shadow: 0 8px 28px rgba(61,37,80,0.07);
  }
  .hero__mobile-preview-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-primary);
    margin-bottom: 5px;
    text-align: center;
  }
  .hero__mobile-preview-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--c-text);
    line-height: 1.25;
    margin-bottom: 12px;
    text-align: center;
  }
  .hero__mobile-preview-title em {
    font-style: italic;
    color: var(--c-primary);
  }
  .hero__mobile-preview .sc-carousel--hero {
    position: relative;
    padding: 0 28px;
  }

  /* Feature deep-dives: full-width stack, same width as guidance-panel */
  .hero-features {
    padding: 36px var(--mob-section-x) 40px !important;
  }
  .hero-features .section-inner > h2,
  .hero-features .section-sub {
    padding: 0 !important;
  }
  .hero-feat-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-top: 24px;
    padding: 0 !important;
    overflow: visible !important;
  }
  .hero-feat-grid::after { display: none !important; }
  .hfeat {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    flex: none !important;
    padding: var(--mob-card-pad) !important;
    border-radius: var(--mob-card-radius) !important;
    box-sizing: border-box;
  }

  /* Connected features section */
  .connected-flow__step,
  .connected-card,
  .connected-promise {
    width: 100%;
    box-sizing: border-box;
    padding: var(--mob-card-pad) !important;
    border-radius: var(--mob-card-radius) !important;
  }

  /* Shared mobile card width for other sections */
  .testi-grid {
    padding: 0 !important;
  }
  .testi,
  .price-card,
  .signal-stack,
  .guidance-panel,
  .body-quote,
  .victoria-card,
  .mob-pcard,
  .mob-problem__resolve {
    width: 100%;
    box-sizing: border-box;
  }
  .testi,
  .price-card,
  .signal-stack,
  .guidance-panel {
    padding: var(--mob-card-pad) !important;
    border-radius: var(--mob-card-radius) !important;
  }
}

/* Consolidated touch target polish */
.nav-logo,
.nav-links a:not(.btn),
.site-footer a,
#cycle-wheel-section p a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
#foundingBanner a,
#foundingBanner button,
.quiz-opt,
#unitMetric,
#unitImperial,
#atunelleCalc input,
#atunelleCalc select,
#tab-phases,
#tab-stages,
.mob-pcard__tag {
  min-height: 44px !important;
}
.sc-dots,
.mob-problem__dots {
  align-items: center;
  min-height: 44px;
}
.sc-dot,
.mob-pdot {
  position: relative;
  width: 44px !important;
  height: 44px !important;
  background: transparent !important;
  border-radius: 50% !important;
}
.sc-dot::after,
.mob-pdot::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(155,126,189,0.22);
  transition: width 0.22s, background 0.22s, border-radius 0.22s;
}
.sc-dot--on::after,
.mob-pdot--on::after {
  width: 24px;
  border-radius: 4px;
  background: var(--c-primary);
}

/* Final consolidated target-size overrides */
@media (max-width: 768px) {
#foundingBannerClose,
.nav-toggle,
.sc-carousel--hero .sc-btn,
.sc-btn {
  min-width: 44px !important;
  min-height: 44px !important;
}
#foundingBannerClose,
.nav-toggle {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
}
.mob-cta-bar a {
  min-height: 48px !important;
  height: 48px !important;
}
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .sc-carousel--hero .sc-btn {
    width: 44px !important;
    height: 44px !important;
  }
}

@media (max-width: 768px) {
  .page-lite-hero {
    padding: calc(78px + var(--offer-banner-height, 0px)) 20px 38px;
  }
  .calc-teaser {
    padding: 20px;
    margin-top: 22px;
    border-radius: var(--mob-card-radius);
  }
  .calc-modal__panel {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-height: calc(100svh - var(--offer-banner-height, 0px) - 24px);
    transform: none;
    border-radius: 26px 26px 0 0;
  }
  .calc-modal__intro { padding: 28px 20px 8px; }
  .calc-modal #atunelleCalc { margin: 8px 14px 18px !important; }
  .pricing-teaser,
  .faq-teaser {
    grid-template-columns: 1fr;
    display: grid;
    padding: 24px 20px;
  }
  .pricing-teaser-section,
  .faq-teaser-section { padding: 36px 20px 40px; }
  .faq-teaser-grid { grid-template-columns: 1fr; }
  .pricing-teaser__price { font-size: 44px; }
}

/* ── Mobile: sticky bottom bar handles download CTAs ─────── */

/* ── MOBILE DENSITY PASS — Phase 1 (spacing) + Phase 2 (content tiering) ── */
@media (max-width: 768px) {
  html {
    overflow-x: clip;
  }

  /* ── Phase 1: vertical rhythm ─────────────────────────── */
  .hero h1 {
    margin-bottom: 12px !important;
  }
  .hero__sub {
    margin-bottom: 18px !important;
  }
  .hero__eyebrow {
    margin-bottom: 10px !important;
  }
  .hero__cta {
    margin-bottom: 10px !important;
    gap: 10px !important;
  }
  .hero__trust {
    margin-bottom: 12px !important;
  }
  .hero__quiz,
  .hero__mobile-preview {
    margin-top: 0 !important;
    padding: 16px 14px !important;
  }
  .hero__mobile-preview {
    margin-bottom: 14px !important;
  }

  .mob-problem__header {
    margin-bottom: 16px !important;
  }
  .mob-problem__dots {
    margin-bottom: 16px !important;
  }
  .mob-problem__resolve {
    padding: 16px 14px !important;
  }
  .mob-problem__resolve-icon {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .body-grid {
    gap: 20px !important;
  }
  .body-visual {
    gap: 8px !important;
  }

  .hero-features .section-inner > h2 {
    margin-bottom: 8px !important;
  }
  .hero-feat-grid {
    margin-top: 16px !important;
    gap: 10px !important;
  }

  #phases-lifestages > .section-inner > div:first-child {
    margin-bottom: 16px !important;
  }

  .smarter-way__header {
    margin-bottom: 18px !important;
  }
  .smarter-way__eyebrow {
    margin-bottom: 10px !important;
    padding: 5px 12px !important;
  }
  .smarter-way__title {
    margin-bottom: 10px !important;
  }
  .smarter-way__grid {
    margin-bottom: 20px !important;
    gap: 12px !important;
  }
  .signal-stack,
  .guidance-panel {
    padding: 16px 14px !important;
  }
  .signal-list {
    gap: 8px !important;
  }
  .signal-item {
    padding: 10px 12px !important;
  }
  .guidance-steps {
    gap: 8px !important;
    margin-bottom: 14px !important;
  }
  .guidance-panel__title {
    margin-bottom: 8px !important;
  }
  .guidance-panel__copy {
    margin-bottom: 12px !important;
  }

  .testi-grid {
    margin-top: 16px !important;
    gap: 10px !important;
  }

  .pricing-teaser,
  .faq-teaser {
    padding: 16px 14px !important;
  }
  .pricing-teaser__sub {
    margin-bottom: 12px !important;
  }
  .faq-teaser-grid {
    gap: 10px !important;
  }

  .cta-band__box {
    padding: 28px 18px 24px !important;
  }
  .cta-band h2 {
    margin-bottom: 10px !important;
  }
  .cta-band__sub {
    margin-bottom: 20px !important;
  }

  .display-title {
    margin-bottom: 8px !important;
  }
  .section-sub {
    margin-bottom: 14px !important;
  }
  .eyebrow {
    margin-bottom: 8px !important;
  }

  /* ── Phase 2: show less secondary copy ─────────────────── */
  .hfeat__detail {
    display: none !important;
  }

  .log-method__sub {
    display: none !important;
  }

  .flex-chip__desc {
    display: none !important;
  }

  .hfeat__desc,
  .body-step__desc,
  .signal-item__copy,
  .guidance-step__copy,
  .phase-card__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero-features .section-sub,
  #phases-lifestages .section-sub,
  .mob-problem__sub,
  .body-section .section-sub,
  .pricing-teaser-section .section-sub,
  .faq-teaser-section .section-sub,
  .smarter-way__sub,
  .guidance-panel__copy {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero__sub {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .smarter-way__note,
  .cta-band__sub {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .hero__mobile-preview-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .mob-problem__cards {
    height: 160px !important;
  }

  .mob-pcard {
    padding: 16px 14px 12px !important;
    gap: 8px !important;
  }

  .pricing-teaser__price {
    font-size: 38px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   MOBILE HOMEPAGE STORY — teaser + compact layout (≤768px)
   Desktop uses separate HTML blocks / full copy unchanged.
   ════════════════════════════════════════════════════════════ */

.hero__cta-label--mob { display: none; }
.hero__cta-label--desk { display: inline; }

.hero-feat-mobile-more {
  display: none;
}

.mob-read-more,
.hfeat__read-more,
.smarter-way__teaser,
.phases-read-more-wrap,
.faq-teaser-more,
.body-read-more,
.ls-panel__hint {
  display: none;
}

@media (min-width: 769px) {
  .smarter-way__detail {
    display: block;
  }
}

@media (max-width: 768px) {

  /* ── Hero: centered title + platform CTAs ──────────────── */
  .hero__title {
    text-align: center;
    font-size: clamp(26px, 7.5vw, 34px) !important;
    line-height: 1.12 !important;
    margin-bottom: 12px !important;
  }
  .hero__content {
    text-align: center;
    align-items: center;
  }
  .hero__eyebrow {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__cta {
    align-items: stretch;
    width: 100%;
  }
  .hero__trust {
    justify-content: center;
  }
  .hero__cta-label--desk { display: none; }
  .hero__cta-label--mob { display: inline; }

  /* Shorter screenshot carousel */
  .sc-carousel--hero .sc-viewport {
    max-height: 280px;
    overflow: hidden;
  }
  .sc-carousel--hero .sc-img {
    width: auto !important;
    max-width: 200px !important;
    height: auto !important;
    max-height: 260px !important;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  .sc-carousel--hero .sc-btn { display: none; }

  /* ── Body / plan + calculator ──────────────────────────── */
  .body-copy--extra { display: none !important; }
  .body-copy--teaser {
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .body-read-more {
    display: inline-block;
    font-size: var(--t-sm);
    color: var(--c-primary);
    font-weight: var(--w-semi);
    text-decoration: none;
    margin-bottom: 16px;
  }
  .body-measurements-cta { display: none !important; }
  .body-section .body-visual { display: none !important; }

  /* ── Features: title + read more only (mobile) ─────────── */
  .hero-feat-grid--desktop {
    display: none !important;
  }
  .hero-features__sub {
    display: none !important;
  }
  .hero-feat-mobile-more {
    display: block !important;
    text-align: center;
    padding: 0 var(--mob-section-x, 20px);
    margin: 0 0 4px;
  }
  .hero-feat-mobile-more .mob-read-more {
    display: inline-block;
    font-size: var(--t-sm);
    color: var(--c-primary);
    font-weight: var(--w-semi);
    text-decoration: none;
  }
  .hero-features .section-inner > h2 {
    text-align: center;
    margin-bottom: 12px !important;
  }
  .hero-features {
    padding: 28px 0 32px !important;
  }
  .hero-features__link {
    display: none !important;
  }

  /* legacy per-card rules — desktop grid hidden on mobile */
  .hfeat__read-more {
    display: inline-block;
    font-size: var(--t-sm);
    color: var(--c-primary);
    font-weight: var(--w-semi);
    text-decoration: none;
    margin-top: 4px;
  }
  .hfeat__desc {
    -webkit-line-clamp: 3 !important;
  }
  .hfeat--teaser .hfeat__desc,
  .hfeat--teaser .log-methods,
  .hfeat--teaser .hfeat__detail {
    display: none !important;
  }
  .hfeat--teaser {
    padding-bottom: 16px !important;
  }
  .hfeat--teaser .hfeat__headline {
    margin-bottom: 8px !important;
  }

  /* ── Phases: legend + tap-to-expand cards ──────────────── */
  .phases-read-more-wrap { display: block; }
  .phases-section-cta { display: none !important; }

  .cw-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    justify-content: center;
    margin-top: 12px;
    margin-bottom: 4px;
  }
  .cw-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #666;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--c-border);
    border-radius: var(--r-pill);
    padding: 6px 10px;
    cursor: pointer;
    font-family: var(--f-body);
  }
  .cw-legend-item__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
  }
  .cw-legend-item--active {
    border-color: var(--c-primary);
    color: var(--c-text);
    font-weight: var(--w-semi);
  }

  #cycleWheel > div[style*="grid-template-columns:260px"] {
    gap: 16px !important;
  }
  #cycleWheel > div[style*="grid-template-columns:260px"] > div:first-child svg {
    width: 200px !important;
    height: 200px !important;
    max-width: 100%;
  }
  #cycleWheel > div[style*="grid-template-columns:260px"] > div:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #cycleWheel:not(.cw-expanded) .cw-card { display: none !important; }
  #cycleWheel.cw-expanded .cw-card:not(.active) { display: none !important; }
  #cycleWheel.cw-expanded .cw-card.active { display: flex !important; }
  #cycleWheel .cw-card-stack {
    min-height: 0;
  }
  #cycleWheel:not(.cw-expanded) .cw-card-stack::before {
    content: 'Tap a phase above to see details';
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--c-text-3);
    padding: 8px 12px;
    background: var(--c-pill-tint);
    border-radius: 12px;
  }

  /* Life stages: tap to expand spotlight */
  #lifeStagesPanel:not(.ls-expanded) #lsSpotlight {
    display: none !important;
  }
  #lifeStagesPanel.ls-expanded .ls-panel__hint {
    display: none;
  }
  .ls-panel__hint {
    display: block !important;
  }
    text-align: center;
    font-size: 12px;
    color: var(--c-text-3);
    padding: 8px 12px;
    margin-bottom: 12px;
    background: var(--c-pill-tint);
    border-radius: 12px;
  }

  /* ── Smarter way: horizontal flow chart ────────────────── */
  .smarter-way__teaser { display: block; }
  .smarter-way__detail { display: none !important; }

  .flow-chart {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.82fr);
    gap: 8px;
    align-items: stretch;
    margin: 16px 0 14px;
    padding: 12px 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--mob-card-radius);
  }
  .flow-chart__signals {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }
  .flow-chart__card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    min-height: 40px;
  }
  .flow-chart__icon {
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
  }
  .flow-chart__label {
    font-size: 11px;
    font-weight: var(--w-med);
    color: rgba(255,255,255,0.9);
    line-height: 1.25;
  }
  .flow-chart__connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
  }
  .flow-chart__arrow {
    font-size: 22px;
    font-weight: var(--w-light);
    color: rgba(212,197,232,0.85);
    line-height: 1;
  }
  .flow-chart__result {
    display: flex;
    align-items: stretch;
    min-width: 0;
  }
  .flow-chart__card--final {
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 10px 8px;
    background: rgba(155,126,189,0.24);
    border-color: rgba(212,197,232,0.32);
  }
  .flow-chart__logo {
    display: block;
    line-height: 0;
    margin-bottom: 2px;
  }
  .flow-chart__logo img {
    height: 28px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(1.05);
  }
  .flow-chart__brand {
    font-family: var(--f-logo);
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.02em;
  }
  .flow-chart__card--final .flow-chart__label {
    font-size: 10px;
    font-weight: var(--w-med);
    color: rgba(255,255,255,0.72);
    line-height: 1.3;
  }

  .smarter-way__read-more {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 4px;
  }
  .mob-read-more {
    display: inline-block;
    font-size: var(--t-sm);
    color: var(--c-primary);
    font-weight: var(--w-semi);
    text-decoration: none;
  }
  .smarter-way .mob-read-more {
    color: #D4C5E8;
  }

  /* ── FAQ: questions only ───────────────────────────────── */
  .faq-mini-card p { display: none !important; }
  .faq-mini-card {
    padding: 14px 12px !important;
    min-height: auto !important;
  }
  .faq-mini-card h3 {
    margin: 0 !important;
    font-size: 14px !important;
  }
  .faq-teaser .btn--secondary { display: none !important; }
  .faq-teaser-more {
    display: block;
    text-align: center;
    margin-top: 12px;
  }

  .site-footer {
    padding: 32px 16px calc(76px + env(safe-area-inset-bottom)) !important;
    margin-bottom: 0 !important;
  }

  .page-home .site-footer {
    display: none !important;
  }
}
