@font-face {
  font-family: "League Gothic";
  src: url("/assets/fonts/LeagueGothic-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-SemiBold.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/IBMPlexMono-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/IBMPlexMono-SemiBold.woff2") format("woff2");
  font-weight: 650;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --rx-black: #050607;
  --rx-graphite: #07090d;
  --rx-iron: #171a20;
  --rx-steel: #343844;
  --rx-ink: #f7f8fa;
  --rx-muted: #9ca3af;
  --rx-dim: #68717d;
  --rep-yellow: #ffd23f;
  --reset-cyan: #31c8ff;
  --lock-green: #35d07f;
  --warning-amber: #ffb020;
  --still-coral: #ff765f;
  --warm-practical: #f5c56b;
  --line-soft: rgba(247, 248, 250, 0.12);
  --line-strong: rgba(247, 248, 250, 0.24);
  --page-pad: 72px;
  --section-y: 128px;
  --content-max: 1240px;
  --measure: 720px;
  --radius-ui: 6px;
  --radius-tight: 3px;
  --type-hero: 168px;
  --type-section: 88px;
  --type-body: 19px;
  --type-body-small: 16px;
  --type-ui: 12px;
  --type-mono: 11px;
  --ease-lock: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-rep: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-enter: 700ms;
  --duration-state: 520ms;
  --duration-rep: 260ms;
  --duration-pulse: 1100ms;
  --font-display: "League Gothic", Impact, Haettenschweiler, sans-serif;
  --font-body: "IBM Plex Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, monospace;
  --font-rounded: ui-rounded, "SF Pro Rounded", "IBM Plex Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--rx-black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(245, 197, 107, 0.1), transparent 26rem),
    linear-gradient(180deg, #050607 0%, #07090d 48%, #050607 100%);
  color: var(--rx-ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--reset-cyan);
  outline-offset: 4px;
}

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

p {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  background: var(--reset-cyan);
  color: var(--rx-black);
  font-weight: 650;
  transform: translateY(-140%);
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--page-pad);
  background: rgba(5, 6, 7, 0.72);
  border-bottom: 1px solid rgba(247, 248, 250, 0.08);
  backdrop-filter: blur(18px);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-transform: uppercase;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  color: var(--rx-muted);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-transform: uppercase;
}

.top-nav a {
  position: relative;
  white-space: nowrap;
}

.top-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--rep-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.top-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(86svh, 1040px);
  overflow: hidden;
  isolation: isolate;
  padding: 112px var(--page-pad) 110px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-plate {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.94) 0%, rgba(5, 6, 7, 0.78) 28%, rgba(5, 6, 7, 0.24) 60%, rgba(5, 6, 7, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.22) 0%, rgba(5, 6, 7, 0.08) 44%, rgba(5, 6, 7, 0.92) 100%),
    url("/assets/hero-gym.jpg") 58% center / cover no-repeat,
    #050607;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.02);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0 1px,
      transparent 1px 7px
    );
  mix-blend-mode: screen;
  opacity: 0.17;
}

.hero-shader {
  position: absolute;
  inset: -7% -4%;
  width: 108%;
  height: 114%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.04);
  transition: opacity 500ms var(--ease-lock);
}

.hero-shader.is-ready {
  opacity: 0.72;
}

.hero-paths {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.98;
  mix-blend-mode: screen;
}

.hero-paths path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.has-hero-shader .hero-paths {
  opacity: 0.46;
}

.has-hero-shader .signal-scan {
  opacity: 0;
  animation: none;
}

.signal-path {
  filter: url("#path-glow");
}

.signal-path path {
  vector-effect: non-scaling-stroke;
}

.signal-halo {
  stroke-width: 30;
  opacity: 0.28;
}

.signal-ribbon {
  stroke-width: 13;
  opacity: 0.84;
}

.signal-core {
  stroke-width: 2.2;
  opacity: 0.94;
}

.signal-scan {
  stroke: url("#signal-scan-gradient");
  stroke-width: 8;
  stroke-dasharray: 220 1180;
  opacity: 0.74;
  animation: signal-sweep 5.4s var(--ease-lock) infinite;
}

.signal-rep .signal-halo {
  stroke: rgba(255, 210, 63, 0.38);
}

.signal-rep .signal-ribbon,
.signal-rep .signal-core {
  stroke: url("#rep-path-gradient");
}

.signal-reset .signal-halo {
  stroke: rgba(49, 200, 255, 0.38);
}

.signal-reset .signal-ribbon,
.signal-reset .signal-core {
  stroke: url("#reset-path-gradient");
}

.signal-reset .signal-scan {
  animation-delay: -1.2s;
  animation-duration: 6.2s;
}

.path-cross {
  filter: drop-shadow(0 0 18px rgba(49, 200, 255, 0.45));
}

.cross-halo {
  fill: rgba(247, 248, 250, 0.04);
  stroke: rgba(247, 248, 250, 0.42);
  stroke-width: 1.5;
}

.cross-core {
  fill: var(--rx-ink);
  stroke: rgba(5, 6, 7, 0.72);
  stroke-width: 5;
}

.camera-corners span {
  position: absolute;
  width: 52px;
  height: 52px;
  border-color: rgba(247, 248, 250, 0.32);
  border-style: solid;
}

.camera-corners span:nth-child(1) {
  top: 110px;
  left: 38px;
  border-width: 2px 0 0 2px;
}

.camera-corners span:nth-child(2) {
  top: 110px;
  right: 38px;
  border-width: 2px 2px 0 0;
}

.camera-corners span:nth-child(3) {
  right: 38px;
  bottom: 38px;
  border-width: 0 2px 2px 0;
}

.camera-corners span:nth-child(4) {
  bottom: 38px;
  left: 38px;
  border-width: 0 0 2px 2px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 800px);
  align-items: end;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.hero-copy {
  max-width: 800px;
  padding-top: 72px;
}

.section-kicker,
.panel-label {
  margin-bottom: 16px;
  color: var(--reset-cyan);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-transform: uppercase;
}

h1,
.section-heading h2,
.proof-copy h2,
.closing-content h2,
.document-shell h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 790px;
  margin-bottom: 20px;
  font-size: var(--type-hero);
  line-height: 0.78;
}

.campaign-line {
  margin-bottom: 14px;
  color: var(--rep-yellow);
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 650;
  text-transform: uppercase;
}

.hero-lede,
.section-heading p,
.proof-copy p,
.closing-content p {
  max-width: var(--measure);
  color: #d9dee7;
  font-size: var(--type-body);
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-action,
.secondary-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-ui);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms var(--ease-lock);
}

.primary-action {
  background: var(--rep-yellow);
  color: #050607;
  box-shadow: 0 18px 40px rgba(255, 210, 63, 0.18);
}

.primary-action:hover {
  background: #ffe27a;
}

.secondary-action {
  border: 1px solid #ffffff;
  color: #050607;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(255, 255, 255, 0.14);
}

.secondary-action:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #050607;
  transform: translateY(-1px);
}

.hero-actions .secondary-action,
.hero-actions .secondary-action:hover {
  border-color: #ffffff !important;
  background: #ffffff !important;
  color: #050607 !important;
}

.text-link:hover {
  border-color: var(--reset-cyan);
  color: var(--reset-cyan);
}

.text-link {
  width: max-content;
  margin-top: 28px;
  border: 1px solid var(--line-strong);
  background: rgba(247, 248, 250, 0.04);
}

.footer-status,
.footer-links,
.footer-legal {
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-transform: uppercase;
}

.trust-strip {
  position: absolute;
  right: var(--page-pad);
  bottom: 24px;
  left: var(--page-pad);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: auto;
  max-width: var(--content-max);
  padding: 0;
  margin: 0 auto;
  list-style: none;
  border: 1px solid rgba(247, 248, 250, 0.16);
  background: rgba(247, 248, 250, 0.08);
}

.trust-strip li {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  background: rgba(5, 6, 7, 0.72);
  color: #dce2eb;
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-align: center;
  text-transform: uppercase;
}

.section,
.final-cta {
  position: relative;
  scroll-margin-top: 96px;
  padding: var(--section-y) var(--page-pad);
}

.section.tap-tax {
  padding-top: 24px;
  padding-bottom: 64px;
}

.section-heading,
.proof-grid,
.story-shell,
.tax-board,
.closing-content,
.footer-inner,
.document-shell {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.68fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading .section-kicker {
  grid-column: 1;
}

.section-heading h2 {
  grid-column: 1;
}

.section-heading p:not(.section-kicker) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.section-heading h2,
.proof-copy h2,
.closing-content h2 {
  margin-bottom: 18px;
  font-size: var(--type-section);
  line-height: 0.9;
}

.section-heading p:not(.section-kicker) {
  align-self: end;
  color: var(--rx-muted);
}

.tap-tax {
  padding-top: 24px;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0) 0%, rgba(23, 26, 32, 0.56) 100%),
    #050607;
}

.tap-tax .section-heading {
  display: block;
  margin-bottom: 48px;
}

.tap-tax .section-heading h2 {
  max-width: 760px;
  margin-bottom: 20px;
}

.tap-tax .section-heading p:not(.section-kicker) {
  max-width: 560px;
  color: #d9dee7;
  font-size: 22px;
  line-height: 1.35;
}

.tax-board {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  position: relative;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 250, 0.16);
  background:
    radial-gradient(circle at 50% 46%, rgba(247, 248, 250, 0.08), transparent 26rem),
    linear-gradient(90deg, rgba(255, 118, 95, 0.2), rgba(49, 200, 255, 0.22)),
    rgba(247, 248, 250, 0.075);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(247, 248, 250, 0.03);
}

.tax-board::before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: 47%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(247, 248, 250, 0.24), transparent);
}

.tax-board::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 47%;
  width: 118px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(247, 248, 250, 0.08), transparent);
  transform: translateX(-50%);
}

.tax-panel {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(270px, 1fr) auto;
  gap: 24px;
  min-height: 620px;
  overflow: hidden;
  padding: 34px 36px 116px;
  border: 0;
  border-radius: 0;
  background: rgba(23, 26, 32, 0.78);
  isolation: isolate;
}

.tax-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.045) 1px, transparent 1px),
    repeating-linear-gradient(0deg, rgba(247, 248, 250, 0.032) 0 1px, transparent 1px 8px);
  background-size: 56px 100%, auto;
  opacity: 0.55;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.tax-panel-top,
.manual-stage,
.auto-stage,
.tax-copy,
.drift-meter,
.pace-meter {
  position: relative;
  z-index: 1;
}

.tax-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 26px;
}

.tax-delta {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(247, 248, 250, 0.14);
  background: rgba(5, 6, 7, 0.42);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.tax-copy {
  max-width: 520px;
}

.auto-panel .tax-copy {
  max-width: 600px;
}

.tax-eyebrow {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.tax-panel h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
}

.tax-panel .panel-label {
  position: static;
  z-index: auto;
}

.tax-copy p {
  color: var(--rx-muted);
  font-size: 20px;
  line-height: 1.34;
}

.manual-panel {
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 118, 95, 0.3), transparent 18rem),
    linear-gradient(148deg, rgba(255, 176, 32, 0.24), transparent 45%),
    linear-gradient(90deg, rgba(255, 118, 95, 0.1), transparent 68%),
    #0b0c0f;
}

.manual-panel .tax-delta,
.manual-panel .tax-eyebrow {
  color: var(--warning-amber);
}

.auto-panel {
  background:
    radial-gradient(circle at 35% 42%, rgba(49, 200, 255, 0.3), transparent 20rem),
    linear-gradient(152deg, rgba(49, 200, 255, 0.2), transparent 50%),
    linear-gradient(270deg, rgba(53, 208, 127, 0.1), transparent 68%),
    #070b10;
}

.auto-panel .tax-delta,
.auto-panel .tax-eyebrow {
  color: var(--reset-cyan);
}

.manual-stage,
.auto-stage {
  min-height: 290px;
}

.manual-stage {
  display: grid;
  align-items: center;
  padding-top: 10px;
}

.manual-stage::after {
  content: "LATE";
  position: absolute;
  right: 4%;
  bottom: 4%;
  color: rgba(247, 248, 250, 0.045);
  font-family: var(--font-display);
  font-size: 180px;
  line-height: 0.76;
  text-transform: uppercase;
}

.auto-stage {
  display: grid;
  place-items: center;
}

.auto-stage::after {
  content: "LOCK";
  position: absolute;
  right: 4%;
  bottom: -2%;
  color: rgba(49, 200, 255, 0.065);
  font-family: var(--font-display);
  font-size: 190px;
  line-height: 0.76;
  text-transform: uppercase;
}

.tax-readout {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 156px;
  padding: 13px 14px;
  border: 1px solid rgba(247, 248, 250, 0.18);
  background: rgba(5, 6, 7, 0.62);
  font-family: var(--font-mono);
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.manual-readout {
  top: 18px;
  right: 0;
}

.auto-readout {
  top: 18px;
  right: 0;
}

.tax-readout span,
.tax-readout em {
  color: var(--rx-muted);
  font-size: var(--type-mono);
  font-style: normal;
}

.tax-readout strong {
  font-size: 18px;
  line-height: 1;
  font-weight: 650;
}

.manual-readout strong {
  color: var(--warning-amber);
}

.auto-readout strong {
  color: var(--reset-cyan);
}

.mini-phone {
  position: relative;
  z-index: 1;
  width: 176px;
  height: 286px;
  border: 2px solid rgba(247, 248, 250, 0.28);
  border-radius: 28px;
  background: #050607;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.4),
    inset 0 0 0 1px rgba(247, 248, 250, 0.04);
  transform: rotate(-7deg);
}

.phone-glass,
.manual-panel .mini-phone::before {
  content: "";
  position: absolute;
}

.phone-glass {
  inset: 14px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255, 176, 32, 0.08), transparent 34%),
    rgba(247, 248, 250, 0.018);
}

.manual-panel .mini-phone::before {
  top: 70px;
  right: -118px;
  width: 250px;
  height: 92px;
  border-top: 3px solid rgba(255, 176, 32, 0.64);
  border-bottom: 2px solid rgba(255, 176, 32, 0.22);
  transform: rotate(13deg);
  transform-origin: left center;
  opacity: 0.75;
}

.mini-phone strong {
  position: absolute;
  right: 18px;
  bottom: 24px;
  left: 18px;
  display: grid;
  min-height: 54px;
  place-items: center;
  border-radius: var(--radius-ui);
  background: var(--warning-amber);
  color: var(--rx-black);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 650;
  transform: rotate(-2deg);
}

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

.tap-ring {
  right: -28px;
  bottom: 48px;
  width: 86px;
  height: 86px;
  border: 2px solid var(--warning-amber);
  animation: tap-pulse 1.4s ease-in-out infinite;
}

.tap-thumb {
  right: -2px;
  bottom: 78px;
  width: 34px;
  height: 64px;
  background: rgba(247, 248, 250, 0.72);
  border-radius: 20px;
  transform: rotate(-22deg);
}

.search-lines {
  position: absolute;
  z-index: 0;
  top: 56px;
  right: 18%;
  left: 70px;
  height: 170px;
  pointer-events: none;
}

.search-lines span {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 32, 0.78), transparent);
  opacity: 0.78;
}

.search-lines span:nth-child(1) {
  top: 20px;
  transform: rotate(11deg);
}

.search-lines span:nth-child(2) {
  top: 92px;
  transform: rotate(10deg);
  opacity: 0.34;
}

.search-lines span:nth-child(3) {
  top: 128px;
  transform: rotate(-6deg);
  opacity: 0.16;
}

.drift-meter,
.pace-meter {
  position: absolute;
  right: 36px;
  bottom: 34px;
  left: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 0 20px;
  border: 1px solid var(--line-soft);
  background: rgba(5, 6, 7, 0.52);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  text-transform: uppercase;
}

.drift-meter span,
.pace-meter span,
.drift-meter em,
.pace-meter em {
  color: var(--rx-muted);
  font-style: normal;
}

.drift-meter strong {
  color: var(--warning-amber);
}

.pace-meter strong {
  color: var(--reset-cyan);
}

.auto-reset-graphic {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(360px, 72%);
  aspect-ratio: 1;
  place-items: center;
}

.auto-reset-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(49, 200, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 36px rgba(49, 200, 255, 0.04),
    0 0 0 72px rgba(49, 200, 255, 0.025),
    0 0 76px rgba(49, 200, 255, 0.22);
  animation: rest-lock-pulse 2.6s ease-in-out infinite;
}

.auto-reset-graphic::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 2px solid rgba(49, 200, 255, 0.72);
  border-radius: 50%;
  box-shadow: inset 0 0 54px rgba(49, 200, 255, 0.08);
}

.stillness-bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stillness-bars span {
  width: 10px;
  height: 132px;
  border-radius: 999px;
  background: var(--lock-green);
  transform: scaleY(0.22);
  transform-origin: bottom;
}

.stillness-bars span:nth-child(2) {
  transform: scaleY(0.34);
}

.stillness-bars span:nth-child(3) {
  background: var(--reset-cyan);
  transform: scaleY(0.16);
}

.stillness-bars span:nth-child(4) {
  background: var(--reset-cyan);
  transform: scaleY(0.08);
}

.rest-clock {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  width: 210px;
  height: 210px;
  gap: 4px;
  place-items: center;
  border: 1px solid rgba(49, 200, 255, 0.26);
  border-radius: 50%;
  background: rgba(5, 6, 7, 0.74);
  color: var(--rx-ink);
  font-variant-numeric: tabular-nums;
  box-shadow: 0 0 48px rgba(49, 200, 255, 0.18);
  text-shadow: 0 0 24px rgba(49, 200, 255, 0.32);
}

.rest-clock span {
  color: var(--reset-cyan);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.rest-clock strong {
  font-family: var(--font-rounded);
  font-size: 70px;
  line-height: 0.9;
  font-weight: 900;
}

.one-set {
  padding-top: 64px;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0.8), rgba(5, 6, 7, 1)),
    #07090d;
}

.story-heading {
  display: block;
  margin-bottom: 40px;
}

.story-heading h2 {
  max-width: 760px;
  margin-bottom: 20px;
}

.story-heading p:not(.section-kicker) {
  max-width: 620px;
  color: #d9dee7;
  font-size: 22px;
  line-height: 1.35;
}

.story-shell {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(320px, 420px);
  gap: 46px;
  align-items: start;
}

.sequence-visual {
  position: sticky;
  top: 104px;
  min-height: 640px;
  height: calc(100svh - 132px);
  max-height: 760px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-ui);
  background:
    linear-gradient(120deg, rgba(49, 200, 255, 0.16), transparent 30%),
    linear-gradient(320deg, rgba(255, 210, 63, 0.12), transparent 30%),
    #050607;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(49, 200, 255, 0.05);
  overflow: hidden;
}

.camera-feed {
  position: absolute;
  inset: 18px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 250, 0.14);
  border-radius: var(--radius-ui);
  background:
    radial-gradient(circle at 50% 36%, rgba(245, 197, 107, 0.16), transparent 14rem),
    radial-gradient(circle at 60% 88%, rgba(49, 200, 255, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(247, 248, 250, 0.06), transparent 30%),
    #030405;
  box-shadow:
    inset 0 0 0 1px rgba(247, 248, 250, 0.035),
    inset 0 -90px 120px rgba(49, 200, 255, 0.08);
}

.camera-feed::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    conic-gradient(from 218deg at 50% 40%, transparent 0deg, rgba(49, 200, 255, 0.18) 18deg, transparent 42deg, transparent 164deg, rgba(255, 210, 63, 0.14) 188deg, transparent 218deg),
    radial-gradient(circle at 50% 42%, rgba(53, 208, 127, 0.12), transparent 28%);
  opacity: 0.8;
  animation: feed-scan 9s linear infinite;
}

.feed-grid {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(247, 248, 250, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 250, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, black, transparent 92%);
}

.calibration-field {
  position: absolute;
  inset: 10% 12% 16%;
  pointer-events: none;
}

.calibration-field span {
  position: absolute;
  border: 1px solid rgba(49, 200, 255, 0.22);
  border-radius: 50%;
  opacity: 0.62;
  transform: scale(0.92);
  animation: calibration-breathe 4.6s var(--ease-lock) infinite;
}

.calibration-field span:nth-child(1) {
  top: 4%;
  left: 42%;
  width: 128px;
  height: 128px;
  border-color: rgba(255, 210, 63, 0.24);
}

.calibration-field span:nth-child(2) {
  top: 28%;
  left: 18%;
  width: 92px;
  height: 92px;
  animation-delay: -1.1s;
}

.calibration-field span:nth-child(3) {
  right: 14%;
  bottom: 22%;
  width: 112px;
  height: 112px;
  border-color: rgba(53, 208, 127, 0.24);
  animation-delay: -2.2s;
}

.calibration-field span:nth-child(4) {
  bottom: 4%;
  left: 44%;
  width: 172px;
  height: 172px;
  border-color: rgba(49, 200, 255, 0.16);
  animation-delay: -3.4s;
}

.pose-figure {
  position: absolute;
  top: 11%;
  left: 50%;
  width: 330px;
  height: 390px;
  --pose-scale: 1;
  transform: translateX(-50%) scale(var(--pose-scale));
  filter: drop-shadow(0 0 22px rgba(53, 208, 127, 0.18));
  transition: opacity var(--duration-state) ease, transform var(--duration-state) var(--ease-lock);
}

.sequence-visual[data-motion="press"] .pose-figure,
.sequence-visual[data-motion="settle"] .pose-figure {
  animation: press-body-shift 1.05s var(--ease-lock) infinite;
}

.sequence-visual[data-motion="reset"] .pose-figure,
.sequence-visual[data-motion="still"] .pose-figure {
  opacity: 0.72;
}

.joint {
  position: absolute;
  z-index: 2;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--rep-yellow);
  box-shadow: 0 0 18px rgba(255, 210, 63, 0.44);
}

.joint.head {
  width: 14px;
  height: 14px;
  background: var(--rep-yellow);
  box-shadow:
    0 0 0 30px rgba(255, 210, 63, 0.055),
    0 0 34px rgba(255, 210, 63, 0.28);
}

.bone {
  position: absolute;
  z-index: 1;
  height: 5px;
  border-radius: 999px;
  background: var(--lock-green);
  transform-origin: left center;
  box-shadow: 0 0 14px rgba(53, 208, 127, 0.34);
}

.head { top: 24px; left: 158px; }
.shoulder-l { top: 90px; left: 122px; }
.shoulder-r { top: 90px; left: 206px; }
.elbow-l { top: 148px; left: 98px; }
.elbow-r { top: 148px; left: 232px; }
.wrist-l { top: 118px; left: 116px; }
.wrist-r { top: 118px; left: 214px; }
.hip-l { top: 214px; left: 136px; }
.hip-r { top: 214px; left: 196px; }
.knee-l { top: 302px; left: 120px; }
.knee-r { top: 302px; left: 212px; }
.ankle-l { top: 372px; left: 106px; }
.ankle-r { top: 372px; left: 226px; }

.torso { top: 98px; left: 164px; width: 116px; transform: rotate(89deg); }
.shoulders { top: 96px; left: 126px; width: 82px; transform: rotate(0deg); }
.arm-l-a { top: 96px; left: 126px; width: 63px; transform: rotate(112deg); }
.arm-l-b { top: 154px; left: 102px; width: 36px; transform: rotate(-59deg); }
.arm-r-a { top: 96px; left: 210px; width: 63px; transform: rotate(68deg); }
.arm-r-b { top: 154px; left: 236px; width: 36px; transform: rotate(-121deg); }
.hips { top: 220px; left: 139px; width: 60px; transform: rotate(0deg); }
.leg-l-a { top: 220px; left: 139px; width: 84px; transform: rotate(101deg); }
.leg-l-b { top: 307px; left: 122px; width: 68px; transform: rotate(101deg); }
.leg-r-a { top: 220px; left: 199px; width: 84px; transform: rotate(79deg); }
.leg-r-b { top: 307px; left: 214px; width: 68px; transform: rotate(79deg); }

.sequence-visual[data-motion="press"] .elbow-l,
.sequence-visual[data-motion="settle"] .elbow-l { animation: press-elbow-l 1.05s var(--ease-lock) infinite; }
.sequence-visual[data-motion="press"] .elbow-r,
.sequence-visual[data-motion="settle"] .elbow-r { animation: press-elbow-r 1.05s var(--ease-lock) infinite; }
.sequence-visual[data-motion="press"] .wrist-l,
.sequence-visual[data-motion="settle"] .wrist-l { animation: press-wrist-l 1.05s var(--ease-lock) infinite; }
.sequence-visual[data-motion="press"] .wrist-r,
.sequence-visual[data-motion="settle"] .wrist-r { animation: press-wrist-r 1.05s var(--ease-lock) infinite; }
.sequence-visual[data-motion="press"] .arm-l-a,
.sequence-visual[data-motion="settle"] .arm-l-a { animation: press-arm-l-a 1.05s var(--ease-lock) infinite; }
.sequence-visual[data-motion="press"] .arm-l-b,
.sequence-visual[data-motion="settle"] .arm-l-b { animation: press-arm-l-b 1.05s var(--ease-lock) infinite; }
.sequence-visual[data-motion="press"] .arm-r-a,
.sequence-visual[data-motion="settle"] .arm-r-a { animation: press-arm-r-a 1.05s var(--ease-lock) infinite; }
.sequence-visual[data-motion="press"] .arm-r-b,
.sequence-visual[data-motion="settle"] .arm-r-b { animation: press-arm-r-b 1.05s var(--ease-lock) infinite; }

.motion-trace {
  position: absolute;
  top: 9%;
  left: 24%;
  width: 52%;
  height: 26%;
  border: 4px solid var(--rep-yellow);
  border-right-color: rgba(255, 210, 63, 0.16);
  border-bottom-color: transparent;
  border-radius: 50%;
  opacity: 0.76;
  transform: rotate(-2deg);
  filter: drop-shadow(0 0 20px rgba(255, 210, 63, 0.44));
  animation: trace-breathe 3.8s var(--ease-lock) infinite;
}

.motion-trace::before,
.motion-trace::after {
  content: "";
  position: absolute;
  top: 26%;
  width: 72px;
  height: 88px;
  border: 3px solid rgba(255, 210, 63, 0.42);
  border-bottom-color: transparent;
  border-radius: 50%;
}

.motion-trace::before {
  left: 18%;
  transform: rotate(-16deg);
}

.motion-trace::after {
  right: 18%;
  transform: rotate(16deg);
}

.sequence-visual[data-motion="press"] .motion-trace,
.sequence-visual[data-motion="settle"] .motion-trace {
  animation: trace-breathe 1.05s var(--ease-lock) infinite;
}

.sequence-visual[data-motion="still"] .motion-trace,
.sequence-visual[data-motion="reset"] .motion-trace {
  opacity: 0.34;
}

.overlay-top {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.tracking-badge {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(53, 208, 127, 0.28);
  border-radius: 50%;
  background: rgba(53, 208, 127, 0.18);
}

.tracking-badge i {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--lock-green);
}

.live-label {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line-soft);
  background: rgba(5, 6, 7, 0.62);
  color: var(--rx-ink);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-transform: uppercase;
}

.readout-stack {
  position: absolute;
  right: 28px;
  bottom: 34px;
  left: 28px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.outlined-text {
  color: var(--rx-ink);
  font-family: var(--font-rounded);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow:
    -3px -3px 0 #000,
    0 -4px 0 #000,
    3px -3px 0 #000,
    -4px 0 0 #000,
    4px 0 0 #000,
    -3px 3px 0 #000,
    0 4px 0 #000,
    3px 3px 0 #000,
    0 12px 22px rgba(0, 0, 0, 0.58);
}

.coach-headline {
  margin-bottom: 8px;
  font-size: 38px;
  line-height: 1;
}

.rep-readout {
  font-size: 132px;
  line-height: 0.86;
  font-variant-numeric: tabular-nums;
}

.target-readout {
  margin-top: 10px;
  color: rgba(247, 248, 250, 0.92);
  font-size: 28px;
  line-height: 1;
}

.learning-dots {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.learning-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(247, 248, 250, 0.22);
}

.learning-dots span.is-active {
  background: var(--rep-yellow);
}

.learning-dots.is-locked span {
  background: var(--lock-green);
}

.learning-dots.is-reset span {
  background: var(--reset-cyan);
}

.rep-progress {
  width: min(420px, 82%);
  height: 7px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 248, 250, 0.16);
}

.rep-progress span {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  border-radius: inherit;
  background: var(--rep-yellow);
  transition: width var(--duration-state) var(--ease-lock), background var(--duration-state) ease;
}

.sequence-visual.is-reset .rep-readout {
  color: var(--reset-cyan);
  font-size: 118px;
}

.sequence-visual.is-reset .rep-progress span {
  background: var(--reset-cyan);
}

.sequence-visual.is-reset .motion-trace {
  border-color: var(--reset-cyan);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.story-steps {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.story-steps li {
  position: relative;
  min-height: min(42svh, 520px);
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-ui);
  background:
    linear-gradient(135deg, rgba(49, 200, 255, 0.035), transparent 42%),
    rgba(23, 26, 32, 0.56);
  opacity: 0.48;
  transition:
    opacity var(--duration-state) ease,
    border-color var(--duration-state) ease,
    background var(--duration-state) ease,
    box-shadow var(--duration-state) ease,
    transform var(--duration-state) var(--ease-lock);
}

.story-steps li::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(49, 200, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(247, 248, 250, 0.05), transparent 42%);
  opacity: 0;
  transition: opacity var(--duration-state) ease;
}

.story-steps li::after {
  content: attr(data-state);
  position: absolute;
  right: 18px;
  bottom: 12px;
  max-width: 88%;
  color: rgba(247, 248, 250, 0.055);
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.82;
  text-align: right;
  text-transform: uppercase;
  pointer-events: none;
}

.story-steps li.is-active {
  opacity: 1;
  border-color: rgba(49, 200, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(49, 200, 255, 0.08), transparent 46%),
    rgba(23, 26, 32, 0.72);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(49, 200, 255, 0.08);
  transform: translateX(-8px);
}

.story-steps li.is-active::before {
  opacity: 1;
}

.story-steps li[data-motion="press"].is-active {
  border-color: rgba(255, 210, 63, 0.42);
}

.story-steps li[data-motion="reset"].is-active,
.story-steps li[data-motion="still"].is-active {
  border-color: rgba(49, 200, 255, 0.58);
}

.story-steps li span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  margin-bottom: 36px;
  border: 1px solid var(--line-soft);
  color: var(--reset-cyan);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
}

.story-steps h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 0.96;
  text-transform: uppercase;
}

.story-steps p {
  position: relative;
  z-index: 1;
  color: var(--rx-muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(440px, 1fr);
  gap: 64px;
  align-items: center;
}

.proof-copy p {
  color: var(--rx-muted);
}

.motion-proof,
.privacy-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-ui);
  background:
    linear-gradient(140deg, rgba(247, 248, 250, 0.08), transparent 34%),
    rgba(23, 26, 32, 0.7);
}

.motion-proof {
  background:
    radial-gradient(circle at 18% 86%, rgba(53, 208, 127, 0.16), transparent 13rem),
    radial-gradient(circle at 72% 38%, rgba(255, 210, 63, 0.11), transparent 18rem),
    radial-gradient(circle at 64% 68%, rgba(49, 200, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(247, 248, 250, 0.09), transparent 34%),
    #121419;
  box-shadow:
    0 30px 84px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(247, 248, 250, 0.04);
}

.motion-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 248, 250, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 250, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 52%, transparent 82%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0 52%, transparent 82%);
}

.motion-proof > * {
  position: relative;
  z-index: 1;
}

.signal-row,
.lock-row {
  position: absolute;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  text-transform: uppercase;
}

.signal-row {
  top: 28px;
}

.signal-row strong {
  color: var(--rx-text);
}

.lock-row {
  bottom: 28px;
  color: var(--lock-green);
}

.signal-wave {
  position: absolute;
  inset: 100px 44px 96px;
}

.motion-orbits {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.motion-orbit,
.motion-pulse {
  fill: none;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
}

.motion-orbit {
  stroke-width: 2;
  opacity: 0.55;
  animation: signature-breathe 5.8s ease-in-out infinite;
}

.motion-pulse {
  stroke-width: 7;
  stroke-dasharray: 108 760;
  opacity: 0.95;
  filter: drop-shadow(0 0 18px currentColor);
  animation:
    signature-breathe 5.8s ease-in-out infinite,
    signature-travel 4.8s linear infinite;
}

.orbit-rep,
.pulse-rep {
  color: var(--rep-yellow);
  stroke: var(--rep-yellow);
}

.orbit-reset,
.pulse-reset {
  color: var(--reset-cyan);
  stroke: var(--reset-cyan);
  animation-delay: -0.8s;
}

.orbit-lock,
.pulse-lock {
  color: var(--lock-green);
  stroke: var(--lock-green);
  animation-delay: -1.6s;
}

.signature-beam {
  position: absolute;
  pointer-events: none;
}

.signature-beam {
  top: 7%;
  bottom: 7%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(247, 248, 250, 0.24), transparent);
  box-shadow:
    0 0 26px rgba(49, 200, 255, 0.3),
    0 0 42px rgba(53, 208, 127, 0.18);
  transform: translateX(-50%);
  animation: signature-scan 4.8s ease-in-out infinite;
}

.privacy-grid {
  grid-template-columns: minmax(440px, 1fr) minmax(360px, 0.78fr);
}

.privacy-visual {
  min-height: 548px;
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 210, 63, 0.14), transparent 17rem),
    radial-gradient(circle at 77% 74%, rgba(49, 200, 255, 0.17), transparent 18rem),
    linear-gradient(135deg, rgba(53, 208, 127, 0.09), transparent 34%),
    #050607;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 0 0 1px rgba(49, 200, 255, 0.05);
}

.privacy-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(247, 248, 250, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 250, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black 0%, transparent 88%);
}

.privacy-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.88) 0%, transparent 24%, transparent 66%, rgba(5, 6, 7, 0.78) 100%),
    linear-gradient(180deg, transparent 0%, rgba(5, 6, 7, 0.64) 100%);
}

.privacy-feed {
  position: absolute;
  inset: 34px;
  overflow: hidden;
  border: 1px solid rgba(247, 248, 250, 0.13);
  border-radius: var(--radius-ui);
  background:
    radial-gradient(circle at 46% 36%, rgba(247, 248, 250, 0.07), transparent 15rem),
    linear-gradient(140deg, rgba(255, 210, 63, 0.08), transparent 36%),
    linear-gradient(320deg, rgba(49, 200, 255, 0.11), transparent 36%),
    rgba(7, 9, 13, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(247, 248, 250, 0.035),
    inset 0 -80px 120px rgba(49, 200, 255, 0.08);
}

.privacy-feed::before {
  content: "";
  position: absolute;
  inset: -24%;
  opacity: 0.55;
  background:
    conic-gradient(from 238deg at 50% 42%, transparent 0deg, rgba(255, 210, 63, 0.22) 24deg, transparent 54deg, transparent 162deg, rgba(49, 200, 255, 0.22) 196deg, transparent 232deg),
    radial-gradient(circle at 50% 54%, rgba(53, 208, 127, 0.14), transparent 30%);
  animation: privacy-orbit 10s linear infinite;
}

.privacy-feed-label {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 2;
  color: rgba(247, 248, 250, 0.78);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pixel-field {
  position: absolute;
  inset: 68px 54px 130px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.pixel-field span {
  background:
    linear-gradient(135deg, rgba(247, 248, 250, 0.13), rgba(247, 248, 250, 0.015)),
    rgba(247, 248, 250, 0.045);
  border: 1px solid rgba(247, 248, 250, 0.08);
  opacity: 0.34;
  box-shadow: inset 0 0 38px rgba(247, 248, 250, 0.02);
}

.pixel-field span:nth-child(3),
.pixel-field span:nth-child(6),
.pixel-field span:nth-child(7),
.pixel-field span:nth-child(10),
.pixel-field span:nth-child(11) {
  opacity: 0.12;
}

.pixel-field span:nth-child(4n),
.pixel-field span:nth-child(13),
.pixel-field span:nth-child(14),
.pixel-field span:nth-child(16) {
  opacity: 0.06;
}

.privacy-wipe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  z-index: 2;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(53, 208, 127, 0.86), transparent);
  box-shadow:
    0 0 26px rgba(53, 208, 127, 0.34),
    22px 0 90px rgba(5, 6, 7, 0.72),
    -42px 0 100px rgba(49, 200, 255, 0.08);
  animation: privacy-wipe 5.6s var(--ease-lock) infinite;
}

.privacy-wipe::before,
.privacy-wipe::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 170px;
  pointer-events: none;
}

.privacy-wipe::before {
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(5, 6, 7, 0.8));
}

.privacy-wipe::after {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.76), transparent);
}

.privacy-pose {
  --privacy-pose-scale: 1;
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 50%;
  width: 306px;
  height: 342px;
  transform: translate(-50%, -50%) scale(var(--privacy-pose-scale));
  filter: drop-shadow(0 0 24px rgba(53, 208, 127, 0.24));
  animation: privacy-pose-breathe 3.8s var(--ease-lock) infinite;
}

.pose-line,
.pose-dot {
  position: absolute;
  display: block;
}

.pose-line {
  height: 5px;
  border-radius: 999px;
  background: var(--lock-green);
  box-shadow: 0 0 18px rgba(53, 208, 127, 0.38);
  transform-origin: left center;
}

.pose-dot {
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  background: var(--rep-yellow);
  box-shadow: 0 0 18px rgba(255, 210, 63, 0.34);
}

.pose-head {
  top: 44px;
  left: 154px;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
}

.pose-neck { top: 91px; left: 154px; }
.pose-shoulder-left { top: 106px; left: 94px; }
.pose-shoulder-right { top: 106px; left: 214px; }
.pose-hand-left { top: 196px; left: 66px; }
.pose-hand-right { top: 198px; left: 242px; }
.pose-hip-left { top: 220px; left: 124px; }
.pose-hip-right { top: 220px; left: 188px; }
.pose-foot-left { top: 318px; left: 96px; }
.pose-foot-right { top: 318px; left: 218px; }

.pose-shoulders {
  top: 106px;
  left: 94px;
  width: 120px;
  transform: rotate(0deg);
}

.pose-spine {
  top: 112px;
  left: 154px;
  width: 106px;
  transform: rotate(90deg);
}

.pose-hip {
  top: 220px;
  left: 124px;
  width: 64px;
  transform: rotate(0deg);
}

.pose-arm-left {
  top: 118px;
  left: 94px;
  width: 92px;
  transform: rotate(108deg);
}

.pose-arm-right {
  top: 118px;
  left: 214px;
  width: 92px;
  transform: rotate(72deg);
}

.pose-leg-left {
  top: 232px;
  left: 124px;
  width: 92px;
  transform: rotate(108deg);
}

.pose-leg-right {
  top: 232px;
  left: 188px;
  width: 94px;
  transform: rotate(72deg);
}

.privacy-shield {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 4;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(53, 208, 127, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(53, 208, 127, 0.18), transparent 66%),
    rgba(5, 6, 7, 0.42);
  color: var(--lock-green);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  font-weight: 650;
  text-transform: uppercase;
  box-shadow: 0 0 46px rgba(53, 208, 127, 0.1);
}

.privacy-shield::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(53, 208, 127, 0.2);
  border-radius: inherit;
}

.privacy-data-rail {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(247, 248, 250, 0.16);
  background: rgba(5, 6, 7, 0.68);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(49, 200, 255, 0.045);
  backdrop-filter: blur(10px);
}

.privacy-data-rail span {
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 14px 18px;
  border-left: 1px solid rgba(247, 248, 250, 0.1);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.privacy-data-rail span:first-child {
  border-left: 0;
}

.privacy-data-rail em,
.privacy-data-rail strong {
  font-style: normal;
}

.privacy-data-rail em {
  color: var(--rx-muted);
  font-size: var(--type-mono);
  font-weight: 650;
}

.privacy-data-rail strong {
  color: var(--reset-cyan);
  font-size: var(--type-ui);
  font-weight: 650;
}

.privacy-data-rail span:first-child strong {
  color: var(--rep-yellow);
}

.privacy-data-rail span:last-child strong {
  color: var(--lock-green);
}

.final-cta {
  min-height: 700px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 43%, rgba(49, 200, 255, 0.18), transparent 20rem),
    radial-gradient(circle at 20% 72%, rgba(255, 210, 63, 0.1), transparent 22rem),
    linear-gradient(180deg, #07090d 0%, #050607 100%);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(247, 248, 250, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 248, 250, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 58% 46%, black, transparent 72%);
}

.final-paths {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-paths::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 61%;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(247, 248, 250, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(49, 200, 255, 0.15), transparent 62%);
  transform: translate(-50%, -50%);
}

.final-paths span {
  position: absolute;
  top: 52%;
  left: 61%;
  width: min(86vw, 1060px);
  height: 13px;
  border-radius: 999px;
  transform-origin: center;
  opacity: 0.76;
  filter: drop-shadow(0 0 24px currentColor);
}

.final-rep-path {
  color: var(--rep-yellow);
  background: var(--rep-yellow);
  transform: translate(-50%, -50%) rotate(34deg);
}

.final-reset-path {
  color: var(--reset-cyan);
  background: var(--reset-cyan);
  transform: translate(-50%, -50%) rotate(-28deg);
}

.closing-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-left: 0;
}

.closing-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  border-radius: 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.closing-content .primary-action {
  margin-top: 28px;
}

.site-footer {
  padding: 0 var(--page-pad) 36px;
  background: #050607;
  color: var(--rx-muted);
  font-family: var(--font-mono);
  font-size: var(--type-ui);
  text-transform: uppercase;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(190px, 0.8fr) minmax(320px, 1.3fr) auto auto;
  gap: 18px;
  align-items: center;
  min-height: 92px;
  padding-top: 18px;
  border-top: 1px solid rgba(247, 248, 250, 0.12);
}

.footer-brand,
.footer-links,
.footer-status {
  display: flex;
  align-items: center;
}

.footer-brand {
  gap: 12px;
  color: var(--rx-ink);
  font-weight: 650;
}

.footer-brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.footer-status {
  flex-wrap: wrap;
  gap: 6px;
}

.footer-status span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(247, 248, 250, 0.12);
  background: rgba(247, 248, 250, 0.035);
}

.footer-status span:first-child {
  color: var(--rep-yellow);
  border-color: rgba(255, 210, 63, 0.28);
}

.footer-links {
  gap: 18px;
}

.footer-legal {
  justify-self: end;
}

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

.document-page {
  background: #050607;
}

.document-shell {
  padding: 150px 28px 92px;
  max-width: 860px;
}

.document-shell h1 {
  margin-bottom: 26px;
  font-size: 92px;
  line-height: 0.9;
}

.document-shell h2 {
  margin: 42px 0 10px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.document-shell p,
.document-list {
  color: var(--rx-muted);
}

.document-shell a {
  color: var(--reset-cyan);
}

.document-list {
  padding-left: 20px;
}

@keyframes signal-sweep {
  0% {
    opacity: 0.12;
    stroke-dashoffset: 1180;
  }

  34%,
  62% {
    opacity: 0.82;
  }

  100% {
    opacity: 0.16;
    stroke-dashoffset: -260;
  }
}

@keyframes feed-scan {
  to {
    transform: rotate(360deg);
  }
}

@keyframes calibration-breathe {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.88);
  }

  48% {
    opacity: 0.72;
    transform: scale(1.04);
  }
}

@keyframes trace-breathe {
  0%,
  100% {
    opacity: 0.56;
    transform: rotate(-2deg) scale(0.98);
  }

  50% {
    opacity: 0.86;
    transform: rotate(-2deg) scale(1.02);
  }
}

@keyframes press-body-shift {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(var(--pose-scale));
  }

  46%,
  56% {
    transform: translateX(-50%) translateY(-9px) scale(var(--pose-scale));
  }
}

@keyframes press-elbow-l {
  0%, 100% { top: 148px; left: 98px; }
  46%, 56% { top: 58px; left: 126px; }
}

@keyframes press-elbow-r {
  0%, 100% { top: 148px; left: 232px; }
  46%, 56% { top: 58px; left: 206px; }
}

@keyframes press-wrist-l {
  0%, 100% { top: 118px; left: 116px; }
  46%, 56% { top: 18px; left: 128px; }
}

@keyframes press-wrist-r {
  0%, 100% { top: 118px; left: 214px; }
  46%, 56% { top: 18px; left: 202px; }
}

@keyframes press-arm-l-a {
  0%, 100% { width: 63px; transform: rotate(112deg); }
  46%, 56% { width: 40px; transform: rotate(-86deg); }
}

@keyframes press-arm-r-a {
  0%, 100% { width: 63px; transform: rotate(68deg); }
  46%, 56% { width: 40px; transform: rotate(-94deg); }
}

@keyframes press-arm-l-b {
  0%, 100% { top: 154px; left: 102px; width: 36px; transform: rotate(-59deg); }
  46%, 56% { top: 64px; left: 130px; width: 42px; transform: rotate(-87deg); }
}

@keyframes press-arm-r-b {
  0%, 100% { top: 154px; left: 236px; width: 36px; transform: rotate(-121deg); }
  46%, 56% { top: 64px; left: 208px; width: 42px; transform: rotate(-93deg); }
}

@keyframes tap-pulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.82);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes rest-lock-pulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes signature-travel {
  to {
    stroke-dashoffset: -868;
  }
}

@keyframes signature-breathe {
  0%,
  100% {
    transform: translateY(0) scaleX(1) scaleY(1);
  }

  50% {
    transform: translateY(-3px) scaleX(0.985) scaleY(1.045);
  }
}

@keyframes signature-scan {
  0%,
  100% {
    opacity: 0.26;
    transform: translateX(-50%) scaleY(0.86);
  }

  50% {
    opacity: 0.9;
    transform: translateX(-50%) scaleY(1.06);
  }
}

@keyframes privacy-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes privacy-wipe {
  0%,
  100% {
    opacity: 0.58;
    transform: translateX(-18px);
  }

  50% {
    opacity: 1;
    transform: translateX(18px);
  }
}

@keyframes privacy-pose-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(calc(var(--privacy-pose-scale, 1) * 0.985));
  }

  50% {
    transform: translate(-50%, -50%) scale(calc(var(--privacy-pose-scale, 1) * 1.015));
  }
}

@media (max-width: 1180px) {
  :root {
    --page-pad: 44px;
    --type-hero: 118px;
    --type-section: 64px;
  }

  .section-heading,
  .proof-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .section-heading .section-kicker,
  .section-heading h2,
  .section-heading p:not(.section-kicker) {
    grid-column: 1;
    grid-row: auto;
  }

  .story-shell {
    grid-template-columns: minmax(420px, 1fr) minmax(280px, 360px);
  }
}

@media (max-width: 1320px) and (min-width: 1181px) {
  :root {
    --page-pad: 44px;
    --type-hero: 104px;
  }

  .hero {
    padding-top: 88px;
    padding-bottom: 86px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 740px);
  }

  .trust-strip {
    bottom: 18px;
  }
}

@media (max-width: 820px) {
  :root {
    --page-pad: 24px;
    --section-y: 84px;
    --type-hero: 76px;
    --type-section: 44px;
    --type-body: 17px;
  }

  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px var(--page-pad);
  }

  .top-nav {
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 142px;
  }

  .hero-plate {
    background-position: 45% center;
  }

  .hero-paths {
    opacity: 0.62;
    transform: scale(1.12) translateX(-5%);
    transform-origin: center;
  }

  .hero-shader {
    inset: -5% -18%;
    width: 136%;
    height: 112%;
  }

  .hero-shader.is-ready {
    opacity: 0.58;
  }

  .has-hero-shader .hero-paths {
    opacity: 0.34;
  }

  .signal-halo {
    stroke-width: 22;
  }

  .signal-ribbon {
    stroke-width: 9;
  }

  .signal-core {
    stroke-width: 1.8;
  }

  .signal-scan {
    stroke-width: 5;
  }

  .path-cross {
    opacity: 0.74;
  }

  .hero-copy {
    padding-top: 48px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 16px;
  }

  .campaign-line {
    font-size: 14px;
  }

  .hero-lede {
    max-width: 360px;
  }

  .hero-grid {
    min-width: 0;
  }

  .tax-board {
    grid-template-columns: 1fr;
  }

  .tax-board {
    gap: 1px;
    max-width: 100%;
  }

  .tax-board::before,
  .tax-board::after {
    display: none;
  }

  .trust-strip {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: calc(100vw - (var(--page-pad) * 2));
    margin: 30px auto 0;
    overflow: hidden;
  }

  .trust-strip li:last-child {
    grid-column: auto;
  }

  .trust-strip li {
    justify-content: center;
    min-width: 0;
    min-height: 40px;
    padding: 0 8px;
    font-size: 9px;
    line-height: 1.15;
    white-space: normal;
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .tap-tax .section-heading h2,
  .tap-tax .section-heading p:not(.section-kicker) {
    max-width: 100%;
  }

  .tap-tax .section-heading p:not(.section-kicker) {
    font-size: 20px;
  }

  .tax-panel {
    grid-template-rows: auto 250px auto;
    gap: 18px;
    min-height: 560px;
    max-width: 100%;
    min-width: 0;
    padding: 24px 22px 112px;
  }

  .tax-panel-top {
    min-width: 0;
    gap: 12px;
  }

  .tax-delta,
  .tax-panel .panel-label {
    white-space: nowrap;
  }

  .tax-readout {
    top: 12px;
    right: 0;
    min-width: 132px;
    padding: 10px 11px;
  }

  .tax-panel h3 {
    font-size: 46px;
  }

  .tax-copy p {
    font-size: 17px;
  }

  .manual-stage,
  .auto-stage {
    min-height: 250px;
  }

  .mini-phone {
    width: 136px;
    height: 224px;
    border-radius: 22px;
  }

  .manual-panel .mini-phone::before {
    top: 54px;
    right: -92px;
    width: 190px;
    height: 72px;
  }

  .search-lines {
    top: 42px;
    right: 4%;
    left: 58px;
    height: 132px;
  }

  .auto-reset-graphic {
    width: min(260px, 82%);
  }

  .rest-clock {
    width: 164px;
    height: 164px;
  }

  .rest-clock strong {
    font-size: 54px;
  }

  .stillness-bars span {
    height: 92px;
  }

  .drift-meter,
  .pace-meter {
    right: 22px;
    bottom: 24px;
    left: 22px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 70px;
  }

  .drift-meter em,
  .pace-meter em {
    grid-column: 1 / -1;
  }

  .story-shell {
    display: block;
  }

  .sequence-visual {
    position: relative;
    top: auto;
    height: 600px;
    min-height: 0;
    margin-bottom: 18px;
  }

  .calibration-field {
    inset: 14% 4% 18%;
  }

  .story-steps {
    gap: 12px;
  }

  .story-steps li {
    min-height: auto;
    padding: 20px;
    opacity: 1;
  }

  .story-steps li.is-active {
    transform: none;
  }

  .story-steps li span {
    margin-bottom: 24px;
  }

  .story-steps h3 {
    font-size: 38px;
  }

  .proof-grid,
  .privacy-grid {
    gap: 32px;
  }

  .motion-proof,
  .privacy-visual {
    min-height: 390px;
  }

  .privacy-visual {
    min-height: 560px;
  }

  .privacy-feed {
    inset: 16px;
  }

  .privacy-feed-label {
    top: 16px;
    left: 16px;
  }

  .pixel-field {
    inset: 54px 18px 166px;
    gap: 8px;
  }

  .privacy-pose {
    --privacy-pose-scale: 0.78;
    top: 46%;
  }

  .privacy-shield {
    top: 22px;
    right: 22px;
    width: 82px;
    height: 82px;
    font-size: 10px;
  }

  .privacy-shield::before {
    inset: 14px;
  }

  .privacy-data-rail {
    right: 16px;
    bottom: 16px;
    left: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-data-rail span {
    min-height: 58px;
    padding: 10px 12px;
  }

  .privacy-data-rail span:nth-child(odd) {
    border-left: 0;
  }

  .privacy-data-rail span:nth-child(n + 3) {
    border-top: 1px solid rgba(247, 248, 250, 0.1);
  }

  .final-cta {
    min-height: 680px;
  }

  .final-paths span {
    top: 61%;
    left: 82%;
    width: min(126vw, 720px);
    height: 9px;
    opacity: 0.5;
  }

  .final-paths::before {
    top: 57%;
    left: 82%;
    width: 230px;
    height: 230px;
  }

  .site-footer {
    padding-right: var(--page-pad);
    padding-bottom: 30px;
    padding-left: var(--page-pad);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
    padding-top: 22px;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-legal {
    justify-self: start;
  }

  .document-shell {
    padding-top: 160px;
  }

  .document-shell h1 {
    font-size: 68px;
  }
}

@media (max-width: 460px) {
  .brand-word {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-nav {
    font-size: 10px;
  }

  .hero {
    padding-bottom: 28px;
  }

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

  .primary-action,
  .secondary-action,
  .text-link {
    width: 100%;
    min-height: 50px;
  }

  .sequence-visual {
    height: 520px;
  }

  .camera-feed {
    inset: 10px;
  }

  .pose-figure {
    top: 14%;
    width: 330px;
    --pose-scale: 0.72;
    transform: translateX(-50%) scale(var(--pose-scale));
  }

  .readout-stack {
    right: 14px;
    bottom: 26px;
    left: 14px;
  }

  .privacy-visual {
    min-height: 520px;
  }

  .privacy-feed {
    inset: 10px;
  }

  .pixel-field {
    inset: 54px 14px 164px;
    grid-template-columns: repeat(3, 1fr);
  }

  .pixel-field span:nth-child(n + 13) {
    display: none;
  }

  .privacy-pose {
    --privacy-pose-scale: 0.68;
    top: 45%;
  }

  .privacy-shield {
    width: 72px;
    height: 72px;
  }

  .privacy-data-rail em {
    font-size: 9px;
  }

  .privacy-data-rail strong {
    font-size: 10px;
  }

  .coach-headline {
    font-size: 30px;
  }

  .rep-readout {
    font-size: 104px;
  }

  .target-readout {
    font-size: 22px;
  }

  .sequence-visual.is-reset .rep-readout {
    font-size: 88px;
  }

  .mini-phone {
    width: 126px;
    height: 210px;
  }

  .drift-meter,
  .pace-meter {
    display: grid;
    align-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .story-steps li {
    opacity: 1;
  }
}
