@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/BricolageGrotesque-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 75% 100%;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --sun: #f5ca4f;
  --forest: #0d3d2c;
  --coral: #ee5a43;
  --coral-text: #9e2f26;
  --ink: #071710;
  --paper: #f5f0e6;
  --white: #fffdf7;
  --muted: #59675e;
  --line: rgba(7, 23, 16, 0.2);
  --content: min(1240px, calc(100vw - 64px));
  --header-h: 72px;
  --display: "Bricolage Grotesque", "Arial Black", "Helvetica Neue", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 240, 230, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: var(--content);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 70px;
  height: 56px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 750;
}

.nav a {
  text-decoration: none;
  text-underline-offset: 5px;
}

.nav a:hover,
.nav a:focus-visible { text-decoration: underline; }

.nav a[aria-current="location"] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-label { display: none; }

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

body[data-menu-open] .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body[data-menu-open] .menu-toggle span:nth-child(2) { opacity: 0; }
body[data-menu-open] .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--sun);
}

.campaign {
  position: relative;
  isolation: isolate;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid rgba(7, 23, 16, 0.45);
  color: var(--white);
  background: var(--forest);
}

.campaign::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(4, 22, 15, 0.3);
  content: "";
}

.campaign-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
}

.campaign-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.campaign-light {
  color: var(--ink);
  background: var(--paper);
}

.campaign-light::after { background: rgba(255, 250, 239, 0.2); }

.campaign-inner {
  position: relative;
  width: var(--content);
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 88px 0;
}

.campaign-copy {
  width: min(560px, calc(50vw - 64px));
  max-width: 560px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.26);
}

.campaign-light .campaign-copy { text-shadow: none; }

.campaign-copy-right {
  margin-left: auto;
  text-align: right;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.campaign-light .eyebrow,
.product-section .eyebrow { color: var(--forest); }

.campaign h2,
.product-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 74px;
  font-weight: 800;
  line-height: 0.94;
  text-wrap: balance;
}

.campaign-copy:not(.hero-copy) > p:not(.eyebrow),
.product-intro {
  max-width: 570px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.5;
}

.campaign-copy-right > p:not(.eyebrow) { margin-left: auto; }

.hero-campaign {
  min-height: min(760px, calc(100svh - 112px));
}

.hero-campaign::after {
  background: linear-gradient(90deg, rgba(3, 20, 14, 0.84) 0%, rgba(3, 20, 14, 0.66) 38%, rgba(3, 20, 14, 0.08) 68%);
}
.hero-campaign .campaign-image { object-position: center center; }
.hero-copy { max-width: 600px; }

.hero-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 118px;
  font-weight: 800;
  line-height: 0.8;
}

.hero-statement {
  max-width: 590px;
  margin: 36px 0 0;
  font-family: var(--display);
  font-size: 54px;
  font-weight: 750;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-detail {
  max-width: 550px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.store-badge { display: inline-flex; }
.store-badge img { width: 166px; }

.text-link {
  padding-bottom: 4px;
  border-bottom: 2px solid currentColor;
  font-weight: 800;
  text-decoration: none;
}

.signal-strip {
  min-height: 62px;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  background: var(--sun);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.signal-track {
  width: max-content;
  display: flex;
  animation: signal-scroll 34s linear infinite;
}

.signal-group {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 0 13px;
}

.signal-group span { padding: 0 18px; }

.signal-group i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--coral);
}

@keyframes signal-scroll {
  to { transform: translateX(-50%); }
}

.social-radius-story {
  position: relative;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(420px, 0.75fr);
}

.story-stage {
  position: sticky;
  top: var(--header-h);
  height: calc(100svh - var(--header-h));
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.story-scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 720ms ease, transform 1100ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transform: scale(1.025);
}

.story-scene::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 22, 15, 0.06), rgba(4, 22, 15, 0.24));
  content: "";
}

.story-scene.is-active { opacity: 1; transform: scale(1); }

.story-scene img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.story-scene[data-scene="01"] img { object-position: 64% center; }
.story-scene[data-scene="02"] img { object-position: 40% center; }
.story-scene[data-scene="03"] img { object-position: 64% center; }

.radius-signature {
  position: absolute;
  right: 42px;
  bottom: 42px;
  width: 188px;
  height: 188px;
  display: grid;
  place-items: center;
  color: var(--white);
}

.radius-ring,
.radius-core {
  position: absolute;
  border-radius: 50%;
}

.radius-ring { border: 1px solid rgba(255, 253, 247, 0.72); }
.radius-ring-one { inset: 18px; }
.radius-ring-two { inset: 0; border-style: dashed; animation: radius-turn 24s linear infinite; }
.radius-core { width: 12px; height: 12px; background: var(--sun); box-shadow: 0 0 0 9px rgba(245, 202, 79, 0.22); }

.radius-signature p {
  position: absolute;
  right: 100%;
  bottom: 20px;
  width: 150px;
  margin: 0 18px 0 0;
  text-align: right;
}

.radius-signature strong,
.radius-signature span { display: block; }
.radius-signature strong { font-family: var(--display); font-size: 32px; line-height: 1; }
.radius-signature p span { margin-top: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; }

@keyframes radius-turn { to { transform: rotate(360deg); } }

.story-content {
  position: relative;
  background: var(--paper);
}

.chapter-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--ink);
  background: rgba(245, 240, 230, 0.96);
  backdrop-filter: blur(12px);
}

.chapter-nav a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.chapter-nav a:last-child { border-right: 0; }
.chapter-nav a span { color: var(--coral-text); }
.chapter-nav a.is-active { background: var(--sun); color: var(--ink); }

.story-chapter {
  min-height: calc(100svh - var(--header-h) - 58px);
  display: flex;
  align-items: center;
  padding: 88px max(64px, calc((100vw - var(--content)) / 2));
  scroll-margin-top: calc(var(--header-h) + 58px);
}

.story-chapter + .story-chapter { border-top: 1px solid var(--line); }
.story-chapter-copy { max-width: 520px; }
.story-chapter h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 70px;
  font-weight: 800;
  line-height: 0.94;
  text-wrap: balance;
}

.story-chapter-copy > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.chapter-mobile-media { display: none; }

.final-campaign::after {
  background: linear-gradient(90deg, rgba(2, 15, 11, 0.88) 0%, rgba(2, 15, 11, 0.68) 38%, rgba(2, 15, 11, 0.08) 68%);
}
.final-campaign .campaign-image { object-position: center center; }
.final-campaign .button {
  margin-top: 32px;
  border-color: var(--sun);
  background: var(--sun);
  color: var(--ink);
}
.final-campaign .final-prompt {
  margin-top: 28px;
  color: var(--sun);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 800;
}

.product-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 120px;
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.product-inner {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 76px;
  align-items: start;
}

.product-copy { position: relative; z-index: 2; }
.product-intro { color: var(--muted); }

.plain-steps {
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.plain-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
}

.plain-steps li > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
}

.plain-steps strong {
  font-family: var(--display);
  font-size: 22px;
}

.plain-steps p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.product-proof {
  position: sticky;
  top: 102px;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(190px, 0.65fr);
  grid-template-rows: auto auto;
  column-gap: 24px;
  align-items: end;
}

.product-phone {
  grid-row: 1 / span 2;
  padding: 30px 30px 0;
  overflow: hidden;
  background: var(--forest);
  box-shadow: 14px 14px 0 var(--sun);
}

.product-phone img {
  width: 100%;
  height: 560px;
  object-fit: contain;
  object-position: top center;
  border: 9px solid var(--ink);
  border-bottom: 0;
  border-radius: 36px 36px 0 0;
  background: var(--white);
}

.proof-callouts {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.proof-callouts li {
  padding: 17px 0 18px;
  border-bottom: 1px solid var(--ink);
}

.proof-callouts span,
.proof-callouts strong { display: block; }
.proof-callouts span {
  color: var(--coral-text);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-callouts strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: 17px;
  line-height: 1.25;
}

.product-proof figcaption {
  align-self: start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.trust-section {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, 0.95fr);
  border-bottom: 1px solid var(--ink);
  background: var(--forest);
  color: var(--white);
}

.trust-media {
  min-height: 720px;
  overflow: hidden;
}

.trust-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.trust-content {
  align-self: center;
  padding: 92px max(64px, calc((100vw - var(--content)) / 2)) 92px 74px;
}

.trust-content h2 {
  max-width: 600px;
  margin: 0;
  font-family: var(--display);
  font-size: 68px;
  font-weight: 800;
  line-height: 0.94;
  text-wrap: balance;
}

.trust-intro {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: 18px;
}

.trust-evidence {
  max-width: 600px;
  margin: 44px 0 0;
  border-top: 1px solid rgba(255, 253, 247, 0.45);
}

.trust-evidence div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.45);
}

.trust-evidence dt {
  color: var(--sun);
  font-family: var(--display);
  font-weight: 800;
}

.trust-evidence dd { margin: 0; color: rgba(255, 253, 247, 0.82); }

.trust-content .inline-links { margin-top: 34px; }

.inline-links {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.inline-links a {
  padding-bottom: 3px;
  border-bottom: 2px solid var(--sun);
  color: var(--sun);
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  padding: 34px 0;
  background: var(--white);
}

.footer-inner {
  width: var(--content);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { text-underline-offset: 4px; }

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Interior pages */
.page-hero {
  position: relative;
  isolation: isolate;
  min-height: 500px;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
  color: var(--white);
  background: var(--forest);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 24, 16, 0.52);
  content: "";
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.page-hero-inner {
  width: var(--content);
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: 84px;
  font-weight: 800;
  line-height: 0.92;
  text-wrap: balance;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: 19px;
}

.document-page .page-hero { min-height: 320px; }
.document-page .page-hero-inner { padding: 40px 0; }
.document-page .page-hero h1 { max-width: 680px; font-size: 40px; line-height: 1; }
.document-page .page-hero p:not(.eyebrow) { max-width: 560px; margin-top: 16px; font-size: 17px; }
.document-page .document-wrap { padding-top: 44px; }

.page-hero.tone-green,
.page-hero.tone-blue { color: var(--white); background: var(--forest); }
.page-hero.tone-green::after,
.page-hero.tone-blue::after { background: rgba(3, 24, 16, 0.52); }

.document-wrap {
  width: var(--content);
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 76px;
  margin: 0 auto;
  padding: 84px 0 120px;
}

.document-aside {
  align-self: start;
  position: sticky;
  top: 108px;
  color: var(--muted);
  font-size: 14px;
}

.document-aside strong { display: block; margin-bottom: 8px; color: var(--ink); }

.document-content h2 {
  margin: 62px 0 14px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.document-content h2:first-child { margin-top: 0; }
.document-content p,
.document-content li { color: var(--muted); font-size: 17px; line-height: 1.75; }
.document-content p { margin: 0 0 20px; }
.document-content ul { margin: 0 0 22px; padding-left: 22px; }
.document-content li { margin: 0 0 10px; padding-left: 5px; }
.document-content strong { color: var(--ink); }
.document-content a { color: var(--forest); font-weight: 800; }

.support-main,
.download-main {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.support-main::after,
.download-main::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(3, 24, 16, 0.38);
  content: "";
}

.support-main > picture,
.download-main > picture {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.support-main > picture img,
.download-main > picture img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.support-inner,
.download-inner {
  width: var(--content);
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.support-copy,
.download-copy {
  width: min(610px, calc(50vw - 64px));
  max-width: 610px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.support-main h1,
.download-main h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 88px;
  font-weight: 800;
  line-height: 0.9;
  text-wrap: balance;
}

.support-main p,
.download-main .lead,
.download-main .body-copy {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 19px;
}

.email-link {
  display: inline-block;
  margin-top: 30px;
  border-bottom: 3px solid var(--sun);
  color: var(--sun);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 800;
  text-decoration: none;
}

.download-main .store-badge { margin-top: 30px; }

.desktop-transfer {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
  max-width: 430px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 247, 0.65);
}

.desktop-transfer img {
  width: 96px;
  height: 96px;
  padding: 5px;
  background: var(--white);
}

.desktop-transfer strong { display: block; margin-bottom: 4px; }
.desktop-transfer span { font-size: 13px; }

@media (max-width: 1040px) {
  .campaign h2,
  .product-section h2 { font-size: 58px; }
  .story-chapter h2,
  .trust-content h2 { font-size: 56px; }
  .hero-copy h1 { font-size: 92px; }
  .hero-statement { font-size: 42px; }
  .campaign-copy:not(.hero-copy) > p:not(.eyebrow) { font-size: 18px; }
  .story-layout { grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr); }
  .story-chapter { padding-right: 42px; padding-left: 42px; }
  .radius-signature { right: 20px; width: 150px; height: 150px; }
  .radius-signature p { right: 0; bottom: calc(100% + 8px); width: 150px; margin: 0; text-align: center; }
  .radius-signature strong { font-size: 28px; }
  .product-inner { gap: 42px; }
  .product-proof { grid-template-columns: minmax(240px, 0.9fr) minmax(170px, 0.65fr); gap: 20px; }
  .trust-content { padding-right: 42px; padding-left: 48px; }
  .page-hero h1 { font-size: 68px; }
  .support-main h1,
  .download-main h1 { font-size: 70px; }
}

@media (max-width: 760px) {
  :root { --content: calc(100vw - 36px); --header-h: 64px; }
  html { scroll-behavior: auto; }

  .header-inner { position: relative; min-height: var(--header-h); flex-wrap: wrap; }
  .js .reveal { opacity: 1; transform: none; }
  .brand img { width: 58px; height: 46px; }
  .header-actions { margin-left: auto; }
  .header-download { min-height: 40px; padding: 0 14px; }
  .desktop-label { display: none; }
  .mobile-label { display: inline; }
  .js .menu-toggle { display: block; }
  .nav {
    width: 100%;
    order: 3;
    display: flex;
    flex-wrap: wrap;
    gap: 0 18px;
    padding-bottom: 10px;
  }
  .nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
  }
  .js .header-inner { flex-wrap: nowrap; }
  .js .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    z-index: 49;
    width: auto;
    order: initial;
    display: grid;
    gap: 0;
    padding: 12px 18px 18px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
  }
  .js .nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }
  .js .nav a:last-child { border-bottom: 0; }
  .js .nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
  }
  .js body[data-menu-open] { overflow: hidden; }
  .js body[data-menu-open] .nav { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }

  .campaign { min-height: 740px; }
  .campaign-inner {
    align-items: flex-start;
    padding: 42px 0 52px;
  }
  .campaign-copy,
  .campaign-copy-right {
    width: 100%;
    max-width: 100%;
    margin: 0;
    text-align: left;
  }
  .campaign-copy:not(.hero-copy) > p:not(.eyebrow),
  .product-intro { margin-top: 18px; font-size: 16px; line-height: 1.45; }
  .campaign-copy-right > p:not(.eyebrow) { margin-left: 0; }
  .campaign h2,
  .product-section h2 { max-width: 354px; font-size: 48px; }

  .hero-campaign { min-height: calc(100svh - 104px); }
  .hero-campaign .campaign-image { object-position: 56% center; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 { font-size: 72px; }
  .hero-statement { max-width: 350px; margin-top: 22px; font-size: 37px; }
  .hero-detail { max-width: 345px; margin-top: 14px; font-size: 15px; line-height: 1.42; }
  .hero-actions { margin-top: 18px; gap: 12px; }
  .hero-actions .text-link { font-size: 14px; }
  .store-badge img { width: 142px; }

  .signal-strip {
    min-height: 50px;
    font-size: 12px;
  }

  .signal-group { min-height: 50px; gap: 16px; padding: 0 8px; }
  .signal-group span { padding: 0 12px; }

  .hero-campaign::after,
  .final-campaign::after {
    background: linear-gradient(180deg, rgba(2, 17, 12, 0.88) 0%, rgba(2, 17, 12, 0.68) 38%, rgba(2, 17, 12, 0.04) 68%);
  }
  .final-campaign .campaign-image { object-position: 58% center; }

  .story-layout { display: block; }
  .story-stage { display: none; }
  .story-content { background: var(--paper); }
  .chapter-nav {
    top: var(--header-h);
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .chapter-nav::-webkit-scrollbar { display: none; }
  .chapter-nav a { min-width: max-content; min-height: 50px; padding: 0 18px; }
  .story-chapter {
    min-height: 0;
    display: block;
    padding: 0 0 64px;
    scroll-margin-top: calc(var(--header-h) + 50px);
  }
  .chapter-mobile-media {
    width: 100%;
    height: min(66svh, 620px);
    display: block;
    overflow: hidden;
  }
  .chapter-mobile-media img { width: 100%; height: 100%; object-fit: cover; }
  .story-chapter-copy { width: var(--content); max-width: none; margin: 0 auto; padding-top: 36px; }
  .story-chapter h2 { max-width: 355px; font-size: 46px; }
  .story-chapter-copy > p:not(.eyebrow) { margin-top: 18px; font-size: 16px; line-height: 1.5; }

  .product-section { padding: 76px 0 92px; }
  .product-inner { grid-template-columns: 1fr; gap: 48px; }
  .plain-steps { margin-top: 42px; }
  .plain-steps li { grid-template-columns: 46px 1fr; gap: 12px; padding: 20px 0; }
  .plain-steps strong { font-size: 19px; }
  .product-proof {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
  }
  .product-phone {
    grid-row: auto;
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 20px 22px 0;
    box-shadow: 10px 10px 0 var(--sun);
  }
  .product-phone img {
    height: 500px;
    border-width: 8px;
    border-radius: 32px 32px 0 0;
  }
  .proof-callouts { margin-top: 6px; }
  .product-proof figcaption { margin-top: -10px; }

  .trust-section { min-height: 0; display: block; }
  .trust-media { height: 560px; min-height: 0; display: block; }
  .trust-media img { object-position: 50% center; }
  .trust-content { padding: 64px 18px 76px; }
  .trust-content h2 { max-width: 355px; font-size: 48px; }
  .trust-intro { margin-top: 22px; font-size: 16px; }
  .trust-evidence { margin-top: 36px; }
  .trust-evidence div { grid-template-columns: 1fr; gap: 6px; padding: 18px 0; }

  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { gap: 14px 18px; }

  .page-hero { min-height: 470px; }
  .page-hero-image { object-position: 46% center; }
  .page-hero-inner { padding: 52px 0; }
  .page-hero h1 { font-size: 52px; }
  .page-hero p:not(.eyebrow) { font-size: 17px; }
  .document-wrap { display: block; padding: 52px 0 80px; }
  .document-aside { position: static; margin-bottom: 42px; }
  .document-content h2 { margin-top: 48px; font-size: 29px; }
  .document-content p,
  .document-content li { font-size: 16px; }
  .document-page .page-hero { min-height: 280px; }
  .document-page .page-hero-inner { padding: 32px 0; }
  .document-page .page-hero h1 { font-size: 30px; line-height: 1.05; }
  .document-page .page-hero p:not(.eyebrow) { margin-top: 12px; font-size: 15px; }
  .document-page .document-wrap { padding-top: 36px; }

  .support-main,
  .download-main { min-height: calc(100svh - 64px); }
  .support-main > picture img { object-position: 52% center; }
  .download-main > picture img { object-position: 54% center; }
  .support-inner,
  .download-inner { align-items: flex-start; padding: 52px 0 72px; }
  .support-copy,
  .download-copy { width: 100%; max-width: 350px; }
  .support-main h1,
  .download-main h1 { font-size: 58px; }
  .support-main p,
  .download-main .lead,
  .download-main .body-copy { margin-top: 18px; font-size: 16px; }
  .email-link { margin-top: 24px; font-size: 23px; }
  .desktop-transfer { grid-template-columns: 78px 1fr; }
  .desktop-transfer img { width: 78px; height: 78px; }
  .download-main .desktop-transfer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .signal-track { animation: none; }
  .story-scene { transition: none; transform: none; }
  .radius-ring-two { animation: none; }
}
