:root {
  --background: #f7f6f1;
  --surface: #fff;
  --text: #10110f;
  --muted: #65665f;
  --blue: #2596be;
  --blue-dark: #187a9d;
  --mustard: #d4a72c;
  --mustard-soft: #f0d98f;
  --line: rgba(16, 17, 15, 0.18);
  --page-pad: max(1.5rem, calc((100vw - 1440px) / 2));
  --ease: cubic-bezier(0.2, 0.75, 0, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--surface);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  margin: 0 0 1.5rem;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  margin-bottom: 0;
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .93;
}
h1 em, h2 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--page-pad);
  transition: padding 250ms ease, background 250ms ease, box-shadow 250ms ease;
}
.site-header.is-scrolled {
  padding-top: .65rem;
  padding-bottom: .65rem;
  background: rgba(247, 246, 241, .86);
  box-shadow: 0 1px 0 rgba(16, 17, 15, .08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -.08em;
}
.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  margin-right: .42rem;
  place-items: center;
  border-radius: .7rem;
  background: var(--blue);
  color: #fff;
  font-size: 1.15rem;
}
.header-cta {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  gap: .6rem;
  padding: .65rem .8rem .65rem 1.2rem;
  border: 1px solid var(--text);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}
.header-cta b {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  font-size: 1rem;
}
.header-cta:hover { transform: translateY(-2px); background: var(--text); color: #fff; }
.header-cta:hover b { background: var(--mustard); color: var(--text); }

/* Sticky scroll story */
.scrolly { position: relative; background: var(--background); }
.phone-pin {
  position: sticky;
  z-index: 10;
  top: 0;
  display: grid;
  width: 100%;
  height: 100svh;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
}
.story-panels { position: relative; z-index: 20; margin-top: -100svh; }
.story-panel {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100svh;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 25rem) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(2rem, 5vw, 6rem);
  padding: 7rem var(--page-pad) 4rem;
}
.panel-copy {
  position: relative;
  z-index: 30;
  opacity: .18;
  transform: translateY(2rem);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.story-panel.is-active .panel-copy { opacity: 1; transform: translateY(0); }
.panel-left { grid-column: 1; justify-self: start; max-width: 32rem; }
.panel-right { grid-column: 3; justify-self: end; width: 100%; max-width: 27rem; }
.story-panel h1, .story-panel h2 { font-size: clamp(3.6rem, 5.5vw, 6.8rem); }
.story-panel h1 em, .story-panel h2 em { display: inline-block; color: var(--blue); }
.panel-body > p {
  max-width: 24rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  letter-spacing: -.025em;
}
.panel-body > small { display: block; margin-top: .8rem; color: var(--muted); font-size: .7rem; font-weight: 700; }
.primary-button {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: .8rem .85rem .8rem 1.4rem;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 .9rem 2rem rgba(37, 150, 190, .2);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  transition: transform 220ms var(--ease), background 220ms ease;
}
.primary-button span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--text);
  font-size: 1.15rem;
}
.primary-button:hover { transform: translateY(-3px); background: var(--blue-dark); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--text);
  font-size: .82rem;
  font-weight: 800;
}
.text-link b { color: var(--blue); font-size: 1.15rem; }
.scroll-hint {
  position: absolute;
  z-index: 30;
  bottom: 2rem;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0;
  color: var(--muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-hint span { width: 3rem; height: 1px; background: currentColor; }

/* Central product */
.accent-shape {
  position: absolute;
  z-index: 0;
  width: min(43vw, 39rem);
  height: min(43vw, 39rem);
  border-radius: 50%;
  background: var(--blue);
  transform: scale(.92);
  transition: width 850ms var(--ease), height 850ms var(--ease), border-radius 850ms var(--ease), background 700ms ease, transform 850ms var(--ease);
}
.orbit {
  position: absolute;
  z-index: 0;
  width: min(50vw, 47rem);
  height: min(50vw, 47rem);
  border: 1px solid rgba(16, 17, 15, .15);
  border-radius: 50%;
  transition: opacity 500ms ease, transform 900ms var(--ease);
}
.orbit-two { width: min(56vw, 54rem); height: min(56vw, 54rem); }
.scrolly[data-active="1"] .accent-shape { width: min(36vw, 32rem); height: min(50vw, 43rem); border-radius: 3rem; background: var(--mustard); transform: rotate(8deg) scale(.95); }
.scrolly[data-active="2"] .accent-shape { width: min(46vw, 42rem); height: min(26vw, 22rem); border-radius: 999px; background: var(--mustard); transform: rotate(-7deg); }
.scrolly[data-active="3"] .accent-shape { width: min(34vw, 30rem); height: min(34vw, 30rem); border-radius: 3rem 50% 3rem 50%; background: var(--blue); transform: rotate(45deg); }
.scrolly[data-active="4"] .accent-shape { width: min(42vw, 38rem); height: min(42vw, 38rem); border-radius: 50%; background: var(--mustard-soft); transform: scale(1); }
.scrolly[data-active="5"] .accent-shape { width: min(52vw, 49rem); height: min(52vw, 49rem); border-radius: 3rem; background: var(--mustard); transform: rotate(-8deg); }
.scrolly[data-active="1"] .orbit-one, .scrolly[data-active="3"] .orbit-two, .scrolly[data-active="5"] .orbit-one { transform: rotate(26deg) scale(1.07); }
.scrolly[data-active="2"] .orbit-two, .scrolly[data-active="4"] .orbit-one { transform: rotate(-18deg) scale(.88); }

.phone-shell {
  position: relative;
  z-index: 3;
  width: min(20.5rem, 23vw);
  padding: .4rem;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 3.35rem;
  background: #0b0c0b;
  box-shadow: 0 2.2rem 5rem rgba(16, 17, 15, .28), inset 0 0 0 1px rgba(255,255,255,.18);
  transform: translateZ(0);
}
.phone-edge { padding: .32rem; border-radius: 3rem; background: #282925; }
.phone-screen {
  position: relative;
  height: min(42.7rem, 76svh);
  min-height: 34rem;
  overflow: hidden;
  border-radius: 2.7rem;
  background: #fff;
  color: var(--text);
}
.phone-island {
  position: absolute;
  z-index: 50;
  top: .72rem;
  left: 50%;
  width: 5.4rem;
  height: 1.38rem;
  border-radius: 999px;
  background: #080908;
  transform: translateX(-50%);
}
.app-screen {
  position: absolute;
  inset: 0;
  padding: 1.1rem 1.05rem;
  opacity: 0;
  transform: translateY(2.2rem) scale(.985);
  transition: opacity 500ms var(--ease), transform 650ms var(--ease);
}
.app-screen.is-active { z-index: 2; opacity: 1; transform: translateY(0) scale(1); }
.app-status { display: flex; align-items: center; justify-content: space-between; margin: .08rem 0 1.45rem; padding: 0 .45rem; font-size: .58rem; font-weight: 800; }
.app-header, .screen-title { display: flex; align-items: center; justify-content: space-between; }
.app-header b { font-size: 1.05rem; letter-spacing: -.07em; }
.app-header i { display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: 50%; background: var(--mustard); font-size: .58rem; font-style: normal; font-weight: 800; }
.app-kicker { margin: 2rem 0 .35rem; color: var(--muted); font-size: .62rem; }
.app-screen-home h3, .app-screen-trust h3, .app-screen-ready h3 { font-size: 2rem; }
.balance-card { display: flex; min-height: 9.2rem; flex-direction: column; justify-content: flex-end; margin-top: 1.4rem; padding: 1.15rem; border-radius: 1.35rem; background: var(--blue); color: #fff; }
.balance-card span, .balance-card small { font-size: .58rem; }
.balance-card strong { margin: .25rem 0 .7rem; font-size: 1.65rem; letter-spacing: .08em; }
.balance-card small { color: rgba(255,255,255,.7); }
.home-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; margin-top: .6rem; }
.home-actions span { display: flex; min-height: 4.4rem; flex-direction: column; align-items: center; justify-content: center; gap: .4rem; border-radius: 1rem; background: #f0f0eb; font-size: .52rem; font-weight: 700; }
.home-actions b { font-size: 1rem; }
.app-dock { position: absolute; right: 1rem; bottom: .85rem; left: 1rem; display: flex; height: 3rem; align-items: center; justify-content: space-around; border-radius: 999px; background: #11120f; }
.app-dock i { width: .45rem; height: .45rem; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; }
.app-dock i:first-child { border-color: var(--mustard); background: var(--mustard); }
.screen-title { min-height: 2rem; margin-bottom: 1.4rem; font-size: .68rem; }
.screen-title > span:first-child { font-size: 1.1rem; }

.action-amount { display: flex; min-height: 12rem; flex-direction: column; align-items: center; justify-content: center; margin: 0 -1.05rem 1.1rem; background: var(--blue); color: #fff; }
.action-amount small { font-size: .58rem; }
.action-amount strong { font-size: 3.5rem; letter-spacing: -.08em; line-height: 1; }
.action-amount span { font-size: .65rem; font-weight: 800; }
.action-pad { display: grid; grid-template-columns: repeat(3, 1fr); gap: .25rem; text-align: center; }
.action-pad span { padding: .55rem; font-size: .86rem; font-weight: 700; }
.app-screen button { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; min-height: 3rem; border: 0; border-radius: 999px; background: var(--text); color: #fff; font: inherit; font-size: .68rem; font-weight: 800; }

.app-screen-steps { background: #fbf4df; }
.step-hero { display: flex; min-height: 12rem; flex-direction: column; justify-content: space-between; margin-bottom: 1rem; padding: 1.3rem; border-radius: 1.5rem; background: var(--mustard); }
.step-hero b { align-self: flex-end; font-family: Georgia, "Times New Roman", serif; font-size: 4.8rem; font-style: italic; letter-spacing: -.08em; line-height: 1; }
.step-hero span { max-width: 8rem; font-size: .7rem; font-weight: 800; }
.progress-line { height: .24rem; margin-bottom: 1rem; overflow: hidden; border-radius: 999px; background: rgba(16,17,15,.1); }
.progress-line i { display: block; width: 33%; height: 100%; border-radius: inherit; background: var(--text); }
.check-list > div { display: grid; grid-template-columns: 2rem 1fr; align-items: center; gap: .65rem; padding: .55rem 0; border-bottom: 1px solid rgba(16,17,15,.12); }
.check-list > div > span { display: grid; width: 1.8rem; height: 1.8rem; place-items: center; border: 1px solid var(--text); border-radius: 50%; font-size: .58rem; font-weight: 800; }
.check-list .done > span { border-color: var(--blue); background: var(--blue); color: #fff; }
.check-list p { display: flex; flex-direction: column; margin: 0; font-size: .65rem; }
.check-list small { color: var(--muted); font-size: .5rem; }

.app-screen-trust { background: #f4f7f7; }
.trust-lock { display: grid; width: 8rem; height: 8rem; margin: 3rem auto 1.5rem; place-items: center; border: 1.6rem solid var(--blue); border-right-color: var(--mustard); border-radius: 50%; }
.trust-lock span { font-size: 1.8rem; font-weight: 900; letter-spacing: -.08em; }
.app-screen-trust h3 { margin-bottom: 1.6rem; text-align: center; }
.settings-list { overflow: hidden; border-radius: 1.2rem; background: #fff; }
.settings-list div { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1rem; border-bottom: 1px solid #e5e7e5; font-size: .64rem; font-weight: 700; }
.settings-list div:last-child { border-bottom: 0; }
.settings-list b { color: var(--blue); font-size: 1rem; }
.screen-note { margin-top: 1rem; color: var(--muted); font-size: .54rem; text-align: center; }

.app-screen-message { background: #eef7fa; }
.message-date { margin: 2.4rem 0 1.6rem; color: var(--muted); font-size: .52rem; text-align: center; }
.message { width: 84%; margin-bottom: .6rem; padding: .85rem 1rem; border-radius: 1.15rem 1.15rem 1.15rem .25rem; background: #fff; box-shadow: 0 .45rem 1rem rgba(16,17,15,.06); font-size: .65rem; font-weight: 700; }
.message.outgoing { margin-left: auto; border-radius: 1.15rem 1.15rem .25rem 1.15rem; background: var(--blue); color: #fff; }
.message-short { width: 52%; }
.message-field { position: absolute; right: 1rem; bottom: 1rem; left: 1rem; display: flex; min-height: 3.2rem; align-items: center; justify-content: space-between; padding: .55rem .65rem .55rem 1rem; border-radius: 999px; background: #fff; box-shadow: 0 .6rem 1.5rem rgba(16,17,15,.08); color: var(--muted); font-size: .56rem; }
.message-field b { display: grid; width: 2.1rem; height: 2.1rem; place-items: center; border-radius: 50%; background: var(--mustard); color: var(--text); font-size: 1rem; }

.app-screen-ready { display: flex; flex-direction: column; background: var(--blue); color: #fff; }
.ready-logo { display: flex; align-items: center; align-self: flex-start; margin-top: 1.2rem; font-size: 1.2rem; font-weight: 900; letter-spacing: -.08em; }
.ready-logo span { display: grid; width: 2.2rem; height: 2.2rem; margin-right: .35rem; place-items: center; border-radius: .65rem; background: #fff; color: var(--blue); }
.ready-copy { margin: auto 0; }
.ready-copy small { display: block; margin-bottom: .75rem; color: rgba(255,255,255,.7); font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.app-screen-ready h3 { font-size: 4.1rem; }
.ready-copy p { max-width: 12rem; margin-top: 1.25rem; color: rgba(255,255,255,.75); font-size: .66rem; }
.ready-arrow { display: grid; width: 3.5rem; height: 3.5rem; margin-left: auto; place-items: center; border-radius: 50%; background: var(--mustard); color: var(--text); font-size: 1.5rem; }
.screen-count { position: absolute; z-index: 4; bottom: 1.5rem; left: calc(50% + min(13rem, 16vw)); display: flex; align-items: center; gap: .55rem; font-size: .56rem; font-weight: 800; }
.screen-count i { width: 2rem; height: 1px; background: var(--text); opacity: .4; }

/* Supporting scene content */
.mini-steps { margin: 0; padding: 0; list-style: none; }
.mini-steps li { display: grid; grid-template-columns: 3.5rem 1fr; align-items: baseline; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.mini-steps li:first-child { border-top: 1px solid var(--line); }
.mini-steps span { color: var(--mustard); font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; font-style: italic; }
.mini-steps b { font-size: clamp(1.6rem, 2.6vw, 2.7rem); letter-spacing: -.055em; }
.fact-list { margin: 0; }
.fact-list div { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; padding: 1.35rem 0; border-bottom: 1px solid var(--line); }
.fact-list div:first-child { border-top: 1px solid var(--line); }
.fact-list dt { color: var(--blue); font-size: .66rem; font-weight: 800; }
.fact-list dd { margin: 0; font-size: .94rem; font-weight: 700; }
.quote-mark { margin-bottom: -.35em; color: var(--mustard); font-family: Georgia, "Times New Roman", serif; font-size: 9rem; line-height: .7; }
.quote-copy h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.2rem, 5vw, 5.8rem); font-style: italic; font-weight: 400; }
.download-area > p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.store-buttons { display: grid; gap: .65rem; }
.store-button { display: grid; min-height: 4.4rem; grid-template-columns: 2rem 1fr; align-items: center; gap: .8rem; padding: .7rem 1rem; border: 1px solid var(--text); border-radius: 1rem; background: var(--surface); transition: transform 220ms var(--ease), background 220ms ease; }
.store-button:hover { transform: translateY(-3px); background: var(--mustard-soft); }
.store-button > span:first-child { font-size: 1.5rem; text-align: center; }
.store-button > span:last-child { display: flex; flex-direction: column; }
.store-button small { font-size: .54rem; }
.store-button b { font-size: 1rem; }
.store-button .play-icon { color: var(--blue); }
.qr-wrap { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.qr-pattern { display: grid; width: 4.8rem; height: 4.8rem; grid-template-columns: repeat(4, 1fr); gap: .16rem; padding: .4rem; border: 1px solid var(--text); background: #fff; }
.qr-pattern i { background: var(--text); }
.qr-pattern i:nth-child(3n), .qr-pattern i:nth-child(5), .qr-pattern i:nth-child(14) { background: transparent; }
.qr-wrap > small { max-width: 6rem; color: var(--muted); font-size: .6rem; font-weight: 700; }

/* Footer */
.site-footer { position: relative; z-index: 30; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; min-height: 8rem; padding: 2rem var(--page-pad); border-top: 1px solid var(--line); background: var(--background); }
.site-footer nav { display: flex; gap: 1.4rem; color: var(--muted); font-size: .72rem; }
.site-footer nav a:hover { color: var(--blue); }
.site-footer p { margin: 0; color: var(--muted); font-size: .66rem; text-align: right; }
.header-cta:focus-visible, .primary-button:focus-visible, .store-button:focus-visible, .site-footer a:focus-visible { outline: 3px solid var(--mustard); outline-offset: 4px; }

@media (max-width: 1050px) {
  .story-panel { grid-template-columns: minmax(0, 1fr) minmax(17rem, 21rem) minmax(0, 1fr); column-gap: 2rem; }
  .story-panel h1, .story-panel h2 { font-size: clamp(3.2rem, 5.8vw, 5rem); }
  .phone-shell { width: min(18rem, 27vw); }
  .phone-screen { height: min(37.5rem, 72svh); min-height: 31rem; }
  .balance-card { min-height: 7.5rem; }
  .action-amount, .step-hero { min-height: 9.5rem; }
  .trust-lock { width: 6.5rem; height: 6.5rem; margin-top: 1.5rem; border-width: 1.2rem; }
}

/* Mobile keeps the phone centered; copy lives above and below it. */
@media (max-width: 760px) {
  :root { --page-pad: 1rem; }
  .site-header { padding-right: 1rem; padding-left: 1rem; }
  .header-cta span { display: none; }
  .phone-shell { width: min(12.2rem, 52vw); border-radius: 2.7rem; }
  .phone-edge { border-radius: 2.4rem; }
  .phone-screen { height: min(23rem, 48svh); min-height: 0; border-radius: 2.15rem; }
  .phone-island { top: .55rem; width: 4.2rem; height: 1.05rem; }
  .app-screen { padding: .8rem; }
  .app-status { margin-bottom: .9rem; font-size: .48rem; }
  .app-screen-home h3, .app-screen-trust h3 { font-size: 1.55rem; }
  .app-kicker { margin-top: 1rem; }
  .balance-card { min-height: 6.2rem; margin-top: .8rem; padding: .85rem; }
  .balance-card strong { font-size: 1.25rem; }
  .home-actions span { min-height: 3.2rem; }
  .app-dock { right: .75rem; bottom: .65rem; left: .75rem; height: 2.4rem; }
  .screen-title { margin-bottom: .75rem; }
  .action-amount { min-height: 8rem; margin-right: -.8rem; margin-left: -.8rem; }
  .action-amount strong { font-size: 2.7rem; }
  .action-pad span { padding: .35rem; }
  .app-screen button { right: .75rem; bottom: .75rem; left: .75rem; min-height: 2.5rem; }
  .step-hero { min-height: 7.5rem; padding: .85rem; }
  .step-hero b { font-size: 3.1rem; }
  .check-list > div { padding: .38rem 0; }
  .trust-lock { width: 5rem; height: 5rem; margin: 1rem auto .8rem; border-width: .9rem; }
  .app-screen-trust h3 { margin-bottom: .9rem; }
  .settings-list div { padding: .55rem .7rem; }
  .message-date { margin: 1.4rem 0 1rem; }
  .message { padding: .65rem .75rem; }
  .app-screen-ready h3 { font-size: 3.2rem; }
  .ready-logo { margin-top: .6rem; }
  .story-panel { display: flex; min-height: 100svh; flex-direction: column; align-items: stretch; justify-content: space-between; gap: 0; padding: 6.3rem 1rem 2rem; }
  .story-panel h1, .story-panel h2, .quote-copy h2 { max-width: 22rem; font-size: clamp(3rem, 14vw, 4.8rem); }
  .panel-left, .panel-right { width: 100%; max-width: 23rem; }
  .panel-right { align-self: flex-end; padding: 1.2rem; border-radius: 1.2rem; background: rgba(247, 246, 241, .9); box-shadow: 0 .8rem 2rem rgba(16,17,15,.08); backdrop-filter: blur(10px); }
  .story-panel:nth-child(even) .panel-right { align-self: flex-start; }
  .story-hero { min-height: 100svh; }
  .scroll-hint { display: none; }
  .accent-shape, .scrolly[data-active] .accent-shape { width: min(88vw, 22rem); height: min(88vw, 22rem); }
  .scrolly[data-active="1"] .accent-shape, .scrolly[data-active="5"] .accent-shape { width: min(76vw, 19rem); height: min(106vw, 26rem); }
  .scrolly[data-active="2"] .accent-shape { width: 92vw; height: 12rem; }
  .orbit { width: 28rem; height: 28rem; }
  .orbit-two { width: 34rem; height: 34rem; }
  .screen-count { bottom: 1rem; left: calc(50% + 7.2rem); }
  .quote-mark { font-size: 6rem; }
  .store-buttons { grid-template-columns: 1fr 1fr; }
  .store-button { min-height: 4rem; }
  .qr-wrap { display: none; }
  .site-footer { grid-template-columns: 1fr auto; padding-right: 1rem; padding-left: 1rem; }
  .site-footer nav { grid-row: 2; grid-column: 1 / -1; flex-wrap: wrap; }
}

@media (max-width: 420px) {
  .brand-mark { width: 2.1rem; height: 2.1rem; }
  .header-cta { min-height: 2.65rem; padding: .55rem .65rem .55rem 1rem; }
  .story-panel h1, .story-panel h2, .quote-copy h2 { font-size: clamp(2.8rem, 13vw, 3.6rem); }
  .phone-shell { width: min(11.8rem, 50vw); }
  .phone-screen { height: min(22.5rem, 48svh); min-height: 0; }
  .home-actions span { font-size: .45rem; }
  .screen-count { display: none; }
  .store-buttons { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
