:root {
  --bg: #080e14;
  --surface: #101922;
  --ink: #f0f1ed;
  --muted: #9ba9b4;
  --blue: #6cc7fa;
  --blue-bright: #41b7fa;
  --line: rgba(174, 202, 224, 0.15);
  --serif: Fraunces, Georgia, serif;
  --sans: Inter, system-ui, sans-serif;
  --max: 1320px;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}
::selection {
  background: #24516d;
  color: white;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  color: #c6e5f4;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2 {
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}
h1 {
  font-size: clamp(48px, 5.5vw, 88px);
}
h2 {
  font-size: clamp(40px, 4.5vw, 68px);
}
h3 {
  font-weight: 500;
  line-height: 1.35;
}
p {
  color: var(--muted);
}
.section-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 60px;
  padding-right: 60px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 10px/1.5 var(--sans);
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 25px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 14px;
  padding: 12px 18px;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 86px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  max-width: var(--max);
  margin: auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -1.1px;
}
.brand img {
  border-radius: 8px;
  width: 30px;
  height: 30px;
}
.brand-dot {
  color: var(--blue);
}
.desktop-nav {
  display: flex;
  gap: 32px;
}
.desktop-nav a {
  font-size: 12px;
  color: #b0bcc4;
  transition: color 0.2s;
}
.desktop-nav a:hover {
  color: white;
}
.header-download {
  font-size: 12px;
  border: 1px solid #52616b;
  padding: 10px 18px;
  border-radius: 4px;
}
.header-download span {
  margin-left: 19px;
  color: var(--blue);
}
.journey {
  position: relative;
}
.journey-stage {
  position: relative;
  min-height: 780px;
  isolation: isolate;
  overflow: clip;
}
.scene-atmosphere {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: radial-gradient(ellipse at 75% 43%, #11232c 0, transparent 48%);
}
.scene-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background-image:
    linear-gradient(#7fa6b20b 1px, transparent 1px),
    linear-gradient(90deg, #7fa6b20b 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(to right, transparent 30%, #000);
}
.scene-visual {
  position: absolute;
  right: 0;
  top: 95px;
  width: 64%;
  height: calc(100svh - 160px);
  min-height: 490px;
  max-height: 920px;
  pointer-events: none;
}
.scene-visual canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s;
}
.webgl-ready .scene-visual canvas {
  opacity: 1;
}
.scene-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s;
}
.webgl-ready .scene-fallback {
  opacity: 0;
  visibility: hidden;
}
.fallback-phone {
  height: 75%;
  aspect-ratio: 828/1792;
  border: 7px solid #253542;
  border-radius: 30px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-22deg) rotateZ(8deg);
  box-shadow: 25px 45px 80px #0008;
}
.fallback-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fallback-ring {
  position: absolute;
  width: 78%;
  height: 35%;
  border: 1px solid #3781a9;
  transform: rotate(-20deg);
  border-radius: 50%;
}
.scene-caption {
  position: absolute;
  bottom: 73px;
  left: 31%;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.02em;
  color: #b5c5cd;
}
.illustration-note {
  position: absolute;
  bottom: 40px;
  right: 50px;
  font-size: 9px;
  color: #859ba7;
  letter-spacing: 0.07em;
}
.chapter-copy {
  max-width: var(--max);
  margin: 0 auto;
  padding: 160px 60px 110px;
  position: relative;
  pointer-events: none;
}
.chapter {
  width: 45%;
  position: relative;
  margin-bottom: 100px;
  pointer-events: auto;
  scroll-margin-top: 120px;
}
.chapter h1,
.chapter h2 {
  margin-bottom: 27px;
}
.chapter h2 {
  font-size: clamp(46px, 5vw, 76px);
}
.chapter-lede {
  font-size: 16px;
  line-height: 1.8;
  max-width: 380px;
  color: #a7b6bf;
  margin-bottom: 28px;
}
.chapter-points {
  list-style: none;
  padding: 0;
  margin: 0 0 27px;
  max-width: 375px;
  font-size: 12px;
  color: #bdc9d0;
}
.chapter-points li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 10px;
}
.chapter-points li::before {
  content: "↗";
  color: var(--blue);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  justify-content: center;
  font-weight: 550;
  font-size: 12px;
  padding: 16px 23px;
  min-height: 48px;
  border-radius: 4px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: #c8eafd;
  color: #112734;
}
.button-primary:hover {
  background: #e4f5ff;
}
.button span {
  font-size: 18px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 0;
}
.text-link span {
  color: var(--blue);
}
.text-link:hover {
  color: var(--blue);
}
.availability {
  font-size: 10px;
  color: #92a5b1;
  margin-top: 17px;
}
.chapter-footnote {
  margin-top: 66px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  max-width: 370px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 9px;
  color: #8ca3b1;
}
.chapter-footnote span:first-child {
  letter-spacing: 0.1em;
  color: #c2cbd0;
}
.platform-labels {
  display: flex;
  gap: 13px;
  font-size: 11px;
  color: #c3d2db;
  flex-wrap: wrap;
}
.journey-bottom {
  display: none;
}
.journey-enhanced .journey {
  height: 535svh;
}
.journey-enhanced .journey-stage {
  height: 100svh;
  min-height: 680px;
  position: sticky;
  top: 0;
}
.journey-enhanced .chapter-copy {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
.journey-enhanced .chapter {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  width: 43%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.journey-enhanced .chapter.is-current {
  opacity: 1;
  visibility: visible;
}
.journey-enhanced .journey-bottom {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 0;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 32px;
  align-items: center;
  height: 84px;
  border-top: 1px solid var(--line);
}
.chapter-nav {
  display: flex;
  gap: 36px;
  position: relative;
  height: 100%;
  align-items: center;
  flex: 1;
}
.chapter-nav a {
  font-size: 10px;
  color: #90a5b3;
  display: flex;
  gap: 10px;
  align-items: center;
  height: 100%;
}
.chapter-nav a[aria-current] {
  color: var(--ink);
}
.journey-progress {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: transparent;
}
.journey-progress i {
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: left;
  transform: scaleX(0.025);
  background: var(--blue);
}
.motion-toggle {
  display: flex;
  gap: 9px;
  align-items: center;
  border: 0;
  background: transparent;
  color: #a1b4c0;
  font-size: 10px;
  cursor: pointer;
  min-height: 44px;
  padding: 8px 0;
}
.motion-icon {
  font-size: 15px;
}
.motion-toggle[hidden] {
  display: none;
}
.intro-section {
  padding-top: 130px;
  padding-bottom: 70px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 100px;
  align-items: center;
}
.intro-grid p {
  font-size: 16px;
  line-height: 1.9;
  max-width: 440px;
}
.intro-grid p + p {
  font-size: 13px;
  margin-top: 17px;
}
.proof-line {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 25px 0;
  margin-top: 66px;
  font-size: 11px;
  color: #b4c4cd;
}
.proof-line i {
  color: var(--blue);
  font-style: normal;
  margin-right: 10px;
}
.product-section {
  padding-top: 70px;
  padding-bottom: 130px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 50px;
}
.section-heading > p {
  font-size: 12px;
  line-height: 1.8;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 25px;
}
.product-image {
  padding-bottom: 30px;
  background: #101b24;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.product-card:nth-child(2) .product-image {
  background: #14232a;
}
.product-tag {
  position: absolute;
  top: 23px;
  left: 24px;
  color: #9db3c0;
  font-size: 9px;
  letter-spacing: 0.08em;
  z-index: 1;
}
.screen-device {
  margin: 75px auto 0;
  width: 73%;
  max-width: 265px;
  border: 5px solid #33434f;
  box-shadow: 0 20px 30px #0004;
  border-radius: 27px;
  overflow: hidden;
}
.screen-device img {
  width: 100%;
  height: auto;
}
.product-card figcaption {
  padding-top: 22px;
}
.product-card h3 {
  font-size: 16px;
  letter-spacing: -0.3px;
  margin-bottom: 9px;
}
.product-card p {
  font-size: 12px;
  line-height: 1.8;
  max-width: 300px;
}
.club-section {
  background: #0d1720;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.club-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.club-art {
  position: relative;
  height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.club-orbit {
  position: absolute;
  border: 1px solid #48637355;
  border-radius: 50%;
  width: 190px;
  height: 190px;
}
.orbit-two {
  width: 310px;
  height: 310px;
}
.orbit-three {
  width: 425px;
  height: 425px;
  opacity: 0.5;
}
.club-core {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  background: #182b36;
  border: 1px solid #4d7183;
  border-radius: 24px;
  font-weight: 600;
  font-size: 43px;
  color: #d9ebf4;
  letter-spacing: -5px;
}
.club-core span {
  font-size: 30px;
  color: var(--blue);
}
.club-member {
  width: 44px;
  height: 44px;
  position: absolute;
  background: #162c37;
  border: 4px solid #0d1720;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #afdbed;
}
.member-one {
  top: 53px;
  left: 33%;
  background: #334c3f;
  color: #d9ecd7;
}
.member-two {
  top: 155px;
  right: 14%;
  background: #61563a;
  color: #fbdf9f;
}
.member-three {
  bottom: 30px;
  left: 32%;
  background: #47405e;
  color: #dbd0f9;
}
.member-four {
  left: 10%;
  top: 205px;
  background: #244e64;
}
.club-art-label {
  position: absolute;
  bottom: 0;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: #9eb4c2;
}
.section-body {
  margin-top: 28px;
  max-width: 410px;
  font-size: 15px;
  line-height: 1.85;
}
.club-layout .text-link {
  margin-top: 20px;
}
.details-section {
  padding-top: 125px;
  padding-bottom: 115px;
}
.detail-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: start;
  padding: 27px 0;
  border-top: 1px solid var(--line);
}
.detail-row:last-child {
  border-bottom: 1px solid var(--line);
}
.detail-row h3 {
  font-size: 22px;
  letter-spacing: -0.7px;
  max-width: 320px;
}
.detail-row p {
  font-size: 13px;
  line-height: 1.8;
  max-width: 465px;
}
.detail-row a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.pro-section {
  padding-bottom: 125px;
}
.pro-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  border: 1px solid #314958;
  padding: 65px;
  background: linear-gradient(120deg, #10212d, #0c141c);
  border-radius: 5px;
}
.pro-inner h2 {
  font-size: 57px;
}
.pro-inner p {
  font-size: 14px;
  margin-top: 26px;
  max-width: 390px;
}
.pro-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pro-wordmark {
  font-size: 35px;
  letter-spacing: -1.4px;
  font-weight: 500;
}
.pro-wordmark span {
  font-size: 12px;
  padding: 3px 6px;
  border: 1px solid #6ba3bc;
  border-radius: 3px;
  color: var(--blue);
  margin-left: 9px;
  letter-spacing: 0;
  vertical-align: middle;
}
.pro-summary p {
  margin: 20px 0 24px;
}
.pro-summary small {
  font-size: 10px;
  color: #99aebc;
  margin-top: 17px;
  max-width: 300px;
  line-height: 1.8;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  padding-bottom: 125px;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  padding: 23px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  font-size: 21px;
  font-weight: 300;
  color: var(--blue);
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  font-size: 13px;
  line-height: 1.85;
  padding: 0 25px 24px 0;
}
.faq-list a {
  color: var(--blue);
  text-decoration: underline;
}
.download-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #101f29;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 110px 25px;
}
.download-copy {
  text-align: center;
  position: relative;
  z-index: 1;
}
.download-copy .eyebrow {
  justify-content: center;
}
.download-copy h2 {
  font-size: clamp(52px, 6vw, 86px);
}
.download-copy > p:not(.eyebrow) {
  margin-top: 25px;
  font-size: 14px;
}
.download-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: stretch;
  margin-top: 31px;
  flex-wrap: wrap;
}
.iphone-status {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 19px;
  border: 1px solid #536878;
  border-radius: 4px;
}
.iphone-status small {
  font-size: 9px;
  color: #9fb6c5;
  margin-left: 5px;
}
.download-copy .download-note {
  font-size: 10px !important;
  color: #9bb2c1;
}
.download-route {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.25;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60b6de;
}
.download-route svg {
  min-width: 1200px;
  width: 100%;
}
.site-footer {
  padding-top: 65px;
  padding-bottom: 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 60px;
  margin-bottom: 65px;
}
.footer-top p {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.9;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.footer-links h2 {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #b9c9d2;
  margin-bottom: 22px;
}
.footer-links a {
  font-size: 11px;
  color: #92a6b4;
  display: block;
  padding: 5px 0;
}
.footer-links a:hover {
  color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  font-size: 9px;
  color: #91a5b3;
}
.muted {
  color: #a2bbc9;
}
.no-motion .scene-visual {
  position: relative;
  margin: auto;
  top: 100px;
  height: 500px;
  width: 100%;
  max-width: 900px;
}
.no-motion .chapter-copy {
  padding-top: 150px;
}
.no-motion .chapter {
  width: 100%;
  max-width: 800px;
}
.no-motion .journey-bottom {
  display: flex;
  position: absolute;
  top: 100px;
  right: 35px;
  height: 40px;
}
.no-motion .chapter-nav {
  display: none;
}
.no-motion .scene-caption,
.no-motion .illustration-note {
  display: none;
}
@media (min-width: 1450px) {
  .scene-visual {
    right: calc((100vw - 1450px) / 2);
    width: 900px;
  }
  .chapter-copy {
    padding-top: 180px;
  }
  .journey-enhanced .chapter {
    left: 60px;
    width: 43%;
  }
}
@media (max-width: 1100px) {
  .section-wrap {
    padding-left: 35px;
    padding-right: 35px;
  }
  .site-header {
    padding: 0 35px;
  }
  .journey-enhanced .chapter {
    left: 35px;
    width: 46%;
  }
  .chapter-copy {
    padding-left: 35px;
    padding-right: 35px;
  }
  .chapter-lede {
    font-size: 14px;
    max-width: 330px;
  }
  .hero-actions {
    gap: 12px;
  }
  .button {
    padding: 14px 17px;
    font-size: 11px;
  }
  .chapter-footnote {
    margin-top: 38px;
  }
  .chapter-nav {
    gap: 22px;
  }
  .journey-enhanced .journey-bottom {
    left: 35px;
    right: 35px;
  }
  .scene-visual {
    right: -3%;
    width: 64%;
  }
  .intro-grid,
  .club-layout,
  .pro-inner,
  .faq-section {
    gap: 50px;
  }
  .pro-inner {
    padding: 45px;
  }
  .pro-inner h2 {
    font-size: 48px;
  }
  .product-tag {
    left: 15px;
    font-size: 8px;
  }
  .scene-caption {
    left: 25%;
    bottom: 62px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 80px;
  }
  .site-header {
    height: 76px;
    padding: 0 22px;
  }
  .brand {
    font-size: 23px;
  }
  .desktop-nav {
    display: none;
  }
  .header-download {
    padding: 8px 12px;
    font-size: 11px;
  }
  .header-download span {
    margin-left: 10px;
  }
  .section-wrap {
    padding-left: 23px;
    padding-right: 23px;
  }
  .journey-stage {
    min-height: 0;
    overflow: clip;
  }
  .journey-enhanced .journey {
    height: 520svh;
  }
  .journey-enhanced .journey-stage {
    height: 100svh;
    min-height: 620px;
  }
  .scene-visual {
    right: 0;
    top: 42%;
    width: 100%;
    height: 51%;
    min-height: 0;
  }
  .journey-enhanced .chapter {
    top: 100px;
    left: 23px;
    width: calc(100% - 46px);
    transform: none;
  }
  .chapter h1,
  .chapter h2 {
    font-size: clamp(39px, 10vw, 62px);
    margin-bottom: 15px;
    line-height: 1.02;
  }
  .chapter .eyebrow {
    font-size: 8px;
    margin-bottom: 17px;
  }
  .chapter-lede {
    font-size: 12px;
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 17px;
  }
  .chapter-lede br {
    display: none;
  }
  .hero-actions {
    gap: 18px;
  }
  .button {
    font-size: 11px;
    min-height: 44px;
    padding: 12px 16px;
  }
  .text-link {
    font-size: 11px;
  }
  .availability {
    font-size: 9px;
    margin-top: 10px;
  }
  .chapter-footnote {
    display: none;
  }
  .chapter-points {
    display: none;
  }
  .platform-labels {
    font-size: 10px;
  }
  .scene-caption {
    left: 23px;
    bottom: 15px;
    font-size: 9px;
  }
  .illustration-note {
    bottom: 15px;
    right: 23px;
    font-size: 7px;
  }
  .journey-enhanced .journey-bottom {
    height: 58px;
    left: 23px;
    right: 23px;
    gap: 12px;
  }
  .chapter-nav {
    gap: 0;
    justify-content: space-between;
    flex: 1;
  }
  .chapter-nav a {
    font-size: 10px;
    gap: 0;
    padding: 12px 4px;
    white-space: nowrap;
  }
  .motion-toggle {
    font-size: 9px;
    gap: 7px;
  }
  .motion-icon {
    font-size: 12px;
  }
  .intro-section {
    padding-top: 80px;
    padding-bottom: 35px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-grid p {
    font-size: 14px;
  }
  .proof-line {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 9px;
    gap: 19px;
    margin-top: 35px;
    padding: 23px 0;
  }
  .proof-line i {
    margin-right: 6px;
  }
  .product-section {
    padding-top: 40px;
    padding-bottom: 70px;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-heading > p {
    margin-top: 22px;
    font-size: 11px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .screen-device {
    width: 62%;
    margin-top: 64px;
    max-width: 240px;
  }
  .product-tag {
    left: 24px;
    font-size: 9px;
  }
  .product-card h3 {
    font-size: 18px;
  }
  .product-card p {
    font-size: 13px;
  }
  .product-card figcaption {
    padding-top: 17px;
  }
  .club-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 35px;
    padding-bottom: 60px;
  }
  .club-art {
    height: 320px;
    max-width: 400px;
    width: 100%;
    margin: auto;
  }
  .club-layout h2 {
    font-size: 45px;
  }
  .section-body {
    font-size: 14px;
    margin-top: 24px;
  }
  .details-section {
    padding-top: 70px;
    padding-bottom: 60px;
  }
  .detail-row {
    grid-template-columns: 1fr;
    gap: 8px 13px;
    padding: 24px 0;
  }
  .detail-row h3 {
    font-size: 20px;
  }
  .pro-section {
    padding-bottom: 75px;
  }
  .pro-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 33px 25px;
  }
  .pro-inner h2 {
    font-size: 43px;
  }
  .pro-inner p {
    font-size: 13px;
    margin-top: 22px;
  }
  .pro-wordmark {
    font-size: 29px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 70px;
  }
  .faq-list summary {
    font-size: 13px;
    min-height: 68px;
  }
  .download-section {
    padding: 75px 23px;
  }
  .download-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .download-copy h2 {
    font-size: 49px;
  }
  .download-options {
    gap: 12px;
  }
  .iphone-status {
    font-size: 10px;
    padding: 10px 13px;
  }
  .iphone-status small {
    font-size: 8px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 30px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 8px;
  }
  .footer-bottom span:nth-child(2) {
    order: 3;
  }
  .site-footer {
    padding-top: 42px;
  }
  .chapter-copy {
    padding: 110px 23px 35px;
  }
  .chapter {
    width: 100%;
    margin-bottom: 55px;
  }
  .journey:not(.journey-enhanced .journey) .scene-visual {
    position: relative;
    top: 100px;
    height: 420px;
  }
  .no-motion .scene-visual {
    height: 370px;
  }
  .no-motion .chapter-copy {
    padding-top: 130px;
  }
  .no-motion .journey-bottom {
    top: 80px;
    right: 23px;
  }
}
@media (max-width: 380px) {
  .chapter h1,
  .chapter h2 {
    font-size: 38px;
  }
  .hero-actions {
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .illustration-note {
    display: none;
  }
  .proof-line {
    font-size: 8px;
  }
}
@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;
    scroll-behavior: auto !important;
  }
}

.scene-visual {
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 98%,
    transparent
  );
}

@keyframes chapter-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.journey-enhanced .chapter.is-current > * {
  animation: chapter-enter 0.5s ease both;
}
.journey-enhanced .chapter.is-current .eyebrow {
  animation-duration: 0.3s;
}

@media (max-width: 760px) {
  .journey-enhanced .scene-visual {
    top: max(360px, 42%);
    height: calc(100% - max(360px, 42%) - 60px);
  }
}
.no-motion .motion-toggle {
  position: fixed;
  bottom: 18px;
  right: 23px;
  padding: 8px 14px;
  border: 1px solid #425866;
  background: #101c26;
  border-radius: 4px;
  z-index: 40;
}
.no-motion .journey-bottom {
  z-index: 40;
}
.motion-toggle:disabled {
  cursor: default;
}
.reveal-pending {
  opacity: 0;
  transform: translateY(16px);
}
.reveal-visible {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.no-motion [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}
html.no-motion {
  scroll-behavior: auto;
}

/* Reading mode keeps the first action above the fold and all chapters in flow. */
html:not(.journey-enhanced) .scene-visual { display: none; }
@media (max-width: 760px) {
  .chapter-lede { font-size: 14px; line-height: 1.65; }
  .journey-enhanced .scene-visual { top: max(370px, 43%); height: calc(100% - max(370px, 43%) - 60px); }
}
