@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/fonts/SpaceGrotesk-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  color-scheme: dark;
  --ink: #04070a;
  --navy: #07111c;
  --surface: #0b1621;
  --surface-2: #101d2a;
  --surface-3: #142435;
  --line: #26394c;
  --line-soft: rgba(115, 151, 183, 0.18);
  --white: #f4f7fb;
  --soft: #aab5bf;
  --muted: #748291;
  --blue: #2d8cff;
  --cyan: #35d9ff;
  --mint: #52f6c0;
  --amber: #ffc33d;
  --coral: #ff766c;
  --max: 1240px;
  --header: 78px;
  --radius: 16px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(72, 116, 155, 0.033) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 116, 155, 0.033) 1px, transparent 1px);
  background-size: 54px 54px;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}

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

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

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

button,
select,
label[for] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
label:focus-within {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  font-family: "Manrope", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 86px 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(4, 7, 10, 0.62);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line-soft);
  background: rgba(4, 7, 10, 0.93);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  flex: 0 0 auto;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

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

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  margin-inline: auto;
}

.desktop-nav a {
  position: relative;
  padding: 7px 0;
  color: #bdc6ce;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

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

.nav-cta {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(82, 246, 192, 0.43);
  border-radius: 9px;
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover {
  border-color: var(--mint);
  color: var(--ink);
  background: var(--mint);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  padding: calc(var(--header) + 34px) 0 44px;
  background: #050a10;
}

.hero-story {
  position: relative;
  min-height: 710px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-photo,
.hero-photo-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background-image: url("assets/cover-sprinter.png");
  background-position: 68% center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-photo-shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.98) 0%, rgba(4, 7, 10, 0.86) 42%, rgba(4, 7, 10, 0.14) 78%),
    linear-gradient(0deg, rgba(4, 7, 10, 0.8) 0%, transparent 54%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 710px;
  padding: 78px 68px 62px;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 11px currentColor;
}

.hero h1 {
  max-width: 720px;
  margin: 27px 0 26px;
  font-size: clamp(50px, 5.2vw, 72px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 36px;
  color: #c4cdd5;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.65;
}

.hero-actions,
.try-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-primary {
  color: #03100d;
  background: var(--mint);
  box-shadow: 0 10px 28px rgba(82, 246, 192, 0.13);
}

.button-primary:hover {
  background: #76ffd1;
}

.button-glass,
.button-quiet {
  border-color: rgba(166, 187, 205, 0.28);
  color: var(--white);
  background: rgba(7, 17, 28, 0.74);
}

.button-glass:hover,
.button-quiet:hover {
  border-color: rgba(53, 217, 255, 0.58);
  color: var(--cyan);
}

.hero-principle {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 720px;
  padding-top: 26px;
  margin-top: 58px;
  border-top: 1px solid rgba(140, 168, 195, 0.28);
}

.hero-principle-label {
  padding-top: 5px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-principle strong {
  display: block;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hero-principle p {
  max-width: 530px;
  margin: 10px 0 0;
  color: #b9c4cd;
  font-size: 14px;
  line-height: 1.6;
}

.try-section {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 78% 34%, rgba(53, 217, 255, 0.1), transparent 32%),
    #07101a;
}

.try-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: 90px;
  align-items: end;
  margin-bottom: 38px;
}

.try-intro h2 {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: clamp(40px, 4.8vw, 64px);
  letter-spacing: -0.046em;
  line-height: 1.02;
}

.try-intro > p {
  max-width: 470px;
  margin: 0 0 4px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.7;
}

.try-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(330px, 0.76fr) minmax(0, 1.24fr);
  min-height: 570px;
  overflow: hidden;
  border: 1px solid #2c5366;
  border-radius: 24px;
  background: #0a1520;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.4), 0 0 70px rgba(53, 217, 255, 0.055);
}

.try-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan), var(--mint), transparent);
  box-shadow: 0 0 20px rgba(53, 217, 255, 0.45);
}

.try-setup {
  min-width: 0;
  padding: 44px 40px;
  border-right: 1px solid var(--line-soft);
  background: rgba(10, 21, 32, 0.96);
}

.try-output {
  min-width: 0;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 16%, rgba(53, 217, 255, 0.06), transparent 34%),
    #07111b;
}

.try-head {
  display: grid;
  gap: 18px;
}

.card-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.try-head h3 {
  margin: 9px 0 0;
  font-size: clamp(28px, 2.7vw, 38px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.local-badge {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-self: start;
  flex: 0 0 auto;
  padding: 8px 11px;
  border: 1px solid rgba(82, 246, 192, 0.24);
  border-radius: 999px;
  color: #bbe9da;
  font-size: 12px;
  font-weight: 500;
}

.local-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 9px rgba(82, 246, 192, 0.7);
}

.try-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.movement-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #07101a;
}

.movement-switch button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  color: var(--soft);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}

.movement-switch button.active {
  color: var(--ink);
  background: var(--cyan);
}

.mini-select select,
.role-control select {
  width: 100%;
  height: 46px;
  padding: 0 36px 0 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: 0;
  color: var(--white);
  background: #0d1b28;
  font-size: 14px;
  font-weight: 500;
}

.upload-zone {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 11px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  margin-top: 12px;
  border: 1px dashed #37536d;
  border-radius: 10px;
  background: rgba(17, 31, 45, 0.66);
  transition: border-color 160ms ease, background 160ms ease;
}

.upload-zone:hover,
.upload-zone.dragging {
  border-color: var(--cyan);
  background: rgba(53, 217, 255, 0.055);
}

.upload-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.upload-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(53, 217, 255, 0.34);
  border-radius: 9px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 600;
}

.upload-copy {
  display: grid;
  min-width: 0;
}

.upload-copy strong {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.upload-copy small {
  color: var(--muted);
  font-size: 12px;
}

.upload-action {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
}

.try-promise {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 0;
  margin-top: 18px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.try-promise > span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.try-promise p {
  margin: 0;
  color: #cbd5dc;
  font-size: 13px;
  line-height: 1.65;
}

.upload-error {
  margin: 7px 0 0;
  color: #ff9a91;
  font-size: 13px;
}

.demo-stage {
  position: relative;
  height: 390px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #050c14;
}

.demo-stage > img,
.demo-stage > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo-stage > img {
  object-position: center 42%;
}

.demo-stage > img[src$="trace-squat.png"] {
  object-fit: contain;
  object-position: center;
  transform: scale(1.65);
}

.demo-stage > video {
  background: #020406;
}

.demo-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20%;
  width: 2px;
  opacity: 0;
  background: var(--cyan);
  box-shadow: 0 0 22px 5px rgba(53, 217, 255, 0.5);
}

.demo-stage.scanning .demo-scan {
  opacity: 1;
  animation: scan-stage 1.5s linear infinite;
}

@keyframes scan-stage {
  from { left: -2%; }
  to { left: 102%; }
}

.demo-pause {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(82, 246, 192, 0.4);
  border-radius: 8px;
  color: var(--mint);
  background: rgba(4, 11, 17, 0.88);
  opacity: 0;
  transform: translateY(-7px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.demo-pause span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.demo-pause b {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.demo-stage.paused .demo-pause,
.demo-stage.replaying .demo-pause {
  opacity: 1;
  transform: translateY(0);
}

.demo-stage.replaying .demo-pause b {
  font-size: 0;
}

.demo-stage.replaying .demo-pause b::after {
  content: "Explaining this moment";
  font-size: 12px;
}

.demo-status {
  position: absolute;
  right: 12px;
  bottom: 19px;
  left: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 9px 11px;
  border: 1px solid rgba(115, 153, 186, 0.25);
  border-radius: 8px;
  background: rgba(4, 10, 16, 0.86);
  backdrop-filter: blur(10px);
}

.demo-status span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.demo-status strong {
  color: #dce5eb;
  font-size: 12px;
  font-weight: 600;
}

.demo-track {
  position: absolute;
  right: 22px;
  bottom: 12px;
  left: 22px;
  height: 2px;
  background: #35485b;
}

.demo-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(53, 217, 255, 0.72);
  transition: width 250ms linear;
}

.demo-track i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
  transition: left 250ms linear;
}

.try-actions {
  align-items: stretch;
  flex-direction: column;
  margin-top: 22px;
}

.try-actions .button {
  min-height: 49px;
  padding: 11px 16px;
}

.try-actions > a:not(.button) {
  align-self: center;
  color: #aebbc5;
  font-size: 13px;
  font-weight: 500;
}

.try-actions > a:hover {
  color: var(--cyan);
}

.sample-report {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(82, 246, 192, 0.28);
  border-radius: 12px;
  background: #0d1a25;
}

.sample-report[hidden] {
  display: none;
}

.report-top {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-bottom: 1px solid var(--line-soft);
}

.report-top > div:first-child {
  display: grid;
}

.report-top span,
.report-grid span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.report-top strong {
  font-size: 14px;
}

.sample-score {
  display: flex;
  gap: 6px;
  align-items: baseline;
}

.sample-score b {
  color: var(--white);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.sample-score span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

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

.report-grid > div {
  min-width: 0;
  padding: 13px 14px;
  border-right: 1px solid var(--line-soft);
}

.report-grid > div:last-child {
  border-right: 0;
}

.report-grid p {
  margin: 6px 0 0;
  color: #c9d2da;
  font-size: 12px;
  line-height: 1.45;
}

.sample-note {
  padding: 9px 14px;
  margin: 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #08121c;
}

.value-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 9px;
  align-items: center;
  min-height: 74px;
  padding: 12px 14px;
  border-right: 1px solid var(--line-soft);
}

.value-strip > div:last-child {
  border-right: 0;
}

.value-strip span {
  grid-row: 1 / span 2;
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.value-strip strong {
  align-self: end;
  font-size: 14px;
  line-height: 1.2;
}

.value-strip small {
  align-self: start;
  color: var(--muted);
  font-size: 11px;
}

.compact-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.compact-heading h2,
.trace-copy h2,
.daily-heading h2,
.academy-copy h2,
.vision-content h2,
.contact-shell h2 {
  margin: 14px 0 0;
  font-size: clamp(39px, 4.7vw, 64px);
  font-weight: 600;
  letter-spacing: -0.048em;
  line-height: 1.02;
}

.compact-heading h2 em {
  color: var(--mint);
  font-style: normal;
}

.compact-heading > p {
  max-width: 460px;
  margin: 0 0 5px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.6;
}

.sports-section {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #060b11;
}

.sport-toolbar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  margin-bottom: 14px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.sport-search {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 285px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--surface);
}

.sport-search > span {
  margin-left: 13px;
  color: var(--cyan);
  font-size: 23px;
  line-height: 1;
  transform: rotate(-14deg);
}

.sport-search input {
  width: 100%;
  height: 44px;
  padding-right: 12px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.sport-search input::placeholder {
  color: #7c8995;
}

.filter-row {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.filter-button,
.sport-button {
  border: 1px solid var(--line);
  background: transparent;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-button {
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--cyan);
  color: var(--ink);
  background: var(--cyan);
}

.sport-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.sport-button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 112px;
  padding: 14px;
  overflow: hidden;
  border-radius: 11px;
  color: var(--white);
  background: #0c1722;
  text-align: left;
}

.sport-button::after {
  position: absolute;
  right: -18px;
  bottom: -22px;
  width: 62px;
  height: 62px;
  content: "";
  border: 1px solid rgba(53, 217, 255, 0.16);
  border-radius: 50%;
}

.sport-button:hover {
  z-index: 2;
  border-color: rgba(53, 217, 255, 0.65);
  background: #102131;
  transform: translateY(-2px);
}

.sport-button.active {
  border-color: var(--mint);
  color: var(--ink);
  background: var(--mint);
}

.sport-button.active::after {
  border-color: rgba(4, 7, 10, 0.22);
}

.sport-button .sport-index {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 600;
}

.sport-button.active .sport-index {
  color: #0d6b55;
}

.sport-button strong {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.sport-button small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 11px;
}

.sport-button.active small {
  color: rgba(4, 17, 13, 0.7);
}

.sport-list-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0 22px;
}

.sport-list-footer > span {
  color: var(--muted);
  font-size: 12px;
}

.sport-list-footer button,
#copy-sport-link {
  border: 0;
  color: var(--cyan);
  background: transparent;
  font-size: 13px;
  font-weight: 600;
}

.sport-list-footer button:hover,
#copy-sport-link:hover {
  color: var(--mint);
}

.no-results {
  padding: 20px 0;
  margin: 0;
  color: var(--soft);
}

.sport-profile {
  overflow: hidden;
  border: 1px solid #2c4760;
  border-radius: 16px;
  background: #0b1621;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.24);
}

.sport-profile-lead {
  display: grid;
  grid-template-columns: 76px 1fr minmax(240px, 0.55fr);
  gap: 24px;
  align-items: center;
  padding: 28px 34px;
  border-bottom: 1px solid var(--line-soft);
}

.profile-number {
  color: rgba(53, 217, 255, 0.3);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.sport-profile h3 {
  margin: 3px 0 0;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.role-control {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.role-control[hidden] {
  display: none;
}

.role-control label {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.sport-profile-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  min-height: 300px;
}

.sport-promise {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-right: 1px solid var(--line-soft);
  background: rgba(53, 217, 255, 0.025);
}

.sport-promise > span,
.moment-list span,
.sport-example > span,
.sport-record > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.sport-promise p {
  margin: 22px 0 28px;
  color: #dde5eb;
  font-size: 16px;
  line-height: 1.7;
}

#copy-sport-link {
  align-self: flex-start;
  padding: 0;
}

.moment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.moment-list > div {
  padding: 34px 24px;
  border-right: 1px solid var(--line-soft);
}

.moment-list > div:last-child {
  border-right: 0;
}

.moment-list > div:nth-child(2) span {
  color: var(--mint);
}

.moment-list > div:nth-child(3) span {
  color: var(--amber);
}

.moment-list p {
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.68;
}

.sport-example {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px 34px;
  border-top: 1px solid var(--line-soft);
  background: #0e1b27;
}

.sport-example p {
  margin: 0;
  color: #c5d0d8;
  font-size: 14px;
  line-height: 1.68;
}

.sport-record {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 22px 34px;
  border-top: 1px solid var(--line-soft);
  background: rgba(82, 246, 192, 0.035);
}

.sport-record > span {
  color: var(--mint);
}

.sport-record p {
  margin: 0;
  color: #cbd6dd;
  font-size: 14px;
  line-height: 1.58;
}

.sport-record a {
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.sport-record a:hover {
  color: var(--white);
}

.trace-section {
  background: #08121c;
}

.trace-shell {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 70px;
  align-items: center;
}

.trace-copy h2 {
  max-width: 720px;
  margin-top: 15px;
}

.trace-copy > p {
  max-width: 720px;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.65;
}

.trace-sequence {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 28px;
}

.trace-sequence button {
  display: grid;
  gap: 7px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--soft);
  background: #0c1823;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
}

.trace-sequence button span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.trace-sequence button:hover,
.trace-sequence button.active {
  border-color: var(--mint);
  color: var(--white);
  background: rgba(82, 246, 192, 0.07);
}

.trace-explanation {
  min-height: 64px;
  padding: 15px 17px;
  margin-top: 10px;
  border-left: 2px solid var(--mint);
  color: #d3dde4;
  background: rgba(82, 246, 192, 0.04);
  font-size: 14px;
  line-height: 1.55;
}

.trace-visual {
  position: relative;
  height: 600px;
  overflow: hidden;
  border: 1px solid #2b465e;
  border-radius: 18px;
  background: #07101a;
  box-shadow: var(--shadow);
}

.trace-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform 700ms ease, filter 500ms ease;
}

.trace-visual.step-1 > img {
  transform: scale(1.02);
}

.trace-visual.step-2 > img {
  filter: saturate(1.13) brightness(1.04);
}

.trace-visual.step-3 > img {
  transform: scale(1.035);
}

.trace-console {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(53, 217, 255, 0.32);
  border-radius: 10px;
  background: rgba(4, 11, 18, 0.9);
  backdrop-filter: blur(10px);
}

.trace-console > div:first-child {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.trace-console span,
.trace-console b,
.trace-console small {
  font-size: 11px;
}

.trace-console > div:first-child span {
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.trace-console b {
  color: var(--mint);
}

.console-line {
  position: relative;
  height: 3px;
  margin: 10px 0;
  background: #35485b;
}

.console-line span {
  display: block;
  width: 32%;
  height: 100%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(53, 217, 255, 0.7);
  transition: width 500ms ease;
}

.console-line i {
  position: absolute;
  top: 50%;
  left: 58%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}

.trace-console small {
  color: var(--muted);
}

.product-section {
  border-top: 1px solid var(--line-soft);
  background: #05090e;
}

.screen-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: start;
  padding: 16px 0 8px;
}

.product-screen {
  display: grid;
  grid-template-rows: auto auto auto;
  min-width: 0;
  padding: 0;
}

.product-screen.featured {
  color: inherit;
}

.screen-meta {
  display: flex;
  gap: 11px;
  align-items: center;
  width: min(100%, 306px);
  padding-bottom: 16px;
  margin-inline: auto;
}

.screen-meta span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.screen-meta strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.screen-device {
  position: relative;
  width: min(100%, 306px);
  aspect-ratio: 9 / 16.6;
  padding: 8px;
  margin-inline: auto;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(143, 181, 214, 0.26);
  border-radius: 31px;
  background: #09131d;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

.app-screen {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(116, 154, 186, 0.16);
  border-radius: 23px;
  background:
    radial-gradient(circle at 90% 4%, rgba(53, 217, 255, 0.08), transparent 26%),
    #07111a;
  font-family: "Manrope", sans-serif;
}

.app-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(116, 154, 186, 0.12);
}

.app-wordmark {
  display: flex;
  gap: 7px;
  align-items: center;
}

.app-wordmark img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.app-wordmark strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.app-profile {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(53, 217, 255, 0.28);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(53, 217, 255, 0.06);
  font-size: 9px;
  font-weight: 600;
}

.app-screen-body {
  min-height: 0;
  padding: 20px 17px 14px;
  overflow: hidden;
}

.app-overline {
  display: block;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.app-screen-body > h3 {
  margin: 5px 0 2px;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.app-subtitle {
  margin: 0;
  color: #8997a4;
  font-size: 10px;
  line-height: 1.45;
}

.app-hero-card {
  padding: 15px;
  margin-top: 17px;
  border: 1px solid rgba(53, 217, 255, 0.22);
  border-radius: 13px;
  background:
    radial-gradient(circle at 88% 10%, rgba(82, 246, 192, 0.12), transparent 31%),
    #0c1924;
}

.app-hero-card > span,
.vitals-summary > div:last-child > span,
.trace-app-card > span {
  color: var(--mint);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.app-result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 9px;
}

.app-result-row > div {
  display: grid;
  gap: 2px;
}

.app-result-row strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.app-result-row small,
.app-timeline small,
.app-insight small {
  color: #82919d;
  font-size: 8px;
  font-weight: 400;
  line-height: 1.45;
}

.app-result-row > b {
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.06em;
}

.app-hero-card > p {
  padding-top: 9px;
  margin: 8px 0 0;
  border-top: 1px solid rgba(116, 154, 186, 0.12);
  color: #aebbc5;
  font-size: 8px;
}

.app-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.app-section-heading strong {
  font-size: 10px;
  font-weight: 600;
}

.app-section-heading span {
  color: #748391;
  font-size: 8px;
}

.app-timeline {
  margin-top: 8px;
}

.app-timeline > div {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: start;
  padding: 9px 0;
  border-top: 1px solid rgba(116, 154, 186, 0.1);
}

.app-timeline i {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(53, 217, 255, 0.36);
}

.app-timeline p {
  display: grid;
  gap: 2px;
  margin: 0;
}

.app-timeline strong {
  font-size: 9px;
  font-weight: 600;
}

.app-timeline > div > span {
  color: #6e7c88;
  font-size: 7px;
  white-space: nowrap;
}

.app-tabbar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 52px;
  border-top: 1px solid rgba(116, 154, 186, 0.14);
  background: #08131d;
}

.app-tabbar span {
  position: relative;
  display: grid;
  place-items: center;
  color: #6f7d89;
  font-size: 8px;
  font-weight: 500;
}

.app-tabbar span.active {
  color: var(--cyan);
}

.app-tabbar span.active::before {
  position: absolute;
  top: 0;
  width: 26px;
  height: 2px;
  content: "";
  border-radius: 0 0 2px 2px;
  background: var(--cyan);
  box-shadow: 0 0 9px rgba(53, 217, 255, 0.65);
}

.vitals-summary {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px;
  margin-top: 16px;
  border: 1px solid rgba(82, 246, 192, 0.18);
  border-radius: 13px;
  background: #0c1924;
}

.score-ring {
  display: grid;
  width: 72px;
  height: 72px;
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #0c1924 61%, transparent 63%),
    conic-gradient(var(--mint) 0 82%, #233646 82% 100%);
  text-align: center;
}

.score-ring strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.score-ring span {
  margin-top: 2px;
  color: #7f8e9b;
  font-size: 7px;
}

.vitals-summary > div:last-child {
  display: grid;
  gap: 4px;
}

.vitals-summary > div:last-child > strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.vitals-summary p {
  margin: 0;
  color: #84929e;
  font-size: 8px;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 3px;
  margin-top: 13px;
  border: 1px solid rgba(116, 154, 186, 0.15);
  border-radius: 8px;
  background: #08121b;
}

.app-tabs span {
  padding: 7px 2px;
  border-radius: 6px;
  color: #74828e;
  font-size: 7px;
  text-align: center;
}

.app-tabs span.active {
  color: #06110e;
  background: var(--mint);
  font-weight: 600;
}

.trend-card {
  padding: 0 12px 10px;
  margin-top: 12px;
  border: 1px solid rgba(116, 154, 186, 0.14);
  border-radius: 12px;
  background: #0a1620;
}

.trend-card .app-section-heading {
  margin-top: 12px;
}

.trend-chart {
  width: 100%;
  margin-top: 8px;
  overflow: visible;
}

.trend-area {
  fill: url(#trend-fill);
}

.trend-line {
  fill: none;
  stroke: var(--cyan);
  stroke-linecap: round;
  stroke-width: 2.5;
}

.trend-chart circle {
  fill: var(--mint);
  stroke: #08121b;
  stroke-width: 2;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: -2px;
  color: #64727e;
  font-size: 7px;
}

.app-insight {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 9px;
  padding: 11px 12px;
  margin-top: 11px;
  border-left: 2px solid var(--mint);
  border-radius: 0 9px 9px 0;
  background: rgba(82, 246, 192, 0.05);
}

.app-insight i {
  width: 7px;
  height: 7px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(82, 246, 192, 0.6);
}

.app-insight p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.app-insight strong {
  font-size: 9px;
  font-weight: 600;
}

.trace-device {
  padding: 8px;
  background: #08121b;
}

.trace-device img {
  width: 100%;
  height: 100%;
  border-radius: 23px;
  object-fit: cover;
  object-position: center 38%;
}

.trace-device::after {
  position: absolute;
  inset: 8px;
  content: "";
  border-radius: 23px;
  background: linear-gradient(0deg, rgba(4, 9, 14, 0.92) 0%, transparent 58%);
  pointer-events: none;
}

.trace-app-top,
.trace-focus,
.trace-app-card {
  position: absolute;
  z-index: 2;
}

.trace-app-top {
  top: 25px;
  right: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.trace-app-top span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.trace-app-top strong {
  font-size: 8px;
  font-weight: 500;
}

.trace-focus {
  top: 44%;
  left: 24px;
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 7px 9px;
  border: 1px solid rgba(82, 246, 192, 0.42);
  border-radius: 7px;
  color: var(--mint);
  background: rgba(4, 11, 17, 0.85);
}

.trace-focus span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
}

.trace-focus b {
  font-size: 8px;
  font-weight: 600;
}

.trace-app-card {
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px;
  border: 1px solid rgba(53, 217, 255, 0.28);
  border-radius: 13px;
  background: rgba(5, 13, 20, 0.94);
  backdrop-filter: blur(12px);
}

.trace-app-card > strong {
  display: block;
  margin-top: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.trace-app-card > p {
  margin: 7px 0 13px;
  color: #aeb9c2;
  font-size: 9px;
  line-height: 1.5;
}

.trace-app-card > div {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid rgba(116, 154, 186, 0.14);
  color: var(--cyan);
  font-size: 7px;
  font-weight: 600;
}

.product-screen > p {
  width: min(100%, 306px);
  min-height: 48px;
  margin: 20px auto 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.6;
}

.scope-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  padding: 15px 17px;
  margin-top: 30px;
  border: 1px solid rgba(255, 195, 61, 0.22);
  border-radius: 10px;
  background: rgba(255, 195, 61, 0.035);
}

.scope-line strong {
  margin-right: 7px;
  color: var(--amber);
  font-size: 13px;
}

.scope-line span {
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  color: #c6d0d8;
  font-size: 12px;
}

.record-system {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #2c5260;
  border-radius: 18px;
  background: #091620;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  scroll-margin-top: calc(var(--header) + 18px);
}

.record-intro {
  padding: 34px;
  border-right: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 18% 8%, rgba(53, 217, 255, 0.11), transparent 34%),
    #0b1823;
}

.record-intro h3 {
  margin: 15px 0 17px;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.record-intro > p {
  margin-bottom: 22px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.62;
}

.record-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.record-signals span {
  padding: 6px 9px;
  border: 1px solid rgba(53, 217, 255, 0.22);
  border-radius: 999px;
  color: #c7d4dc;
  background: rgba(53, 217, 255, 0.04);
  font-size: 12px;
}

.record-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.record-flow li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  min-height: 156px;
  padding: 25px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.record-flow li:nth-child(2n) {
  border-right: 0;
}

.record-flow li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.record-flow li > span {
  color: var(--mint);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
}

.record-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 15px;
}

.record-flow p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.56;
}

.record-boundary {
  grid-column: 1 / -1;
  padding: 12px 18px;
  margin: 0;
  border-top: 1px solid rgba(255, 195, 61, 0.2);
  color: #bdc8d0;
  background: rgba(255, 195, 61, 0.035);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.daily-section {
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 10% 20%, rgba(82, 246, 192, 0.07), transparent 27%),
    radial-gradient(circle at 88% 76%, rgba(53, 217, 255, 0.07), transparent 29%),
    #071019;
}

.daily-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: 84px;
  align-items: end;
  margin-bottom: 46px;
}

.daily-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.daily-heading > p {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.7;
}

.daily-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.daily-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 27px 25px 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(11, 22, 33, 0.84);
}

.daily-grid article::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--mint));
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.daily-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.daily-card-top {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

.daily-card-top span {
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.daily-card-top small {
  color: #8593a0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: right;
}

.daily-grid h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.daily-grid article > p {
  margin: 0 0 24px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.65;
}

.daily-grid article > strong {
  margin-top: auto;
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.daily-loop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 23px 26px;
  margin-top: 12px;
  border: 1px solid rgba(53, 217, 255, 0.2);
  border-radius: 12px;
  background: rgba(5, 12, 19, 0.76);
}

.daily-loop-steps {
  display: flex;
  gap: 18px;
  align-items: center;
}

.daily-loop-steps span {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.035em;
}

.daily-loop-steps i {
  color: #4e6172;
  font-style: normal;
}

.daily-loop > p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
}

.daily-loop > p strong {
  color: var(--white);
  font-weight: 600;
}

.story-statement {
  max-width: 1000px;
  padding: 56px 0 12px;
  margin: 0 auto;
  border: 0;
  text-align: center;
}

.story-statement p {
  margin: 0;
  color: #d9e1e7;
  font-size: clamp(23px, 2.65vw, 36px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.35;
}

.story-statement strong {
  color: var(--mint);
  font-weight: 500;
}

.academy-section {
  background: #08121c;
}

.academy-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #0b1621;
  box-shadow: var(--shadow);
}

.academy-image {
  min-height: 530px;
  border-right: 1px solid var(--line-soft);
  background-image:
    linear-gradient(90deg, transparent 65%, #0b1621 100%),
    url("assets/coach-athlete-phone.png");
  background-position: right center;
  background-size: cover;
}

.academy-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.academy-copy h2 {
  margin-top: 15px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.academy-copy > p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.62;
}

.academy-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 28px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.academy-benefits > div {
  display: grid;
  gap: 3px;
  padding: 14px 12px 14px 0;
  border-right: 1px solid var(--line-soft);
}

.academy-benefits > div + div {
  padding-left: 12px;
}

.academy-benefits > div:last-child {
  border-right: 0;
}

.academy-benefits strong {
  color: var(--mint);
  font-size: 13px;
}

.academy-benefits span {
  color: var(--soft);
  font-size: 12px;
}

.academy-copy .button {
  align-self: flex-start;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.audience-grid article {
  min-height: 180px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #0c1823;
}

.audience-grid article > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.audience-grid h3 {
  margin: 34px 0 8px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.audience-grid p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.5;
}

.vision-section {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #07111c;
}

.vision-media,
.vision-shade {
  position: absolute;
  inset: 0;
}

.vision-media {
  background-image: url("assets/global-sport-future.png");
  background-position: center;
  background-size: cover;
}

.vision-shade {
  background:
    linear-gradient(90deg, rgba(4, 7, 10, 0.97) 0%, rgba(4, 7, 10, 0.84) 52%, rgba(4, 7, 10, 0.52) 100%),
    linear-gradient(0deg, rgba(4, 7, 10, 0.94) 0%, transparent 68%);
}

.vision-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
  gap: 88px;
  align-items: center;
  min-height: 680px;
  padding: 78px 0;
}

.vision-content h2 {
  max-width: 680px;
  margin-bottom: 28px;
}

.vision-belief {
  max-width: 630px;
  padding: 0 0 0 22px;
  margin: 0;
  border-left: 2px solid var(--mint);
  color: #d6dfe6;
  font-size: 17px;
  line-height: 1.68;
}

.vision-roadmap {
  border: 1px solid rgba(143, 181, 214, 0.25);
  border-radius: 15px;
  background: rgba(5, 12, 19, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.vision-roadmap article {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line-soft);
}

.vision-roadmap article:last-child {
  border-bottom: 0;
}

.vision-roadmap article > span {
  padding-top: 3px;
  color: var(--cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.vision-roadmap strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.vision-roadmap p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.58;
}

.contact-section {
  padding: 76px 0;
  background: #05090e;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 62px;
  align-items: start;
  padding: 54px;
  border: 1px solid rgba(53, 217, 255, 0.3);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(53, 217, 255, 0.045), transparent 44%),
    #0b1621;
  box-shadow: var(--shadow);
}

.contact-shell h2 {
  max-width: 590px;
  margin: 12px 0 20px;
  font-size: clamp(38px, 4.2vw, 58px);
}

.contact-intro > p {
  max-width: 570px;
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.68;
}

.contact-routes {
  display: grid;
  gap: 10px;
}

.contact-route {
  position: relative;
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 128px;
  padding: 21px 56px 21px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
  background: #0f1d29;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

a.contact-route:hover,
button.contact-route:hover {
  border-color: rgba(53, 217, 255, 0.55);
  background: #122432;
  transform: translateY(-2px);
}

.contact-route.featured {
  border-color: rgba(82, 246, 192, 0.34);
  background: linear-gradient(105deg, rgba(82, 246, 192, 0.1), rgba(15, 29, 41, 0.96));
}

.contact-route > span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.contact-route > strong {
  align-self: end;
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.contact-route > small {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.48;
}

.contact-route > i {
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--mint);
  font-family: "Space Grotesk", sans-serif;
  font-size: 21px;
  font-style: normal;
  transform: translateY(-50%);
}

.founder-route {
  padding-right: 22px;
  border-color: rgba(53, 217, 255, 0.32);
  background: linear-gradient(115deg, rgba(53, 217, 255, 0.07), rgba(15, 29, 41, 0.96));
}

.founder-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.founder-links > a {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(4, 11, 18, 0.58);
  transition: border-color 180ms ease, background 180ms ease;
}

.founder-links > a:hover {
  border-color: rgba(82, 246, 192, 0.5);
  background: rgba(82, 246, 192, 0.055);
}

.founder-links b {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.founder-links em {
  overflow-wrap: anywhere;
  color: #d7e0e7;
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 11px;
  margin-top: 5px;
  border-top: 1px solid var(--line-soft);
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
}

.whatsapp-link:hover {
  color: #8fffd9;
}

.contact-principle {
  grid-column: 1 / -1;
  padding-top: 32px;
  margin: 2px 0 0;
  border-top: 1px solid var(--line-soft);
  color: var(--mint);
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
  text-align: center;
}

.site-footer {
  padding: 40px 0 23px;
  border-top: 1px solid var(--line-soft);
  background: #020508;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 38px;
  align-items: start;
}

.footer-grid > p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  color: #c0c9d1;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding-top: 22px;
  margin-top: 30px;
  border-top: 1px solid rgba(115, 151, 183, 0.14);
  color: #697582;
  font-size: 12px;
}

.guide-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 180;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  min-height: 48px;
  padding: 9px 15px 9px 9px;
  border: 1px solid rgba(82, 246, 192, 0.42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(8, 19, 28, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42);
  font-size: 13px;
  font-weight: 600;
  transition: border-color 180ms ease, transform 180ms ease;
}

.guide-launcher:hover {
  border-color: var(--mint);
  transform: translateY(-2px);
}

.guide-launcher > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: #03100d;
  background: var(--mint);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.athyrel-guide {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 190;
  width: min(390px, calc(100vw - 40px));
  max-height: min(660px, calc(100vh - 110px));
  padding: 20px;
  overflow-y: auto;
  border: 1px solid rgba(53, 217, 255, 0.35);
  border-radius: 16px;
  background:
    radial-gradient(circle at 95% 0%, rgba(53, 217, 255, 0.09), transparent 32%),
    #09141e;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.58);
}

.athyrel-guide[hidden] {
  display: none;
}

.guide-header {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.guide-header > div {
  display: grid;
  gap: 5px;
}

.guide-header span,
.guide-response span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.guide-header strong {
  font-size: 17px;
  font-weight: 600;
}

.guide-header button {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: transparent;
  font-size: 21px;
  line-height: 1;
}

.guide-intro {
  margin: 16px 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.55;
}

.guide-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.guide-questions button {
  min-height: 40px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #d7dfe5;
  background: #0e1c28;
  font-size: 12px;
  text-align: left;
}

.guide-questions button:hover,
.guide-questions button.active {
  border-color: rgba(53, 217, 255, 0.54);
  color: var(--cyan);
}

.guide-response {
  padding: 17px;
  margin-top: 15px;
  border-left: 2px solid var(--mint);
  background: rgba(82, 246, 192, 0.045);
}

.guide-response p {
  margin: 7px 0 0;
  color: #c6d0d8;
  font-size: 13px;
  line-height: 1.62;
}

.guide-demo-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding-top: 15px;
  margin-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--mint);
  font-size: 13px;
  font-weight: 600;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  padding: 10px 14px;
  border: 1px solid rgba(82, 246, 192, 0.4);
  border-radius: 9px;
  color: var(--mint);
  background: #0b171f;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(17px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 80ms;
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 14px;
  }

  .hero-content {
    padding: 58px 46px;
  }

  .try-card {
    grid-template-columns: minmax(310px, 0.8fr) minmax(0, 1.2fr);
    padding: 0;
  }

  .try-setup {
    padding: 36px 30px;
  }

  .try-intro {
    gap: 54px;
  }

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

  .report-grid > div {
    padding: 10px 13px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .report-grid > div:last-child {
    border-bottom: 0;
  }

  .sport-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .filter-row {
    max-width: 650px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .sport-profile-body {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .screen-row {
    display: flex;
    gap: 30px;
    padding-bottom: 18px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .product-screen {
    flex: 0 0 316px;
    scroll-snap-align: start;
  }

  .trace-shell {
    gap: 45px;
  }

  .trace-sequence {
    grid-template-columns: repeat(2, 1fr);
  }

  .academy-feature {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .academy-copy {
    padding: 38px;
  }

  .daily-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .daily-grid article {
    min-height: 240px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .nav-cta {
    margin-left: auto;
    margin-right: 10px;
  }

  .menu-toggle {
    display: grid;
    gap: 6px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(8, 17, 28, 0.72);
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--white);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: var(--header);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 9px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(4, 7, 10, 0.98);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 12px 5px;
    border-bottom: 1px solid var(--line-soft);
    color: #c6cfd7;
    font-size: 14px;
    font-weight: 600;
  }

  .mobile-menu a:last-child {
    color: var(--mint);
  }

  .hero {
    min-height: auto;
  }

  .hero-story,
  .hero-content {
    min-height: 660px;
  }

  .try-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .try-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .try-intro > p {
    max-width: 650px;
  }

  .try-setup {
    padding: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .try-output {
    padding: 24px;
  }

  .demo-stage {
    height: 430px;
  }

  .report-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .report-grid > div {
    padding: 13px 14px;
    border-right: 1px solid var(--line-soft);
    border-bottom: 0;
  }

  .value-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .value-strip > div:nth-child(3) {
    border-right: 0;
  }

  .value-strip > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line-soft);
  }

  .compact-heading,
  .daily-heading,
  .trace-shell,
  .vision-content {
    grid-template-columns: 1fr;
  }

  .compact-heading,
  .daily-heading {
    gap: 10px;
  }

  .daily-heading > p {
    max-width: 650px;
    margin-top: 10px;
  }

  .daily-loop {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sport-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-row {
    max-width: 100%;
  }

  .sport-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sport-profile-lead {
    grid-template-columns: 68px 1fr;
  }

  .role-control {
    grid-column: 1 / -1;
  }

  .sport-profile-body {
    grid-template-columns: 1fr;
  }

  .sport-promise {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .sport-record {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .sport-record a {
    grid-column: 2;
  }

  .trace-shell {
    gap: 34px;
  }

  .trace-visual {
    height: 570px;
  }

  .product-screen {
    grid-template-rows: auto auto auto;
  }

  .screen-device {
    height: auto;
  }

  .record-system {
    grid-template-columns: 1fr;
  }

  .record-intro {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

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

  .academy-image {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    background-image:
      linear-gradient(0deg, #0b1621 0%, transparent 38%),
      url("assets/coach-athlete-phone.png");
    background-position: center;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-content {
    gap: 42px;
    align-items: start;
    min-height: auto;
  }

  .vision-belief {
    max-width: 620px;
  }

  .vision-roadmap {
    width: min(100%, 680px);
  }
}

@media (max-width: 640px) {
  :root {
    --header: 68px;
  }

  .shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 66px 0;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(var(--header) + 16px) 0 28px;
  }

  .hero-story,
  .hero-content {
    min-height: 720px;
  }

  .hero-photo {
    background-position: 64% center;
  }

  .hero-photo-shade {
    background:
      linear-gradient(0deg, rgba(4, 7, 10, 0.99) 0%, rgba(4, 7, 10, 0.72) 62%, rgba(4, 7, 10, 0.26) 100%),
      linear-gradient(90deg, rgba(4, 7, 10, 0.72), transparent);
  }

  .hero-content {
    justify-content: flex-end;
    padding: 30px 24px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 12.5vw, 56px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-principle {
    grid-template-columns: 1fr;
    gap: 9px;
    padding-top: 19px;
    margin-top: 34px;
  }

  .hero-principle-label {
    padding-top: 0;
  }

  .hero-principle strong {
    font-size: 21px;
  }

  .try-card {
    padding: 0;
    border-radius: 18px;
  }

  .try-intro {
    margin-bottom: 28px;
  }

  .try-intro h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .try-setup {
    padding: 28px 20px;
  }

  .try-output {
    padding: 12px;
  }

  .try-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .try-controls {
    grid-template-columns: 1fr;
  }

  .upload-zone {
    grid-template-columns: 34px 1fr;
  }

  .upload-action {
    display: none;
  }

  .demo-stage {
    height: 300px;
  }

  .try-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .report-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .report-grid > div:last-child {
    border-bottom: 0;
  }

  .value-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-strip > div,
  .value-strip > div:nth-child(3) {
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .value-strip > div:nth-child(2n) {
    border-right: 0;
  }

  .value-strip > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .compact-heading h2,
  .trace-copy h2,
  .daily-heading h2,
  .academy-copy h2,
  .vision-content h2,
  .contact-shell h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .compact-heading > p,
  .trace-copy > p {
    font-size: 16px;
  }

  .sport-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sport-button {
    min-height: 104px;
  }

  .sport-profile-lead {
    grid-template-columns: 54px 1fr;
    padding: 20px;
  }

  .profile-number {
    font-size: 38px;
  }

  .role-control {
    grid-template-columns: 1fr;
  }

  .sport-promise {
    padding: 22px 20px;
  }

  .moment-list {
    grid-template-columns: 1fr;
  }

  .moment-list > div {
    padding: 18px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .moment-list > div:last-child {
    border-bottom: 0;
  }

  .moment-list p {
    margin-top: 10px;
  }

  .sport-example {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }

  .sport-record {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 20px;
  }

  .sport-record a {
    grid-column: auto;
    white-space: normal;
  }

  .trace-sequence {
    grid-template-columns: 1fr 1fr;
  }

  .trace-visual {
    height: 520px;
  }

  .screen-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 8px;
    overflow: visible;
  }

  .product-screen {
    grid-template-rows: auto auto auto;
    width: 100%;
  }

  .screen-device {
    width: min(100%, 306px);
    height: auto;
  }

  .scope-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .record-system {
    grid-template-columns: 1fr;
  }

  .record-intro {
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .record-flow {
    grid-template-columns: 1fr;
  }

  .record-flow li,
  .record-flow li:nth-child(2n),
  .record-flow li:nth-last-child(-n + 2) {
    min-height: 0;
    padding: 20px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .record-flow li:last-child {
    border-bottom: 0;
  }

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

  .daily-grid article {
    min-height: 230px;
    padding: 24px 22px;
  }

  .daily-loop {
    padding: 21px 20px;
  }

  .daily-loop-steps {
    gap: 9px;
    justify-content: space-between;
  }

  .daily-loop-steps span {
    font-size: 11px;
  }

  .daily-loop-steps i {
    font-size: 11px;
  }

  .story-statement {
    padding-top: 44px;
    text-align: left;
  }

  .academy-image {
    min-height: 300px;
  }

  .academy-copy {
    padding: 30px 22px;
  }

  .academy-benefits {
    grid-template-columns: 1fr;
  }

  .academy-benefits > div,
  .academy-benefits > div + div {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .academy-benefits > div:last-child {
    border-bottom: 0;
  }

  .academy-copy .button {
    align-self: stretch;
  }

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

  .audience-grid article {
    min-height: 0;
  }

  .audience-grid h3 {
    margin-top: 20px;
  }

  .vision-section,
  .vision-content {
    min-height: 0;
  }

  .vision-media {
    background-position: 63% center;
  }

  .vision-shade {
    background: rgba(4, 7, 10, 0.72);
  }

  .vision-content {
    align-content: initial;
    padding: 72px 0;
  }

  .vision-belief {
    font-size: 16px;
  }

  .vision-roadmap article {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
  }

  .contact-shell {
    padding: 30px 22px;
  }

  .contact-route {
    min-height: 120px;
    padding: 19px 48px 19px 18px;
  }

  .founder-route {
    padding-right: 18px;
  }

  .founder-links {
    grid-template-columns: 1fr;
  }

  .contact-principle {
    padding-top: 26px;
    text-align: left;
  }

  .guide-launcher {
    right: 12px;
    bottom: 12px;
  }

  .athyrel-guide {
    right: 12px;
    bottom: 72px;
    width: calc(100vw - 24px);
    max-height: calc(100vh - 92px);
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
