:root {
  --ink: #111827;
  --ink-soft: #68707f;
  --brand-navy: #14162c;
  --brand-coral: #ff5b1a;
  --brand-coral-ink: #ff5b1a;
  --action-coral: #ff5b1a;
  --work: #ff5b1a;
  --rest: #218ee6;
  --block-rest: #39b95a;
  --prep: #a978ff;
  --finish: #f7d154;
  --canvas: #faf7f2;
  --canvas-deep: #f2ede6;
  --paper: #ffffff;
  --line: rgba(20, 22, 44, 0.11);
  --line-strong: rgba(20, 22, 44, 0.18);
  --shadow-sm: 0 12px 30px rgba(30, 34, 55, 0.08);
  --shadow-md: 0 24px 70px rgba(30, 34, 55, 0.13);
  --shadow-lg: 0 40px 110px rgba(30, 34, 55, 0.19);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --radius-xl: 54px;
  --display-font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --body-font: Inter, "Segoe UI", system-ui, sans-serif;
  --section-space: clamp(6rem, 10vw, 10rem);
  --shell: min(100% - 3rem, 1480px);
  --site-progress: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--body-font);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
  background: var(--canvas);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 91, 26, 0.08), transparent 24rem),
    var(--canvas);
  font-family: var(--body-font);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display-font);
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1,
h2 {
  line-height: 1.02;
}

h3 {
  line-height: 1.15;
}

::selection {
  color: #fff;
  background: var(--action-coral);
}

:focus-visible {
  outline: 3px solid var(--rest);
  outline-offset: 4px;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  color: #fff;
  background: var(--brand-navy);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-heading {
  max-width: 52rem;
}

.section-heading h2,
.phase-system-copy h2,
.controls-copy h2,
.local-data-copy h2,
.final-cta-card h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.45rem, 5.2vw, 5.5rem);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--brand-coral-ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 1.6rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.section-copy {
  max-width: 43rem;
  margin-bottom: 1.1rem;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.25rem);
  line-height: 1.75;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.82rem 1.25rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.26), transparent 70%);
  content: "";
  transform: translateX(-130%);
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.button > * {
  position: relative;
}

.button-primary {
  color: #fff;
  background: var(--action-coral);
  box-shadow: 0 12px 28px rgba(255, 91, 26, 0.25);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover::before {
  transform: translateX(130%);
}

.button-primary:hover {
  background: #e94a0c;
  box-shadow: 0 17px 34px rgba(255, 91, 26, 0.31);
}

.button-secondary:hover {
  border-color: rgba(20, 22, 44, 0.28);
  background: #fff;
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  background: rgba(250, 247, 242, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(250, 247, 242, 0.94);
  box-shadow: 0 8px 32px rgba(20, 22, 44, 0.06);
}

.site-scroll-progress {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 8px;
  pointer-events: none;
}

.site-scroll-progress::before,
.site-scroll-progress-fill {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: 999px;
  content: "";
  transform: translateY(-50%);
}

.site-scroll-progress::before {
  background: #e9ebef;
  box-shadow:
    inset 0 1px 2px rgba(20, 22, 44, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.9);
}

.site-scroll-progress-fill {
  z-index: 1;
  right: auto;
  width: calc(var(--site-progress) * 100%);
  background: var(--work);
  box-shadow: inset 0 -1px 1px rgba(151, 43, 0, 0.2);
  transform: translateY(-50%);
  will-change: width;
}

.site-scroll-progress-cursor {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(var(--site-progress) * 100%);
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border-radius: 50%;
  background: var(--work);
  box-shadow:
    0 2px 8px rgba(20, 22, 44, 0.28),
    0 0 0 3px rgba(255, 91, 26, 0.14);
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease;
  will-change: left;
}

.site-scroll-progress-cursor::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff7f0;
  box-shadow: 0 1px 2px rgba(20, 22, 44, 0.18);
  content: "";
}

.site-header:not(.is-scrolled) .site-scroll-progress-cursor {
  opacity: 0;
}

.site-header-inner {
  display: flex;
  min-height: 5.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 0.5rem;
}

.site-logo img {
  width: clamp(9rem, 13vw, 11.25rem);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.85rem);
}

.nav-links a {
  position: relative;
  padding-block: 0.7rem;
  color: #4f5766;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-coral);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 2.8rem;
  padding-inline: 1.1rem;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  width: 1.15rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 220ms ease;
}

.nav-toggle > span:nth-of-type(2) {
  transform: translateY(-4px);
}

.nav-toggle > span:nth-of-type(3) {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(58rem, calc(100svh - 5.25rem));
  padding: clamp(4rem, 7vw, 7.5rem) 0 clamp(5rem, 9vw, 8rem);
  overflow: clip;
  background:
    radial-gradient(circle at 88% 24%, rgba(33, 142, 230, 0.11), transparent 21rem),
    radial-gradient(circle at 40% 96%, rgba(255, 91, 26, 0.08), transparent 30rem);
}

.hero::before {
  position: absolute;
  z-index: -2;
  top: -18rem;
  right: -16rem;
  width: 58rem;
  height: 58rem;
  border: 1px solid rgba(20, 22, 44, 0.07);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 7rem rgba(255, 255, 255, 0.18),
    0 0 0 14rem rgba(255, 255, 255, 0.11);
}

.hero::after {
  position: absolute;
  z-index: -2;
  right: 12%;
  bottom: 2.5rem;
  width: 34rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(20, 22, 44, 0.13);
  filter: blur(60px);
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 44rem;
  grid-template-columns: minmax(20rem, 0.78fr) minmax(38rem, 1.42fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 41rem;
}

.hero-copy h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.5rem, 6vw, 6.9rem);
  font-weight: 800;
}

.hero-copy h1 span {
  display: block;
  color: var(--brand-coral-ink);
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: #596171;
  font-size: clamp(1.08rem, 1.5vw, 1.33rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  padding: 0;
  margin: 0;
  color: #5b6372;
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-facts li::before {
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--block-rest);
  box-shadow: 0 0 0 4px rgba(57, 185, 90, 0.12);
  content: "";
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  height: clamp(31rem, 47vw, 44rem);
  place-items: center;
  margin: 0;
  perspective: 1400px;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 300ms ease-out;
}

.hero-screen,
.hero-depth-glow {
  --parallax-y: 0px;
  position: absolute;
  will-change: transform;
}

.hero-screen {
  filter: drop-shadow(0 2rem 2.5rem rgba(20, 22, 44, 0.2));
  transform-style: preserve-3d;
}

.hero-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-screen-desktop {
  z-index: 1;
  top: 10%;
  left: -3%;
  width: 112%;
  transform: translate3d(0, var(--parallax-y), -1rem) rotateX(1.5deg) rotateY(-4deg) rotateZ(-1deg);
  transform-origin: left center;
}

.hero-screen-mobile {
  z-index: 3;
  right: -2%;
  bottom: -5%;
  width: clamp(10.5rem, 18vw, 15.5rem);
  filter: drop-shadow(0 2rem 2.4rem rgba(20, 22, 44, 0.28));
  transform: translate3d(0, var(--parallax-y), 5rem) rotateZ(3.5deg) rotateY(-2deg);
  transform-origin: center bottom;
}

.hero-depth-glow {
  z-index: 0;
  border-radius: 50%;
  opacity: 0.58;
  filter: blur(26px);
  pointer-events: none;
}

.hero-depth-glow-coral {
  top: 5%;
  right: 8%;
  width: 48%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 91, 26, 0.22), transparent 68%);
  transform: translate3d(0, var(--parallax-y), -3rem);
}

.hero-depth-glow-blue {
  bottom: 2%;
  left: 6%;
  width: 36%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(33, 142, 230, 0.18), transparent 70%);
  transform: translate3d(0, var(--parallax-y), -2rem);
}

.browser-frame {
  overflow: hidden;
  border: 1px solid rgba(20, 22, 44, 0.14);
  border-radius: clamp(1.2rem, 2.4vw, 2rem);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.hero-visual .browser-frame {
  top: 6%;
  right: 2%;
  width: 100%;
  transform: translate3d(0, var(--parallax-y), 0) rotateY(-3.5deg) rotateX(1.5deg);
  transform-origin: left center;
}

.device-chrome {
  display: flex;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(20, 22, 44, 0.08);
  color: #8b919d;
  background: #f8f8fa;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.device-dots {
  position: absolute;
  left: 1rem;
  display: flex;
  gap: 0.35rem;
}

.device-dots i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: #d1d3d9;
}

.device-dots i:first-child {
  background: var(--brand-coral);
}

.device-dots i:nth-child(2) {
  background: var(--finish);
}

.device-dots i:nth-child(3) {
  background: var(--block-rest);
}

.browser-frame picture,
.browser-frame img {
  width: 100%;
}

.browser-frame img {
  aspect-ratio: 2048 / 1001;
  object-fit: cover;
}

.phone-frame {
  overflow: hidden;
  border: 7px solid var(--brand-navy);
  border-radius: 2.4rem;
  background: var(--brand-navy);
  box-shadow: var(--shadow-lg);
}

.phone-frame picture,
.phone-frame img {
  width: 100%;
  height: 100%;
}

.phone-frame img {
  object-fit: cover;
  object-position: 50% 38%;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 0.55rem;
  left: 50%;
  width: 2.7rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%);
}

.hero-visual .phone-frame {
  right: -1.5%;
  bottom: -4%;
  width: clamp(9.5rem, 15vw, 13.5rem);
  height: clamp(20.5rem, 34vw, 29rem);
  transform: translate3d(0, var(--parallax-y), 4rem) rotateZ(3.5deg);
}

.hero-orbit {
  --ring-progress: 0;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -7rem;
  width: min(57vw, 58rem);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.55;
  transform: translateY(-50%) rotate(calc(var(--ring-progress) * 90deg));
  transition: transform 100ms linear;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  mask: radial-gradient(transparent 63%, #000 64% 68%, transparent 69%);
}

.hero-ring-prep {
  inset: 2%;
  background: conic-gradient(from 10deg, transparent 0 18%, rgba(169, 120, 255, 0.65) 18% 24%, transparent 24%);
}

.hero-ring-work {
  inset: 11%;
  background: conic-gradient(from 84deg, transparent 0 27%, rgba(255, 91, 26, 0.72) 27% 55%, transparent 55%);
}

.hero-ring-rest {
  inset: 20%;
  background: conic-gradient(from 215deg, transparent 0 12%, rgba(33, 142, 230, 0.66) 12% 26%, transparent 26%);
}

/* Benefit strip */

.benefit-strip {
  position: relative;
  z-index: 5;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 7% 0%, rgba(255, 91, 26, 0.2), transparent 25rem),
    linear-gradient(135deg, #191b35, var(--brand-navy) 58%, #0f1125);
  box-shadow: 0 22px 70px rgba(20, 22, 44, 0.18);
}

.benefit-strip::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 88%);
  pointer-events: none;
}

.benefit-intro {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 58rem;
  grid-template-columns: minmax(10rem, 0.35fr) minmax(20rem, 1fr);
  align-items: end;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
}

.benefit-kicker {
  margin: 0;
  color: var(--work);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.benefit-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  line-height: 1.04;
}

.benefit-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.4rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-list::before {
  position: absolute;
  z-index: 0;
  top: 1.5rem;
  right: 12.5%;
  left: 12.5%;
  height: 5px;
  border-radius: 999px;
  background: var(--work);
  box-shadow:
    0 0 0 5px rgba(255, 91, 26, 0.1),
    0 8px 20px rgba(255, 91, 26, 0.2);
  content: "";
}

.benefit-item {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-top: 4.2rem;
}

.benefit-marker {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 4px solid var(--work);
  border-radius: 50%;
  color: #fff;
  background: var(--brand-navy);
  box-shadow:
    0 0 0 5px rgba(255, 91, 26, 0.12),
    0 10px 25px rgba(0, 0, 0, 0.28);
  font-size: 0.66rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.benefit-card {
  display: grid;
  min-height: 17rem;
  height: 100%;
  align-content: start;
  gap: 1.15rem;
  padding: clamp(1.25rem, 2vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 5px solid var(--work);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 22px 55px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.benefit-item:hover .benefit-card {
  border-color: rgba(255, 91, 26, 0.48);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.benefit-item-featured .benefit-card {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 91, 26, 0.18), transparent 10rem),
    rgba(255, 255, 255, 0.075);
}

.benefit-visual {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-items: center;
  border: 1px solid rgba(255, 91, 26, 0.25);
  border-radius: 1.15rem;
  background: rgba(255, 91, 26, 0.09);
  box-shadow: inset 0 0 20px rgba(255, 91, 26, 0.07);
}

.benefit-item-featured .benefit-visual {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
}

.benefit-visual svg {
  width: 82%;
  height: 82%;
  overflow: visible;
}

.benefit-icon-track,
.benefit-icon-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon-track {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 4;
}

.benefit-icon-progress {
  stroke: var(--work);
  stroke-width: 5;
}

.benefit-icon-surface {
  fill: rgba(255, 255, 255, 0.04);
  stroke-width: 2;
}

.benefit-icon-fill,
.benefit-icon-dot {
  fill: var(--work);
}

.benefit-copy {
  display: grid;
  gap: 0.65rem;
}

.benefit-label {
  color: var(--work);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.benefit-item h3 {
  margin: 0;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.14;
}

.benefit-item-featured h3 {
  font-size: clamp(1.18rem, 1.6vw, 1.55rem);
}

.benefit-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* Compact benefit timeline */

.benefit-strip {
  padding: clamp(2rem, 3.2vw, 2.8rem) 0;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 91, 26, 0.08), transparent 20rem),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(20, 22, 44, 0.08);
}

.benefit-strip::before {
  display: none;
}

.benefit-intro {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.benefit-kicker {
  color: var(--work);
  font-size: 0.68rem;
}

.benefit-intro h2 {
  max-width: 44rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.1vw, 2.05rem);
  line-height: 1.1;
}

.benefit-session-timeline {
  --timeline-divider-half: clamp(0.625rem, 0.9vw, 1rem);
  --timeline-inline-padding: 6px;
  --timeline-segment-gap: clamp(3px, 0.35vw, 6px);
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 48px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  padding: 6px var(--timeline-inline-padding);
  overflow: visible;
  border: 1px solid rgba(20, 22, 44, 0.08);
  border-radius: 1rem;
  background: rgba(20, 22, 44, 0.045);
  box-shadow:
    inset 0 1px 3px rgba(20, 22, 44, 0.08),
    0 8px 24px rgba(20, 22, 44, 0.06);
}

.benefit-timeline-segment {
  position: relative;
  display: flex;
  min-width: 8px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  opacity: 1;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.benefit-timeline-segment::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  background: var(--timeline-segment-color);
  content: "";
  transform: scaleX(var(--timeline-segment-fill, 1));
  transform-origin: left center;
  will-change: transform;
}

.benefit-timeline-segment span {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: var(--brand-navy);
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.benefit-timeline-segment.is-work {
  --timeline-segment-color: color-mix(in srgb, var(--work) 86%, #fff);
  grid-row: 1;
  margin-inline: calc(var(--timeline-divider-half) + var(--timeline-segment-gap));
  background: color-mix(in srgb, var(--work) 22%, #fff);
}

.benefit-timeline-segment.is-rest {
  --timeline-segment-color: color-mix(in srgb, var(--rest) 76%, #fff);
  position: absolute;
  z-index: 2;
  top: 6px;
  bottom: 6px;
  width: calc(var(--timeline-divider-half) * 2);
  background: color-mix(in srgb, var(--rest) 20%, #fff);
  transform: translateX(-50%);
}

.benefit-timeline-segment.timeline-panel-1 {
  grid-column: 1;
  margin-left: 0;
}

.benefit-timeline-segment.timeline-panel-2 {
  grid-column: 2;
}

.benefit-timeline-segment.timeline-panel-3 {
  grid-column: 3;
}

.benefit-timeline-segment.timeline-panel-4 {
  grid-column: 4;
  margin-right: 0;
}

.benefit-timeline-segment.timeline-divider-1 {
  left: calc(25% + var(--timeline-inline-padding) / 2);
}

.benefit-timeline-segment.timeline-divider-2 {
  left: 50%;
}

.benefit-timeline-segment.timeline-divider-3 {
  left: calc(75% - var(--timeline-inline-padding) / 2);
}

.benefit-timeline-segment.is-current {
  z-index: 1;
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 8px 18px rgba(255, 91, 26, 0.22);
  transform: translateY(-3px);
}

.benefit-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.benefit-list::before {
  display: none;
}

.benefit-item {
  display: block;
  min-width: 0;
  padding: 1rem clamp(0.85rem, 1.7vw, 1.5rem);
  border-left: 1px solid var(--line);
}

.benefit-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.benefit-marker {
  display: none;
}

.benefit-card {
  display: grid;
  min-height: 0;
  height: auto;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: normal;
  align-items: start;
  gap: 0.8rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: none;
}

.benefit-item:hover .benefit-card,
.benefit-item-featured .benefit-card {
  border-color: transparent;
  background: transparent;
  transform: none;
}

.benefit-visual,
.benefit-item-featured .benefit-visual {
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(255, 91, 26, 0.18);
  border-radius: 0.85rem;
  background: rgba(255, 91, 26, 0.065);
  box-shadow: none;
}

.benefit-item-featured .benefit-visual {
  border-radius: 50%;
}

.benefit-icon-track {
  stroke: rgba(20, 22, 44, 0.25);
}

.benefit-icon-surface {
  fill: rgba(20, 22, 44, 0.025);
}

.benefit-copy {
  gap: 0.3rem;
}

.benefit-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}

.benefit-item h3,
.benefit-item-featured h3 {
  color: var(--ink);
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  line-height: 1.22;
}

.benefit-item p {
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.45;
}

[data-phase="prep"] {
  --phase-color: var(--prep);
}

[data-phase="work"] {
  --phase-color: var(--work);
}

[data-phase="rest"] {
  --phase-color: var(--rest);
}

[data-phase="block-rest"] {
  --phase-color: var(--block-rest);
}

/* Narrative product sequence */

.product-story {
  padding: var(--section-space) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 247, 242, 0.7)),
    var(--canvas);
}

.story-heading {
  margin-bottom: clamp(3.5rem, 8vw, 7rem);
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(34rem, 1.3fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
}

.story-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.story-step {
  position: relative;
  display: grid;
  min-height: 48vh;
  grid-template-columns: auto 1fr;
  align-content: center;
  gap: 1.3rem;
  padding: 2.2rem 1rem 2.2rem 1.35rem;
  border-left: 2px solid rgba(20, 22, 44, 0.1);
  opacity: 1;
  transition:
    opacity 380ms ease,
    border-color 380ms ease,
    transform 380ms ease;
}

.story-step::before {
  position: absolute;
  top: 50%;
  left: -3px;
  width: 4px;
  height: 0;
  border-radius: 4px;
  background: var(--work);
  content: "";
  transform: translateY(-50%);
  transition: height 420ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.story-step.is-active {
  border-color: rgba(255, 91, 26, 0.16);
  opacity: 1;
  transform: translateX(0.45rem);
}

.story-step.is-active::before {
  height: 72%;
}

.story-step-number {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-soft);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.story-step.is-active .story-step-number {
  color: #fff;
  border-color: var(--action-coral);
  background: var(--action-coral);
  box-shadow: 0 8px 22px rgba(255, 91, 26, 0.25);
}

.story-step h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
}

.story-step p {
  max-width: 30rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.story-sticky {
  --story-stage-half-height: 16rem;
  position: sticky;
  top: calc(50svh + 2.35rem - var(--story-stage-half-height));
}

.story-stage {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 91, 26, 0.09), transparent 17rem),
    #f4f3f1;
  box-shadow: var(--shadow-md);
}

.story-stage::before {
  position: absolute;
  z-index: 4;
  top: 1rem;
  left: 1.25rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand-coral);
  box-shadow: 1rem 0 var(--finish), 2rem 0 var(--block-rest);
  content: "";
}

.story-screen {
  position: absolute;
  inset: 0;
  display: block;
  padding: 3.25rem 1rem 1rem;
  margin: 0;
  opacity: 0;
  transform: translateY(1.5rem) scale(0.985);
  transition:
    opacity 500ms ease,
    transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
  pointer-events: none;
}

.story-screen.is-active {
  z-index: 2;
  position: relative;
  inset: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.story-screen picture {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(20, 22, 44, 0.08);
  border-radius: 1.25rem;
  background: #fff;
}

.story-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.story-screen figcaption {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 4rem;
  left: 4rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  text-align: center;
}

.phase-system-visual figcaption,
.story-caption {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

/* Phase system */

.phase-system {
  position: relative;
  isolation: isolate;
  padding: var(--section-space) 0;
  overflow: clip;
  background: #edf4f9;
}

.phase-system::before {
  position: absolute;
  z-index: -1;
  right: -18rem;
  bottom: -22rem;
  width: 52rem;
  height: 52rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 142, 230, 0.13), transparent 68%);
  content: "";
}

.phase-system-layout {
  display: grid;
  grid-template-columns: minmax(24rem, 1fr) minmax(25rem, 0.82fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 9rem);
}

.phase-system-copy {
  position: sticky;
  top: clamp(7rem, 14svh, 10rem);
  align-self: start;
}

.phase-system-visual-track {
  --polar-track-baseline: 3.2;
  position: relative;
  min-width: 0;
  min-height: 132svh;
}

.phase-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  padding: 0;
  margin: 1.25rem 0 0;
  color: #596171;
  font-size: 0.76rem;
  font-weight: 700;
  list-style: none;
}

.phase-legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.phase-legend li > span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--phase-color);
}

.phase-system-visual {
  --parallax-y: 0px;
  --active-phase: var(--work);
  --phase-card-shadow: rgba(255, 91, 26, 0.2);
  --polar-rotation: 18deg;
  position: sticky;
  top: clamp(5.75rem, 10svh, 7.5rem);
  min-width: 0;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2.7rem) clamp(1.25rem, 3vw, 2.7rem) 5rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 75% 15%, rgba(169, 120, 255, 0.13), transparent 32%),
    rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 0 0 1px rgba(20, 22, 44, 0.08), var(--shadow-md);
  transform: translate3d(0, var(--parallax-y), 0);
}

.phase-system-visual[data-current-phase="prep"] {
  --active-phase: var(--prep);
  --phase-card-shadow: rgba(169, 120, 255, 0.16);
}

.phase-system-visual[data-current-phase="rest"] {
  --active-phase: var(--rest);
  --phase-card-shadow: rgba(33, 142, 230, 0.16);
}

.phase-system-visual[data-current-phase="block-rest"] {
  --active-phase: var(--block-rest);
  --phase-card-shadow: rgba(57, 185, 90, 0.18);
}

.polar-clock {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  isolation: isolate;
}

.polar-clock-aura {
  position: absolute;
  z-index: -1;
  inset: 8%;
  border-radius: 50%;
  background: conic-gradient(
    from 12deg,
    rgba(169, 120, 255, 0.3),
    rgba(255, 91, 26, 0.28),
    rgba(33, 142, 230, 0.25),
    rgba(57, 185, 90, 0.24),
    rgba(169, 120, 255, 0.3)
  );
  filter: blur(clamp(1.4rem, 3vw, 2.8rem));
  opacity: 0.55;
  transform: rotate(var(--polar-rotation)) scale(0.98);
  transition: transform 90ms linear;
}

.polar-clock-face {
  --polar-work: #ff5b1a;
  --polar-rest: #218ee6;
  --polar-block-rest: #39b95a;
  --polar-prep: #a978ff;
  --polar-track: #eef0f5;
  --polar-outline: #fff;
  --polar-marker-core: #fff7f0;
  --polar-badge-width: 11.71875%;
  --polar-badge-height: 8.984375%;
  --polar-badge-radius: 4.4921875cqw;
  --polar-progress-badge-glow: color-mix(
    in srgb,
    var(--polar-progress-badge-color, var(--polar-work)) 68%,
    transparent
  );
  --polar-badge-shadow:
    0 0 1.302083cqw var(--polar-progress-badge-glow),
    inset 0 0 1.119792cqw 0.78125cqw color-mix(in srgb, var(--polar-progress-badge-color, var(--polar-work)) 33%, transparent);
  --polar-arc-outline-width: 1.25;
  --polar-arc-path-outline-width: 1.25;
  --polar-middle-path-outline-width: 1.25;
  --polar-outer-circle-width: 4.8;
  --polar-middle-circle-width: 7.87;
  --polar-inner-track-width: 3.11;
  --polar-outer-backdrop-width: 1.25;
  --polar-middle-backdrop-width: 1.25;
  --polar-track-inner-shadow-filter: url("#polarTrackInnerShadow");
  --polar-outer-shell-shadow-filter: url("#polarOuterShellShadow");
  --polar-outer-inner-shadow-filter: url("#polarOuterInnerShadow");
  --polar-middle-foundation-shadow-filter: url("#polarMiddleFoundationShadow");
  --polar-layer-clock: 0;
  --polar-layer-canvas: 1;
  --polar-layer-content: 2;
  --polar-layer-badge: 3;
  --work: var(--polar-work);
  --rest: var(--polar-rest);
  --block-rest: var(--polar-block-rest);
  --prep: var(--polar-prep);
  position: absolute;
  inset: 5.5%;
  display: grid;
  place-items: center;
  isolation: isolate;
  container-type: inline-size;
}

.polar-clock-face::before {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 18px 32px color-mix(in srgb, var(--active-phase) 18%, transparent);
  content: "";
  pointer-events: none;
  transition: box-shadow 180ms ease;
}

.session-polar-clock {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
  z-index: var(--polar-layer-clock);
}

.polar-layer {
  pointer-events: none;
}

.polar-progress-canvas {
  position: absolute;
  z-index: var(--polar-layer-canvas);
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.session-polar-clock circle {
  fill: none;
}

.polar-arc-base,
.polar-arc-fill,
.polar-arc-outline,
.polar-ring-track {
  transition: stroke-dasharray 250ms linear, stroke 200ms ease, opacity 200ms ease;
}

.polar-arc-base {
  stroke: var(--polar-color);
  opacity: 0.2;
}

.polar-arc-base.is-active {
  opacity: 0.38;
}

.polar-arc-base.is-complete {
  opacity: 0.26;
  filter: saturate(0.65);
}

.polar-arc-fill {
  stroke: var(--polar-color);
  opacity: 0.92;
}

.polar-arc-fill.is-active {
  opacity: 1;
  filter: none;
}

.polar-arc-fill.is-complete {
  opacity: 1;
}

.polar-tone-work {
  --polar-tone-filter: url("#polarInnerShadowWork");
}

.polar-tone-rest {
  --polar-tone-filter: url("#polarInnerShadowRest");
}

.polar-tone-block-rest {
  --polar-tone-filter: url("#polarInnerShadowBlockRest");
}

.polar-ring-outer .polar-arc-base {
  stroke: var(--polar-track);
  opacity: 1;
  filter: var(--polar-track-inner-shadow-filter);
}

.polar-ring-outer path.polar-arc-base {
  fill: var(--polar-track);
  stroke: none;
  filter: var(--polar-track-inner-shadow-filter);
}

.polar-ring-outer .polar-arc-outline {
  stroke: var(--polar-outline);
  stroke-width: var(--polar-arc-outline-width);
  stroke-linecap: round;
  opacity: 1;
}

.polar-ring-outer path.polar-arc-outline {
  fill: var(--polar-outline);
  stroke: var(--polar-outline);
  stroke-width: var(--polar-arc-path-outline-width);
  stroke-linejoin: round;
}

.polar-ring-outer .polar-arc-base.is-active,
.polar-ring-outer .polar-arc-base.is-complete {
  opacity: 1;
  filter: var(--polar-track-inner-shadow-filter);
}

.polar-ring-outer .polar-arc-base,
.polar-ring-outer .polar-arc-fill {
  stroke-linecap: round;
}

.polar-ring-outer .polar-arc-fill {
  opacity: 1;
}

.polar-ring-outer path.polar-arc-fill {
  fill: var(--polar-color);
  stroke: none;
  filter: var(--polar-tone-filter, none);
}

.polar-ring-middle path.polar-arc-base {
  fill: var(--polar-track);
  stroke: none;
  opacity: 1;
  filter: none;
}

.polar-ring-middle path.polar-arc-outline {
  fill: var(--polar-outline);
  stroke: var(--polar-outline);
  stroke-width: var(--polar-middle-path-outline-width);
  stroke-linejoin: round;
  opacity: 1;
}

.polar-ring-middle path.polar-arc-fill {
  fill: var(--polar-color);
  stroke: none;
  opacity: 1;
  filter: var(--polar-tone-filter, none);
}

.polar-ring-outer .polar-arc-fill.is-active,
.polar-ring-middle path.polar-arc-fill.is-active {
  opacity: 1;
  filter: none;
}

.polar-ring-outer .polar-arc-fill.is-complete {
  opacity: 1;
  filter: var(--polar-tone-filter, none);
}

.polar-ring-outer circle {
  stroke-width: var(--polar-outer-circle-width);
}

.polar-ring-middle circle {
  stroke-width: var(--polar-middle-circle-width);
}

.polar-ring-track-inner {
  stroke: transparent;
  stroke-width: var(--polar-inner-track-width);
}

.session-polar-clock .polar-ring-backdrop-inner {
  fill: var(--polar-track);
  stroke: none;
  filter: var(--polar-outer-shell-shadow-filter);
}

.session-polar-clock .polar-ring-backdrop-outer,
.session-polar-clock .polar-ring-backdrop-middle {
  fill: var(--polar-outline);
  stroke: var(--polar-outline);
}

.session-polar-clock .polar-ring-backdrop-outer {
  stroke-width: var(--polar-outer-backdrop-width);
  filter: var(--polar-outer-shell-shadow-filter);
}

.session-polar-clock .polar-ring-backdrop-middle {
  stroke-width: var(--polar-middle-backdrop-width);
}

.session-polar-clock .polar-ring-shadow-outer-inner {
  fill: var(--polar-track);
  filter: var(--polar-outer-inner-shadow-filter);
}

.polar-ring-middle .polar-layer-separators {
  filter: var(--polar-middle-foundation-shadow-filter);
}

.polar-progress-badge {
  position: absolute;
  z-index: var(--polar-layer-badge);
  top: 50%;
  left: 50%;
  display: grid;
  width: var(--polar-badge-width);
  height: var(--polar-badge-height);
  place-items: center;
  border-radius: var(--polar-badge-radius);
  color: #fff;
  background: var(--polar-progress-badge-color, var(--polar-work));
  box-shadow: var(--polar-badge-shadow);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  pointer-events: none;
  text-align: center;
  transform: translate3d(
    calc(-50% + var(--polar-badge-x, 0cqw)),
    calc(-50% + var(--polar-badge-y, 0cqw)),
    0
  );
  transition: background-color 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.polar-progress-copy {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.polar-progress-value,
.polar-progress-symbol {
  font-family: var(--body-font);
  font-weight: 700;
  line-height: 1;
}

.polar-progress-value {
  font-size: clamp(0.7rem, 4.166667cqw, 2rem);
}

.polar-progress-symbol {
  font-size: clamp(0.5rem, 2.864583cqw, 1.375rem);
}

.polar-clock-core {
  position: relative;
  z-index: var(--polar-layer-content);
  display: grid;
  width: 64%;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.polar-clock-state {
  display: inline-flex;
  min-height: 34px;
  margin: 0;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff;
  background: var(--active-phase);
  box-shadow:
    0 10px 24px var(--phase-card-shadow),
    inset 0 -2px 0 rgba(17, 24, 39, 0.12);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.polar-clock-core strong {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(3rem, 18.75cqw, 9rem);
  font-variant-numeric: tabular-nums;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.phase-system-visual figcaption {
  position: absolute;
  z-index: 5;
  right: 2rem;
  bottom: 1rem;
  left: 2rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(20, 22, 44, 0.09);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* Gym */

.distance-section {
  padding: var(--section-space) 0;
  background:
    radial-gradient(circle at 18% 30%, rgba(247, 209, 84, 0.1), transparent 26rem),
    var(--canvas);
}

.distance-heading {
  max-width: 56rem;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.distance-heading .section-kicker {
  justify-content: center;
}

.distance-heading .section-copy {
  margin-inline: auto;
}

.gym-scene {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20, 22, 44, 0.13);
  border-radius: clamp(1.5rem, 3.4vw, 3.25rem);
  background: #e9ddca;
  box-shadow: var(--shadow-lg);
  transform: perspective(1600px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 300ms ease-out;
}

.gym-scene::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  content: "";
  pointer-events: none;
}

.gym-scene-background {
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.gym-tv {
  position: absolute;
  z-index: 2;
  top: 10.25%;
  left: 28.98%;
  width: 46.38%;
  height: 48.2%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #090b11;
}

.gym-tv picture,
.gym-screen {
  width: 100%;
  height: 100%;
}

.gym-screen {
  object-fit: contain;
}

.gym-scene .story-caption {
  position: absolute;
  z-index: 4;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: min(30rem, calc(100% - 2.5rem));
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 22, 44, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.distance-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.distance-points li {
  display: grid;
  gap: 0.3rem;
  padding: 1.4rem 1.55rem;
  border-top: 2px solid var(--work);
  border-radius: 0 0 1.3rem 1.3rem;
  background: rgba(255, 255, 255, 0.62);
}

.distance-points li:nth-child(2) {
  border-color: var(--rest);
}

.distance-points li:nth-child(3) {
  border-color: var(--block-rest);
}

.distance-points strong {
  font-family: var(--display-font);
  font-size: 1rem;
}

.distance-points span {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

/* Customization */

.customization {
  padding: var(--section-space) 0;
  background: #fff;
}

.customization .section-heading {
  max-width: 60rem;
}

.program-preview-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
  padding: 0;
  margin: 2.5rem 0 2rem;
  list-style: none;
}

.program-preview {
  display: grid;
  min-width: 0;
  min-height: clamp(9rem, 18vw, 16rem);
  place-items: center;
  background: #fff;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 500ms ease,
    transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.program-preview img {
  display: block;
  width: 50%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
}

.motion-ready .program-preview-list .program-preview {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
}

.motion-ready .program-preview-list.is-visible .program-preview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .program-preview-list.is-visible .program-preview:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .program-preview-list.is-visible .program-preview:nth-child(3) {
  transition-delay: 180ms;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card {
  position: relative;
  min-height: 19rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfaf8;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.feature-card::after {
  position: absolute;
  right: -5rem;
  bottom: -5rem;
  width: 10rem;
  height: 10rem;
  border: 1.2rem solid rgba(255, 91, 26, 0.06);
  border-radius: 50%;
  content: "";
}

.feature-card:nth-child(2)::after {
  border-color: rgba(33, 142, 230, 0.07);
}

.feature-card:nth-child(3)::after {
  border-color: rgba(57, 185, 90, 0.07);
}

.feature-card:hover {
  border-color: rgba(20, 22, 44, 0.18);
  box-shadow: var(--shadow-md);
  transform: translateY(-0.4rem);
}

.feature-index {
  display: inline-grid;
  width: 2.9rem;
  height: 2.9rem;
  margin-bottom: 4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brand-coral-ink);
  background: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.feature-card h3 {
  max-width: 18rem;
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

/* Controls */

.controls-section {
  position: relative;
  overflow: clip;
  background: #fff2eb;
}

.controls-section::before {
  position: absolute;
  top: -18rem;
  left: -12rem;
  width: 44rem;
  height: 44rem;
  border: 5rem solid rgba(255, 91, 26, 0.045);
  border-radius: 50%;
  content: "";
}

.controls-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(25rem, 1fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 11rem);
}

.controls-visual {
  --parallax-y: 0px;
  position: relative;
  width: min(100%, 23rem);
  justify-self: center;
  margin: 0;
  transform: translate3d(0, var(--parallax-y), 0) rotate(-2.5deg);
}

.controls-device-mockup img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2rem 2.5rem rgba(20, 22, 44, 0.2));
}

.controls-copy {
  max-width: 44rem;
}

.controls-list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 2.3rem 0 0;
  list-style: none;
}

.control-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(20, 22, 44, 0.11);
}

.control-marker {
  width: 0.82rem;
  height: 0.82rem;
  margin-top: 0.28rem;
  border: 3px solid #fff2eb;
  border-radius: 50%;
  background: var(--phase-color);
  box-shadow: 0 0 0 1px var(--phase-color);
}

.control-item h3 {
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.control-item p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Local data */

.local-data {
  padding: var(--section-space) 0;
  background: var(--canvas);
}

.local-data-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(2.2rem, 6vw, 5.5rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 95% 0, rgba(33, 142, 230, 0.28), transparent 24rem),
    radial-gradient(circle at 4% 100%, rgba(255, 91, 26, 0.22), transparent 25rem),
    var(--brand-navy);
  box-shadow: var(--shadow-lg);
}

.local-data-card::before {
  position: absolute;
  top: -15rem;
  right: -12rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.02);
}

.local-data-copy {
  position: relative;
  z-index: 2;
}

.local-data-copy h2 {
  color: #fff;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.local-data-copy .section-kicker {
  color: var(--brand-coral);
}

.local-data-copy .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.data-note {
  max-width: 43rem;
  padding-left: 1rem;
  margin: 1.6rem 0 0;
  border-left: 2px solid var(--finish);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
}

.data-facts {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.data-facts li {
  display: grid;
  gap: 0.22rem;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.07);
}

.data-facts strong {
  color: #fff;
  font-family: var(--display-font);
  font-size: 1rem;
}

.data-facts span {
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.82rem;
}

/* FAQ */

.faq-section {
  padding: var(--section-space) 0;
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(20rem, 0.68fr) minmax(30rem, 1fr);
  align-items: start;
  gap: clamp(4rem, 9vw, 10rem);
}

.faq-heading {
  position: sticky;
  top: 8.5rem;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  min-height: 5.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--display-font);
  font-size: clamp(1.03rem, 1.4vw, 1.25rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  color: var(--brand-coral-ink);
}

.faq-icon {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--canvas);
  font-family: var(--body-font);
  font-size: 1.25rem;
  font-weight: 500;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 280ms ease;
}

.faq-item[open] .faq-icon {
  color: #fff;
  background: var(--brand-coral);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 48rem;
  padding: 0 4rem 1.6rem 0;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

/* Final CTA and footer */

.final-cta {
  padding: 2rem 0 var(--section-space);
  background: #fff;
}

.final-cta-card {
  position: relative;
  isolation: isolate;
  padding: clamp(3rem, 8vw, 7.5rem) clamp(1.5rem, 6vw, 6rem);
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: #fff;
  background:
    radial-gradient(circle at 78% 25%, rgba(255, 91, 26, 0.29), transparent 25rem),
    var(--brand-navy);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.final-cta-card::before,
.final-cta-card::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.final-cta-card::before {
  top: -22rem;
  right: -10rem;
  width: 48rem;
  height: 48rem;
  border: 2rem solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 5rem rgba(255, 255, 255, 0.025), 0 0 0 10rem rgba(255, 255, 255, 0.018);
}

.final-cta-card::after {
  bottom: -12rem;
  left: -8rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(33, 142, 230, 0.25), transparent 68%);
}

.final-cta-symbol {
  width: 4.4rem;
  margin: 0 auto 1.5rem;
  padding: 0.75rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.final-cta-card h2 {
  max-width: 60rem;
  margin-inline: auto;
  color: #fff;
}

.final-cta-card .section-kicker {
  color: var(--brand-coral);
}

.final-cta-card > p:not(.section-kicker) {
  max-width: 42rem;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.final-cta-card .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.final-cta-card .button-secondary:hover {
  color: var(--brand-navy);
  background: #fff;
}

.site-footer {
  padding: 2.25rem 0 1.75rem;
  border-top: 1px solid var(--line);
  background: var(--canvas);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) minmax(20rem, 38rem);
  align-items: center;
  gap: 2rem 4rem;
}

.footer-logo {
  width: 9.5rem;
}

.footer-tagline {
  max-width: 38rem;
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: right;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 3rem;
  padding-top: 1.15rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 1.4rem;
}

.footer-links a {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  padding-inline: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-meta {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  white-space: nowrap;
}

/* Motion */

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition:
    opacity 700ms ease,
    transform 800ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.motion-ready .benefit-item:nth-child(2),
.motion-ready .feature-card:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .benefit-item:nth-child(3),
.motion-ready .feature-card:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .benefit-item:nth-child(4) {
  transition-delay: 270ms;
}

/* Large desktop */

@media (min-width: 1680px) {
  :root {
    --shell: min(100% - 6rem, 1580px);
  }

  .hero-layout {
    grid-template-columns: minmax(25rem, 0.78fr) minmax(46rem, 1.42fr);
  }

  .hero-copy h1 {
    font-size: clamp(5rem, 5.7vw, 7.2rem);
  }

  .hero-visual {
    height: 46rem;
  }
}

/* Laptop */

@media (max-width: 1240px) {
  :root {
    --shell: min(100% - 2.5rem, 1180px);
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    min-height: 42rem;
    grid-template-columns: minmax(19rem, 0.8fr) minmax(31rem, 1.2fr);
    gap: 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.3rem, 6.4vw, 5.25rem);
  }

  .hero-visual {
    height: 34rem;
  }

  .story-shell {
    grid-template-columns: minmax(17rem, 0.72fr) minmax(30rem, 1.28fr);
    gap: 3.5rem;
  }

  .story-stage {
    min-height: 0;
  }

  .phase-system-layout {
    gap: 4rem;
  }
}

/* Tablet and mobile navigation */

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 2rem, 880px);
    --section-space: clamp(5rem, 12vw, 7rem);
  }

  .site-header-inner {
    min-height: 4.7rem;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 4.7rem;
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 1.2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    transform: translateY(-0.75rem) scale(0.98);
    transform-origin: top;
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms;
    visibility: hidden;
  }

  .nav-open .site-nav {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    min-height: 3.25rem;
    padding: 0.9rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-top: 4.25rem;
  }

  .hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .hero-copy {
    max-width: 47rem;
  }

  .hero-copy h1 {
    max-width: 46rem;
    font-size: clamp(3.3rem, 9vw, 6rem);
  }

  .hero-visual {
    width: min(100%, 54rem);
    height: clamp(26rem, 63vw, 36rem);
    justify-self: center;
  }

  .hero-screen-desktop {
    top: 7%;
    left: 0;
    width: 100%;
  }

  .hero-screen-mobile {
    right: 2%;
    bottom: -3%;
    width: clamp(10rem, 25vw, 14rem);
  }

  .hero-orbit {
    top: 72%;
    right: -12rem;
    width: 52rem;
  }

  .benefit-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .benefit-item {
    border-top: 1px solid var(--line);
  }

  .benefit-item:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .benefit-item::before,
  .benefit-item:nth-child(odd)::before {
    display: none;
  }

  .story-shell {
    display: block;
  }

  .story-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .story-step {
    min-height: auto;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 1.25rem;
    border: 1px solid var(--line);
    border-radius: 1.2rem;
    opacity: 1;
  }

  .story-step::before {
    display: none;
  }

  .story-step.is-active {
    border-color: rgba(255, 91, 26, 0.3);
    background: rgba(255, 91, 26, 0.035);
    transform: none;
  }

  .story-step p {
    font-size: 0.9rem;
  }

  .story-sticky {
    position: relative;
    top: auto;
  }

  .story-stage {
    height: auto;
    min-height: 0;
    padding: 3.2rem 0.85rem 0.85rem;
  }

  .story-screen,
  .story-screen.is-active {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin-bottom: 1rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .story-screen[aria-hidden="true"] {
    display: grid;
  }

  .story-screen picture {
    min-height: 0;
  }

  .story-screen img {
    max-height: none;
  }

  .story-screen figcaption {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    order: -1;
    margin: 0 0 0.65rem;
  }

  .phase-system-layout,
  .controls-layout,
  .local-data-card,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .phase-system-copy {
    position: relative;
    top: auto;
    max-width: 48rem;
  }

  .phase-system-visual-track {
    --polar-track-baseline: 2.7;
    min-height: 130svh;
  }

  .phase-system-visual {
    top: 5.5rem;
    width: min(100%, 35rem);
    justify-self: center;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-index {
    margin-bottom: 2.2rem;
  }

  .controls-layout {
    gap: 4rem;
  }

  .controls-visual {
    width: min(100%, 20rem);
  }

  .controls-copy {
    justify-self: center;
  }

  .local-data-card {
    gap: 2.5rem;
  }

  .faq-heading {
    position: relative;
    top: auto;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: min(100% - 1.4rem, 42rem);
    --radius-xl: 2rem;
  }

  html {
    scroll-padding-top: 5.5rem;
  }

  .section-heading h2,
  .phase-system-copy h2,
  .controls-copy h2,
  .local-data-copy h2,
  .final-cta-card h2 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .hero {
    padding: 3.1rem 0 4.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.55rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    gap: 0.55rem;
  }

  .hero-visual {
    height: clamp(20rem, 78vw, 27rem);
  }

  .hero-screen-desktop {
    top: 8%;
    left: -2%;
    width: 104%;
    transform: translate3d(0, var(--parallax-y), -1rem) rotateZ(-0.6deg);
  }

  .hero-screen-mobile {
    right: 0;
    bottom: -4%;
    width: clamp(7.8rem, 28vw, 10.5rem);
    transform: translate3d(0, var(--parallax-y), 4rem) rotateZ(3deg);
  }

  .benefit-strip {
    padding: 1.65rem 0;
  }

  .benefit-intro {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    margin-bottom: 1rem;
  }

  .benefit-intro h2 {
    font-size: clamp(1.45rem, 7vw, 1.85rem);
  }

  .benefit-session-timeline {
    --timeline-inline-padding: 5px;
    height: 42px;
    padding: 5px var(--timeline-inline-padding);
    border-radius: 0.85rem;
  }

  .benefit-timeline-segment.is-rest {
    top: 5px;
    bottom: 5px;
  }

  .benefit-timeline-segment span {
    font-size: 0.58rem;
  }

  .benefit-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 1rem;
  }

  .benefit-item,
  .benefit-item:first-child,
  .benefit-item:nth-child(3) {
    padding: 0.8rem;
    border-top: 0;
    border-left: 0;
  }

  .benefit-item:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .benefit-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .benefit-item::before,
  .benefit-item:nth-child(odd)::before {
    display: none;
  }

  .benefit-card {
    min-height: 0;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.5rem;
    padding: 0;
  }

  .benefit-visual,
  .benefit-item-featured .benefit-visual {
    width: 2.3rem;
    height: 2.3rem;
  }

  .benefit-item h3,
  .benefit-item-featured h3 {
    font-size: 0.86rem;
  }

  .benefit-item p {
    display: none;
  }

  .story-heading {
    margin-bottom: 2.5rem;
  }

  .story-steps {
    grid-template-columns: 1fr;
  }

  .story-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .story-copy,
  .story-steps,
  .story-sticky,
  .story-stage {
    display: contents;
  }

  .story-step {
    grid-template-columns: auto 1fr;
    margin: 0;
    border-bottom: 0;
    border-radius: 1.2rem 1.2rem 0 0;
  }

  .story-step[data-story-step="prepare"] {
    grid-row: 1;
  }

  .story-screen[data-story-screen="prepare"] {
    grid-row: 2;
  }

  .story-step[data-story-step="move"] {
    grid-row: 3;
  }

  .story-screen[data-story-screen="move"] {
    grid-row: 4;
  }

  .story-step[data-story-step="review"] {
    grid-row: 5;
  }

  .story-screen[data-story-screen="review"] {
    grid-row: 6;
  }

  .story-screen,
  .story-screen.is-active,
  .story-screen[aria-hidden="true"] {
    position: relative;
    display: flex;
    min-width: 0;
    overflow: hidden;
    padding: 2.85rem 0.7rem 0.7rem;
    margin: 0 0 1.5rem;
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 1.2rem 1.2rem;
    background:
      radial-gradient(circle at 20% 10%, rgba(255, 91, 26, 0.09), transparent 17rem),
      #f4f3f1;
    box-shadow: var(--shadow-sm);
  }

  .story-screen::before {
    position: absolute;
    z-index: 4;
    top: 1.15rem;
    left: 1.15rem;
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 50%;
    background: var(--brand-coral);
    box-shadow: 0.8rem 0 var(--finish), 1.6rem 0 var(--block-rest);
    content: "";
  }

  .story-screen picture {
    width: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 0.9rem;
  }

  .story-screen figcaption {
    position: absolute;
    top: 0.9rem;
    right: 1rem;
    left: 4rem;
    margin: 0;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .phase-system-visual {
    top: 5rem;
    padding: 1rem;
    border-radius: 1.6rem;
  }

  .phase-system-visual-track {
    --polar-track-baseline: 2.6;
    min-height: 108svh;
  }

  .phase-system-visual figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 1rem 0 0;
    border-radius: 1rem;
  }

  .distance-heading {
    text-align: left;
  }

  .distance-heading .section-kicker {
    justify-content: flex-start;
  }

  .gym-scene {
    border-radius: 1.25rem;
  }

  .gym-scene .story-caption {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    padding: 0.9rem 1rem;
    margin: 0;
    border: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.8);
    background: var(--brand-navy);
    backdrop-filter: none;
  }

  .distance-points {
    grid-template-columns: 1fr;
  }

  .program-preview-list {
    display: flex;
    gap: 0.75rem;
    padding: 0 0 0.75rem;
    margin-top: 2rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .program-preview-list::-webkit-scrollbar {
    display: none;
  }

  .program-preview {
    flex: 0 0 min(78vw, 21rem);
    min-height: clamp(9rem, 48vw, 13rem);
    scroll-snap-align: center;
  }

  .controls-layout {
    gap: 3rem;
  }

  .controls-visual {
    width: min(84vw, 18rem);
  }

  .local-data-card {
    padding: 2rem 1.25rem;
    border-radius: 1.7rem;
  }

  .faq-question {
    min-height: 4.6rem;
    font-size: 1rem;
  }

  .faq-answer p {
    padding-right: 0;
  }

  .final-cta-card {
    padding: 3.2rem 1.25rem;
    border-radius: 1.7rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-tagline {
    max-width: 32rem;
    text-align: left;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .footer-links {
    justify-content: flex-start;
    order: -1;
  }
}

@media (max-width: 430px) {
  .site-logo img {
    width: 8.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.85rem, 13.6vw, 3.65rem);
  }

  .hero-visual {
    height: 19rem;
  }

  .hero-screen-desktop {
    left: -4%;
    width: 108%;
  }

  .hero-screen-mobile {
    right: -1%;
    bottom: -2%;
    width: 7.4rem;
  }

  .story-step {
    gap: 0.9rem;
    padding: 1rem;
  }

  .story-step-number {
    width: 2.25rem;
    height: 2.25rem;
  }

  .story-step h3 {
    font-size: 1.25rem;
  }

  .story-screen picture {
    min-height: 0;
  }

  .phase-legend {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready [data-reveal],
  .motion-ready [data-reveal].is-visible,
  .hero-visual,
  .hero-screen,
  .hero-depth-glow,
  .hero-visual .browser-frame,
  .hero-visual .phone-frame,
  .phase-system-visual,
  .gym-scene,
  .controls-visual {
    opacity: 1;
    transform: none !important;
  }

  .phase-system-visual-track {
    min-height: auto;
  }

  .phase-system-copy,
  .phase-system-visual {
    position: relative;
    top: auto;
  }

  .hero-orbit {
    display: none;
  }
}

@media (forced-colors: active) {
  .button,
  .program-preview,
  .polar-clock-face,
  .polar-clock-core,
  .polar-progress-badge,
  .story-step,
  .feature-card,
  .faq-item,
  .data-facts li {
    border: 1px solid CanvasText;
  }

  .benefit-marker,
  .control-marker,
  .phase-legend li > span,
  .hero-facts li::before,
  .session-polar-clock {
    forced-color-adjust: none;
  }
}
