/* =============================================================
   Zoomi · home-v2 layout system (production design pass)
   Sits on top of design-tokens.css + components.css. Defines
   page chrome, section rhythm, hero, bold-hero, bento grid,
   story carousel, specs row, FAQ accordion, footer, sticky bar.

   No new design decisions here — every colour, radius, type
   size, and spacing value comes from a token. If a token isn't
   right, change it in design-tokens.css, not here.
   ============================================================= */

/* Base reset (body margin, image display, link/heading/list defaults,
   focus-visible) lives sitewide in design-tokens.css. */

/* Skip link */
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 1000;
  padding: 8px 14px; background: var(--zoomi-ink); color: var(--zoomi-cta-text);
  border-radius: var(--r-pill); font-size: var(--t-body-sm); font-weight: 600;
}
.skip-link:focus { top: 12px; }

/* ---------- Container ---------- */
.section { position: relative; padding: var(--s-4xl) 0; }
.section--tight { padding: var(--s-3xl) 0; }
.section--soft { background: transparent; }
.section--grey { background: var(--zoomi-bg); }
.section--ink  { background: var(--zoomi-ink); color: var(--zoomi-cta-text); }
.section--ink h2, .section--ink h3 { color: #FFFFFF; }
.section--ink p { color: rgba(255, 255, 255, 0.75); }
.section__head { max-width: 680px; margin: 0 auto var(--s-2xl); text-align: center; }
.section__head .eyebrow { margin-bottom: 10px; }
.section__head h2 { font-size: var(--t-display-sm); font-weight: 600; letter-spacing: var(--track-heading); line-height: var(--lh-snug); margin: 0 0 var(--s-md); }
/* Hero heads use <h1 class="h-display-sm"> (margin:0). Give the same
   gap below it as h2 heads so the sub-paragraph isn't flush against it. */
.zoomi-app .section__head h1 { margin: 0 0 var(--s-md); }
.section__head p { font-size: var(--t-body-lg); }

@media (max-width: 720px) {
  .section { padding: var(--s-3xl) 0; }
  .section--tight { padding: var(--s-2xl) 0; }
  .section__head h2 { font-size: var(--t-headline-lg); }
}

/* =============================================================
   VS-GRID — equal-column card grids for the comparison pages.
   Replaces page-local inline `grid-template-columns` so the
   columns collapse on smaller screens instead of overflowing
   the viewport (3→2→1, and 2→1). Used by the zoomi-vs-* pages.
   ============================================================= */
.vs-grid { display: grid; gap: var(--s-md); }
.vs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.vs-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 880px) {
  .vs-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .vs-grid--3,
  .vs-grid--2 { grid-template-columns: 1fr; }
}

/* =============================================================
   SITE TOP — fixed wrapper holding promo + nav, floats over hero
   ============================================================= */
.site-top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}

/* =============================================================
   NAV — default = "over hero" (transparent dark veil, white text);
   .is-scrolled = past hero (light glass, dark text).
   ============================================================= */
.nav {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: background .3s ease, backdrop-filter .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.nav__inner {
  max-width: var(--container-max); margin: 0 auto;
  padding: 12px var(--page-gutter);
  display: grid; grid-template-columns: auto 1fr auto; gap: var(--s-lg); align-items: center;
}
.nav__logo { display: inline-flex; align-items: center; gap: 8px; color: #FFFFFF; }
.nav__logo img { height: 22px; width: auto; filter: brightness(0) invert(1); transition: filter .25s ease; }
.nav__links { display: flex; gap: var(--s-lg); justify-content: center; }
.nav__links a { color: rgba(255, 255, 255, 0.78); font-size: var(--t-body-md); font-weight: 500; transition: color .2s ease; }
.nav__links a:hover { color: #FFFFFF; }
.nav__actions { display: flex; gap: 8px; align-items: center; justify-content: flex-end; }
.nav__icon-btn,
.nav__cart {
  display: inline-flex; width: 40px; height: 40px; border-radius: var(--r-pill);
  align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  color: #FFFFFF;
  cursor: pointer;
  transition: color .2s ease, opacity .2s ease;
}
.nav__icon-btn:hover,
.nav__cart:hover { opacity: 0.75; }
.nav__hamburger {
  display: none; width: 40px; height: 40px; border-radius: var(--r-pill);
  background: transparent; border: 0;
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
  align-items: center; justify-content: center; padding: 0;
  transition: color .25s ease, box-shadow .25s ease;
}
.nav__hamburger span { display: block; width: 18px; height: 1.5px; background: #FFFFFF; position: relative; transition: background .25s ease; }
.nav__hamburger span::before, .nav__hamburger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 1.5px; background: #FFFFFF; transition: background .25s ease; }
.nav__hamburger span::before { top: -6px; }
.nav__hamburger span::after  { top: 6px; }

/* CTA on hero: translucent white pill — overrides .zoomi-btn-primary for the over-hero state only. */
.nav:not(.is-scrolled) .zoomi-btn-primary {
  background: rgba(255, 255, 255, 0.16);
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}
.nav:not(.is-scrolled) .zoomi-btn-primary:hover {
  background: rgba(255, 255, 255, 0.26);
}

/* Scrolled past hero — restore light glass header + dark text. */
.nav.is-scrolled {
  background: color-mix(in oklab, var(--zoomi-bg) 85%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--zoomi-hair);
}
.nav.is-scrolled .nav__logo { color: var(--zoomi-ink); }
.nav.is-scrolled .nav__logo img { filter: none; }
.nav.is-scrolled .nav__links a { color: var(--zoomi-body); }
.nav.is-scrolled .nav__links a:hover { color: var(--zoomi-ink); }
.nav.is-scrolled .nav__icon-btn,
.nav.is-scrolled .nav__cart { color: var(--zoomi-ink); }
.nav.is-scrolled .nav__hamburger { color: var(--zoomi-ink); box-shadow: inset 0 0 0 1px var(--zoomi-hair); }
.nav.is-scrolled .nav__hamburger span,
.nav.is-scrolled .nav__hamburger span::before,
.nav.is-scrolled .nav__hamburger span::after { background: var(--zoomi-ink); }

[data-theme="dark"] .nav.is-scrolled .nav__logo img { filter: invert(1); }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) .nav.is-scrolled .nav__logo img { filter: invert(1); }
}

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__actions .zoomi-btn { display: none; }
  .nav__hamburger { display: inline-flex; }
  .nav__inner { grid-template-columns: 1fr auto; }
}

/* =============================================================
   HERO — full-bleed video / image + centered overlay
   ============================================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #FFFFFF;
  /* Nudge centered content below the fixed promo + nav so headline sits
     in the visual middle, not pinned right under the bars. */
  padding-top: 88px;
}
@media (max-width: 720px) {
  .hero { min-height: clamp(480px, 68vh, 620px); padding-top: 128px; }
}
.hero__media,
.hero__media video,
.hero__media img,
.hero__placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero__placeholder {
  background:
    radial-gradient(60% 80% at 20% 30%, rgba(255, 255, 255, 0.18), transparent 70%),
    radial-gradient(50% 60% at 80% 70%, rgba(255, 180, 148, 0.22), transparent 70%),
    linear-gradient(135deg, #2a2018 0%, #14110f 60%, #0a0807 100%);
  display: grid; place-items: center;
}
.hero__placeholder-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 8px 14px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.65) 100%),
    radial-gradient(70% 60% at 50% 55%, rgba(0,0,0,0.35), transparent 75%);
}
.hero__inner {
  position: relative;
  max-width: 820px;
  padding: var(--s-xl) var(--page-gutter);
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--s-md);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #FFFFFF; font-size: var(--t-eyebrow); font-weight: 600;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.hero__h1 {
  font-size: clamp(48px, 7.5vw, 92px);
  font-weight: 500;
  letter-spacing: var(--track-heading);
  line-height: 1.02;
  color: #FFFFFF;
  margin: 4px 0 8px;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.hero__sub {
  font-size: clamp(16px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 620px;
  text-wrap: balance;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.hero__cta { margin-top: var(--s-md); display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero__trust {
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-top: var(--s-md);
  font-size: var(--t-body-sm);
  color: rgba(255, 255, 255, 0.85);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust span::before { content: "✓"; opacity: 0.7; }

/* Primary CTA on hero needs to stand out on dark — invert in dark already happens via tokens; on hero we keep light pill always. */
.hero .zoomi-btn-primary {
  background: #FFFFFF; color: #0E0F11;
  box-shadow:
    inset 0  1px 0 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.18),
    0 6px 24px -8px rgba(0, 0, 0, 0.5);
}

/* =============================================================
   TRUST STRIP
   ============================================================= */
.trust {
  padding: var(--s-2xl) 0;
  border-bottom: 1px solid var(--zoomi-hair);
}
.trust__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.5fr;
  gap: var(--s-xl);
  align-items: center;
}
.trust__stat { display: flex; flex-direction: column; gap: 2px; }
.trust__stat strong { font-size: var(--t-headline-md); font-weight: 600; letter-spacing: var(--track-heading); color: var(--zoomi-ink); }
.trust__stat span { font-size: var(--t-body-sm); color: var(--zoomi-body); }
.trust__logos { display: flex; gap: var(--s-lg); align-items: center; justify-content: flex-end; opacity: 0.7; }
.trust__logo {
  font-family: serif; font-size: var(--t-body-md); font-weight: 600;
  letter-spacing: 0.5px; color: var(--zoomi-body); text-transform: uppercase;
}

@media (max-width: 880px) {
  .trust__row { grid-template-columns: repeat(3, 1fr); }
  .trust__logos { grid-column: 1 / -1; justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 520px) {
  .trust__row { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   BOLD-HERO (benefits) — full-bleed photo + headline group
   ============================================================= */
.bold-hero {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  isolation: isolate;
  min-height: 560px;
  background: #1a130d;
  display: grid; align-items: end;
  color: #FFFFFF;
}
.bold-hero__media,
.bold-hero__placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.bold-hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
}
.bold-hero__placeholder {
  background:
    radial-gradient(70% 80% at 70% 60%, rgba(255, 200, 130, 0.4), transparent 60%),
    radial-gradient(50% 60% at 30% 40%, rgba(155, 224, 196, 0.3), transparent 70%),
    linear-gradient(135deg, #d9c4a8 0%, #a08767 50%, #5e4530 100%);
  display: grid; place-items: center;
}
.bold-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.6) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 25%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0) 80%);
}
.bold-hero__inner {
  padding: var(--s-3xl);
  max-width: 600px;
  display: flex; flex-direction: column; gap: var(--s-md);
}
.bold-hero__eyebrow {
  display: inline-flex; align-self: flex-start;
  padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  color: #FFFFFF; font-size: var(--t-eyebrow); font-weight: 600;
  letter-spacing: var(--track-eyebrow); text-transform: uppercase;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.bold-hero__h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: var(--track-heading);
  line-height: 1.05;
  color: #FFFFFF;
  text-wrap: balance;
}
.bold-hero__sub { font-size: var(--t-body-lg); color: rgba(255, 255, 255, 0.9); max-width: 480px; }
.bold-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--s-md); }
.bold-hero__buy {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  margin-top: var(--s-md);
}
.bold-hero__price { display: flex; flex-direction: column; line-height: 1.1; color: #FFFFFF; }
.bold-hero__price strong { font-size: var(--t-headline-md); font-weight: 600; }
.bold-hero__price sup { font-size: 0.5em; vertical-align: super; opacity: 0.8; }
.bold-hero__price span { font-size: var(--t-body-sm); color: rgba(255, 255, 255, 0.75); margin-top: 2px; }
.bold-hero__cats {
  margin-top: 14px;
  font-size: var(--t-body-sm);
  color: rgba(255, 255, 255, 0.7);
}
.bold-hero__cats a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.bold-hero__cats a:hover { text-decoration-thickness: 2px; }
.bold-hero .zoomi-btn-primary {
  background: #FFFFFF; color: #0E0F11;
  box-shadow:
    inset 0  1px 0 0 rgba(255, 255, 255, 0.65),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.18),
    0 6px 20px -8px rgba(0, 0, 0, 0.45);
}

@media (max-width: 720px) {
  /* Frame the dog: heading group anchored top, CTA group pinned bottom,
     middle gap reveals the subject + tag. Dark veil darkens top and bottom
     bands for legibility, stays clear through the middle so the dog shows. */
  .bold-hero {
    min-height: 460px;
    border-radius: var(--r-bento);
    align-items: stretch;
  }
  .bold-hero__media img {
    object-position: 85% center;
  }
  .bold-hero::before {
    background:
      linear-gradient(180deg,
        rgba(0,0,0,0.78) 0%,
        rgba(0,0,0,0.4) 22%,
        rgba(0,0,0,0) 42%,
        rgba(0,0,0,0) 58%,
        rgba(0,0,0,0.45) 78%,
        rgba(0,0,0,0.88) 100%);
  }
  .bold-hero__inner {
    padding: var(--s-lg);
    max-width: 100%;
    gap: var(--s-sm);
    height: 100%;
  }
  .bold-hero__h2 { font-size: clamp(26px, 8vw, 36px); }
  .bold-hero__sub { max-width: 100%; font-size: var(--t-body-md); }
  .bold-hero__buy { margin-top: auto; }
  .bold-hero__cats { margin-top: 8px; font-size: 12px; }
}

/* =============================================================
   APP BENTO GRID
   ============================================================= */
.bento-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 640px;
}
.bento-grid > .zoomi-bento { min-height: auto; }
.bento-grid > :nth-child(1) { grid-column: 1; grid-row: 1 / span 2; }
.bento-grid > :nth-child(2) { grid-column: 2 / span 2; grid-row: 1; }
.bento-grid > :nth-child(3) { grid-column: 2; grid-row: 2; }
.bento-grid > :nth-child(4) { grid-column: 3; grid-row: 2; }

.zoomi-bento__visual {
  flex: 1;
  margin-top: var(--s-md);
  border-radius: var(--r-inner);
  min-height: 160px;
  background:
    radial-gradient(80% 80% at 50% 50%, rgba(255, 255, 255, 0.5), transparent 70%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08));
  display: grid; place-items: center;
  color: var(--zoomi-body);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  padding: var(--s-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zoomi-bento--ink .zoomi-bento__visual { background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)); color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   PHONE-MOCK VISUAL · used inside .zoomi-bento__visual--phone
   Real iPhone silhouette holding the actual top of the app
   screen. Phone is absolutely positioned, so its natural
   height does NOT grow the tile — the tile's overflow:hidden
   crops the phone bottom (Whoop-style). T1 GPS is sized so
   the full phone fits inside its tall tile; the other three
   tiles crop the phone bottom.
   ============================================================ */
.zoomi-bento__visual--phone {
  position: relative;
  overflow: hidden;
  flex: 1 1 auto;
  min-height: 0;
  background: transparent;
  padding: 0;
}
.phone-mock {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 200px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 6px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.08),
    0 16px 32px -12px rgba(0,0,0,0.35);
}
.phone-mock img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
}
.phone-mock--xl { width: 220px; }
.phone-mock--sm { width: 150px; }
.zoomi-bento--ink .phone-mock { background: #2a2a2a; }

/* T1 (column, ink) — full phone visible incl. tab bar, anchored bottom */
.bento-grid > :nth-child(1).zoomi-bento { padding-bottom: var(--s-md); }
.bento-grid > :nth-child(1) .phone-mock {
  top: auto;
  bottom: 0;
}

/* Row layout — text left, phone right (T2, T3, T4) */
.zoomi-bento--row {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--r-bento);
  overflow: hidden;
}
.zoomi-bento--row .zoomi-bento__copy {
  padding: var(--s-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.zoomi-bento--row .zoomi-bento__visual--phone {
  padding: 0;
  margin-top: 0;
  min-height: 0;
  position: relative;
  overflow: hidden;
}
/* Phone rises from tile bottom but is shorter than the visual area —
   ~70% height, leaving padding above so the phone doesn't jam to the
   top. Image inside keeps natural ratio; bottom is cropped by the
   phone-mock's own overflow (= tile bottom). */
.zoomi-bento--row .phone-mock {
  position: absolute;
  bottom: 0;
  left: 50%;
  top: auto;
  transform: translateX(-50%);
  height: 85%;
  border-radius: 28px 28px 0 0;
  padding: 6px 6px 0;
  overflow: hidden;
}
.zoomi-bento--row .phone-mock img {
  border-radius: 22px 22px 0 0;
}

/* Live badge — small glass pill, top-right of ink tile */
.float-badge {
  position: absolute;
  top: 12px; right: 12px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #fff;
  padding: 6px 11px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 500;
  z-index: 2;
}
.float-badge--live::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #34C759;
  box-shadow: 0 0 6px rgba(52,199,89,0.6);
  animation: live-blink 1.6s ease-in-out infinite;
}
@keyframes live-blink {
  0%, 100% { opacity: 1;   }
  50%      { opacity: 0.4; }
}

/* GPS live-tracking overlay — moved to /assets/gps-overlay.css so it can
   be reused on the homepage, product page and how-it-works page. */

@media (max-width: 880px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: auto; }
  .bento-grid > :nth-child(1) { grid-column: 1 / -1; grid-row: auto; min-height: auto; }
  .bento-grid > :nth-child(2) { grid-column: 1 / -1; grid-row: auto; }
  .bento-grid > :nth-child(3) { grid-column: 1; grid-row: auto; }
  .bento-grid > :nth-child(4) { grid-column: 2; grid-row: auto; }

  /* T1 GPS · desktop bottom-anchors the full phone inside a tall column.
     On mobile that column collapses, so the bottom-anchor crops the
     top of the map and only the tab bar shows. Match the row-tile
     pattern exactly so all four phones read at the same size + position. */
  .bento-grid > :nth-child(1).zoomi-bento { padding-bottom: 0; }
  .bento-grid > :nth-child(1) .zoomi-bento__visual--phone {
    margin-top: var(--s-md);
    height: 360px;
    padding: 0;
    overflow: hidden;
    position: relative;
  }
  .bento-grid > :nth-child(1) .phone-mock {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
    border-radius: 28px 28px 0 0;
    padding: 6px 6px 0;
  }
  .bento-grid > :nth-child(1) .phone-mock img {
    border-radius: 22px 22px 0 0;
  }
  .bento-grid > :nth-child(1) .float-badge { top: 12px; right: 12px; }

  /* Row tiles (T2/T3/T4) lose horizontal room — stack copy above, phone below. */
  .zoomi-bento--row {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .zoomi-bento--row .zoomi-bento__copy {
    padding: var(--s-lg) var(--s-lg) var(--s-sm);
    text-align: center;
    align-items: center;
  }
  .zoomi-bento--row .zoomi-bento__visual--phone {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
  }
  /* Anchor phone to TOP so notch + status bar show; bottom (tab bar) crops. */
  .zoomi-bento--row .phone-mock {
    position: absolute;
    top: 0;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
    width: 200px;
    border-radius: 28px 28px 0 0;
    padding: 6px 6px 0;
  }
  .zoomi-bento--row .phone-mock img {
    border-radius: 22px 22px 0 0;
  }
}
@media (max-width: 520px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-grid > * { grid-column: 1 !important; }
}

.app-badges { display: flex; gap: 14px; justify-content: center; align-items: center; margin-top: var(--s-2xl); }
.app-badge {
  display: inline-flex; align-items: center;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}
.app-badge:hover { transform: translateY(-1px); opacity: 0.9; }
.app-badge img { height: 48px; width: auto; display: block; }

/* =============================================================
   REVIEWS — horizontal story carousel · arrows + dots
   ============================================================= */
.stories-shell { position: relative; }
.stories {
  display: flex; gap: 16px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--page-gutter);
  padding: 8px var(--page-gutter) var(--s-lg);
  margin: 0 calc(-1 * var(--page-gutter));
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.stories::-webkit-scrollbar { display: none; }
.stories:focus-visible { outline: none; }
.stories:focus-visible .story:first-child { outline: 2px solid var(--zoomi-link); outline-offset: 4px; border-radius: var(--r-card); }

.stories__arrow {
  position: absolute; top: 38%; transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--zoomi-card);
  color: var(--zoomi-ink);
  border: 0;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.08),
    0 8px 24px -10px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px var(--zoomi-hair);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out),
              opacity   var(--dur-fast) var(--ease-out);
}
.stories__arrow:hover { transform: translateY(-50%) scale(1.04); }
.stories__arrow:active { transform: translateY(-50%) scale(0.96); }
.stories__arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.stories__arrow--prev { left: -22px; }
.stories__arrow--next { right: -22px; }
@media (max-width: 880px) {
  .stories__arrow { display: none; }
}

.stories__dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: var(--s-md);
}
.stories__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 0;
  background: var(--zoomi-hair);
  cursor: pointer;
  padding: 0;
  transition: background var(--dur-fast) var(--ease-out),
              width      var(--dur-fast) var(--ease-out);
}
.stories__dot.is-active {
  background: var(--zoomi-ink);
  width: 24px;
}
.stories__dot:focus-visible { outline: 2px solid var(--zoomi-link); outline-offset: 2px; }

.story {
  flex: 0 0 320px;
  scroll-snap-align: start;
  display: flex; flex-direction: column;
  background: var(--zoomi-card);
  border-radius: var(--r-card);
  border: 1px solid var(--zoomi-hair);
  overflow: hidden;
}
.story__media {
  aspect-ratio: 1 / 1;
  position: relative; overflow: hidden;
  background: var(--zoomi-bg);
}
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media-label {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px; padding: 6px 12px; border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.85); color: var(--zoomi-body);
  letter-spacing: 0.5px; text-transform: uppercase;
}
.story__body { padding: var(--s-lg); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.story__stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; }
.story__quote { font-size: var(--t-body-md); color: var(--zoomi-ink); line-height: 1.5; margin: 0; }
.story__by { font-size: var(--t-body-sm); color: var(--zoomi-body); margin-top: auto; }

.stories__hint {
  text-align: center; font-size: var(--t-body-sm); color: var(--zoomi-body);
  margin-bottom: var(--s-md);
}

/* =============================================================
   SPECS — left col + product photo + right col
   ============================================================= */
.specs-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-lg);
  margin: 0 auto;
}
.specs-col { display: flex; flex-direction: column; gap: var(--s-xl); flex: 0 0 auto; align-items: flex-end; text-align: right; }
.specs-col--right { align-items: flex-start; text-align: left; }
.spec-cell { display: flex; flex-direction: column; gap: 2px; }
.spec-cell span { font-size: var(--t-eyebrow); font-weight: 500; letter-spacing: var(--track-eyebrow); text-transform: uppercase; color: var(--zoomi-body); }
.spec-cell strong { font-size: var(--t-headline-md); font-weight: 600; letter-spacing: var(--track-heading); color: var(--zoomi-ink); }
.specs-photo {
  flex: 0 0 auto;
  width: 360px;
  height: 320px;
  position: relative;
}
.specs-photo--has-img { background: transparent; box-shadow: none; }
.specs-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.specs-photo__label { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; color: var(--zoomi-body); }

.specs-buy {
  margin-top: var(--s-lg);
  display: flex; flex-direction: column; align-items: center; gap: var(--s-md);
  text-align: center;
}
.specs-buy__price strong { font-size: var(--t-display-sm); font-weight: 600; letter-spacing: var(--track-heading); }
.specs-buy__price span { display: block; font-size: var(--t-body-sm); color: var(--zoomi-body); margin-top: 4px; }
.specs-buy__note { font-size: var(--t-body-sm); color: var(--zoomi-body); }
.specs-buy__note a { color: var(--zoomi-link); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 880px) {
  /* Tighten the rhythm: headline → photo → 2×2 grid → price should
     read as one connected block, not three loosely-spaced rows. */
  .section--tight .section__head { margin-bottom: var(--s-md); }
  .specs-row { grid-template-columns: 1fr; gap: var(--s-sm); }
  .specs-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-md);
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    align-items: start;
    text-align: center;
  }
  .specs-col--right { align-items: start; text-align: center; }
  .spec-cell { align-items: center; gap: 0; }
  .specs-photo {
    order: -1;
    width: 240px;
    aspect-ratio: 1 / 1;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
  }
  .specs-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .specs-buy { margin-top: var(--s-lg); gap: var(--s-sm); }
}

/* =============================================================
   SPACE STORY — full-bleed editorial
   ============================================================= */
.space-story {
  position: relative;
  min-height: 70vh;
  display: grid; align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #FFFFFF;
}
.space-story__media,
.space-story__media video,
.space-story__media img,
.space-story__placeholder {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: -2;
}
.space-story__placeholder {
  background:
    radial-gradient(40% 50% at 30% 50%, rgba(232, 180, 92, 0.55), transparent 70%),
    radial-gradient(50% 70% at 70% 60%, rgba(74, 86, 128, 0.5), transparent 75%),
    linear-gradient(180deg, #06080f 0%, #0c1226 60%, #1a1f3a 100%);
}
.space-story::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(270deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.1) 70%, rgba(0,0,0,0) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.25) 100%);
}
.space-story .zoomi-container {
  display: flex; justify-content: flex-end;
}
.space-story__inner {
  padding: var(--s-4xl) 0;
  max-width: 520px;
  display: flex; flex-direction: column; gap: var(--s-md);
  text-align: left;
}
@media (max-width: 720px) {
  .space-story::before { background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%); }
  .space-story .zoomi-container { justify-content: stretch; }
  .space-story__inner { max-width: 100%; padding: var(--s-3xl) 0; }
}
.space-story__h2 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 600; letter-spacing: var(--track-heading); line-height: 1.05;
  color: #FFFFFF; text-wrap: balance;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
.space-story__sub { font-size: var(--t-body-lg); color: rgba(255, 255, 255, 0.92); max-width: 540px; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5); }

/* =============================================================
   FAQ accordion
   ============================================================= */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq__item {
  background: var(--zoomi-card);
  border-radius: var(--r-bento);
  padding: 4px 8px;
  transition: background var(--dur-fast) var(--ease-out);
}
.faq__item summary {
  list-style: none;
  padding: var(--s-md) var(--s-md);
  font-size: var(--t-body-lg); font-weight: 600;
  color: var(--zoomi-ink);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-md);
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px; line-height: 1; color: var(--zoomi-body);
  transition: transform var(--dur-fast) var(--ease-out);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { padding: 0 var(--s-md) var(--s-md); color: var(--zoomi-body); font-size: var(--t-body-md); }

/* =============================================================
   FINAL CTA — full-bleed lifestyle bg + left dark veil
   Background: AI-generated photo (man walking dog, app on phone)
   sitting full-bleed under a left-to-right dark gradient so the
   headline + CTA on the left stays legible. Subtle slow pan on
   the bg image for life.
   ============================================================= */
.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-card);
  min-height: 440px;
  display: flex;
  align-items: center;
  background: #0E0F11;
  color: #fff;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("/assets/website-graphics/emotional-bg.webp");
  background-size: cover;
  background-position: center right;
  transform-origin: center;
  animation: cta-bg-pan 22s ease-in-out infinite alternate;
}
@keyframes cta-bg-pan {
  0%   { transform: scale(1.05) translateX(0); }
  100% { transform: scale(1.10) translateX(-2%); }
}
.final-cta__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.45) 35%, transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 30%, rgba(0,0,0,0.30) 100%);
}
.final-cta__inner {
  position: relative;
  width: 100%;
  padding: clamp(var(--s-2xl), 5vw, var(--s-3xl)) clamp(var(--s-xl), 4vw, var(--s-2xl));
}
.final-cta__copy { max-width: 540px; }
.final-cta__copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: var(--track-heading);
  line-height: 1.06;
  color: #fff;
  margin: 0 0 var(--s-md);
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.final-cta__copy > p {
  font-size: var(--t-body-lg);
  color: rgba(255,255,255,0.92);
  margin: 0 0 var(--s-xl);
  max-width: 440px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.final-cta__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.final-cta__price { display: flex; align-items: baseline; line-height: 1; color: #fff; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
.final-cta__price strong { font-size: var(--t-headline-md); font-weight: 600; }
.final-cta__price sup { font-size: 0.5em; vertical-align: super; opacity: 0.8; }
.final-cta__copy > .final-cta__trust {
  font-size: var(--t-body-sm);
  color: rgba(255,255,255,0.78);
  margin: var(--s-xs) 0 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}

@media (max-width: 880px) {
  .final-cta {
    min-height: 0;
    border-radius: var(--r-bento);
    align-items: flex-end;
  }
  .final-cta__bg { background-position: 65% center; }
  /* Dark at the bottom (under copy) so the headline reads; lighter
     toward the top so the dog stays visible. */
  .final-cta__veil {
    background:
      linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.88) 100%);
  }
  .final-cta__inner { padding: 64px var(--s-lg) var(--s-lg); }
  .final-cta__copy { max-width: 100%; }
  .final-cta__copy h2 { font-size: clamp(26px, 7.5vw, 32px); margin-bottom: 6px; }
  .final-cta__copy > p { max-width: 100%; margin-bottom: var(--s-md); font-size: var(--t-body-md); }
  .final-cta__actions { gap: 12px; }
  .final-cta__actions .zoomi-btn-lg { flex: 1 1 auto; justify-content: center; }
  .final-cta__copy > .final-cta__trust { margin: var(--s-xs) 0 0; font-size: 12px; }
}

/* Footer styles live in /assets/site-footer.css (loaded site-wide via
   partials/header.php). Don't duplicate them here — the duplicate would
   load after and override the universal styles. */

/* =============================================================
   PLACEHOLDER LABELS — visible during dev until Higgs assets land.
   Remove .with-placeholder-labels from <body> when assets are in.
   ============================================================= */
body:not(.with-placeholder-labels) .placeholder-label,
body:not(.with-placeholder-labels) .hero__placeholder-label,
body:not(.with-placeholder-labels) .story__media-label,
body:not(.with-placeholder-labels) .specs-photo__label { display: none; }

.placeholder-label {
  position: absolute; top: 12px; right: 12px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px; color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 10px; border-radius: var(--r-pill);
  letter-spacing: 0.5px; text-transform: uppercase;
  z-index: 5;
}

/* =========================================================
   S0 · Promo bar — dismissible, above sticky nav
   ========================================================= */
.promo-bar {
  background: var(--zoomi-ink);
  color: #FFFFFF;
  font-size: var(--t-body-sm);
  line-height: 1.3;
  position: relative;
  z-index: 51;
}
.promo-bar__inner {
  max-width: var(--container-max, 1200px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px var(--s-md, 16px);
  min-height: 40px;
}
.promo-bar__msg {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}
.promo-bar__msg strong { color: #FFFFFF; font-weight: 600; }
.promo-bar__msg[hidden] { display: none; }
.promo-bar__pill {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: var(--r-pill, 999px);
  background: var(--accent-peach);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.promo-bar__cta {
  color: #FFFFFF;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.promo-bar__cta:hover { text-decoration-thickness: 2px; }
.promo-bar__close {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill, 999px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.promo-bar__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}
.promo-bar__close:focus-visible {
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .promo-bar__inner { padding: 8px 12px; gap: 8px; }
  .promo-bar__msg { font-size: 12px; gap: 4px 8px; }
  .promo-bar__pill { font-size: 10px; padding: 1px 6px; }
  .promo-bar__cta { font-size: 12px; }
}

/* =========================================================
   S3.5 · Pillars — big-number scroll-snap cards
   ========================================================= */
.pillars {
  padding: var(--s-3xl, 80px) 0 var(--s-2xl, 64px);
}
.pillars__head {
  max-width: 760px;
  margin: 0 auto var(--s-2xl, 48px);
  text-align: center;
}
.pillars__h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: var(--track-heading);
  line-height: 1.05;
  color: var(--zoomi-ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.pillars__lede {
  font-size: var(--t-body-lg, 17px);
  color: var(--zoomi-body);
  margin: 0;
  text-wrap: balance;
}

/* Shell — arrows + track + dots, mirrors .stories-shell pattern. */
.pillars-shell {
  position: relative;
  margin: 0 auto;
  max-width: var(--container-max, 1200px);
}
.pillars__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: var(--r-pill, 999px);
  background: #FFFFFF;
  color: var(--zoomi-ink);
  border: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06), 0 8px 24px -10px rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pillars__arrow:hover { box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 12px 28px -10px rgba(0,0,0,0.25); }
.pillars__arrow:disabled { opacity: 0; pointer-events: none; }
.pillars__arrow--prev { left: -8px; }
.pillars__arrow--next { right: -8px; }
@media (max-width: 880px) {
  .pillars__arrow { display: none; }
}

.pillars__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--page-gutter, 24px);
  padding: 8px var(--page-gutter, 24px) 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.pillars__track::-webkit-scrollbar { display: none; }
.pillars__track:focus-visible { outline: 2px solid var(--zoomi-link, #1a73e8); outline-offset: 4px; border-radius: 16px; }

@media (min-width: 1080px) {
  .pillars__track {
    /* On wide screens, show all 3 evenly — still snap-friendly. */
    grid-auto-columns: minmax(0, 1fr);
  }
}

/* Card — base layout only. Surface treatment comes from .pillars--<variant> modifiers. */
.pillar {
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 28px 26px;
  min-height: 260px;
  isolation: isolate;
  overflow: hidden;
}
.pillar--peach     { --pillar-tint: var(--accent-peach-soft); --pillar-accent: var(--accent-peach); }
.pillar--buttercup { --pillar-tint: var(--accent-buttercup-soft); --pillar-accent: var(--accent-buttercup); }
.pillar--blossom   { --pillar-tint: var(--accent-blossom-soft); --pillar-accent: var(--accent-blossom); }
.pillar--mint      { --pillar-tint: var(--accent-mint-soft); --pillar-accent: var(--accent-mint); }

.pillar__num {
  font-family: var(--font-heading);
  font-size: clamp(56px, 5.2vw, 76px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--zoomi-ink);
  display: inline-flex;
  align-items: baseline;
}
.pillar__num i {
  font-style: normal;
  color: var(--pillar-accent, var(--accent-peach));
  margin-left: 2px;
}
.pillar__rule {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--zoomi-ink);
  border-radius: 2px;
  margin: 2px 0 6px;
}
.pillar__title {
  font-size: clamp(20px, 1.9vw, 24px);
  font-weight: 600;
  letter-spacing: var(--track-heading);
  color: var(--zoomi-ink);
  margin: 0;
}
.pillar__sub {
  font-size: var(--t-body-md, 15px);
  line-height: 1.55;
  color: var(--zoomi-body);
  margin: 0;
}

/* ---- Variant A · Tinted soft fills ---- */
.pillars--tinted .pillar {
  background: var(--pillar-tint);
  border-radius: 22px;
}

/* ---- Variant B · Outlined ---- */
.pillars--outline .pillar {
  background: transparent;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px var(--zoomi-hair);
}
.pillars--outline .pillar__num { color: var(--zoomi-ink); }
.pillars--outline .pillar__num i { color: var(--pillar-accent, var(--accent-peach)); }
.pillars--outline .pillar__rule { background: var(--pillar-accent, var(--accent-peach)); width: 44px; }

/* ---- Variant C · Grey section, no card surface, hairline dividers ---- */
.pillars--divided { background: var(--zoomi-bg); }
.pillars--divided .pillars__track {
  /* Override scroll on desktop so the hairline rhythm reads continuously. */
  padding-top: 0;
  padding-bottom: 0;
}
.pillars--divided .pillar {
  background: transparent;
  border-radius: 0;
  padding: 8px 28px;
}
.pillars--divided .pillar + .pillar {
  box-shadow: inset 1px 0 0 var(--zoomi-hair);
}
@media (max-width: 880px) {
  .pillars--divided .pillar + .pillar {
    box-shadow: inset 0 1px 0 var(--zoomi-hair);
    padding-top: 24px;
  }
}

/* Dots — mirror .stories__dots */
.pillars__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.pillars__dot {
  width: 8px; height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: var(--zoomi-hair, rgba(0,0,0,0.15));
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.pillars__dot.is-active {
  background: var(--zoomi-ink);
  transform: scale(1.2);
}
@media (min-width: 1080px) {
  /* If everything fits on screen, hide dots — they're meaningless. */
  .pillars__dots { display: none; }
}

.pillars__cta {
  margin-top: var(--s-2xl, 48px);
  display: flex;
  justify-content: center;
}

@media (max-width: 880px) {
  .pillars { padding: var(--s-2xl, 64px) 0 var(--s-xl, 40px); }
  /* Stack instead of horizontal scroll-snap. Drop the dots; arrows
     are already hidden at this width. */
  .pillars__track {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
    padding: 4px var(--page-gutter, 24px) 8px;
    gap: 12px;
  }
  .pillars__dots { display: none; }
  .pillar { min-height: 0; padding: 26px 24px; scroll-snap-align: none; }
  .pillars__cta { margin-top: var(--s-xl, 36px); }
}
