/* landing-cinematic.css — cinematic snap landing for Pote.
   Layout system: full-viewport snap chapters with a fixed center-phone
   portal, per-chapter page themes (0.6s background crossfade), then
   in-flow sections (bento, panel, duo, plus, faq, support, QR footer).
   Base tokens come from landing-base.css (:root). */

:root {
  --mist: #efe7ff;
  --panel-bg: #ecece5;
  /* Radius system — one scale, reviewed as a set. */
  --r-pill: 999px;
  --r-panel: 36px;
  --r-screen: 34px;
  --r-card: 32px;
  --r-knob: 29px;
  --r-card-sm: 28px;
  --r-tile: 26px;
  --r-chip: 22px;
  --r-avatar: 20px;
  --r-ring: 40px;
  --r-device: 56px;
  --r-device-screen: 49px;
  --font-display: "Bricolage Grotesque", "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --phone-h: min(78vh, 46rem);
  --phone-w: calc(var(--phone-h) * 0.46);
  --pill-h: 46px;
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
}

html.cf-menu-locked, html.cf-menu-locked body { overflow: hidden; }

/* Page theme engine — body crossfades behind transparent chapters. */
body {
  background-color: var(--paper);
  transition: background-color 0.6s ease-in-out;
}
body[data-page-theme="ink"] { background-color: var(--ink); }
body[data-page-theme="lime"] { background-color: var(--lime); }
body[data-page-theme="paper"] { background-color: var(--paper); }
body[data-page-theme="mist"] { background-color: var(--mist); }

@media (min-width: 920px) and (prefers-reduced-motion: no-preference) {
  html { scroll-snap-type: y proximity; }
  .cf-intro, .story-section { scroll-snap-align: start; scroll-snap-stop: always; }
}

/* ── Header ─────────────────────────────────────────────────────────── */
.pote-header.cashflow-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition: transform 0.45s var(--ease-soft), opacity 0.45s ease;
}
.pote-header.cashflow-header.solid { background: transparent; }
.pote-header.cashflow-header.is-hidden { transform: translateY(-110%); opacity: 0; }

.cf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 2.4vw, 32px);
}
.cf-brand {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 0 var(--lime-edge), 0 10px 24px rgba(5, 5, 5, 0.16);
  text-decoration: none;
  transition: transform 0.3s var(--ease-soft);
}
.cf-brand:hover { transform: rotate(-4deg) scale(1.04); }
.cf-brand img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.cf-qr-tile img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; display: block; }
.cf-header-actions { display: flex; align-items: center; gap: 10px; }

.cf-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: var(--pill-h);
  padding: 0 20px;
  border: 0;
  border-radius: var(--r-pill);
  font: 800 13.5px/1 "IBM Plex Sans", sans-serif;
  letter-spacing: -0.1px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-soft), background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
.cf-pill:hover { transform: translateY(-1px); }
.cf-pill:active { transform: scale(0.98); }
.cf-pill-lime { background: var(--lime); color: var(--ink); box-shadow: 0 2px 0 var(--lime-edge); }
.cf-pill-lime:hover { background: var(--ink); color: var(--lime); box-shadow: none; }
.cf-pill-dark { background: #161614; color: #fff; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16); }
.cf-pill-dark:hover { background: #26261f; }
.cf-pill-ink { background: var(--ink); color: #fff; }
.cf-pill-ink:hover { background: var(--lime); color: var(--ink); }
.cf-pill-arrow { font-weight: 700; transition: transform 0.3s var(--ease-soft); }
.cf-pill:hover .cf-pill-arrow { transform: translateX(3px); }

.cf-pill-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: var(--pill-h);
  padding: 0 22px;
  border-radius: var(--r-pill);
  border: 1.5px solid currentColor;
  background: transparent;
  color: inherit;
  font: 700 13.5px/1 "IBM Plex Sans", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-soft);
}
.cf-pill-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cf-pill-outline.on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }

.cf-menu-btn { width: var(--pill-h); padding: 0; }
.cf-burger { display: inline-flex; flex-direction: column; gap: 5px; width: 16px; }
.cf-burger i { height: 2px; border-radius: 2px; background: currentColor; transition: transform 0.3s var(--ease-soft); }
.cf-menu-btn.is-open .cf-burger i:first-child { transform: translateY(3.5px) rotate(45deg); }
.cf-menu-btn.is-open .cf-burger i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* ── Fullscreen menu ────────────────────────────────────────────────── */
.cf-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 16px clamp(16px, 2.4vw, 32px) 28px;
  overflow-y: auto;
  animation: cfMenuIn 0.35s var(--ease-soft);
}
@keyframes cfMenuIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
.cf-menu-top { display: flex; align-items: center; justify-content: space-between; }
.cf-menu-body {
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin: clamp(28px, 6vh, 64px) 0 32px;
}
.cf-menu-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-menu-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 168px;
  padding: 18px;
  border-radius: var(--r-chip);
  background: #121210;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  font: 700 15px/1.3 "IBM Plex Sans", sans-serif;
  letter-spacing: -0.2px;
  transition: background 0.25s ease, transform 0.3s var(--ease-soft);
}
.cf-menu-tile:hover { background: #1b1b18; transform: translateY(-2px); }
.cf-menu-tile-visual { display: inline-flex; align-items: center; min-height: 56px; }
.mt-date { font: 800 30px/1 var(--font-display); color: var(--lime); letter-spacing: -1px; }
.mt-avatars { display: inline-flex; align-items: center; }
.mt-avatars span, .mt-avatars b {
  width: 40px; height: 40px; border-radius: var(--r-avatar);
  display: inline-flex; align-items: center; justify-content: center;
  font: 800 14px/1 "IBM Plex Sans", sans-serif;
  border: 2px solid var(--ink);
}
.mt-avatars span:first-child { background: var(--lime); color: var(--ink); }
.mt-avatars span + span { background: #cdb4ff; color: var(--ink); margin-left: -10px; }
.mt-avatars b { background: #fff; color: var(--ink); margin-left: -10px; }
.mt-lock { display: inline-flex; width: 68px; height: 40px; border-radius: var(--r-pill); background: var(--lime); position: relative; }
.mt-lock-knob { position: absolute; top: 4px; right: 4px; width: 32px; height: 32px; border-radius: 16px; background: #fff; }
.cf-menu-cols { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 24px; }
.cf-menu-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cf-menu-col > span { font: 700 12px/1 var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.45); }
.cf-menu-col a { color: #fff; text-decoration: none; font: 600 16px/1.3 "IBM Plex Sans", sans-serif; }
.cf-menu-col a:hover { color: var(--lime); }
.cf-menu-cta { margin-top: auto; max-width: 560px; }
.cf-menu .lang-trigger { background: #121210; color: #fff; border-color: rgba(255, 255, 255, 0.2); }
.cf-menu .lang-menu { background: #121210; color: #fff; border-color: rgba(255, 255, 255, 0.14); }
.cf-menu .lang-mi { color: #fff; }
.cf-menu .lang-mi-code { color: rgba(255, 255, 255, 0.5); }
.cf-menu .lang-mi:hover, .cf-menu .lang-mi.on { background: rgba(255, 255, 255, 0.08); }

/* ── Intro ──────────────────────────────────────────────────────────── */
.cf-intro {
  position: relative;
  height: 100svh;
  min-height: 640px;
  background: #f6f1e7;
  color: var(--ink);
  overflow: hidden;
}
.cf-intro-world {
  position: absolute;
  inset: -2.5%;
  z-index: 0;
  display: block;
  overflow: hidden;
  pointer-events: none;
}
.cf-intro-world img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.025) translate3d(calc(var(--mx, 0) * -8px), calc(var(--my, 0) * -6px), 0);
  transition: transform 420ms var(--ease-soft);
  will-change: transform;
}
.cf-intro-copy {
  position: absolute;
  top: clamp(150px, 23svh, 240px);
  left: clamp(28px, 6.2vw, 112px);
  z-index: 2;
  width: min(52vw, 740px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.cf-hero-store { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.cf-hero-store a { display: inline-block; transition: transform .18s ease; }
.cf-hero-store a:hover { transform: translateY(-2px); }
.store-badge-img { display: block; height: 60px; width: auto; }
.cf-intro-h1 {
  margin: 0;
  font: 800 clamp(58px, 7.7vw, 112px)/0.92 var(--font-display);
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.cf-intro-sub {
  margin: 0;
  max-width: 470px;
  font: 550 clamp(16px, 1.35vw, 19px)/1.48 "IBM Plex Sans", sans-serif;
  color: rgba(5, 5, 5, 0.7);
}
.cf-scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(5, 5, 5, 0.28);
  background: rgba(246, 241, 231, 0.88);
  color: var(--ink);
  font: 700 12.5px/1 "IBM Plex Sans", sans-serif;
  text-decoration: none;
  z-index: 2;
  transition: background 0.3s ease, color 0.3s ease;
}
.cf-scroll-hint:hover { background: var(--ink); color: var(--paper); }
.cf-scroll-hint span { animation: cfNudge 1.8s ease-in-out infinite; }
@keyframes cfNudge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ── Chapter story ──────────────────────────────────────────────────── */
.story { position: relative; }
.story-section {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: var(--ink);
  padding: 84px clamp(16px, 3vw, 40px) 64px;
}
.story-section[data-theme="ink"] { color: var(--paper); }
.story-grid {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) var(--phone-w) minmax(0,1fr);
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
}
.story-h {
  margin: 0;
  font: 800 clamp(30px, 3.1vw, 46px)/1.04 var(--font-display);
  letter-spacing: -0.03em;
  justify-self: start;
}
.story-media { position: relative; display: flex; justify-content: center; }
.story-slot { width: var(--phone-w); height: var(--phone-h); }
.story-inline { display: none; }
.story-detail {
  justify-self: end;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.story-detail p { margin: 0; font: 500 15.5px/1.55 "IBM Plex Sans", sans-serif; }
.story-bullets { margin: 0; padding: 0 0 0 18px; display: flex; flex-direction: column; gap: 9px; font: 500 15px/1.45 "IBM Plex Sans", sans-serif; }
.story-cta { flex: none; }
.story-anchor { position: absolute; width: 1px; height: 1px; }
.story-disclaimer {
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  bottom: 22px;
  color: inherit;
  opacity: 0.6;
  font: 600 12px/1 "IBM Plex Sans", sans-serif;
  text-underline-offset: 4px;
}

.story-portals { position: fixed; inset: 0; z-index: 30; pointer-events: none; }
.story-portal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--phone-w);
  height: var(--phone-h);
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  filter: drop-shadow(0 2px 8px rgba(5, 5, 5, 0.14)) drop-shadow(0 28px 70px rgba(5, 5, 5, 0.32));
  will-change: opacity;
}
.story-portal video, .story-portal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12.5%/5.8%;
  background: var(--ink);
  will-change: clip-path;
}

/* ── Bento dark ─────────────────────────────────────────────────────── */
.bento-dark {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 56px);
}
.bento-head {
  width: min(1280px, 100%);
  margin: 0 auto clamp(36px, 5vw, 64px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.bento-head h2 { margin: 0; font: 800 clamp(30px, 3.4vw, 50px)/1.04 var(--font-display); letter-spacing: -0.03em; }
.bento-head p { margin: 10px 0 0; color: rgba(250, 250, 245, 0.62); font: 500 15.5px/1.5 "IBM Plex Sans", sans-serif; }
.bento-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}
.bento-tile { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.bento-tile .bt-visual, .bento-tile > img {
  aspect-ratio: 1 / 1.04;
  width: 100%;
  border-radius: var(--r-tile);
  object-fit: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
}
.bt-lime .bt-visual { background: var(--lime); color: var(--ink); }
.bt-count { font: 800 clamp(40px, 4.4vw, 64px)/1 var(--font-display); letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.bt-lime small { font: 700 13px/1 var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.7; }
.bt-paper .bt-visual { background: #fff; color: var(--ink); }
.bt-dateroll { display: grid; place-items: center; }
.bt-dateroll b {
  grid-area: 1 / 1;
  font: 800 clamp(22px, 2vw, 30px)/1 var(--font-display);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s var(--ease-soft);
  white-space: nowrap;
}
.bt-dateroll b.is-on { opacity: 1; transform: none; }
/* Hito tile — composed celebration in the landing's own language. */
.bt-hito .bt-visual { background: var(--mist); color: var(--ink); position: relative; gap: 16px; }
.hito-chip {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--lime);
  font: 700 12px/1 var(--font-mono);
  letter-spacing: 0.1em;
}
.hito-confetti { position: absolute; inset: 0; pointer-events: none; }
.hito-confetti i {
  position: absolute;
  width: 9px;
  height: 14px;
  border-radius: 3px;
  animation: hitoFloat 5.2s ease-in-out infinite;
}
.hc-0 { left: 12%; top: 14%; background: #cdb4ff; transform: rotate(18deg); }
.hc-1 { left: 26%; top: 7%; background: #ff9b21; transform: rotate(-24deg); animation-delay: 0.4s; }
.hc-2 { left: 46%; top: 5%; background: #ffb7d6; transform: rotate(8deg); animation-delay: 0.9s; }
.hc-3 { left: 66%; top: 9%; background: #beeff0; transform: rotate(-12deg); animation-delay: 0.2s; }
.hc-4 { left: 84%; top: 16%; background: #b6d300; transform: rotate(28deg); animation-delay: 0.7s; }
.hc-5 { left: 8%; top: 44%; background: #beeff0; transform: rotate(-30deg); animation-delay: 1.1s; }
.hc-6 { left: 88%; top: 46%; background: #cdb4ff; transform: rotate(14deg); animation-delay: 0.5s; }
.hc-7 { left: 14%; top: 74%; background: #ff9b21; transform: rotate(-8deg); animation-delay: 0.8s; }
.hc-8 { left: 78%; top: 76%; background: #ffb7d6; transform: rotate(22deg); animation-delay: 1.3s; }
.hc-9 { left: 50%; top: 84%; background: #b6d300; transform: rotate(-18deg); animation-delay: 0.3s; }
@keyframes hitoFloat { 0%, 100% { margin-top: 0; } 50% { margin-top: -9px; } }

/* Realistic iOS notification banner. */
.ios-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(340px, 90%);
  padding: 12px 14px;
  border-radius: 24px;
  background: rgba(252, 252, 250, 0.94);
  box-shadow: 0 18px 44px rgba(5, 5, 5, 0.22), inset 0 0 0 0.5px rgba(5, 5, 5, 0.07);
  color: var(--ink);
  text-align: left;
}
.ios-notif-icon { width: 38px; height: 38px; border-radius: 9px; flex: none; display: block; }
.ios-notif-copy { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ios-notif-copy b { font: 700 13.5px/1.25 "IBM Plex Sans", sans-serif; letter-spacing: -0.1px; }
.ios-notif-copy small { font: 500 13px/1.3 "IBM Plex Sans", sans-serif; color: #3f3f3a; }
.ios-notif-time { margin-left: auto; align-self: flex-start; font: 500 11.5px/1 "IBM Plex Sans", sans-serif; color: var(--muted); flex: none; }
.bt-caption { margin: 0; font: 600 14px/1.4 "IBM Plex Sans", sans-serif; color: rgba(250, 250, 245, 0.78); }
.bento-dark .bento-tile { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s var(--ease-soft); }
.bento-dark.is-inview .bento-tile { opacity: 1; transform: none; }
.bento-dark.is-inview .bento-tile:nth-child(2) { transition-delay: 0.08s; }
.bento-dark.is-inview .bento-tile:nth-child(3) { transition-delay: 0.16s; }
.bento-dark.is-inview .bento-tile:nth-child(4) { transition-delay: 0.24s; }

/* ── Allocation panel ───────────────────────────────────────────────── */
.cf-panel {
  background: var(--panel-bg);
  padding: clamp(72px, 10vw, 136px) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.cf-eyebrow {
  display: inline-block;
  font: 700 12px/1 var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.62;
}
.cf-panel-copy { max-width: 480px; justify-self: end; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cf-panel-copy h2 { margin: 0; font: 800 clamp(28px, 2.9vw, 42px)/1.08 var(--font-display); letter-spacing: -0.03em; }
.cf-panel-copy p { margin: 0; font: 500 15.5px/1.55 "IBM Plex Sans", sans-serif; color: #3f3f3a; }
.cf-panel-stage {
  background: #dededa;
  border-radius: var(--r-panel);
  min-height: clamp(380px, 46vw, 620px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px) clamp(28px, 4vw, 56px) 0;
}
.cf-panel-screen {
  width: min(330px, 72%);
  border-radius: var(--r-screen) var(--r-screen) 0 0;
  overflow: hidden;
  box-shadow: 0 -18px 60px rgba(5, 5, 5, 0.18);
  transform: translateY(9%);
  transition: transform 1.1s var(--ease-soft);
}
.cf-panel.is-inview .cf-panel-screen { transform: translateY(0); }
.cf-panel-screen .scene-app-media { width: 100%; height: auto; display: block; }

/* ── Duo cards ──────────────────────────────────────────────────────── */
.cf-duo {
  background: var(--paper);
  padding: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 18px;
  width: min(1440px, 100%);
  margin: 0 auto;
}
.cf-duo-card {
  position: relative;
  border-radius: var(--r-card);
  min-height: clamp(360px, 40vw, 480px);
  padding: clamp(26px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  overflow: hidden;
}
.cf-duo-card h2 { margin: 0; max-width: 420px; font: 800 clamp(24px, 2.3vw, 34px)/1.12 var(--font-display); letter-spacing: -0.025em; }
.cf-duo-lime { background: var(--lime); color: var(--ink); }
.cf-duo-ink { background: var(--ink); color: var(--paper); }
.cf-duo-zero {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  bottom: -0.16em;
  font: 800 clamp(96px, 11vw, 170px)/1 var(--font-display);
  letter-spacing: -0.05em;
  color: var(--ink);
  opacity: 0.9;
}
.cf-duo-ink .cf-toggle { margin-top: auto; }

.cf-toggle {
  display: inline-flex;
  width: 128px;
  height: 72px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.16);
  position: relative;
  transition: background 0.45s ease;
}
.cf-toggle-knob {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 58px;
  height: 58px;
  border-radius: var(--r-knob);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-soft);
}
.cf-toggle.is-on { background: var(--lime); }
.cf-toggle.is-on .cf-toggle-knob { transform: translateX(56px); }

/* ── Pote+ ──────────────────────────────────────────────────────────── */
.cf-plus { background: var(--paper); padding: clamp(72px, 10vw, 136px) clamp(20px, 4vw, 56px); }
.cf-plus-title {
  width: min(1280px, 100%);
  margin: 0 auto clamp(30px, 4vw, 52px);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font: 800 clamp(30px, 3.4vw, 50px)/1.05 var(--font-display);
  letter-spacing: -0.03em;
}
.plus-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--lime);
  font: 800 15px/1 "IBM Plex Sans", sans-serif;
  letter-spacing: -0.2px;
}
.cf-plus-grid {
  width: min(1280px, 100%);
  margin: 0 auto clamp(18px, 2.4vw, 26px);
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.cf-plus-tile { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.pt-visual {
  aspect-ratio: 1 / 0.82;
  border-radius: var(--r-tile);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  overflow: hidden;
}
.pt-0 .pt-visual { background: var(--ink); color: var(--paper); }
/* Sprint tile — five staggered pushes, the app's "empujones" rhythm. */
.pt-sprint { display: flex; flex-direction: column; align-items: center; gap: 22px; width: 100%; padding: 0 8%; }
.pt-sprint-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--r-pill);
  background: #ff9b21;
  color: var(--ink);
  font: 800 13.5px/1 "IBM Plex Sans", sans-serif;
  letter-spacing: -0.1px;
}
.pt-sprint-pushes { display: flex; gap: 8px; justify-content: center; width: 100%; }
.pt-sprint-pushes i {
  flex: 0 1 auto;
  padding: 10px 12px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(250, 250, 245, 0.24);
  color: rgba(250, 250, 245, 0.82);
  font: 700 12.5px/1 "IBM Plex Sans", sans-serif;
  font-style: normal;
  white-space: nowrap;
}
.cf-plus.is-inview .pt-sprint-pushes i {
  animation: ptPush 3.4s ease-in-out infinite;
  animation-delay: calc(var(--d) * 0.34s);
}
@keyframes ptPush {
  0%, 24%, 100% { background: transparent; color: rgba(250, 250, 245, 0.82); border-color: rgba(250, 250, 245, 0.24); transform: none; }
  8% { background: #ff9b21; color: var(--ink); border-color: #ff9b21; transform: translateY(-5px); }
}
.pt-1 .pt-visual { background: var(--mist); color: var(--ink); }
.pt-2 .pt-visual { background: var(--lime); color: var(--ink); }
.cf-plus-tile h3 { margin: 0; font: 800 clamp(18px, 1.6vw, 22px)/1.2 var(--font-display); letter-spacing: -0.02em; }
.cf-plus-tile p { margin: 0; font: 500 14px/1.5 "IBM Plex Sans", sans-serif; color: var(--muted); }
/* Widgets & recaps tile — home-screen widget + weekly recap cards. */
.pt-widget { position: relative; display: block; width: 100%; height: 100%; }
.pw-widget {
  position: absolute;
  left: 13%;
  top: 11%;
  width: 44%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: var(--r-chip);
  padding: clamp(10px, 1.2vw, 14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.18);
  transform: rotate(-3deg);
}
.pw-head { display: flex; align-items: center; gap: 6px; font: 700 12px/1 "IBM Plex Sans", sans-serif; letter-spacing: -0.1px; }
.pw-pct { font: 800 clamp(26px, 2.4vw, 34px)/1 var(--font-display); letter-spacing: -0.02em; }
.pw-chip {
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--lime);
  font: 700 10.5px/1 "IBM Plex Sans", sans-serif;
}
.pw-recap {
  position: absolute;
  right: 9%;
  bottom: 11%;
  min-width: 42%;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-chip);
  padding: clamp(12px, 1.3vw, 16px) clamp(14px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 44px rgba(5, 5, 5, 0.26);
  transform: rotate(2deg);
}
.pw-recap small { font: 700 10px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250, 250, 245, 0.55); }
.pw-recap b { font: 800 clamp(15px, 1.4vw, 18px)/1.15 var(--font-display); letter-spacing: -0.02em; white-space: nowrap; }
.pw-bars { display: inline-flex; align-items: flex-end; gap: 4px; margin-top: 5px; }
.pw-bars i { width: 12px; border-radius: 4px 4px 2px 2px; background: var(--lime); height: 9px; }
.pw-bars i:nth-child(2) { height: 16px; }
.pw-bars i:nth-child(3) { height: 23px; }

.cf-timeline {
  width: min(1280px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: var(--r-card);
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(26px, 4vw, 56px);
  align-items: center;
}
.cf-timeline-card ol { margin: 0; padding: 0; list-style: none; position: relative; }
.cf-timeline-card li {
  position: relative;
  display: grid;
  grid-template-columns: 22px minmax(0,1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 0;
}
.cf-timeline-card li + li { border-top: 1px dashed rgba(5, 5, 5, 0.12); }
.tl-dot { width: 12px; height: 12px; border-radius: 7px; background: rgba(5, 5, 5, 0.16); }
.cf-timeline-card li.is-now .tl-dot { background: var(--lime); box-shadow: 0 0 0 4px rgba(223, 255, 0, 0.35); }
.cf-timeline-card b { font: 800 16px/1.2 "IBM Plex Sans", sans-serif; letter-spacing: -0.2px; }
.cf-timeline-card small { font: 600 14px/1.2 "IBM Plex Sans", sans-serif; color: var(--muted); justify-self: end; }
.cf-timeline-copy { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.cf-timeline-copy h3 { margin: 0; font: 800 clamp(24px, 2.4vw, 34px)/1.1 var(--font-display); letter-spacing: -0.025em; }
.cf-timeline-copy p { margin: 0; font: 500 15px/1.55 "IBM Plex Sans", sans-serif; color: #3f3f3a; }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.cf-faq { background: var(--paper); padding: clamp(64px, 9vw, 120px) clamp(20px, 4vw, 56px); }
.cf-faq h2 {
  width: min(980px, 100%);
  margin: 0 auto 26px;
  font: 800 clamp(30px, 3.2vw, 46px)/1.05 var(--font-display);
  letter-spacing: -0.03em;
}
.cf-faq-tabs { width: min(980px, 100%); margin: 0 auto 8px; display: flex; gap: 10px; flex-wrap: wrap; }
.cf-faq-tab {
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(5, 5, 5, 0.22);
  background: transparent;
  color: var(--ink);
  font: 700 13.5px/1 "IBM Plex Sans", sans-serif;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.cf-faq-tab.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.cf-faq-list { width: min(980px, 100%); margin: 0 auto; }
.cf-faq-item { border-bottom: 1px solid rgba(5, 5, 5, 0.12); }
.cf-faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 2px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  font: 600 clamp(17px, 1.8vw, 23px)/1.25 "IBM Plex Sans", sans-serif;
  letter-spacing: -0.3px;
  cursor: pointer;
}
.cf-faq-plus { position: relative; flex: none; width: 22px; height: 22px; }
.cf-faq-plus::before, .cf-faq-plus::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 22px;
  height: 2.2px;
  border-radius: 2px;
  background: currentColor;
  transform: translateY(-50%);
  transition: transform 0.3s var(--ease-soft);
}
.cf-faq-plus::after { transform: translateY(-50%) rotate(90deg); }
.cf-faq-item.is-open .cf-faq-plus::after { transform: translateY(-50%) rotate(0deg); }
.cf-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-soft);
}
.cf-faq-a p {
  overflow: hidden;
  margin: 0;
  max-width: 720px;
  font: 500 15.5px/1.6 "IBM Plex Sans", sans-serif;
  color: #3f3f3a;
}
.cf-faq-item.is-open .cf-faq-a { grid-template-rows: 1fr; }
.cf-faq-item.is-open .cf-faq-a p { padding-bottom: 24px; }

/* ── Support ────────────────────────────────────────────────────────── */
.cf-support {
  background: var(--paper);
  padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 56px) clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: minmax(260px,0.76fr) minmax(0,1.54fr);
  gap: clamp(36px, 6vw, 92px);
  width: min(1440px, 100%);
  margin: 0 auto;
  align-items: center;
}
.cf-support-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 430px;
}
.cf-support-copy h2 {
  margin: 0;
  font: 800 clamp(38px, 4.4vw, 68px)/0.98 var(--font-display);
  letter-spacing: -0.045em;
}
.cf-money-token {
  white-space: nowrap;
}
.cf-support-copy p {
  margin: 0;
  max-width: 410px;
  font: 500 clamp(16px, 1.35vw, 19px)/1.55 "IBM Plex Sans", sans-serif;
  color: #41413d;
}
.cf-support-proof {
  display: block;
  width: 100%;
  padding-top: 18px;
  border-top: 1.5px solid rgba(5, 5, 5, 0.18);
  font: 650 14px/1.45 "IBM Plex Sans", sans-serif;
  color: var(--ink);
}

.cf-plan-demo {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(22px, 2.5vw, 34px);
  border-radius: clamp(30px, 3vw, 44px);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 0 #cdb4ff;
  opacity: 0;
  transform: translateY(24px) rotate(0.35deg);
  transition: opacity 0.7s ease, transform 0.7s var(--ease-soft);
}
.cf-support.is-inview .cf-plan-demo { opacity: 1; transform: none; }
.cf-plan-demo-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.cf-plan-demo-head > div { display: grid; gap: 7px; min-width: 0; }
.cf-plan-demo-label {
  font: 700 11px/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.56);
}
.cf-plan-demo-head > div > strong {
  font: 650 15px/1.35 "IBM Plex Sans", sans-serif;
  color: var(--paper);
}
.cf-plan-demo-head > b {
  display: flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
  font: 800 clamp(30px, 3.3vw, 48px)/0.9 var(--font-display);
  letter-spacing: -0.04em;
  color: var(--lime);
}
.cf-plan-demo-head > b small {
  font: 650 12px/1 var(--font-mono);
  letter-spacing: 0;
}
.cf-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 5px;
  padding: 5px;
  border-radius: 20px;
  background: rgba(250, 250, 245, 0.1);
}
.cf-mode-tabs button {
  min-width: 0;
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: rgba(250, 250, 245, 0.76);
  font: 700 clamp(11px, 1.05vw, 13px)/1.15 "IBM Plex Sans", sans-serif;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-soft);
}
.cf-mode-tabs button:hover { color: var(--paper); }
.cf-mode-tabs button:active { transform: scale(0.98); }
.cf-mode-tabs button[aria-selected="true"] { background: var(--lime); color: var(--ink); }
.cf-mode-tabs button:focus-visible { outline: 3px solid var(--paper); outline-offset: 3px; }

.cf-mode-panel {
  margin-top: 18px;
  padding: clamp(16px, 2vw, 24px);
  border-radius: 28px;
  background: var(--paper);
  color: var(--ink);
}
.cf-mode-hint {
  min-height: 2.7em;
  margin: 0 0 18px;
  max-width: 640px;
  font: 750 clamp(17px, 1.65vw, 22px)/1.28 var(--font-display);
  letter-spacing: -0.015em;
}
.cf-allocation-list { display: grid; gap: 10px; }
.cf-allocation-row {
  display: grid;
  grid-template-columns: 48px minmax(0,1fr) auto;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 11px 14px 11px 11px;
  border-radius: 20px;
  background: #fff;
}
.cf-allocation-main { display: grid; gap: 8px; min-width: 0; }
.cf-allocation-main > span:first-child {
  overflow: hidden;
  font: 700 14px/1.15 "IBM Plex Sans", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cf-allocation-row > strong {
  min-width: 56px;
  text-align: right;
  font: 800 clamp(17px, 1.7vw, 22px)/1 var(--font-display);
  letter-spacing: -0.02em;
}
.cf-allocation-track {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: #e4e4dd;
}
.cf-allocation-track i {
  display: block;
  width: var(--allocation);
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  transition: width 0.6s var(--ease-soft);
}
.cf-allocation-row.tone-lavender .cf-allocation-track i { background: #9c7ce2; }
.cf-allocation-row.tone-orange .cf-allocation-track i { background: #ff9b21; }
.cf-plan-demo-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px 14px;
  border-bottom: 1px solid rgba(250, 250, 245, 0.18);
}
.cf-plan-demo-total span {
  font: 700 11px/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 250, 245, 0.58);
}
.cf-plan-demo-total strong { font: 800 27px/1 var(--font-display); color: var(--paper); }
.cf-plan-demo-tier {
  margin: 14px 2px 0;
  font: 500 13.5px/1.45 "IBM Plex Sans", sans-serif;
  color: rgba(250, 250, 245, 0.72);
}

/* ── Footer ─────────────────────────────────────────────────────────── */
.cf-footer { background: var(--ink); color: var(--paper); padding: clamp(72px, 9vw, 120px) clamp(20px, 4vw, 56px) 34px; }
.cf-footer-cta {
  width: min(1280px, 100%);
  margin: 0 auto clamp(48px, 7vw, 88px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
.cf-footer-cta h2 { margin: 0; font: 800 clamp(38px, 5vw, 74px)/1 var(--font-display); letter-spacing: -0.035em; }
.cf-footer-grid {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.3fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}
.cf-qr { margin: 0; position: relative; max-width: 420px; }
.cf-qr-code { width: 100%; height: auto; display: block; color: #fff; }
.cf-qr-tile {
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  aspect-ratio: 1;
  border-radius: 24%;
  background: var(--lime);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px var(--ink);
  pointer-events: none;
}
.cf-qr figcaption { margin-top: 16px; font: 600 13px/1.4 "IBM Plex Sans", sans-serif; color: rgba(250, 250, 245, 0.55); }
.cf-footer-cols { display: grid; grid-template-columns: repeat(auto-fit,minmax(150px,1fr)); gap: 28px; }
.cf-footer-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.cf-footer-col > span { font: 700 12px/1 var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250, 250, 245, 0.4); }
.cf-footer-col a { color: var(--paper); text-decoration: none; font: 600 15.5px/1.3 "IBM Plex Sans", sans-serif; }
.cf-footer-col a:hover { color: var(--lime); }
.cf-footer-trust { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; }
.cf-footer-trust small { font: 600 12.5px/1.4 "IBM Plex Sans", sans-serif; color: rgba(250, 250, 245, 0.5); }
.cf-footer .lang-trigger { background: #121210; color: #fff; border-color: rgba(255, 255, 255, 0.2); }
.cf-footer .lang-menu { background: #121210; color: #fff; bottom: calc(100% + 8px); top: auto; border-color: rgba(255, 255, 255, 0.14); }
.cf-footer .lang-mi { color: #fff; }
.cf-footer .lang-mi-code { color: rgba(255, 255, 255, 0.5); }
.cf-footer .lang-mi:hover, .cf-footer .lang-mi.on { background: rgba(255, 255, 255, 0.08); }
.cf-footer .launch-helper { color: rgba(250, 250, 245, 0.55); }
.cf-footer-bottom {
  width: min(1280px, 100%);
  margin: clamp(48px, 7vw, 88px) auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font: 600 12.5px/1.4 "IBM Plex Sans", sans-serif;
  color: rgba(250, 250, 245, 0.5);
}

/* ── Media fallback ─────────────────────────────────────────────────── */
.scene-app-media { display: block; width: 100%; height: 100%; object-fit: cover; }
.media-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--paper);
  color: var(--muted);
  font: 600 13px/1.4 "IBM Plex Sans", sans-serif;
  text-align: center;
  padding: 18px;
}

/* ── Responsive ─────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .story-detail { max-width: 300px; }
}
@media (max-width: 919px) {
  .story-portals { display: none; }
  .story-section { height: auto; min-height: 0; padding: 72px 20px 56px; }
  .story-grid { grid-template-columns: minmax(0,1fr); gap: 26px; }
  .story-slot { display: none; }
  .story-media { order: 2; }
  .story-detail { order: 3; }
  .story-inline {
    display: block;
    width: min(74vw, 320px);
    margin: 0 auto;
    aspect-ratio: 540 / 1174;
    border-radius: 12.5%/5.8%;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(5, 5, 5, 0.24);
    background: var(--ink);
  }
  .story-section[data-theme="lime"] { background: var(--lime); }
  .story-section[data-theme="paper"] { background: var(--paper); }
  .story-section[data-theme="mist"] { background: var(--mist); }
  .story-section[data-theme="ink"] { background: var(--ink); }
  .story-detail { justify-self: start; max-width: 520px; }
  .story-h { font-size: clamp(30px, 8.4vw, 40px); }
  .bento-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .cf-panel { grid-template-columns: minmax(0,1fr); }
  .cf-panel-copy { justify-self: start; }
  .cf-plus-grid { grid-template-columns: minmax(0,1fr); }
  .cf-timeline { grid-template-columns: minmax(0,1fr); }
  .cf-support { grid-template-columns: minmax(0,1fr); }
  .cf-support-copy { max-width: 620px; }
  .cf-footer-grid { grid-template-columns: minmax(0,1fr); }
  .cf-menu-body { grid-template-columns: minmax(0,1fr); }
  .cf-intro-copy { width: min(60vw, 560px); }
  .cf-intro-h1 { font-size: clamp(48px, 10.5vw, 78px); }
}
@media (max-width: 719px) {
  .launch-cta, .store-button { width: 100%; }
  /* !important: the form sets flex inline; on wrap the button must fill the pill. */
  .wl-pill .wl-btn { flex: 1 1 100% !important; }
  .bento-grid { grid-template-columns: minmax(0,1fr); }
  .cf-duo { grid-template-columns: minmax(0,1fr); }
  .cf-header-inner { padding: 12px 14px; }
  .cf-pill { padding: 0 16px; font-size: 13px; }
  .cf-intro { min-height: 700px; }
  .cf-intro-world { inset: -1.5%; }
  .cf-intro-world img { object-position: center; transform: scale(1.018); }
  .cf-intro-copy {
    top: clamp(112px, 15svh, 138px);
    left: 20px;
    width: min(86vw, 430px);
    gap: 14px;
  }
  .cf-intro-h1 { font-size: clamp(48px, 14vw, 64px); line-height: 0.94; }
  .store-badge-img { height: 52px; }
  .cf-intro-sub { max-width: 335px; font-size: 15px; line-height: 1.42; }
  .cf-scroll-hint {
    right: auto;
    bottom: max(26px, calc(env(safe-area-inset-bottom) + 12px));
    left: 20px;
    transform: none;
    background: rgba(246, 241, 231, 0.94);
  }
  .cf-support { padding-inline: 16px; gap: 38px; }
  .cf-support-copy { padding-inline: 4px; }
  .cf-plan-demo {
    padding: 18px;
    border-radius: 30px;
    box-shadow: 0 8px 0 #cdb4ff;
  }
  .cf-plan-demo-head { gap: 14px; margin-bottom: 20px; }
  .cf-plan-demo-head > div > strong { font-size: 13px; }
  .cf-plan-demo-head > b { flex-direction: column; align-items: flex-end; gap: 4px; }
  .cf-mode-tabs button { padding-inline: 6px; }
  .cf-mode-panel { padding: 15px; border-radius: 23px; }
  .cf-mode-hint { min-height: 3.25em; margin-bottom: 14px; }
  .cf-allocation-row { grid-template-columns: 48px minmax(0,1fr) auto; gap: 10px; padding-right: 11px; }
  .cf-allocation-row > strong { min-width: 48px; }
  .cf-plan-demo-tier { font-size: 13px; }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cf-scroll-hint span, .pote-spin, .hito-confetti i, .pt-sprint-pushes i { animation: none; }
  .cf-intro-world img { transform: none; transition: none; }
  .story-portals { display: none; }
  .story-slot { display: none; }
  .story-inline { display: block; width: min(74vw, 320px); margin: 0 auto; aspect-ratio: 540 / 1174; border-radius: 12.5%/5.8%; overflow: hidden; }
  .story-section { height: auto; min-height: 0; }
  body, .bento-dark .bento-tile, .cf-plan-demo, .cf-allocation-track i, .cf-mode-tabs button, .cf-panel-screen, .cf-toggle, .cf-toggle-knob, .bt-dateroll b { transition: none; }
  .bento-dark .bento-tile, .cf-plan-demo { opacity: 1; transform: none; }
  .cf-panel-screen { transform: none; }
}

/* Spinner for the waitlist button (used by landing-form.jsx). */
.pote-spin { animation: poteSpin 0.8s linear infinite; }
@keyframes poteSpin { to { transform: rotate(360deg); } }
