@font-face {
  font-family: DM Sans;
  src: url('/fonts/dm-sans-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url('/fonts/instrument-serif-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: IBM Plex Mono;
  src: url('/fonts/ibm-plex-mono-latin.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
:root {
  --ground: #0b0e0d;
  --surface: #121715;
  --ink: #efefe6;
  --muted: #9ba69d;
  --acid: #d6ff3d;
  --paper: #eeeee5;
  --rule: rgba(205, 224, 208, 0.16);
  --mono: 'IBM Plex Mono', monospace;
  --serif: Instrument, Georgia, serif;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  color-scheme: dark;
  font-family: 'DM Sans', sans-serif;
  color: var(--ink);
  background: var(--ground);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
button {
  color: inherit;
}
button[hidden] {
  display: none;
}
::selection {
  color: var(--ground);
  background: var(--acid);
}
:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 6px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 450;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
svg {
  display: block;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: calc(100% - 112px);
  max-width: 1488px;
  margin-inline: auto;
}
.mono,
.eyebrow {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.075em;
  line-height: 1.6;
}
.eyebrow {
  text-transform: uppercase;
}
.acid {
  color: var(--acid);
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 100;
  padding: 14px 20px;
  background: var(--acid);
  color: var(--ground);
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.site-header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: inline-flex;
  align-items: center;
  font-size: 29px;
  letter-spacing: -1.4px;
  font-weight: 550;
}
.brand svg {
  width: 24px;
  height: 28px;
  margin-right: 11px;
  color: var(--acid);
}
.brand-period {
  color: var(--acid);
}
.site-header nav {
  display: flex;
  gap: 38px;
  font-size: 12px;
  color: #bfc7bd;
}
.site-header nav a {
  padding: 16px 0;
  transition: color 0.2s;
}
.site-header nav a:hover {
  color: var(--acid);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 37px;
  font-size: 12px;
  border: 1px solid #47513f;
  border-radius: 30px;
  padding: 13px 18px;
}
.header-cta span {
  font-size: 17px;
  color: var(--acid);
}
.header-cta:hover {
  border-color: var(--acid);
}
.hero {
  position: relative;
  min-height: 900px;
  height: min(1020px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background: #0b100d;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='white' filter='url(%23n)' opacity='.8' d='M0 0h160v160H0z'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-aura {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse at 75% 40%, #2b38234a 0, transparent 48%),
    radial-gradient(ellipse at 20% 100%, #15221b80, transparent 55%);
}
.hero-copy {
  position: relative;
  padding-top: 188px;
  z-index: 3;
  pointer-events: none;
}
.hero-copy a {
  pointer-events: auto;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #bac6b3;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 16px #d6ff3d40;
}
.hero h1 {
  font-size: clamp(110px, 10.65vw, 175px);
  line-height: 0.92;
  letter-spacing: -0.079em;
  margin: 39px 0 32px;
  font-weight: 420;
}
.hero h1 em {
  font-size: 1.16em;
  letter-spacing: -0.047em;
  line-height: 0.94;
  display: inline-block;
  padding-right: 0.13em;
  color: #e1e4cd;
}
.hero-intro {
  font-size: 16px;
  line-height: 1.7;
  max-width: 310px;
  color: #b8c1b4;
  letter-spacing: -0.02em;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 29px;
  min-height: 58px;
  padding: 7px 8px 7px 24px;
  border-radius: 38px;
  font-size: 12px;
  font-weight: 550;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}
.button--acid {
  background: var(--acid);
  color: #18220c;
  box-shadow:
    inset 0 1px 0 #f1ffa4,
    0 4px 16px #0003;
}
.button-arrow {
  display: grid;
  place-items: center;
  font-size: 22px;
  background: #23330712;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #263f1530;
  transition: transform 0.3s;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 30px #aaff3020;
}
.button:hover .button-arrow {
  transform: rotate(45deg);
}
.hero .button {
  margin-top: 28px;
}
.availability {
  display: flex;
  gap: 7px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.01em;
  color: #95a28e;
  margin-top: 17px;
}
.availability svg {
  width: 10px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.2;
}
.hero-art {
  position: absolute;
  inset: 106px 0 100px 39%;
  z-index: 1;
}
.scene--form {
  position: absolute;
  width: 105%;
  height: 108%;
  left: -2%;
  top: -7%;
  filter: drop-shadow(0 30px 36px #0008);
}
.scene canvas,
.scene-fallback {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  display: block;
}
.scene-fallback {
  transition: opacity 0.6s;
}
.scene[data-ready='true'] .scene-fallback {
  opacity: 0;
}
.orbit-guide {
  position: absolute;
  width: 83%;
  aspect-ratio: 1;
  border: 1px solid #a3bc9212;
  border-radius: 50%;
  left: 8%;
  top: 2%;
  transform: rotate(-22deg);
}
.orbit-guide::before,
.orbit-guide::after {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px dashed #b0c39c12;
  border-radius: 50%;
}
.orbit-guide::after {
  inset: -30px;
  border-style: solid;
  opacity: 0.4;
}
.orbit-guide > span {
  position: absolute;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #a5b897;
  top: 12%;
  right: 3%;
  transform: rotate(45deg);
}
.form-marker {
  position: absolute;
  display: flex;
  gap: 15px;
  align-items: center;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.09em;
  line-height: 1.8;
  color: #9fac96;
}
.marker--top {
  left: 9%;
  top: 9%;
}
.cross {
  font-size: 27px;
  color: #d4dbbc;
}
.marker--bottom {
  bottom: 11%;
  left: 21%;
}
.marker--bottom i {
  width: 36px;
  height: 1px;
  background: var(--acid);
}
.form-readout {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: 172px;
  padding: 21px;
  border: 1px solid #c9eaa326;
  border-radius: 14px;
  background: linear-gradient(140deg, #3a44394d, #0e181733);
  backdrop-filter: blur(18px);
  box-shadow:
    inset 0 1px 0 #eaffc50d,
    0 20px 60px #0003;
  transform: rotate(5deg);
}
.form-readout .eyebrow {
  font-size: 8px;
  color: #bdcbb2;
  letter-spacing: 0.03em;
}
.form-readout > div {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 4px;
}
.form-readout strong {
  font-size: 68px;
  font-weight: 350;
  letter-spacing: -0.08em;
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.readout-trend {
  font-size: 28px;
  color: var(--acid);
}
.readout-status {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #dae4c6;
  font-size: 8px;
  margin-top: 8px;
  white-space: nowrap;
}
.readout-status i {
  width: 4px;
  height: 4px;
  background: var(--acid);
  border-radius: 50%;
}
.form-readout svg {
  width: 100%;
  height: 30px;
  fill: none;
  stroke: var(--acid);
  stroke-width: 1.2;
  margin: 18px 0 9px;
}
.readout-caption {
  font: 6px var(--mono);
  letter-spacing: 0.075em;
  color: #afbea1;
}
.hero-bottom {
  position: absolute;
  bottom: 29px;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  gap: 38px;
  z-index: 4;
}
.form-explorer > .mono {
  color: #a5b39b;
  font-size: 8px;
  display: block;
  margin-bottom: 11px;
}
.state-switch {
  display: flex;
  gap: 3px;
  background: #050c0770;
  border: 1px solid #afc39b25;
  border-radius: 40px;
  padding: 5px;
  backdrop-filter: blur(12px);
}
.state-switch button {
  border: 0;
  background: transparent;
  font-size: 11px;
  padding: 12px 17px;
  border-radius: 30px;
  color: #adbca3;
  transition:
    background 0.25s,
    color 0.25s;
}
.state-switch button[aria-pressed='true'] {
  color: #20280f;
  background: #e4e9c8;
  box-shadow: 0 1px 3px #0004;
}
.state-switch button span {
  padding-left: 6px;
}
.state-switch button:hover:not([aria-pressed='true']) {
  background: #ffffff0a;
  color: #e4e9c8;
}
.form-caption {
  font-size: 10px;
  line-height: 1.6;
  color: #9eac93;
  padding-bottom: 9px;
  max-width: 180px;
}
.motion-toggle {
  margin-left: auto;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  font: 9px var(--mono);
  color: #b0bda8;
  border: 0;
  background: transparent;
  padding: 8px;
}
.motion-toggle:disabled {
  opacity: 0.75;
}
.scroll-cue {
  height: 44px;
  width: 44px;
  border: 1px solid #aabc8f40;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 21px;
  color: #e2e9c4;
}
.manifesto {
  background: var(--paper);
  color: #242e26;
  padding: 62px 0 72px;
  position: relative;
}
.section-kicker {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-kicker .eyebrow {
  color: #5f6c5f;
}
.section-kicker svg {
  width: 31px;
  height: 31px;
  color: #4c6048;
}
.manifesto h2 {
  font-size: clamp(70px, 8.2vw, 138px);
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin: 69px 0 50px;
  max-width: 1180px;
}
.manifesto h2 em {
  font-size: 1.14em;
  letter-spacing: -0.05em;
  color: #6f785d;
}
.manifesto-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 65px;
  border-top: 1px solid #41513c30;
  padding-top: 34px;
}
.manifesto-symbol {
  font-size: 58px;
  line-height: 1;
  color: #75845b;
}
.manifesto-bottom p {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -0.015em;
}
.manifesto-bottom p:last-child {
  font-size: 13px;
  color: #56634e;
  max-width: 330px;
}
.product-section {
  padding: 150px 0 115px;
  overflow: hidden;
  background: radial-gradient(ellipse at 83% 47%, #29312855, transparent 50%);
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.product-copy > .eyebrow {
  color: #a7b895;
  margin-bottom: 39px;
}
.product-copy h2 {
  font-size: clamp(48px, 4.55vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.06em;
}
.product-copy h2 em {
  font-size: 1.15em;
  line-height: 1.1;
  color: #c7d4b7;
  letter-spacing: -0.04em;
}
.product-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 335px;
  margin-top: 28px;
}
.product-features {
  margin: 45px 0 32px;
  max-width: 410px;
}
.product-features article {
  display: flex;
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid var(--rule);
}
.product-features article > .mono {
  color: #9cab8e;
  font-size: 9px;
  padding-top: 4px;
}
.product-features h3 {
  font-size: 16px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.product-features p {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 315px;
}
.product-footnote {
  font-size: 8px;
  color: #97a68b;
}
.device-stage {
  position: relative;
  min-height: 810px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1600px;
}
.device-orbit {
  position: absolute;
  inset: 17% -19%;
  border: 1px solid #9eb58418;
  border-radius: 50%;
  transform: rotate(-30deg);
}
.device-orbit::after {
  content: '';
  position: absolute;
  inset: 38px;
  border: 1px solid #9eb58410;
  border-radius: 50%;
}
.device-caption {
  position: absolute;
  top: 8%;
  left: -10%;
  font-size: 8px;
  color: #92a084;
  line-height: 1.8;
}
.phone {
  position: relative;
  width: 318px;
  padding: 7px;
  border-radius: 49px;
  background: linear-gradient(
    115deg,
    #98a191 0%,
    #374336 15%,
    #121812 25%,
    #4d5745 55%,
    #b8bfaa 80%,
    #394732 90%
  );
  box-shadow:
    0 50px 90px #0008,
    18px 15px 30px #0007,
    -1px -1px 1px #b7c4a8,
    1px 1px 1px #eff2cf;
  transform: rotateY(-12deg) rotateZ(7deg);
  will-change: transform;
  animation: device-drift 14s ease-in-out infinite;
}
.phone::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid #9eac8b60;
  border-radius: 47px;
  pointer-events: none;
}
.phone-side {
  position: absolute;
  top: 125px;
  left: -3px;
  height: 38px;
  width: 3px;
  background: #89947d;
  border-radius: 3px;
  box-shadow: 0 49px 0 #89947d;
}
.phone-screen {
  background: #0b0e0d;
  border: 3px solid #010402;
  border-radius: 42px;
  padding: 0 19px;
  position: relative;
  overflow: hidden;
  min-height: 658px;
}
.phone-screen::before {
  content: '';
  position: absolute;
  left: -30%;
  right: -40%;
  top: 30px;
  height: 285px;
  pointer-events: none;
  background: repeating-radial-gradient(
    ellipse at 55% 100%,
    transparent 0 8px,
    #6683630c 9px,
    transparent 10px 13px
  );
  mask-image: linear-gradient(transparent, #000 30%, transparent 99%);
}
.phone-status {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  font-size: 10px;
  font-weight: 650;
  position: relative;
}
.dynamic-island {
  position: absolute;
  width: 88px;
  height: 25px;
  border-radius: 18px;
  background: #000;
  left: 50%;
  transform: translateX(-50%);
  top: 6px;
}
.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
}
.app-wordmark {
  font-size: 17px;
  letter-spacing: -1px;
  font-weight: 500;
}
.app-avatar {
  width: 24px;
  height: 24px;
  border: 1px solid #80936d4d;
  background: #7b906d19;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: #afbd9e;
}
.app-date {
  font-size: 7px;
  color: #96a28d;
  margin-top: 21px;
}
.phone h3 {
  font-size: 24px;
  letter-spacing: -1px;
  margin-top: 4px;
  font-weight: 400;
}
.app-readiness {
  position: relative;
  width: 177px;
  height: 177px;
  margin: 17px auto 19px;
  display: grid;
  place-items: center;
}
.app-readiness svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #cce7a718;
  stroke-width: 2;
}
.app-readiness .app-ring-value {
  stroke: var(--acid);
  stroke-width: 3;
  stroke-dasharray: 529 616;
  transform: rotate(-90deg);
  transform-origin: center;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px #d6ff3d55);
}
.app-readiness > div {
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.app-readiness .mono {
  font-size: 7px;
  color: #adb69f;
  letter-spacing: 0.1em;
}
.app-readiness strong {
  font-size: 67px;
  line-height: 1.17;
  font-weight: 300;
  letter-spacing: -5px;
}
.app-fresh {
  font: 8px var(--mono);
  letter-spacing: 0.06em;
  color: var(--acid);
}
.app-fresh span {
  margin-left: 5px;
}
.app-signals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
}
.app-signals > div {
  display: flex;
  flex-direction: column;
  text-align: center;
  border-right: 1px solid var(--rule);
  gap: 5px;
}
.app-signals > div:last-child {
  border: 0;
}
.app-signals > div > span {
  font: 6px var(--mono);
  color: #99a98f;
}
.app-signals strong {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -1px;
}
.app-signals small {
  font-size: 8px;
  color: #a8b19e;
  letter-spacing: 0;
}
.app-note {
  background: linear-gradient(140deg, #2a33282b, #2a332818);
  border: 1px solid #a7be8224;
  padding: 15px 13px;
  border-radius: 12px;
}
.app-note > .mono {
  font-size: 7px;
  color: #c2cdb3;
  display: flex;
  gap: 6px;
  align-items: center;
}
.app-note i {
  height: 4px;
  width: 4px;
  background: var(--acid);
  border-radius: 50%;
}
.app-note > p {
  font-size: 13px;
  line-height: 1.6;
  margin: 10px 0 8px;
}
.app-note > span:last-child {
  font-size: 7px;
  color: #a3b193;
}
.app-note > span:last-child > span {
  margin-left: 8px;
  color: var(--acid);
}
.app-plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 21px 0 18px;
}
.app-plan > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.app-plan .mono {
  font-size: 7px;
  color: #a7b29d;
}
.app-plan strong {
  font-size: 16px;
  font-weight: 400;
}
.app-plan strong span {
  font-size: 12px;
  color: var(--acid);
  margin-left: 7px;
}
.app-plan > span {
  font-size: 24px;
  letter-spacing: -1.5px;
}
.app-plan small {
  font: 7px var(--mono);
  color: #a8b29b;
}
.app-nav {
  display: flex;
  justify-content: space-between;
  padding: 11px 9px 16px;
  border-top: 1px solid var(--rule);
  color: #829277;
  font-size: 18px;
}
.app-nav span {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}
.app-nav .active {
  color: var(--acid);
}
.app-nav small {
  font-size: 6px;
}
.home-indicator {
  height: 3px;
  width: 88px;
  border-radius: 4px;
  background: #aeb7a2;
  margin: 0 auto 8px;
}
.floating-note {
  display: flex;
  align-items: center;
  gap: 15px;
  position: absolute;
  left: -13%;
  bottom: 15%;
  padding: 20px 25px;
  border: 1px solid #c2d5ac35;
  border-radius: 15px;
  background: linear-gradient(130deg, #3b483747, #19231670);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 60px #0004;
  transform: rotate(-5deg);
}
.note-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: #c4de9630;
  border: 1px solid #dcf8b146;
  color: #e5ffbe;
  border-radius: 11px;
  font-size: 22px;
}
.floating-note .mono {
  font-size: 7px;
  color: #b5c4a7;
}
.floating-note p {
  font-size: 15px;
  margin-top: 4px;
  letter-spacing: -0.3px;
}
.device-disclaimer {
  position: absolute;
  bottom: 0;
  font-size: 7px;
  color: #92a382;
  letter-spacing: 0.08em;
}
.landscape-section {
  padding: 110px 0 80px;
  background: #131915;
  border-top: 1px solid var(--rule);
}
.landscape-heading {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: end;
  gap: 140px;
  margin-bottom: 52px;
}
.landscape-heading .eyebrow {
  color: #9aaf88;
  margin-bottom: 32px;
}
.landscape-heading h2 {
  font-size: clamp(45px, 4.2vw, 70px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  max-width: 600px;
}
.landscape-heading > p {
  font-size: 13px;
  line-height: 1.8;
  color: #a7b29c;
  max-width: 305px;
  padding-bottom: 5px;
}
.terrain-panel {
  border: 1px solid #94ad7d2b;
  background: radial-gradient(ellipse at 50% 25%, #22302570, transparent 65%), #0d130f;
  border-radius: 20px;
  padding: 32px 38px 20px;
  overflow: hidden;
}
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.panel-top .eyebrow {
  font-size: 8px;
  color: #a1b18e;
}
.panel-top p {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-top: 7px;
}
.sample-tag {
  font-size: 7px;
  color: #9eae8b;
  border: 1px solid #a0b28433;
  border-radius: 20px;
  padding: 7px 10px;
}
.scene--load {
  position: relative;
  height: 330px;
  width: 100%;
  margin-top: 8px;
}
.terrain-selection {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 9px;
  min-height: 35px;
}
.terrain-selection .eyebrow {
  color: var(--acid);
}
.terrain-selection strong {
  font-weight: 400;
  font-size: 14px;
}
.terrain-selection > .mono {
  margin-left: auto;
  font-size: 8px;
  color: #a7b697;
}
.terrain-selection b {
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  margin-left: 10px;
}
.terrain-axis {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #8fa57e;
  margin: 27px 0 13px;
  padding: 0 6px;
}
.terrain-controls {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 20px 0;
  border-top: 1px solid #c7dfa721;
  border-bottom: 1px solid #c7dfa721;
}
.terrain-controls label {
  font-size: 11px;
  white-space: nowrap;
}
.terrain-controls label span {
  color: #b0c695;
  margin-left: 7px;
}
.terrain-controls input {
  appearance: none;
  height: 3px;
  flex: 1;
  min-width: 0;
  background: linear-gradient(90deg, #435a32, #b7d970);
  cursor: ew-resize;
  accent-color: var(--acid);
}
.terrain-controls input::-webkit-slider-thumb {
  appearance: none;
  background: var(--acid);
  height: 15px;
  width: 15px;
  border: 3px solid #203019;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #b6d977;
  transition: box-shadow 0.2s;
}
.terrain-controls input::-moz-range-thumb {
  background: var(--acid);
  height: 12px;
  width: 12px;
  border: 3px solid #203019;
  border-radius: 50%;
}
.terrain-controls input:hover::-webkit-slider-thumb {
  box-shadow: 0 0 0 6px #b6d97722;
}
.terrain-controls > .mono {
  font-size: 7px;
  color: #a8b793;
}
.terrain-legend {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 23px 0 13px;
}
.terrain-legend > span {
  font: 8px var(--mono);
  color: #adbaa0;
  display: flex;
  gap: 7px;
  align-items: center;
}
.legend-dot {
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: #43607c;
}
.legend-dot.moderate {
  background: #6f8aa6;
}
.legend-dot.hard {
  background: var(--acid);
}
.legend-dot.planned {
  background: none;
  border: 1px solid var(--acid);
}
.legend-line {
  width: 12px;
  height: 1px;
  background: #6f8aa6;
}
.legend-line.fatigue {
  background: #efefe6;
}
.data-table {
  text-align: center;
  font-size: 9px;
  color: #a5b79a;
}
.data-table summary {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  gap: 5px;
  cursor: pointer;
}
.data-table summary::after {
  content: '+';
  padding-left: 6px;
}
.data-table[open] summary::after {
  content: '−';
}
.data-table > div {
  overflow: auto;
}
.data-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.6;
  font-size: 11px;
}
.data-table td,
.data-table th {
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
  font-weight: 400;
}
.data-table th {
  color: #e4eddb;
}
.data-table caption {
  padding: 20px;
}
.no-script-note {
  font-size: 11px;
  color: var(--muted);
  margin: 10px 0;
}
.landscape-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 43px;
}
.landscape-footer > .mono {
  font-size: 8px;
  color: #b0bea2;
}
.landscape-footer > p {
  font-size: 27px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.landscape-footer em {
  color: #b6c99f;
  font-size: 1.15em;
}
.landscape-plus {
  font-size: 50px;
  font-weight: 250;
  color: #c2d5a5;
}
.human-section {
  height: 820px;
  position: relative;
  overflow: hidden;
}
.human-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}
.human-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #09120e80, transparent 80%),
    linear-gradient(0deg, #0b1513a0, transparent 50%);
}
.human-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding-top: 58px;
  padding-bottom: 48px;
}
.human-copy > .eyebrow {
  color: #e7eddf;
  font-size: 9px;
}
.human-copy h2 {
  font-size: clamp(65px, 7.3vw, 124px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin-top: 112px;
  text-shadow: 0 2px 25px #1118;
}
.human-copy h2 em {
  font-size: 1.14em;
  letter-spacing: -0.03em;
}
.human-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: auto;
}
.human-coordinate {
  font-size: 8px;
  line-height: 1.7;
  color: #d2dfc8;
}
.human-bottom p {
  font-size: 14px;
  line-height: 1.6;
  color: #e4ecd9;
}
.understanding-section {
  padding-top: 123px;
  padding-bottom: 90px;
}
.understanding-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-bottom: 60px;
  gap: 100px;
}
.understanding-heading > .eyebrow {
  color: #a4b393;
  padding-top: 10px;
}
.understanding-heading h2 {
  font-size: 70px;
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.understanding-heading h2 em {
  color: #b9c9a8;
  font-size: 1.08em;
  letter-spacing: -0.025em;
}
.coach-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid #c2d3ab33;
  background:
    radial-gradient(ellipse at 30% 10%, #5b6b3940, transparent 70%),
    linear-gradient(135deg, #1b231c, #0b110e);
  padding: 34px 45px 34px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 #e5f6c414;
}
.coach-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background: repeating-radial-gradient(
    ellipse at 105% 115%,
    transparent 0 18px,
    #b5c89818 19px,
    transparent 20px 24px
  );
  mask-image: linear-gradient(90deg, transparent 40%, black);
}
.coach-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.coach-card-header svg {
  height: 22px;
  width: 22px;
  color: #c9dfab;
}
.coach-card-header .mono {
  font-size: 8px;
  color: #c1cea9;
}
.coach-card-header > span:last-child {
  margin-left: auto;
  font-size: 24px;
  color: #e6f6cb;
}
.coach-card > p {
  font-size: clamp(36px, 4.5vw, 72px);
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 62px 0 70px;
  position: relative;
  z-index: 1;
  font-weight: 350;
}
.coach-card > p em {
  font-size: 1.13em;
  color: #c4dba5;
  letter-spacing: -0.015em;
}
.coach-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.coach-card-footer > span:nth-child(2) {
  font-size: 10px;
  line-height: 1.6;
  color: #b5c4a3;
}
.coach-card-footer > .mono {
  font-size: 7px;
  color: #a9bb97;
  margin-left: auto;
  text-align: right;
}
.privacy-row {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 38px 0;
  border-bottom: 1px solid var(--rule);
}
.privacy-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border: 1px solid #b7d69333;
  border-radius: 50%;
}
.privacy-icon svg {
  width: 25px;
  fill: none;
  stroke: #bacaa3;
  stroke-width: 1.3;
}
.privacy-row h3 {
  font-size: 22px;
  letter-spacing: -0.04em;
}
.privacy-row h3 em {
  color: #aebf9e;
  font-size: 1.12em;
}
.privacy-row p {
  font-size: 11px;
  color: #a6b398;
  line-height: 1.6;
  margin-top: 8px;
}
.privacy-row > span:last-child {
  margin-left: auto;
  font-size: 27px;
  color: #c7d7b4;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 120px;
  padding-top: 25px;
  padding-bottom: 130px;
}
.faq-section .eyebrow {
  font-size: 8px;
  color: #9dad8e;
  margin-bottom: 30px;
}
.faq-section h2 {
  font-size: 64px;
  letter-spacing: -0.05em;
  line-height: 1;
}
.faq-section h2 em {
  font-size: 1.12em;
  color: #b7cba1;
}
.faq-list details {
  border-bottom: 1px solid var(--rule);
}
.faq-list summary {
  list-style: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  align-items: center;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-plus {
  font-size: 21px;
  font-weight: 300;
  color: #b7c99e;
  transition: transform 0.2s;
}
.faq-list details[open] .faq-plus {
  transform: rotate(45deg);
}
.faq-list details > p {
  font-size: 13px;
  line-height: 1.85;
  color: #a9b49e;
  padding: 0 36px 25px 0;
}
.launch-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 75% 80%, #69754038, transparent 70%), #1a251c;
  border-top: 1px solid #c9e5ad28;
  padding-top: 85px;
}
.launch-section .eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #b3c79d;
  font-size: 8px;
}
.launch-section h2 {
  font-size: clamp(58px, 7.1vw, 114px);
  letter-spacing: -0.06em;
  line-height: 1.06;
  margin: 33px 0 25px;
  max-width: 1020px;
}
.launch-section h2::first-line {
  color: #e9efd9;
}
.launch-section > .wrap > p:not(.eyebrow) {
  color: #b4c2a4;
  max-width: 340px;
  font-size: 13px;
  line-height: 1.8;
}
.coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 55px;
  padding: 17px 23px;
  border-radius: 35px;
  background: var(--acid);
  color: #283315;
  font-size: 12px;
  margin-top: 28px;
}
.coming-soon > span:last-child {
  font-size: 22px;
}
.launch-section .button {
  margin-top: 30px;
}
.launch-wordmark {
  display: block;
  white-space: nowrap;
  font-size: clamp(150px, 22.9vw, 382px);
  line-height: 0.83;
  font-weight: 500;
  letter-spacing: -0.075em;
  margin: 93px 0 -22px -13px;
  color: #d1dbb1;
}
.launch-wordmark > span {
  color: var(--acid);
}
.site-footer {
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  color: #9daa92;
  gap: 22px;
}
.site-footer .brand {
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -1px;
}
.site-footer .brand svg {
  width: 18px;
  height: 20px;
  margin-right: 8px;
}
.site-footer .mono {
  font-size: 7px;
  letter-spacing: 0.06em;
}
.site-footer > a:last-child {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 44px;
}
.site-footer > a:last-child > span {
  color: #dce7c8;
  font-size: 18px;
}
.error-page {
  min-height: 100svh;
  padding-top: 50px;
  padding-bottom: 70px;
}
.error-page > .eyebrow {
  margin-top: 130px;
  color: var(--muted);
}
.error-page h1 {
  font-size: clamp(68px, 10vw, 145px);
  letter-spacing: -0.07em;
  line-height: 1;
  margin: 40px 0;
}
.error-page > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 30px;
}
@keyframes device-drift {
  0%,
  100% {
    transform: rotateY(-12deg) rotateZ(7deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateZ(5deg) translateY(-9px);
  }
}
html[data-motion='paused'] *,
html[data-motion='paused'] *::before,
html[data-motion='paused'] *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}
html[data-motion='paused'] {
  scroll-behavior: auto;
}
.manifesto :focus-visible {
  outline-color: #4e6627;
}
@media (min-width: 1700px) {
  .hero-art {
    right: 5%;
    left: 44%;
  }
  .hero-copy {
    padding-top: 200px;
  }
  .hero h1 {
    font-size: 170px;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 72px);
  }
  .hero {
    min-height: 830px;
  }
  .hero-copy {
    padding-top: 176px;
  }
  .hero h1 {
    font-size: 112px;
  }
  .hero-art {
    left: 38%;
    right: -7%;
    bottom: 120px;
    top: 160px;
  }
  .hero-intro {
    max-width: 270px;
    font-size: 14px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .form-readout {
    right: 13%;
    bottom: 10%;
    width: 148px;
    padding: 18px;
  }
  .form-readout strong {
    font-size: 55px;
  }
  .readout-status {
    font-size: 7px;
  }
  .form-marker {
    font-size: 7px;
  }
  .marker--bottom {
    left: 14%;
    bottom: 15%;
  }
  .product-grid {
    gap: 45px;
  }
  .product-copy h2 {
    font-size: 52px;
  }
  .device-stage {
    min-height: 730px;
  }
  .phone {
    width: 300px;
  }
  .phone-screen {
    padding-inline: 16px;
  }
  .floating-note {
    left: -13%;
    bottom: 11%;
    padding: 17px;
  }
  .floating-note p {
    font-size: 13px;
  }
  .device-caption {
    left: 0;
    top: 0;
  }
  .landscape-heading {
    gap: 70px;
  }
  .understanding-heading {
    gap: 50px;
  }
  .understanding-heading h2 {
    font-size: 58px;
  }
  .faq-section {
    gap: 70px;
  }
  .human-section {
    height: 730px;
  }
  .human-copy h2 {
    margin-top: 135px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .site-header {
    height: 85px;
  }
  .brand {
    font-size: 25px;
  }
  .brand svg {
    width: 21px;
  }
  .site-header nav {
    gap: 22px;
    font-size: 10px;
  }
  .header-cta {
    font-size: 10px;
    padding: 10px 13px;
    gap: 18px;
  }
  .hero {
    min-height: 980px;
    height: auto;
  }
  .hero-copy {
    padding-top: 147px;
  }
  .hero h1 {
    font-size: clamp(87px, 14vw, 112px);
    margin: 30px 0 28px;
    max-width: 60%;
  }
  .hero-art {
    top: 225px;
    bottom: 155px;
    left: 29%;
    right: -15%;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-intro {
    max-width: 240px;
  }
  .hero .button {
    font-size: 11px;
    min-height: 51px;
    gap: 12px;
    padding-left: 18px;
  }
  .button-arrow {
    width: 36px;
    height: 36px;
  }
  .availability {
    font-size: 8px;
  }
  .hero-bottom {
    gap: 25px;
    bottom: 26px;
    flex-wrap: wrap;
  }
  .form-caption {
    max-width: 125px;
    font-size: 9px;
  }
  .motion-toggle {
    font-size: 8px;
  }
  .scroll-cue {
    display: none;
  }
  .marker--top {
    left: 25%;
    top: 12%;
    font-size: 6px;
  }
  .marker--bottom {
    bottom: 10%;
    left: 30%;
    font-size: 6px;
  }
  .form-readout {
    right: 21%;
    bottom: 6%;
    width: 138px;
    transform: rotate(5deg);
  }
  .form-readout .eyebrow {
    font-size: 7px;
  }
  .form-readout svg {
    height: 25px;
    margin-top: 12px;
  }
  .form-readout strong {
    font-size: 49px;
  }
  .orbit-guide {
    top: 13%;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-section {
    padding-top: 85px;
    padding-bottom: 75px;
  }
  .product-copy {
    max-width: 600px;
  }
  .product-copy h2 {
    font-size: 66px;
  }
  .product-copy > p:not(.eyebrow) {
    max-width: 360px;
  }
  .product-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: none;
    margin-top: 35px;
  }
  .product-features article {
    display: block;
  }
  .product-features article > .mono {
    display: block;
    margin-bottom: 15px;
  }
  .product-features h3 {
    font-size: 15px;
    line-height: 1.4;
  }
  .product-features p {
    font-size: 11px;
  }
  .device-stage {
    min-height: 800px;
  }
  .phone {
    width: 318px;
  }
  .device-caption {
    top: 15%;
    left: 8%;
  }
  .floating-note {
    left: 8%;
    bottom: 11%;
  }
  .device-orbit {
    inset: 17% 0;
  }
  .manifesto {
    padding: 43px 0 48px;
  }
  .manifesto h2 {
    font-size: 9.3vw;
    margin: 52px 0 40px;
  }
  .manifesto-bottom {
    gap: 28px;
    grid-template-columns: 0.3fr 1fr 1fr;
  }
  .manifesto-bottom p {
    font-size: 12px;
  }
  .manifesto-bottom p:last-child {
    font-size: 11px;
  }
  .manifesto-symbol {
    font-size: 40px;
  }
  .section-kicker .eyebrow {
    font-size: 8px;
  }
  .landscape-section {
    padding-top: 75px;
    padding-bottom: 50px;
  }
  .landscape-heading {
    gap: 28px;
    margin-bottom: 35px;
  }
  .landscape-heading h2 {
    font-size: 42px;
  }
  .landscape-heading > p {
    font-size: 11px;
  }
  .landscape-heading .eyebrow {
    font-size: 8px;
    margin-bottom: 24px;
  }
  .terrain-panel {
    padding: 24px 23px 14px;
    border-radius: 15px;
  }
  .panel-top p {
    font-size: 17px;
  }
  .sample-tag {
    font-size: 6px;
  }
  .scene--load {
    height: 275px;
  }
  .terrain-controls {
    gap: 19px;
  }
  .terrain-controls > .mono {
    display: none;
  }
  .terrain-selection strong {
    font-size: 12px;
  }
  .terrain-selection > .mono {
    font-size: 7px;
  }
  .terrain-selection b {
    font-size: 16px;
  }
  .landscape-footer > p {
    font-size: 23px;
  }
  .landscape-footer > .mono {
    font-size: 6px;
  }
  .human-section {
    height: 730px;
  }
  .human-copy h2 {
    font-size: 77px;
    margin-top: 180px;
  }
  .human-section > img {
    object-position: 70% center;
  }
  .understanding-section {
    padding-top: 76px;
    padding-bottom: 60px;
  }
  .understanding-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .understanding-heading h2 {
    font-size: 60px;
  }
  .coach-card {
    padding: 26px;
  }
  .coach-card > p {
    font-size: 45px;
    margin: 55px 0 60px;
  }
  .privacy-row h3 {
    font-size: 18px;
  }
  .privacy-row p {
    font-size: 10px;
  }
  .faq-section {
    padding-bottom: 80px;
    grid-template-columns: 1fr 1.5fr;
    gap: 35px;
  }
  .faq-section h2 {
    font-size: 52px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .faq-list details > p {
    font-size: 11px;
  }
  .launch-section {
    padding-top: 60px;
  }
  .launch-section h2 {
    font-size: 65px;
  }
  .launch-wordmark {
    font-size: 22.5vw;
    margin-top: 70px;
    margin-bottom: -9px;
    margin-left: -6px;
  }
  .site-footer .mono {
    display: none;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 78px;
  }
  .brand {
    font-size: 24px;
  }
  .site-header nav {
    display: none;
  }
  .header-cta {
    font-size: 9px;
    gap: 19px;
    padding: 9px 13px;
  }
  .hero {
    min-height: 1050px;
  }
  .hero-copy {
    padding-top: 119px;
  }
  .hero-copy .eyebrow {
    font-size: 6.5px;
    letter-spacing: 0.055em;
    gap: 8px;
  }
  .hero-copy .status-dot {
    width: 4px;
    height: 4px;
  }
  .hero h1 {
    font-size: clamp(77px, 21.5vw, 114px);
    margin: 26px 0 24px;
    max-width: 100%;
    line-height: 0.92;
  }
  .hero-intro {
    max-width: 270px;
    font-size: 12px;
    line-height: 1.65;
  }
  .hero .button {
    margin-top: 23px;
    min-height: 49px;
    font-size: 10px;
    gap: 22px;
  }
  .button-arrow {
    height: 34px;
    width: 34px;
    font-size: 19px;
  }
  .availability {
    font-size: 8px;
    margin-top: 12px;
  }
  .hero-art {
    top: 505px;
    height: 405px;
    left: -9%;
    right: -9%;
    bottom: auto;
  }
  .scene--form {
    left: -4%;
    width: 108%;
    top: -8%;
    height: 113%;
  }
  .orbit-guide {
    width: 77%;
    left: 12%;
    top: 6%;
  }
  .orbit-guide > span {
    font-size: 6px;
  }
  .form-marker {
    font-size: 5px;
    gap: 7px;
  }
  .marker--top {
    left: 12%;
    top: 5%;
  }
  .cross {
    font-size: 19px;
  }
  .marker--bottom {
    bottom: 4%;
    left: 17%;
    font-size: 5px;
  }
  .marker--bottom i {
    width: 20px;
  }
  .form-readout {
    width: 114px;
    padding: 13px;
    right: 12%;
    bottom: 0%;
    border-radius: 10px;
  }
  .form-readout .eyebrow {
    font-size: 5.5px;
  }
  .form-readout strong {
    font-size: 40px;
  }
  .form-readout > div {
    gap: 13px;
  }
  .readout-trend {
    font-size: 19px;
  }
  .readout-status {
    font-size: 6px;
    gap: 4px;
    margin-top: 5px;
  }
  .readout-status i {
    width: 3px;
    height: 3px;
  }
  .readout-caption {
    font-size: 4.5px;
    letter-spacing: 0.02em;
  }
  .form-readout svg {
    height: 22px;
    margin: 10px 0 5px;
  }
  .hero-bottom {
    bottom: 20px;
    gap: 9px;
    align-items: center;
    justify-content: space-between;
  }
  .form-explorer > .mono {
    font-size: 6px;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
  }
  .state-switch {
    padding: 3px;
    gap: 1px;
  }
  .state-switch button {
    padding: 12px 12px;
    font-size: 9px;
  }
  .state-switch button span {
    padding-left: 2px;
  }
  .form-caption {
    display: none;
  }
  .motion-toggle {
    font-size: 6.5px;
    padding: 7px 0;
    margin: 18px 0 0;
    gap: 5px;
  }
  .motion-toggle > span:first-child {
    font-size: 9px;
  }
  .manifesto {
    padding: 37px 0 39px;
  }
  .section-kicker .eyebrow {
    font-size: 6px;
  }
  .section-kicker svg {
    width: 23px;
    height: 23px;
  }
  .manifesto h2 {
    font-size: clamp(40px, 10.5vw, 58px);
    line-height: 1.08;
    margin: 36px 0 34px;
    letter-spacing: -0.06em;
  }
  .manifesto h2 em {
    font-size: 1.1em;
  }
  .manifesto-bottom {
    grid-template-columns: 30px 1fr;
    gap: 22px;
    padding-top: 25px;
  }
  .manifesto-symbol {
    font-size: 30px;
    grid-row: span 2;
  }
  .manifesto-bottom p {
    font-size: 14px;
    line-height: 1.5;
  }
  .manifesto-bottom p:last-child {
    grid-column: 2;
    font-size: 11px;
  }
  .product-section {
    padding: 64px 0 55px;
  }
  .product-copy > .eyebrow {
    font-size: 7px;
    margin-bottom: 29px;
  }
  .product-copy h2 {
    font-size: 49px;
  }
  .product-copy > p:not(.eyebrow) {
    font-size: 12px;
    max-width: 290px;
    margin-top: 24px;
  }
  .product-features {
    display: block;
    max-width: 330px;
    margin: 32px 0 22px;
  }
  .product-features article {
    display: flex;
    padding: 17px 0;
    gap: 17px;
  }
  .product-features article > .mono {
    font-size: 7px;
    margin: 0;
  }
  .product-features h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .product-features p {
    font-size: 11px;
    line-height: 1.7;
  }
  .product-footnote {
    font-size: 6px;
  }
  .product-grid {
    gap: 20px;
  }
  .device-stage {
    min-height: 790px;
    margin-inline: -15px;
  }
  .device-caption {
    left: 2%;
    top: 4%;
    font-size: 6px;
  }
  .phone {
    transform: rotateY(-12deg) rotateZ(6deg) scale(0.91);
    width: 318px;
    flex-shrink: 0;
    animation: none;
  }
  .floating-note {
    left: 0;
    bottom: 11%;
    padding: 14px 17px;
    gap: 11px;
    border-radius: 11px;
  }
  .floating-note .mono {
    font-size: 6px;
  }
  .floating-note p {
    font-size: 13px;
  }
  .note-icon {
    width: 32px;
    height: 32px;
    font-size: 19px;
  }
  .device-disclaimer {
    font-size: 5.5px;
    bottom: 20px;
  }
  .device-orbit {
    inset: 21% -10%;
    transform: rotate(-40deg);
  }
  .landscape-section {
    padding: 56px 0 36px;
  }
  .landscape-heading {
    grid-template-columns: 1fr;
    gap: 21px;
    margin-bottom: 26px;
  }
  .landscape-heading .eyebrow {
    font-size: 7px;
    margin-bottom: 25px;
  }
  .landscape-heading h2 {
    font-size: 42px;
    max-width: 320px;
  }
  .landscape-heading > p {
    max-width: 285px;
    font-size: 11px;
  }
  .terrain-panel {
    padding: 20px 13px 10px;
    border-radius: 12px;
    margin-inline: -5px;
  }
  .panel-top {
    align-items: flex-start;
    gap: 8px;
  }
  .panel-top .eyebrow {
    font-size: 5.5px;
    letter-spacing: 0.035em;
  }
  .panel-top p {
    font-size: 12px;
    margin-top: 5px;
  }
  .sample-tag {
    font-size: 4.5px;
    letter-spacing: 0;
    padding: 5px 6px;
    white-space: nowrap;
  }
  .scene--load {
    height: 205px;
    margin-top: 0;
  }
  .terrain-selection {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px;
  }
  .terrain-selection .eyebrow {
    font-size: 7px;
  }
  .terrain-selection strong {
    grid-column: 1;
    font-size: 11px;
  }
  .terrain-selection > .mono {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 5px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .terrain-selection b {
    font-size: 23px;
    line-height: 1.3;
  }
  .terrain-axis {
    font-size: 5.5px;
    margin: 25px 0 12px;
  }
  .terrain-controls {
    padding: 21px 0;
    gap: 20px;
  }
  .terrain-controls label {
    font-size: 9px;
  }
  .terrain-controls label span {
    margin-left: 2px;
  }
  .terrain-legend {
    gap: 13px;
    margin: 21px 0 12px;
  }
  .terrain-legend > span {
    font-size: 6px;
    gap: 4px;
  }
  .legend-dot {
    width: 4px;
    height: 4px;
  }
  .legend-line {
    width: 8px;
  }
  .data-table {
    font-size: 8px;
  }
  .data-table table {
    font-size: 9px;
  }
  .data-table td,
  .data-table th {
    padding: 9px 6px;
  }
  .landscape-footer {
    padding-top: 27px;
    flex-wrap: wrap;
    gap: 19px;
  }
  .landscape-footer > .mono {
    width: 100%;
    font-size: 6px;
  }
  .landscape-footer > p {
    font-size: 26px;
  }
  .landscape-plus {
    font-size: 38px;
  }
  .human-section {
    height: 660px;
  }
  .human-section > img {
    object-position: 82% center;
  }
  .human-shade {
    background:
      linear-gradient(90deg, #0b150d90, transparent 90%),
      linear-gradient(0deg, #0b130cb0, transparent 70%);
  }
  .human-copy {
    padding-top: 34px;
    padding-bottom: 32px;
  }
  .human-copy > .eyebrow {
    font-size: 6px;
  }
  .human-copy h2 {
    font-size: 60px;
    line-height: 1;
    letter-spacing: -0.06em;
    margin-top: 216px;
  }
  .human-copy h2 em {
    font-size: 1.03em;
  }
  .human-bottom {
    align-items: end;
    gap: 20px;
  }
  .human-coordinate {
    font-size: 5px;
  }
  .human-bottom p {
    font-size: 9px;
  }
  .understanding-section {
    padding-top: 59px;
    padding-bottom: 35px;
  }
  .understanding-heading {
    gap: 26px;
    margin-bottom: 31px;
  }
  .understanding-heading > .eyebrow {
    font-size: 7px;
  }
  .understanding-heading h2 {
    font-size: 44px;
  }
  .coach-card {
    padding: 21px 18px;
    border-radius: 15px;
  }
  .coach-card-header {
    gap: 10px;
  }
  .coach-card-header svg {
    width: 17px;
    height: 17px;
  }
  .coach-card-header .mono {
    font-size: 5.5px;
    letter-spacing: 0.05em;
  }
  .coach-card-header > span:last-child {
    font-size: 19px;
  }
  .coach-card > p {
    font-size: 29px;
    line-height: 1.25;
    margin: 38px 0 41px;
    letter-spacing: -0.04em;
  }
  .coach-card > p em {
    font-size: 1.13em;
    letter-spacing: -0.03em;
  }
  .coach-card-footer {
    gap: 8px;
  }
  .coach-card-footer .status-dot {
    width: 4px;
    height: 4px;
  }
  .coach-card-footer > span:nth-child(2) {
    font-size: 7px;
  }
  .coach-card-footer > .mono {
    font-size: 5px;
  }
  .privacy-row {
    padding: 26px 0;
    gap: 16px;
    align-items: flex-start;
  }
  .privacy-icon {
    width: 40px;
    height: 40px;
  }
  .privacy-icon svg {
    width: 20px;
  }
  .privacy-row h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .privacy-row h3 em {
    display: block;
    font-size: 20px;
  }
  .privacy-row p {
    font-size: 9px;
    margin-top: 9px;
    max-width: 220px;
  }
  .privacy-row > span:last-child {
    display: none;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-top: 22px;
    padding-bottom: 63px;
  }
  .faq-section .eyebrow {
    font-size: 7px;
    margin-bottom: 24px;
  }
  .faq-section h2 {
    font-size: 49px;
    line-height: 0.98;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-list summary {
    font-size: 12px;
    padding: 21px 0;
    line-height: 1.5;
  }
  .faq-plus {
    font-size: 19px;
  }
  .faq-list details > p {
    font-size: 11px;
    padding-right: 10px;
  }
  .launch-section {
    padding-top: 46px;
  }
  .launch-section .eyebrow {
    font-size: 6px;
  }
  .launch-section h2 {
    font-size: 48px;
    letter-spacing: -0.06em;
    margin: 29px 0 24px;
  }
  .launch-section > .wrap > p:not(.eyebrow) {
    font-size: 11px;
    max-width: 270px;
  }
  .coming-soon {
    font-size: 10px;
    gap: 29px;
    padding: 15px 21px;
    margin-top: 25px;
  }
  .coming-soon > span:last-child {
    font-size: 19px;
  }
  .launch-wordmark {
    font-size: 22.3vw;
    letter-spacing: -0.08em;
    margin: 60px 0 -5px -4px;
  }
  .site-footer {
    padding: 24px 0 21px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    font-size: 8px;
  }
  .site-footer .brand {
    font-size: 22px;
  }
  .site-footer > span:not(.mono) {
    text-align: right;
  }
  .site-footer > a:last-child {
    grid-column: span 2;
    justify-content: flex-end;
    font-size: 8px;
    min-height: 30px;
  }
  .site-footer .brand svg {
    width: 18px;
  }
  .error-page h1 {
    font-size: 72px;
  }
}
@media (max-width: 360px) {
  .hero {
    min-height: 1030px;
  }
  .hero-art {
    top: 493px;
    height: 385px;
  }
  .hero h1 {
    font-size: 78px;
  }
  .hero-copy .eyebrow {
    font-size: 5.4px;
  }
  .hero-bottom {
    gap: 2px;
  }
  .state-switch button {
    font-size: 8px;
    padding: 12px 9px;
  }
  .motion-toggle {
    font-size: 6px;
  }
  .form-readout {
    right: 11%;
    width: 109px;
  }
  .product-copy h2 {
    font-size: 44px;
  }
  .phone {
    transform: rotateY(-12deg) rotateZ(6deg) scale(0.83);
  }
  .device-stage {
    min-height: 720px;
  }
  .floating-note {
    left: 1%;
    bottom: 9%;
  }
  .landscape-heading h2 {
    font-size: 39px;
  }
  .understanding-heading h2 {
    font-size: 38px;
  }
  .coach-card > p {
    font-size: 25px;
  }
  .coach-card-header .mono {
    font-size: 4.6px;
  }
  .terrain-legend {
    gap: 10px;
  }
  .human-copy h2 {
    font-size: 51px;
  }
  .manifesto h2 {
    font-size: 35px;
  }
  .launch-section h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.human-bottom > p {
  max-width: 220px;
}
.manifesto-bottom p:nth-child(2) {
  max-width: 240px;
}
@media (max-width: 540px) {
  .human-bottom > p {
    max-width: 140px;
  }
}

.scene--form[data-state='recover'] .scene-fallback {
  transform: scale(0.92);
}
.scene--form[data-state='build'] .scene-fallback {
  transform: scale(1.04);
}
.phone[data-visible='false'] {
  animation-play-state: paused;
}
@media (max-width: 540px) {
  .hero-intro {
    margin-top: 367px;
  }
  .hero-art {
    top: 315px;
    height: 365px;
  }
  .hero {
    min-height: 1010px;
  }
}
@media (max-width: 360px) {
  .hero-art {
    top: 310px;
    height: 345px;
  }
  .hero-intro {
    margin-top: 350px;
  }
  .hero {
    min-height: 985px;
  }
}

@media (min-width: 541px) and (max-width: 800px) {
  .marker--top {
    display: none;
  }
}

/* Keep the visible controls delicate while giving touch a full target. */
.header-cta,
.state-switch button {
  min-height: 44px;
}
.terrain-controls input {
  height: 44px;
  background-size: 100% 3px;
  background-position: center;
  background-repeat: no-repeat;
}
.terrain-controls input::-moz-range-track {
  background: transparent;
  border: 0;
}

.legal-header {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
}
.legal-back {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 44px;
  font-size: 12px;
  color: #c3ccbe;
}
.legal-back span {
  font-size: 20px;
  color: var(--acid);
}
.legal-hero {
  position: relative;
  padding-top: 55px;
  padding-bottom: 62px;
  overflow: hidden;
}
.legal-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-eyebrow > .eyebrow {
  color: var(--acid);
}
.legal-eyebrow > .mono {
  font-size: 8px;
  color: #a2af9e;
  letter-spacing: 1px;
}
.legal-hero h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(48px, 6.8vw, 108px);
  font-weight: 350;
  letter-spacing: -0.065em;
  line-height: 1.02;
  margin-top: 42px;
}
.legal-hero h1 em {
  color: #ced6b8;
  letter-spacing: -0.045em;
}
.legal-hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-top: 39px;
  position: relative;
  z-index: 1;
}
.legal-hero-bottom > p {
  max-width: 430px;
  font-size: 15px;
  line-height: 1.8;
  color: #afbaaa;
}
.legal-date {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: end;
  font-size: 12px;
}
.legal-date .mono {
  color: #a2af9e;
  font-size: 8px;
  letter-spacing: 1.5px;
}
.legal-hero-mark {
  position: absolute;
  right: 0;
  top: 115px;
  opacity: 0.055;
  transform: rotate(-9deg);
}
.legal-hero-mark svg {
  width: 290px;
  height: 290px;
}
.legal-paper {
  background: var(--paper);
  color: #233023;
  padding-bottom: 110px;
}
.legal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid #2330232b;
  padding: 47px 0;
}
.legal-summary > div {
  padding: 0 34px;
  border-left: 1px solid #2330232b;
}
.legal-summary > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.legal-summary > div:last-child {
  padding-right: 0;
}
.legal-summary .mono {
  font-size: 8px;
  color: #556247;
}
.legal-summary h2 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 12px 0 10px;
}
.legal-summary p {
  max-width: 320px;
  font-size: 13px;
  line-height: 1.75;
  color: #51604b;
}
.legal-document {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 65px;
  padding-top: 65px;
}
.legal-index {
  align-self: start;
  position: sticky;
  top: 35px;
  padding-right: 30px;
}
.legal-index > .mono {
  font-size: 8px;
  letter-spacing: 1px;
  color: #59664f;
  margin-bottom: 22px;
}
.legal-index ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-index li a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 10px 0;
  font-size: 12px;
  line-height: 1.55;
  color: #4b5945;
}
.legal-index li .mono {
  font-size: 8px;
  color: #536149;
}
.legal-index li a:hover,
.legal-other:hover {
  color: #182717;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.legal-other {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  min-height: 44px;
  margin-top: 26px;
  border-top: 1px solid #2330232b;
  padding-top: 18px;
  font-size: 12px;
}
.legal-prose {
  max-width: 735px;
  font-size: 16px;
  line-height: 1.85;
  color: #3a4735;
}
.legal-prose h2 {
  margin: 51px 0 19px;
  font-size: 30px;
  font-weight: 450;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #202f1c;
  scroll-margin-top: 32px;
}
.legal-prose h2:first-child {
  margin-top: 0;
}
.legal-prose p {
  margin: 0 0 18px;
}
.legal-prose ul {
  padding-left: 20px;
  margin: 20px 0 24px;
}
.legal-prose li {
  padding-left: 7px;
  margin-bottom: 10px;
}
.legal-prose li::marker {
  color: #64784b;
  font-size: 11px;
}
.legal-prose strong {
  color: #283824;
  font-weight: 600;
}
.legal-prose a {
  text-decoration: underline;
  text-decoration-color: #64784b90;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.legal-prose a:hover {
  text-decoration-color: #263b1c;
}
.legal-paper :focus-visible {
  outline-color: #426229;
}
.legal-contact {
  max-width: 735px;
  margin-top: 45px;
  padding: 33px 36px 35px;
  border: 1px solid #23302333;
  background: #e4e7d7;
  border-radius: 14px;
}
.legal-contact > .mono {
  font-size: 8px;
  letter-spacing: 1px;
  color: #53634a;
}
.legal-contact h2 {
  margin: 20px 0 18px;
  font-size: 41px;
  font-weight: 400;
  letter-spacing: -1.5px;
}
.legal-contact h2 em {
  color: #536844;
}
.legal-contact p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 12px;
  color: #4b5b41;
}
.legal-contact strong {
  font-weight: 500;
}
.legal-contact > a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  min-height: 44px;
  margin-top: 20px;
  border-top: 1px solid #23302333;
  padding-top: 17px;
  font-size: 17px;
  overflow-wrap: anywhere;
}
@media (max-width: 1000px) {
  .legal-document {
    gap: 35px;
    grid-template-columns: 1fr 2.3fr;
  }
  .legal-index {
    padding-right: 0;
    position: static;
  }
  .legal-index li a {
    font-size: 11px;
  }
  .legal-summary > div {
    padding-inline: 22px;
  }
  .legal-prose {
    font-size: 15px;
  }
  .legal-prose h2 {
    font-size: 27px;
  }
}
@media (max-width: 700px) {
  .legal-header {
    height: 85px;
  }
  .legal-header .brand {
    font-size: 24px;
  }
  .legal-back {
    font-size: 11px;
    gap: 12px;
  }
  .legal-hero {
    padding-top: 34px;
    padding-bottom: 40px;
  }
  .legal-eyebrow > .mono {
    display: none;
  }
  .legal-hero h1 {
    margin-top: 28px;
    font-size: clamp(43px, 8.5vw, 59px);
    line-height: 1.06;
  }
  .legal-hero-bottom {
    display: block;
    margin-top: 27px;
  }
  .legal-hero-bottom > p {
    font-size: 14px;
  }
  .legal-date {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    margin-top: 25px;
  }
  .legal-hero-mark {
    right: -70px;
    top: 100px;
  }
  .legal-summary {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .legal-summary > div,
  .legal-summary > div:first-child,
  .legal-summary > div:last-child {
    padding: 22px 0;
    border-left: 0;
    border-bottom: 1px solid #23302324;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 0 14px;
  }
  .legal-summary > div:last-child {
    border-bottom: 0;
  }
  .legal-summary .mono {
    padding-top: 7px;
  }
  .legal-summary h2 {
    margin: 0 0 7px;
    font-size: 18px;
  }
  .legal-summary p {
    grid-column: 2;
    max-width: none;
  }
  .legal-document {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 33px;
  }
  .legal-index nav ol {
    columns: 2;
    column-gap: 20px;
  }
  .legal-index li {
    break-inside: avoid;
  }
  .legal-index li a {
    gap: 8px;
    padding-block: 8px;
  }
  .legal-other {
    margin-top: 15px;
  }
  .legal-prose {
    font-size: 15px;
    line-height: 1.85;
  }
  .legal-prose h2 {
    font-size: 26px;
    margin-top: 38px;
  }
  .legal-paper {
    padding-bottom: 50px;
  }
  .legal-contact {
    padding: 26px 23px;
    margin-top: 35px;
  }
  .legal-contact h2 {
    font-size: 35px;
  }
  .legal-contact > a {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .legal-header {
    gap: 12px;
  }
  .legal-back {
    max-width: 118px;
    font-size: 10px;
    line-height: 1.5;
  }
  .legal-header .brand {
    font-size: 22px;
  }
  .legal-hero h1 {
    font-size: 39px;
  }
  .legal-index nav ol {
    columns: 1;
  }
  .legal-prose h2 {
    font-size: 24px;
  }
}

.site-footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 22px;
}
.site-footer .footer-legal a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #c3ccbe;
  text-decoration: underline;
  text-decoration-color: #c3ccbe40;
  text-underline-offset: 4px;
}
.site-footer .footer-legal a:hover {
  color: var(--acid);
}
@media (max-width: 900px) {
  .site-footer {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
  .site-footer > .mono {
    display: none;
  }
}
@media (max-width: 600px) {
  .site-footer .footer-legal {
    width: 100%;
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 24px;
    order: 3;
  }
}

/* Only the hero's visual and its own controls. The surrounding page is unchanged. */
.hero:not([data-hero-concept='signals']) [data-signals],
.hero[data-hero-concept='signals'] [data-landscape] {
  display: none !important;
}
.scene--hero {
  position: absolute;
  inset: -1% -1% -2%;
  filter: drop-shadow(0 32px 38px #0006);
}
.hero-scene-label {
  position: absolute;
  left: 19%;
  top: 9%;
  display: flex;
  gap: 14px;
  align-items: center;
  font: 8px/1.8 var(--mono);
  letter-spacing: 0.06em;
  color: #a9baaa;
  z-index: 1;
}
.hero-scene-label .cross {
  font-size: 26px;
  color: #c1d0b7;
}
.hero-training-readout {
  position: absolute;
  right: 9%;
  bottom: 10%;
  width: 228px;
  padding: 23px 24px;
  border: 1px solid #b4d0a52b;
  border-radius: 14px;
  background: linear-gradient(135deg, #273e3357, #111c186b);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 #d5f5b710,
    0 16px 45px #0003;
  transform: rotate(3deg);
}
.hero-readout-date {
  display: flex;
  align-items: center;
  gap: 7px;
  font: 9px var(--mono);
  color: #cedcbc;
  text-transform: uppercase;
}
.hero-readout-date i {
  height: 4px;
  width: 4px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--acid);
}
.hero-readout-date > .mono {
  font-size: 6px;
  margin-left: auto;
  letter-spacing: 0.03em;
  color: #9fb29d;
}
.hero-readout-value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
}
.hero-readout-value strong {
  font-size: 68px;
  font-weight: 350;
  letter-spacing: -0.08em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.hero-readout-value > span {
  color: var(--acid);
  font-size: 30px;
  font-weight: 300;
}
.hero-training-readout > p {
  font-size: 12px;
  line-height: 1.5;
  min-height: 18px;
  margin-top: 6px;
  color: #d0dcc5;
}
.hero-readout-source {
  display: block;
  font-size: 6px;
  margin-top: 19px;
  color: #a0b195;
  letter-spacing: 0.025em;
}
.hero-terrain-annotation {
  position: absolute;
  left: 17%;
  bottom: 15%;
  font: 7px/1.8 var(--mono);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 13px;
  color: #aec0a3;
}
.annotation-line {
  width: 34px;
  height: 1px;
  background: #9cbc7f;
}
.hero-history-control {
  width: 300px;
}
.hero-history-control > label {
  font-size: 8px;
  color: #afbf9f;
  display: block;
  margin-bottom: 5px;
}
.hero-history-track {
  display: flex;
  align-items: center;
  gap: 13px;
}
.hero-history-track > .mono {
  font-size: 6px;
  color: #9daf94;
  white-space: nowrap;
}
.hero-history-track > .mono:last-child {
  color: #d6e8b9;
}
.hero-history-track input {
  appearance: none;
  flex: 1;
  min-width: 0;
  height: 44px;
  border: 0;
  background: linear-gradient(90deg, #476773, #b8cc8d) center/100% 2px no-repeat;
  cursor: ew-resize;
}
.hero-history-track input::-webkit-slider-thumb {
  appearance: none;
  width: 14px;
  height: 14px;
  background: var(--acid);
  border: 3px solid #233622;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #b7d680;
}
.hero-history-track input::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: var(--acid);
  border: 3px solid #233622;
  border-radius: 50%;
}
.hero-history-track input::-moz-range-track {
  background: transparent;
  border: 0;
}
.hero-history-caption {
  font-size: 10px;
  line-height: 1.6;
  color: #a5b59a;
  padding-bottom: 8px;
  max-width: 175px;
}
.hero-dial-center {
  position: absolute;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  pointer-events: none;
}
.hero-dial-center > .mono {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #b7c4a9;
}
.hero-dial-center > strong {
  font-size: 112px;
  line-height: 1.2;
  letter-spacing: -0.085em;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
}
.dial-status {
  font: 10px var(--mono);
  letter-spacing: 0.1em;
  color: var(--acid);
}
.dial-status > span {
  margin-left: 7px;
}
.hero-dial-center > p {
  font-size: 10px;
  color: #a6b798;
  margin-top: 22px;
}
.signal-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  min-width: 172px;
  padding: 20px 22px;
  border: 1px solid #bdd7a52e;
  background: linear-gradient(140deg, #2d3d324a, #111d196b);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 55px #0003;
  z-index: 2;
}
.signal-card > .mono {
  font-size: 7px;
  color: #b8c9a9;
  letter-spacing: 0.06em;
  margin-top: 11px;
}
.signal-card > strong {
  font-size: 30px;
  font-weight: 350;
  letter-spacing: -0.07em;
  line-height: 1.7;
}
.signal-card strong span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: #b7c4a8;
  margin: 0 3px;
}
.signal-description {
  font-size: 8px;
  color: #a4b796;
  line-height: 1.5;
}
.signal-icon {
  color: #cee6b4;
  font-size: 22px;
  line-height: 1;
}
.signal-heart {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #cee6b4;
  stroke-width: 1.3;
}
.signal-chart {
  width: 28px;
  height: 21px;
  fill: none;
  stroke: #d6ff3d;
  stroke-width: 2;
}
.signal-card--sleep {
  left: 3%;
  top: 21%;
  transform: rotate(-5deg);
}
.signal-card--recovery {
  right: 5%;
  top: 11%;
  transform: rotate(5deg);
}
.signal-card--training {
  right: 12%;
  bottom: 10%;
  transform: rotate(3deg);
}
.hero-signal-caption > .mono {
  font-size: 8px;
  color: #b4c6a5;
}
.hero-signal-caption > p {
  font-size: 11px;
  color: #aabda0;
  margin-top: 12px;
  margin-bottom: 8px;
}
.hero-signal-source {
  font-size: 7px;
  color: #9eb28f;
  padding-bottom: 9px;
}
.hero [data-hero-fallback-day][data-selected='true'] polygon {
  fill: #afce9d;
  stroke: #d6ff3d;
}
.hero [data-hero-fallback-day][data-planned='true'] polygon {
  fill: #d6ff3d12;
  stroke: #d6ff3d;
}
@media (max-width: 1150px) {
  .hero-training-readout {
    right: 14%;
    width: 190px;
    padding: 18px;
    bottom: 11%;
  }
  .hero-readout-value strong {
    font-size: 55px;
  }
  .hero-training-readout > p {
    font-size: 10px;
  }
  .hero-readout-date {
    font-size: 7px;
  }
  .hero-readout-date > .mono {
    font-size: 5px;
  }
  .hero-readout-source {
    font-size: 5px;
  }
  .hero-terrain-annotation {
    left: 13%;
    font-size: 6px;
  }
  .hero-scene-label {
    font-size: 7px;
    left: 14%;
    top: 6%;
  }
  .hero-history-control {
    width: 260px;
  }
  .hero-dial-center > strong {
    font-size: 96px;
  }
  .signal-card {
    min-width: 145px;
    padding: 15px;
  }
  .signal-card--sleep {
    left: 3%;
    top: 18%;
  }
  .signal-card--recovery {
    right: 12%;
    top: 8%;
  }
  .signal-card--training {
    right: 18%;
    bottom: 10%;
  }
  .signal-description {
    font-size: 7px;
  }
  .signal-card > strong {
    font-size: 26px;
  }
}
@media (max-width: 800px) {
  .scene--hero {
    inset: 1% -2%;
  }
  .hero-scene-label {
    left: 19%;
    top: 6%;
    font-size: 6px;
  }
  .hero-training-readout {
    right: 20%;
    width: 174px;
    bottom: 8%;
    padding: 17px;
  }
  .hero-readout-value strong {
    font-size: 47px;
  }
  .hero-terrain-annotation {
    left: 20%;
    bottom: 12%;
    font-size: 5px;
  }
  .hero-terrain-annotation .annotation-line {
    width: 20px;
  }
  .hero-history-control {
    width: 240px;
  }
  .hero-history-caption {
    font-size: 9px;
    max-width: 140px;
  }
  .hero-dial-center {
    top: 50%;
  }
  .hero-dial-center > strong {
    font-size: 82px;
  }
  .hero-dial-center > p {
    font-size: 8px;
  }
  .hero-dial-center > .mono {
    font-size: 7px;
  }
  .dial-status {
    font-size: 8px;
  }
  .signal-card {
    min-width: 130px;
    padding: 14px;
  }
  .signal-card--sleep {
    left: 1%;
    top: 23%;
  }
  .signal-card--recovery {
    right: 18%;
    top: 8%;
  }
  .signal-card--training {
    right: 22%;
    bottom: 7%;
  }
  .signal-description {
    font-size: 6px;
  }
  .signal-card > .mono {
    font-size: 6px;
  }
  .signal-card > strong {
    font-size: 24px;
  }
  .hero-signal-source {
    display: none;
  }
}
@media (max-width: 540px) {
  .scene--hero {
    inset: -10% -3% -5%;
  }
  .hero-scene-label {
    left: 14%;
    top: 2%;
    font-size: 5px;
    gap: 8px;
  }
  .hero-scene-label .cross {
    font-size: 19px;
  }
  .hero-training-readout {
    right: 12%;
    bottom: 2%;
    width: 154px;
    padding: 13px 15px;
    border-radius: 10px;
  }
  .hero-readout-date {
    font-size: 6px;
    gap: 4px;
  }
  .hero-readout-date > .mono {
    font-size: 4.5px;
  }
  .hero-readout-value {
    margin-top: 7px;
  }
  .hero-readout-value strong {
    font-size: 40px;
  }
  .hero-readout-value > span {
    font-size: 22px;
  }
  .hero-training-readout > p {
    font-size: 8px;
    margin-top: 3px;
    min-height: 24px;
    max-width: 122px;
  }
  .hero-readout-source {
    font-size: 4px;
    margin-top: 8px;
  }
  .hero-terrain-annotation {
    left: 16%;
    bottom: 9%;
    font-size: 4.5px;
    gap: 8px;
  }
  .hero-terrain-annotation .annotation-line {
    width: 18px;
  }
  .hero-history-control {
    width: 230px;
  }
  .hero-history-control > label {
    font-size: 6px;
    letter-spacing: 0.08em;
  }
  .hero-history-track {
    gap: 9px;
  }
  .hero-history-track > .mono {
    font-size: 5px;
  }
  .hero-history-caption {
    display: none;
  }
  .hero-dial-center {
    top: 45.5%;
    left: 50%;
  }
  .hero-dial-center > strong {
    font-size: 68px;
  }
  .hero-dial-center > .mono {
    font-size: 6px;
  }
  .hero-dial-center > p {
    font-size: 7px;
    margin-top: 12px;
  }
  .dial-status {
    font-size: 6px;
  }
  .signal-card {
    min-width: 106px;
    padding: 11px;
    border-radius: 10px;
  }
  .signal-description {
    display: none;
  }
  .signal-card > .mono {
    font-size: 5px;
    margin-top: 7px;
  }
  .signal-card > strong {
    font-size: 21px;
    line-height: 1.5;
  }
  .signal-card strong span {
    font-size: 7px;
    margin-inline: 1px;
  }
  .signal-icon {
    font-size: 18px;
  }
  .signal-heart {
    width: 17px;
    height: 17px;
  }
  .signal-chart {
    width: 23px;
    height: 17px;
  }
  .signal-card--sleep {
    left: 10%;
    top: 10%;
  }
  .signal-card--recovery {
    right: 10%;
    top: 2%;
  }
  .signal-card--training {
    right: 15%;
    bottom: 3%;
  }
  .hero-signal-caption > .mono {
    font-size: 6px;
  }
  .hero-signal-caption > p {
    font-size: 9px;
    margin-top: 8px;
  }
}
@media (max-width: 360px) {
  .hero-history-control {
    width: 201px;
  }
  .hero-training-readout {
    width: 142px;
    padding: 12px;
    right: 12%;
  }
  .hero-readout-value strong {
    font-size: 36px;
  }
  .hero-readout-date > .mono {
    font-size: 4px;
  }
  .hero-scene-label {
    font-size: 4.5px;
  }
  .hero-dial-center > strong {
    font-size: 59px;
  }
  .signal-card {
    min-width: 96px;
    padding: 10px;
  }
  .signal-card > strong {
    font-size: 19px;
  }
  .signal-card--sleep {
    left: 9%;
    top: 11%;
  }
  .signal-card--recovery {
    right: 9%;
    top: 3%;
  }
}

.coach-demo {
  --coach-accent: #d6ff3d;
  --coach-soft: #c9d5b8;
}
.coach-introduction {
  max-width: 520px;
  margin: -20px 0 52px auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.coach-demo-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.coach-demo-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bac7bc;
  letter-spacing: 1.2px;
}
.coach-demo-label > span {
  width: 5px;
  height: 5px;
  background: var(--acid);
  border-radius: 50%;
}
.coach-scenarios {
  display: flex;
  padding: 5px;
  gap: 4px;
  background: #141a16;
  border: 1px solid var(--rule);
  border-radius: 100px;
}
.coach-scenarios[hidden],
.coach-example[hidden] {
  display: none;
}
.coach-scenarios button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: #b8c2ba;
  font-size: 12px;
  transition:
    background 220ms,
    color 220ms;
}
.coach-scenarios button[aria-pressed='true'] {
  background: var(--paper);
  color: #1c251d;
}
.coach-choice-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}
.coach-example {
  display: grid;
  grid-template-columns: 0.87fr 1.3fr;
  overflow: hidden;
  border: 1px solid #36443a;
  border-radius: 24px;
  background: #101713;
  box-shadow:
    0 34px 90px -42px #000,
    inset 0 1px #c7d7b90a;
}
.coach-example[data-tone='recovery'] {
  --coach-accent: #e7b98e;
  --coach-soft: #dbbda3;
}
.coach-workout {
  min-width: 0;
  padding: 35px 38px 30px;
  border-right: 1px solid #354237;
  background:
    radial-gradient(ellipse at 2% 6%, #b0cd7921, transparent 65%),
    linear-gradient(135deg, #1c281e, #151e18);
  display: flex;
  flex-direction: column;
}
.coach-workout-top,
.coach-response-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #a1b19f;
}
.coach-workout-top .mono,
.coach-response-top .mono {
  font-size: 9px;
  letter-spacing: 1.5px;
}
.coach-workout-top svg {
  width: 24px;
  fill: none;
  stroke: #c5d2bc;
  stroke-width: 1.2;
}
.coach-workout-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-top: 28px;
}
.coach-workout-title h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.5px;
}
.coach-workout-title .mono {
  font-size: 8px;
  letter-spacing: 1px;
  color: #b0bfa8;
}
.coach-duration {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 5px;
}
.coach-duration strong {
  font-size: clamp(80px, 6.5vw, 100px);
  line-height: 1.12;
  font-weight: 250;
  letter-spacing: -7px;
  font-variant-numeric: tabular-nums;
}
.coach-duration > span {
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  color: #c5d2bc;
}
.coach-workout-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 18px;
}
.coach-workout-stats .mono {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: #aaba9f;
}
.coach-workout-stats p {
  margin-top: 6px;
  font-size: 28px;
  font-weight: 350;
  letter-spacing: -1px;
}
.coach-workout-stats p > span:last-child {
  font-size: 12px;
  letter-spacing: 0;
  color: #b7c3b0;
}
.coach-effort {
  margin-top: 32px;
}
.coach-effort-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aaba9f;
}
.coach-effort-title .mono {
  font-size: 8px;
  letter-spacing: 1px;
}
.coach-effort > svg {
  width: 100%;
  height: 110px;
  margin-top: 10px;
  overflow: visible;
}
.coach-chart-guide {
  stroke: #c7d9b815;
  stroke-width: 0.7;
  stroke-dasharray: 2 4;
}
.coach-effort-bar {
  fill: #b7d28c;
  transform-box: fill-box;
  transform-origin: bottom;
}
.coach-effort-bar.is-hard {
  fill: #e7b98e;
}
.coach-chart-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 8px;
  letter-spacing: 0.5px;
  color: #a8b69f;
}
.coach-effort-key {
  display: flex;
  gap: 24px;
  margin-top: 18px;
  font-size: 11px;
  color: #c1cbb9;
}
.coach-effort-key > span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.coach-effort-key b {
  font-weight: 450;
}
.coach-effort-key i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b7d28c;
  margin-right: 3px;
}
.coach-effort-key > span:last-child i {
  background: #e7b98e;
}
.coach-workout-context {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #c1d4ae24;
}
.coach-workout-context .mono {
  font-size: 8px;
  color: #aaba9f;
  letter-spacing: 1px;
}
.coach-workout-context p {
  font-size: 13px;
  line-height: 1.65;
  color: #c4cebd;
  margin-top: 8px;
  max-width: 310px;
}
.coach-workout-received {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  margin-top: auto;
  font-size: 12px;
  line-height: 1.6;
  color: #c5d2bc;
}
.coach-workout-received em {
  font-family: inherit;
  font-style: normal;
  color: #aaba9f;
  font-size: 11px;
}
.coach-check {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  color: var(--coach-accent);
  border: 1px solid #b7cb9b40;
  border-radius: 50%;
}
.coach-response {
  min-width: 0;
  padding: 35px 42px 22px;
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse at 100% 100%, #a6bb8710, transparent 60%);
}
.coach-response-top > svg {
  width: 26px;
  height: 24px;
  color: #849777;
}
.coach-identity {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 35px;
}
.coach-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #c2db9133;
  background: #c2db910b;
  border-radius: 50%;
}
.coach-avatar svg {
  width: 19px;
  height: 19px;
  color: var(--coach-accent);
}
.coach-identity p {
  font-size: 12px;
}
.coach-response-status {
  display: block;
  color: #a2af9c;
  font-size: 10px;
  margin-top: 4px;
}
.coach-writing {
  display: flex;
  gap: 3px;
  margin-left: auto;
  visibility: hidden;
}
.coach-writing i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coach-accent);
}
.coach-note {
  margin-top: 26px;
}
.coach-stream-field {
  position: relative;
}
.coach-measure {
  visibility: hidden;
  display: block;
}
.coach-words {
  position: absolute;
  inset: 0;
}
.coach-note-headline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(34px, 3.7vw, 55px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -1px;
  max-width: 470px;
}
.coach-note-headline .coach-measure,
.coach-note-headline .coach-words {
  white-space: pre-line;
}
.coach-insights {
  list-style: none;
  padding: 0;
  margin: 26px 0 28px;
  display: grid;
  gap: 15px;
}
.coach-insights li {
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 8px;
}
.coach-insights li > .mono {
  padding-top: 5px;
  font-size: 8px;
  color: #a5b29a;
}
.coach-insights p {
  color: #c1c9bc;
  font-size: 16px;
  font-weight: 350;
  line-height: 1.65;
}
.coach-outcome {
  margin-top: auto;
}
.coach-goal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0 16px;
  border-top: 1px solid #c2d0ac29;
  padding-top: 21px;
}
.coach-goal > .mono {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--coach-accent);
  font-size: 8px;
  letter-spacing: 1px;
}
.coach-goal svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}
.coach-goal > p {
  width: 100%;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #d1d8cb;
}
.coach-contribution {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #bdc9b3;
  font-size: 10px;
  padding-block: 6px;
}
.coach-contribution strong {
  color: var(--coach-accent);
  font-weight: 350;
  font-size: 23px;
  letter-spacing: -1px;
}
.coach-next {
  padding: 17px 20px 19px;
  margin-top: 22px;
  border: 1px solid #c0d19c2b;
  border-radius: 10px;
  background: #bfd09108;
}
.coach-next-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.coach-next-heading .mono {
  font-size: 8px;
  letter-spacing: 1px;
  color: #b2bfa5;
}
.coach-plan-status {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--coach-accent);
}
.coach-plan-change {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 9px;
  margin-top: 13px;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.4px;
}
.coach-plan-change s {
  color: #a1ad99;
  font-size: 13px;
  text-decoration-color: #a1ad9966;
}
.coach-plan-change > span:not(:last-child) {
  color: #a1ad99;
  font-size: 13px;
}
.coach-next-copy {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.55;
  color: #afbba5;
}
.coach-response-footer {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  font-size: 9px;
  color: #a4b19a;
}
.coach-response-footer > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.coach-response-footer i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--coach-accent);
}
.coach-replay {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  padding: 0;
  background: none;
  border: 0;
  font-size: 10px;
  white-space: nowrap;
}
.coach-replay > span:last-child {
  font-size: 17px;
  color: var(--coach-accent);
}
.coach-demo-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-top: 19px;
  color: #a4afa3;
  font-size: 10px;
  line-height: 1.6;
}
.coach-demo-caption .mono {
  font-size: 8px;
  letter-spacing: 1px;
}
.coach-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

/* The response reserves its final line breaks. New words arrive without moving the card. */
.coach-example[data-state='streaming'] .coach-writing {
  visibility: visible;
}
.coach-example[data-state='streaming'] .coach-writing i {
  animation: coach-dot 1.2s ease-in-out infinite;
}
.coach-example[data-state='streaming'] .coach-writing i:nth-child(2) {
  animation-delay: 0.15s;
}
.coach-example[data-state='streaming'] .coach-writing i:nth-child(3) {
  animation-delay: 0.3s;
}
.coach-example[data-state='streaming'] .coach-effort-bar {
  animation: coach-bar 0.6s var(--ease) both;
  animation-delay: var(--bar-delay);
}
.coach-example[data-state='streaming'] .coach-outcome {
  visibility: hidden;
}
.coach-word {
  animation: coach-word 0.32s var(--ease) both;
}
.coach-words[data-writing='true']::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 0.85em;
  margin-left: 3px;
  background: var(--coach-accent);
  vertical-align: -0.03em;
  animation: coach-caret 1s steps(2, start) infinite;
}
.coach-example[data-state='complete'][data-played='true'] .coach-outcome {
  animation: coach-arrive 0.45s var(--ease) both;
}
.coach-example[data-visible='false'] *,
.coach-example[data-visible='false'] ::after {
  animation-play-state: paused !important;
}
@keyframes coach-word {
  from {
    opacity: 0;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes coach-bar {
  from {
    transform: scaleY(0.1);
    opacity: 0.3;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes coach-dot {
  0%,
  70%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  35% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
@keyframes coach-caret {
  to {
    opacity: 0;
  }
}
@keyframes coach-arrive {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html[data-motion='paused'] .coach-demo *,
html[data-motion='paused'] .coach-demo ::after {
  animation: none !important;
  transition: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .coach-demo *,
  .coach-demo ::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (max-width: 1100px) {
  .coach-workout {
    padding: 28px;
  }
  .coach-response {
    padding: 28px 30px 18px;
  }
  .coach-response-footer {
    flex-wrap: wrap;
    gap: 0 12px;
  }
  .coach-demo-toolbar {
    align-items: flex-start;
  }
  .coach-demo-label {
    padding-top: 22px;
    font-size: 8px;
  }
  .coach-scenarios button {
    padding-inline: 13px;
    font-size: 11px;
  }
  .coach-plan-change {
    font-size: 17px;
  }
}
@media (max-width: 800px) {
  .coach-introduction {
    margin: -12px 0 32px;
    max-width: 500px;
    font-size: 16px;
  }
  .coach-demo-toolbar {
    flex-direction: column;
    gap: 17px;
  }
  .coach-demo-label {
    padding-top: 0;
  }
  .coach-example {
    grid-template-columns: 0.8fr 1fr;
    border-radius: 18px;
  }
  .coach-workout {
    padding: 23px 20px;
  }
  .coach-response {
    padding: 23px 24px 15px;
  }
  .coach-workout-top .mono,
  .coach-response-top .mono {
    font-size: 7px;
    letter-spacing: 0.7px;
  }
  .coach-response-top > svg {
    width: 22px;
  }
  .coach-note-headline {
    font-size: 34px;
  }
  .coach-insights p {
    font-size: 13px;
  }
  .coach-goal > p {
    font-size: 13px;
  }
  .coach-next {
    padding: 15px;
  }
  .coach-next-heading {
    flex-wrap: wrap;
    gap: 6px;
  }
  .coach-demo-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 600px) {
  .coach-introduction {
    font-size: 15px;
    line-height: 1.7;
    margin-top: -2px;
  }
  .coach-scenarios {
    width: 100%;
  }
  .coach-scenarios button {
    flex: 1;
    font-size: 11px;
    gap: 6px;
    padding-inline: 8px;
  }
  .coach-example {
    grid-template-columns: 1fr;
  }
  .coach-workout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    padding: 23px;
    border-right: 0;
    border-bottom: 1px solid #354237;
  }
  .coach-workout-top,
  .coach-workout-title,
  .coach-effort,
  .coach-workout-context {
    grid-column: 1 / -1;
  }
  .coach-workout-top .mono,
  .coach-response-top .mono {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .coach-workout-title {
    margin-top: 24px;
  }
  .coach-workout-title h3 {
    font-size: 20px;
  }
  .coach-duration {
    align-self: center;
    gap: 10px;
    margin-top: 4px;
  }
  .coach-duration strong {
    font-size: 80px;
    letter-spacing: -5px;
  }
  .coach-duration > span {
    font-size: 23px;
  }
  .coach-workout-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 8px 0 0;
    justify-self: end;
  }
  .coach-workout-stats .mono {
    font-size: 7px;
  }
  .coach-workout-stats p {
    font-size: 22px;
    margin-top: 2px;
  }
  .coach-workout-stats p > span:last-child {
    font-size: 10px;
  }
  .coach-effort {
    margin-top: 24px;
  }
  .coach-effort > svg {
    height: 92px;
  }
  .coach-effort-key {
    font-size: 10px;
    margin-top: 14px;
  }
  .coach-workout-context {
    margin-top: 22px;
    padding-top: 16px;
  }
  .coach-workout-context p {
    font-size: 12px;
    max-width: none;
  }
  .coach-workout-received {
    display: none;
  }
  .coach-response {
    padding: 24px 23px 16px;
  }
  .coach-identity {
    margin-top: 25px;
  }
  .coach-note {
    margin-top: 25px;
  }
  .coach-note-headline {
    font-size: 38px;
    line-height: 1.04;
  }
  .coach-insights {
    gap: 14px;
    margin: 24px 0;
  }
  .coach-insights p {
    font-size: 14px;
  }
  .coach-goal > p {
    font-size: 14px;
  }
  .coach-goal > .mono {
    font-size: 7px;
  }
  .coach-plan-change {
    font-size: 18px;
  }
  .coach-next-heading {
    flex-wrap: nowrap;
  }
  .coach-next-heading .mono,
  .coach-plan-status {
    font-size: 7px;
  }
  .coach-next-copy {
    font-size: 11px;
  }
  .coach-response-footer {
    margin-top: 14px;
    font-size: 8px;
  }
  .coach-replay {
    font-size: 9px;
  }
  .coach-demo-caption .mono {
    font-size: 7px;
    letter-spacing: 0.65px;
  }
  .coach-demo-caption {
    font-size: 9px;
  }
}
@media (max-width: 360px) {
  .coach-workout,
  .coach-response {
    padding-inline: 18px;
  }
  .coach-note-headline {
    font-size: 34px;
  }
  .coach-scenarios button {
    font-size: 10px;
  }
  .coach-insights p {
    font-size: 13px;
  }
  .coach-insights li {
    grid-template-columns: 17px 1fr;
  }
  .coach-next {
    padding-inline: 13px;
  }
  .coach-next-heading {
    flex-wrap: wrap;
  }
}