:root {
  --bg: #0a0a0d;
  --fg: #f2f2f4;
  --muted: #8a8a93;
  --muted-2: #5a5a62;
  --line: rgba(255, 255, 255, 0.10);
  --card: rgba(255, 255, 255, 0.04);
  --card-2: rgba(255, 255, 255, 0.07);
  --radius: 22px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --col: 1040px; /* center column */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- CENTER COLUMN ---------- */
.col {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- TOP BAR ---------- */
/* The brand lives in the page's opening frame, then fades away while the
   action cluster grows into a persistent floating download control. */
.topbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 120;
  padding: 0 22px;
  pointer-events: none;
  --nav-progress: 0;
}
.topbar-shell {
  width: 100%;
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.topbar-brand {
  pointer-events: auto;
  position: relative;
  z-index: 1;
  transform-origin: left top;
  transform:
    translate3d(0, calc(var(--nav-progress) * -36px), 0)
    scale(calc(1 - (var(--nav-progress) * 0.08)));
  opacity: calc(1 - (var(--nav-progress) * 1.3));
  transition: opacity 0.22s linear;
}
.topbar-actions-wrap {
  pointer-events: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  /* on scroll, clear the content column: 32px side padding + 10px past it */
  transform: translate3d(calc(var(--nav-progress) * 42px), 0, 0);
}
.topbar-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: stretch;
  gap: 0;
  width: var(--topbar-controls-width, fit-content);
  padding: 5px;
  border-radius: 21px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.022);
  backdrop-filter: saturate(118%) blur(14px);
  -webkit-backdrop-filter: saturate(118%) blur(14px);
  box-shadow: 0 5px 18px rgba(4, 18, 32, 0.1);
  transform-origin: right top;
  transform:
    translate3d(0, calc(var(--nav-progress) * 6px), 0)
    scale(calc(1 + (var(--nav-progress) * 0.055)));
  max-height: 56px;
  overflow: hidden;
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    transform 0.32s var(--ease),
    max-height 0.46s var(--ease),
    padding 0.36s var(--ease);
}
.topbar-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  width: max-content;
  padding-right: 12px;
}

/* Menu trigger: floating control that becomes slightly more present on scroll */
.nav-burger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 38px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.28s var(--ease),
    transform 0.28s var(--ease);
}
.nav-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.nav-lines span {
  display: block;
  height: 2.5px;
  border-radius: 999px;
  background: var(--fg);
}
.nav-lines span:first-child { width: 14px; }
.nav-lines span:nth-child(2) { width: 18px; }
.nav-lines span:last-child { width: 14px; }
.nav-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: rotate(-90deg) scale(0.5);
  transition: opacity 0.25s var(--ease), transform 0.3s var(--ease);
}
.nav-x span {
  position: absolute;
  width: 12px;
  height: 2.5px;
  border-radius: 999px;
  background: var(--fg);
}
.nav-x span:first-child { transform: rotate(45deg); }
.nav-x span:last-child { transform: rotate(-45deg); }
.topbar.open .nav-lines {
  opacity: 0;
  transform: rotate(90deg) scale(0.5);
}
.topbar.open .nav-x {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Action cluster gets a little more "stuck" presence once the brand is gone */
.topbar.compact .topbar-actions {
  box-shadow: 0 8px 24px rgba(4, 18, 32, 0.14);
}
.topbar.open .topbar-actions {
  max-height: 332px;
  padding: 5px 5px 10px;
}
.topbar.stuck .btn-nav-download {
  transform: translateZ(0);
}
.topbar.stuck .topbar-brand {
  opacity: 0;
  pointer-events: none;
}
.topbar.stuck .topbar-actions {
  background: rgba(255, 255, 255, 0.022);
  border-color: rgba(255, 255, 255, 0.18);
  padding: 5px;
}
.topbar.stuck.open .topbar-actions {
  padding: 5px 5px 11px;
}
.topbar.stuck .nav-burger {
  background: transparent;
  transform: none;
}


/* Expanding menu lives inside the same glass shell */
.topbar-menu {
  display: grid;
  gap: 0;
  width: 100%;
  min-width: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0 3px;
  border-top: 1px solid rgba(255, 255, 255, 0);
  transform: translateY(-10px);
  transition:
    max-height 0.45s var(--ease),
    opacity 0.35s var(--ease),
    padding 0.45s var(--ease),
    margin-top 0.45s var(--ease),
    border-color 0.32s var(--ease),
    transform 0.35s var(--ease);
}
.topbar.open .topbar-menu {
  max-height: 252px;
  opacity: 1;
  margin-top: 10px;
  padding: 8px 3px 0;
  border-top-color: rgba(255, 255, 255, 0.1);
  transform: translateY(0);
}
.topbar-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 11px 6px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    color 0.25s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    opacity 0.34s var(--ease),
    transform 0.38s var(--ease);
}
.topbar-menu a:last-child {
  border-bottom: 0;
  padding-bottom: 5px;
}
.topbar.open .topbar-menu a {
  opacity: 1;
  transform: translateY(0);
}
.topbar.open .topbar-menu a:nth-child(1) { transition-delay: 40ms; }
.topbar.open .topbar-menu a:nth-child(2) { transition-delay: 95ms; }
.topbar.open .topbar-menu a:nth-child(3) { transition-delay: 150ms; }
.topbar.open .topbar-menu a:nth-child(4) { transition-delay: 205ms; }
.topbar.open .topbar-menu a:nth-child(5) { transition-delay: 260ms; }
.menu-marquee {
  position: relative;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10px, #000 calc(100% - 10px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10px, #000 calc(100% - 10px), transparent 100%);
}
.menu-marquee-measure {
  display: block;
  visibility: hidden;
}
.menu-marquee-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: grid;
  align-items: center;
  white-space: nowrap;
}
.menu-marquee-track span {
  grid-area: 1 / 1;
  display: inline-block;
  transition:
    transform 0.32s cubic-bezier(0.22, 0.84, 0.28, 1),
    opacity 0.18s ease,
    color 0.32s ease;
  will-change: transform, opacity;
}
.menu-marquee-track span:first-child {
  opacity: 1;
  transform: translateX(0);
}
.menu-marquee-track span:last-child {
  color: var(--fg);
  opacity: 0;
  transform: translateX(18px);
}
.topbar-menu a:hover .menu-marquee-track span:first-child,
.topbar-menu a:focus-visible .menu-marquee-track span:first-child {
  opacity: 0;
  transform: translateX(-18px);
}
.topbar-menu a:hover .menu-marquee-track span:last-child,
.topbar-menu a:focus-visible .menu-marquee-track span:last-child {
  opacity: 1;
  transform: translateX(0);
}
.topbar-menu a:hover {
  color: var(--fg);
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}
.topbar-menu a:focus-visible {
  outline: none;
  color: var(--fg);
}
.topbar-menu a:focus-visible .menu-marquee {
  color: var(--fg);
}
.menu-icon-marquee {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: 18px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.54);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5px, #000 calc(100% - 5px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5px, #000 calc(100% - 5px), transparent 100%);
}
.menu-icon-track {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
}
.menu-icon-track svg {
  grid-area: 1 / 1;
  width: 16px;
  height: 16px;
  display: block;
  transition:
    transform 0.32s cubic-bezier(0.22, 0.84, 0.28, 1),
    opacity 0.18s ease,
    stroke 0.32s ease;
  will-change: transform, opacity;
}
.menu-icon-track svg:first-child {
  opacity: 1;
  transform: translateX(0);
}
.menu-icon-track svg:last-child {
  opacity: 0;
  transform: translateX(12px);
}
.topbar-menu a:hover .menu-icon-track svg:first-child,
.topbar-menu a:focus-visible .menu-icon-track svg:first-child {
  opacity: 0;
  transform: translateX(-12px);
}
.topbar-menu a:hover .menu-icon-track svg:last-child,
.topbar-menu a:focus-visible .menu-icon-track svg:last-child {
  opacity: 1;
  transform: translateX(0);
}
.topbar-menu a:hover .menu-icon-marquee,
.topbar-menu a:focus-visible .menu-icon-marquee {
  color: rgba(255, 255, 255, 0.86);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-wordmark { height: 32px; width: auto; display: block; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; padding: 10px 24px; border-radius: 999px;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease);
  font-size: 14px; cursor: pointer;
  border: 1px solid var(--line);
  color: var(--fg);
  background: rgba(255, 255, 255, 0.06);
}
.btn:hover { background: rgba(255, 255, 255, 0.12); }

/* Nav download: custom white App Store pill around transparent artwork */
.btn-nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(10, 14, 22, 0.14);
  padding: 4px 8px;
  line-height: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 18px rgba(0, 0, 0, 0.18);
  transition:
    background 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
}
.btn-nav-download:hover {
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 12px 22px rgba(0, 0, 0, 0.2);
}
.btn-app-store-badge {
  display: block;
  width: 92px;
  height: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Casino-wheel text roll: each char is a 2-high column that rolls up on
   hover, staggered left to right. Columns are built by script.js. */
.roll {
  display: inline-flex;
  overflow: hidden;
  line-height: 1;
  height: 1em;
  align-items: flex-start;
}
.roll-char {
  display: inline-flex;
  flex-direction: column;
  transition: transform 0.38s var(--ease);
  transition-delay: calc(var(--char-i, 0) * 28ms);
}
.roll-char span {
  height: 1em;
  line-height: 1;
  display: block;
}
/* full line-height gap between the two copies so they are never visible
   at the same time mid-roll */
@media (prefers-reduced-motion: reduce) {
  .roll-char { transition: none; }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- HERO ---------- */
.hero {
  min-height: 80vh;
  padding: 150px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
}
.hero-headline {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-align: left;
  margin: 0;
}

/* ---------- STAGE: phone right, callouts left ---------- */
.stage {
  padding: 80px 0 130px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
/* Callout rail: each item pins to the height of the card it describes in
   the screenshot (via --top), its hairline draws in on reveal and tucks
   under the bezel — Dropset-style. */
.rail {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  justify-self: stretch;
  align-self: stretch;
  /* lines cross over the bezel and land on their cards */
  z-index: 2;
  pointer-events: none;
}
.rail-item {
  position: absolute;
  top: var(--top, 0);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted-2);
  transition: color 0.4s var(--ease);
  transition-delay: calc(var(--i, 0) * 120ms);
}
.rail-item.active { color: var(--fg); }
.rail-label {
  white-space: nowrap;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
/* line sits ABOVE the label, Dropset-style, and crosses the bezel to
   point at the actual card (--reach per item) */
.rail-line {
  position: relative;
  width: calc(100% + var(--reach, 72px));
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s var(--ease) calc(var(--i, 0) * 140ms),
    opacity 0.4s var(--ease);
}
/* terminal dot where the line lands */
.rail-line::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
}
.rail-item.in .rail-line { transform: scaleX(1); }
.rail-item.active .rail-line { opacity: 0.85; }
/* support copy: expands under the active callout, collapses when it
   hands off to the next one */
.rail-sub {
  margin: 0;
  max-width: 38ch;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.5s var(--ease), opacity 0.4s var(--ease),
    transform 0.5s var(--ease);
}
.rail-item.active .rail-sub {
  max-height: 70px;
  opacity: 1;
  transform: translateY(0);
}

/* iPhone */
.stage-phone { justify-self: end; }
.iphone {
  position: relative;
  width: 375px;
  height: auto;
  border-radius: 50px;
  background: linear-gradient(180deg, #2a2b32 0%, #1a1b22 100%);
  padding: 6px;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 0 0 2px rgba(0, 0, 0, 0.5);
}
.iphone-btn {
  position: absolute;
  background: linear-gradient(180deg, #4a4b54, #2a2b32);
  border-radius: 2px;
}
.iphone-btn.vol1 { left: -3px; top: 130px; width: 3px; height: 28px; }
.iphone-btn.vol2 { left: -3px; top: 175px; width: 3px; height: 50px; }
.iphone-btn.power { right: -3px; top: 160px; width: 3px; height: 70px; }
.iphone-body {
  position: relative;
  width: 100%;
  /* height follows the real capture's ratio so nothing gets cropped */
  aspect-ratio: 1206 / 2622;
  background: #050507;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.iphone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 44px;
}
.iphone-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.iphone-status {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 26px 0;
  font-size: 13px; font-weight: 600; color: var(--fg);
  height: 50px;
}
.status-time { letter-spacing: -0.02em; }
.status-icons { display: inline-flex; align-items: center; gap: 6px; color: var(--fg); }
.status-signal {
  width: 17px; height: 11px;
  background:
    linear-gradient(to top, currentColor 25%, transparent 25%) 0 100%/3px 25% no-repeat,
    linear-gradient(to top, currentColor 50%, transparent 50%) 5px 100%/3px 50% no-repeat,
    linear-gradient(to top, currentColor 75%, transparent 75%) 10px 100%/3px 75% no-repeat,
    linear-gradient(to top, currentColor 100%, transparent 100%) 15px 100%/3px 100% no-repeat;
}
.status-wifi { width: 17px; height: 12px; display: inline-flex; }
.status-wifi svg { width: 100%; height: 100%; }
.status-battery {
  width: 24px; height: 11px;
  border: 1px solid currentColor; border-radius: 3px;
  position: relative; padding: 1px;
}
.status-battery::after {
  content: ""; position: absolute; right: -3px; top: 3px;
  width: 2px; height: 4px; background: currentColor; border-radius: 0 1px 1px 0;
}
.status-battery i { display: block; width: 80%; height: 100%; background: currentColor; border-radius: 1px; }

.iphone-screen {
  position: relative;
  padding: 0 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: calc(100% - 50px);
}

/* Screen content */
.scr-head { display: flex; justify-content: space-between; align-items: center; padding: 4px 4px 8px; }
.scr-title { font-size: 28px; font-weight: 800; letter-spacing: -0.025em; }
.scr-actions { display: inline-flex; gap: 8px; }
.scr-btn { width: 32px; height: 32px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); display: inline-block; }
.scr-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.scr-card {
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  border-radius: 16px; padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
  min-height: 120px;
}
.scr-ring { width: 50px; height: 50px; position: relative; display: inline-flex; align-items: center; justify-content: center; }
.scr-ring svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.scr-ring-num { font-size: 16px; font-weight: 700; position: relative; }
.scr-card-title { font-weight: 700; font-size: 13px; margin-top: auto; }
.scr-card-title.small { font-size: 12px; color: var(--muted); }
.scr-card-sub { font-size: 10px; color: var(--muted); }
.scr-big { font-size: 32px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.scr-big.sm { font-size: 22px; }
.scr-big.xs { font-size: 15px; font-weight: 700; }
.scr-unit { color: var(--muted); font-weight: 700; font-size: 0.55em; margin-left: 2px; }
.scr-wide { background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 16px; padding: 12px; }
.scr-months { display: flex; justify-content: space-around; font-size: 10px; color: var(--muted); margin-bottom: 8px; }
.scr-dots { display: grid; grid-template-columns: repeat(15, 1fr); gap: 3px; margin-bottom: 10px; }
.scr-dots span { width: 5px; height: 5px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); justify-self: center; }
.scr-dots span.on { background: var(--fg); }
.scr-row-mini { display: flex; align-items: center; gap: 8px; border-top: 1px solid var(--line); padding-top: 8px; }
.scr-mini-num { width: 26px; height: 26px; border-radius: 999px; background: rgba(255, 255, 255, 0.08); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 12px; }
.scr-mini-text { display: flex; flex-direction: column; gap: 1px; }
.scr-row { display: flex; justify-content: space-between; align-items: center; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 16px; padding: 12px; }

.scr-list { list-style: none; margin: 0; padding: 0 2px; display: flex; flex-direction: column; gap: 0; }
.scr-list li { display: flex; align-items: center; gap: 10px; padding: 10px 4px; border-bottom: 1px solid var(--line); font-size: 12px; }
.scr-list li:last-child { border-bottom: none; }
.scr-tag { width: 8px; height: 8px; border-radius: 2px; }
.scr-tag.green { background: #c6f871; }
.scr-tag.red { background: #ff7a85; }
.scr-list li span:nth-child(2) { flex: 1; }
.scr-amt { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 12px; }
.scr-amt.up { color: #c6f871; }
.scr-amt.down { color: #ff7a85; }

/* Home screen: balance / weekly budget / This Week / tab bar */
.scr-split { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.scr-balance { display: flex; flex-direction: column; gap: 4px; }
.scr-balance .scr-big { margin: 2px 0 4px; }
.scr-budget { display: flex; flex-direction: column; gap: 8px; }
.scr-pill {
  background: var(--fg); color: var(--bg);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  white-space: nowrap; flex-shrink: 0;
}
.scr-cat { display: flex; align-items: center; gap: 6px; font-size: 10px; color: var(--muted); }
.scr-cat-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--fg); opacity: 0.85; }
.scr-days { display: flex; gap: 4px; margin-top: 8px; }
.scr-day {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 7px 0 8px;
  border: 1px solid var(--line); border-radius: 12px;
}
.scr-day i { font-style: normal; font-size: 7px; letter-spacing: 0.06em; color: var(--muted); }
.scr-day b { font-size: 12px; font-weight: 700; font-variant-numeric: tabular-nums; }
.scr-day u { text-decoration: none; width: 4px; height: 4px; border-radius: 999px; background: transparent; }
.scr-day u.on { background: var(--fg); opacity: 0.7; }
.scr-day.active { background: var(--fg); border-color: var(--fg); }
.scr-day.active i, .scr-day.active b { color: var(--bg); }
.scr-tabbar {
  margin-top: auto;
  display: flex; justify-content: space-around; align-items: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line);
  border-radius: 18px; padding: 11px 6px;
  font-size: 9px; color: var(--muted);
}
.scr-tabbar .active { color: var(--fg); font-weight: 700; }

/* ---------- BIG HEADLINES ---------- */
.big-section {
  padding: 150px 0 90px;
}
.big-headline {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
  color: var(--fg);
  text-align: left;
}
.big-line { display: block; will-change: transform; transition: transform 1.2s var(--ease); }
.big-line.dim { color: var(--fg); }

/* Start state: lines offset off-axis. Settle to 0 via .in class. */
[data-shift] .big-line.shift-l { transform: translateX(-30vw); }
[data-shift] .big-line.shift-r { transform: translateX(30vw); }
[data-shift].in .big-line.shift-l,
[data-shift].in .big-line.shift-r { transform: translateX(0); }

.big-sub {
  font-size: clamp(20px, 2.4vw, 28px);
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 64px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.paragraph {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--muted);
  text-align: left;
  max-width: 80%;
  margin: 96px 0 0;
}

/* ---------- BENTO (flex columns, asymmetric heights) ---------- */
.bento {
  display: flex;
  gap: 16px;
  margin-top: 0;
  align-items: stretch;
}
.bento-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bento-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

/* short cards are fixed-height; tall cards grow to fill the column */
.tall-l   { flex: 1 1 auto; }
.short-l  { flex: 0 0 248px; }
.short-r  { flex: 0 0 180px; }
.tall-r   { flex: 1 1 auto; min-height: 420px; }
.short-rr { flex: 0 0 248px; }

/* vertical (icon centered top) cards */
.bento-art {
  color: var(--fg);
}
.bento-art.centered {
  width: 140px; height: 140px;
  margin: 8px auto auto;
  display: flex; align-items: center; justify-content: center;
}
.bento-art.centered.sm { width: 64px; height: 64px; }
.bento-art svg { width: 100%; height: 100%; }
.bento-art.big-num {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  width: auto; height: auto;
  margin-top: 6px;
  text-align: center;
  margin-bottom: 18px;
}

/* horizontal (icon left, text right) cards */
.bento-card.horizontal {
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: flex-start;
}
.bento-card.horizontal .h-art {
  width: 56px; height: 56px; flex-shrink: 0;
  color: var(--fg);
}
.bento-card.horizontal .h-art svg { width: 100%; height: 100%; }
.bento-card.horizontal .h-text { display: flex; flex-direction: column; gap: 4px; }

/* 3-minute setup: 2-up — big stopwatch left, copy right */
.stopwatch-card.horizontal { align-items: center; gap: 24px; }
.sw-art {
  flex-shrink: 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
}
.sw-art svg { height: 100%; width: auto; }
.stopwatch-card .bento-title { font-size: 20px; letter-spacing: -0.02em; }
.stopwatch-card .h-text { display: flex; flex-direction: column; gap: 6px; }
.sw-hand { transform-origin: 30px 35px; animation: sw-sweep 2.6s linear infinite; }
@keyframes sw-sweep { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .sw-hand { animation: none; }
}

/* text */
.bento-title { font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin: 0; }
.bento-sub { color: var(--muted); font-size: 14px; line-height: 1.5; margin: 0; }
.tall-r .bento-title, .tall-l .bento-title { font-size: 20px; letter-spacing: -0.02em; }
.tall-r .bento-sub, .tall-l .bento-sub { max-width: 360px; font-size: 14.5px; }

/* ----- Calendar card: real penii UI floating on the grey card ----- */
.calendar-card { justify-content: space-between; gap: 22px; }
.cal-float {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 2px;
}
.cal-card,
.cal-detail {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.cal-head span { color: var(--muted-2); font-size: 17px; }
.cal-weekdays,
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-weekdays {
  margin-bottom: 6px;
  font-size: 10px;
  color: var(--muted-2);
  text-align: center;
}
.cal-grid { gap: 3px; }
.cal-cell {
  aspect-ratio: 1 / 0.96;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 5px 6px;
}
.cal-cell.empty { border-color: transparent; }
.cal-cell.today { background: rgba(255, 255, 255, 0.14); border-color: transparent; }
.cal-cell b { font-size: 10px; font-weight: 600; line-height: 1; }
.cal-cell em { font-style: normal; font-size: 8px; color: var(--muted); line-height: 1; }
.cal-cell .pay { display: inline-block; width: 4px; height: 4px; border-radius: 999px; background: #63a9ff; margin-left: 2px; vertical-align: middle; }
.cal-detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-detail-head b { font-size: 16px; letter-spacing: -0.01em; }
.cal-chip {
  background: var(--fg);
  color: var(--bg);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}
.cal-bal { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cal-bal > div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cal-bal span { font-size: 11px; color: var(--muted); }
.cal-bal b { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cal-hint { margin-top: 8px; font-size: 11px; color: var(--muted-2); }
.cal-actions { display: flex; gap: 7px; }
.cal-act {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--muted);
}
.cal-act svg { width: 15px; height: 15px; }
.cal-txn-head { margin: 14px 0 8px; font-size: 13px; font-weight: 700; }
.cal-txn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.cal-txn em { font-style: normal; font-size: 11px; font-weight: 500; color: var(--muted); }
.cal-txn b { font-variant-numeric: tabular-nums; }
.cal-edit {
  font-style: normal;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted-2);
  margin-left: 5px;
  vertical-align: middle;
}
.cal-today-pill {
  width: fit-content;
  margin-top: 12px;
  background: var(--fg);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.cal-text { display: flex; flex-direction: column; gap: 6px; }

/* ----- Quick add: the Apple shortcut card that pops up ----- */
.quickadd-card { justify-content: space-between; gap: 18px; }
.qa-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 8px;
}
/* faithful recreation of the iOS Shortcuts "Ask for Input" dialog */
.qa-card {
  width: 100%;
  max-width: 320px;
  background: #1c1c1e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.62);
  transform: scale(0.88) translateY(10px);
  opacity: 0;
  transition: transform 0.6s var(--ease) 0.1s, opacity 0.5s var(--ease) 0.1s;
}
.quickadd-card.in .qa-card { transform: scale(1) translateY(0); opacity: 1; }
.qa-island {
  width: 92px;
  height: 30px;
  margin: 2px auto 14px;
  background: #000;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qa-island-icon { width: 20px; height: 20px; border-radius: 5px; }
.qa-input {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 22px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.qa-amount {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.qa-caret {
  width: 3px;
  height: 38px;
  margin-left: 3px;
  border-radius: 2px;
  background: #0a84ff;
  animation: qa-blink 1.1s steps(1) infinite;
}
.qa-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
}
.qa-clear svg { width: 100%; height: 100%; display: block; }
.qa-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.qa-btn {
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}
.qa-cancel { background: rgba(255, 255, 255, 0.1); color: #fff; }
.qa-done { background: #0a84ff; color: #fff; transition: transform 0.15s var(--ease), filter 0.15s var(--ease); }
.qa-done.pressed { transform: scale(0.95); filter: brightness(1.25); }
@keyframes qa-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) {
  .qa-card { transform: none; opacity: 1; }
  .qa-caret { animation: none; }
}

/* 3-minute ring draws its arc on scroll-in */
.ring-progress {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.1s var(--ease) 0.15s;
}
.short-l.in .ring-progress { stroke-dashoffset: 8; }

/* ----- No bank linking: big-copy statement ----- */
.bento-card.nobank { justify-content: flex-end; gap: 12px; }
.nobank-copy {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--fg);
  margin: 0;
}
.nobank-copy .dim { color: rgba(255, 255, 255, 0.5); }

/* ----- Balance slot: labelled big number ----- */
/* balance card mirrors the app's hero balance card */
.bento-card.balance { justify-content: space-between; gap: 0; }
.bal-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.bal-pill {
  background: var(--fg);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.bal-main { display: flex; flex-direction: column; }
.bal-greet { font-size: 13px; color: var(--muted); }
.bal-label { font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 4px; }
.bal-amount {
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.bal-cents { color: var(--fg); }
.bal-proj { font-size: 13px; color: var(--muted); }

/* ---------- FORECAST: change one thing, see everything ---------- */
.forecast-section { padding: 150px 0 130px; }
.forecast-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.forecast-copy { max-width: 540px; }
.forecast-copy .big-headline { font-size: clamp(32px, 4.4vw, 54px); }
.forecast-copy .big-line { white-space: nowrap; }
/* contain the slide so it doesn't travel across the phone on the right */
.forecast-copy [data-shift] .big-line.shift-l { transform: translateX(-64px); }
.forecast-copy [data-shift] .big-line.shift-r { transform: translateX(64px); }
.forecast-copy [data-shift].in .big-line.shift-l,
.forecast-copy [data-shift].in .big-line.shift-r { transform: translateX(0); }
.forecast-sub {
  margin-top: 28px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.5;
  color: var(--muted);
}
/* staggered word-by-word reveal */
.fc-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  transition-delay: calc(var(--w, 0) * 42ms);
}
.forecast-sub.in .fc-word { opacity: 1; transform: none; }

/* a website diagram of the feature — clearly an explainer, not app UI */
.forecast-stage { justify-self: end; width: min(440px, 100%); }
.fc-diagram {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px 30px 26px;
}
.fc-d-top { display: flex; align-items: center; gap: 18px; }
.fc-d-stat { display: flex; flex-direction: column; gap: 5px; }
.fc-d-stat--out { margin-left: auto; text-align: right; }
.fc-d-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.fc-d-amount {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.fc-d-amount--big { font-size: 38px; }
.fc-d-arrow { color: var(--muted-2); width: 40px; flex-shrink: 0; }
.fc-d-arrow svg { width: 100%; height: auto; display: block; }
.fc-d-chart { margin-top: 26px; }
.fc-d-chart .fc-bars { height: 150px; display: flex; align-items: flex-end; gap: 5px; }
.fc-d-chart .fc-bars span {
  flex: 1;
  height: 40%;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.1));
}
.fc-d-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted-2);
}

@media (max-width: 860px) {
  .forecast-inner { grid-template-columns: 1fr; }
  .forecast-stage { justify-self: center; margin-top: 44px; }
}
@media (prefers-reduced-motion: reduce) {
  .fc-word { opacity: 1; transform: none; }
}

/* ---------- FEATURE STACK ---------- */
.features { padding: 80px 0 100px; }
.feature-list { display: flex; flex-direction: column; gap: 64px; margin-top: 32px; }
.feature { display: flex; flex-direction: column; gap: 18px; }
.feature-head h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin: 0 0 4px;
}
.feature-head p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.feature-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
}
.art-1::before { background: radial-gradient(600px 320px at 30% 40%, rgba(150, 130, 255, 0.22), transparent 60%); }
.art-2::before { background: radial-gradient(600px 320px at 70% 40%, rgba(255, 220, 110, 0.18), transparent 60%); }
.art-3::before { background: radial-gradient(600px 320px at 50% 70%, rgba(255, 140, 200, 0.18), transparent 60%); }
.art-4::before { background: radial-gradient(600px 320px at 40% 30%, rgba(120, 200, 255, 0.22), transparent 60%); }
.art-5::before { background: radial-gradient(600px 320px at 60% 60%, rgba(180, 255, 130, 0.18), transparent 60%); }
.art-6::before { background: radial-gradient(600px 320px at 50% 50%, rgba(255, 255, 255, 0.08), transparent 60%); }

/* ---------- REVIEWS ---------- */
.reviews-section { padding: 150px 0; }
.reviews-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 8px;
}
.quotes {
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 110px);
  margin-top: 56px;
}
.quote { margin: 0; }
.quote-text {
  display: block;
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--fg);
  max-width: 18ch;
}
.quote:nth-child(even) .quote-text { margin-left: auto; text-align: right; }
.quote-text .char {
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  transition-delay: calc(var(--c) * 9ms);
}
.quote-text.in .char { opacity: 1; }
.quote-cite {
  display: block;
  margin-top: 24px;
  font-size: 15px;
  font-style: normal;
  color: var(--muted);
}
.quote:nth-child(even) .quote-cite { text-align: right; }
@media (max-width: 760px) {
  .quote-text { max-width: none; }
  .quote:nth-child(even) .quote-text,
  .quote:nth-child(even) .quote-cite { margin-left: 0; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  .quote-text .char { opacity: 1; }
}
.section-title {
  text-align: center;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: -0.035em;
  font-weight: 700;
  line-height: 1.02;
  margin: 0 0 64px;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 0 48px;
  font-size: 16px;
}
.reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stars { color: var(--fg); letter-spacing: 3px; font-size: 13px; }
.review h3 { margin: 0; font-size: 16px; font-weight: 700; letter-spacing: -0.015em; }
.review p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }
.review-date { margin-top: auto; font-size: 12px; color: var(--muted-2); }

/* ---------- FOOTER ---------- */
.footer { padding: 160px 0 60px; }
.footer-cta {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 80px;
  transition: opacity 0.2s var(--ease);
}
.footer-cta:hover { opacity: 0.92; }
.footer-text {
  font-size: clamp(48px, 6.5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  display: flex; flex-direction: column;
}
.footer-text span { display: block; }
.footer-circle {
  position: relative;
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  border-radius: 999px;
  background: var(--fg); color: #000;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 8px;
  overflow: hidden;
}
.footer-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 42%;
  height: 42%;
  transition: opacity 0.22s var(--ease), transform 0.32s var(--ease);
}
.footer-icon--apple { opacity: 0; transform: translateY(-6px); }
.footer-cta:hover .footer-icon--down { opacity: 0; transform: translateY(6px); }
.footer-cta:hover .footer-icon--apple { opacity: 1; transform: translateY(0); }
.footer-end {
  max-width: var(--col);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a {
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--fg); }
.footer-copy { color: var(--muted); font-size: 14px; margin: 0; }
.footer-copy a { color: var(--fg); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

/* ---------- RESPONSIVE ---------- */
/* Tablet: tighten gutters, stack the forecast diagram + phone stages. */
@media (max-width: 980px) {
  .forecast-inner { grid-template-columns: 1fr; gap: 36px; }
  .forecast-copy { max-width: 100%; }
  .forecast-copy .big-line { white-space: normal; }
}
/* Phones + small tablets. */
@media (max-width: 760px) {
  .col { padding: 0 20px; }
  .topbar { top: 14px; padding: 0 16px; }
  .topbar-shell { gap: 12px; padding: 0 20px; }
  .topbar-actions-wrap { transform: translate3d(calc(var(--nav-progress) * 16px), 0, 0); }
  .brand-wordmark { height: 28px; }
  .btn-app-store-badge { width: 86px; }
  .nav-burger { width: 40px; height: 36px; }
  .topbar-controls { padding-right: 10px; }
  .hero { min-height: 0; padding: 116px 0 60px; }
  .hero-headline { font-size: clamp(38px, 9vw, 56px); }
  .stage { grid-template-columns: 1fr; gap: 28px; padding: 40px 0 80px; }
  .rail { justify-self: start; align-self: auto; display: flex; flex-direction: column; gap: 20px; order: 2; }
  .rail-item { position: static; flex-direction: column; opacity: 1; color: var(--fg); transition: none; }
  .rail-item .rail-label { font-size: 17px; color: var(--fg); white-space: normal; }
  .rail-item .rail-sub { display: block; opacity: 1; max-height: none; color: var(--muted); font-size: 13.5px; margin: 4px 0 0; transform: none; overflow: visible; }
  .rail-line { display: none; }
  .stage-phone { justify-self: center; order: 1; }
  .iphone { width: min(320px, 80vw); }
  .big-section { padding: 80px 0 40px; }
  .big-headline { font-size: clamp(36px, 9vw, 56px); }
  [data-shift] .big-line.shift-l { transform: translateX(-12vw); }
  [data-shift] .big-line.shift-r { transform: translateX(12vw); }
  .paragraph { font-size: 18px; max-width: 100%; }
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .bento-col { display: contents; }
  .reviews { grid-template-columns: 1fr; gap: 12px; }
  .reviews-section { padding: 100px 0 60px; }
  .forecast-section { padding: 100px 0 80px; }
  .forecast-copy .big-headline { font-size: clamp(32px, 8vw, 44px); }
  .fc-d-top { flex-direction: column; align-items: flex-start; gap: 14px; }
  .fc-d-arrow { transform: rotate(90deg); }
  .features { padding: 40px 0 60px; }
  .footer { padding: 100px 0 50px; }
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 60px; }
  .footer-text { font-size: clamp(42px, 11vw, 64px); }
  .footer-end { flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 22px; }
  .footer-links { gap: 18px; }
}
/* Compact phones. */
@media (max-width: 420px) {
  .topbar-controls { gap: 7px; padding-right: 8px; }
  .btn-app-store-badge { width: 80px; }
  .brand-wordmark { height: 24px; }
  .iphone { width: min(280px, 78vw); }
  .hero-headline { font-size: 36px; }
  .big-headline { font-size: 34px; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .big-line { transform: none !important; transition: none; }
  .topbar-brand,
  .topbar-actions-wrap,
  .topbar-actions { transform: none; transition: none; }
  .topbar-menu,
  .topbar-menu a,
  .menu-marquee { transition: none; animation: none; }
}
