:root {
  --blue: #1e40b7;
  --blue-bright: #2b55d4;
  --green: #1e683d;
  --navy: #0f1e33;
  --navy-deep: #071525;
  --warm: #f8f6f2;
  --gold: #f5b823;
  --charcoal: #172033;
  --muted: #667085;
  --line: #dfe4eb;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(15, 30, 51, 0.14);
  --content-width: 1320px;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm);
  color: var(--charcoal);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-feature-settings: "liga" 0, "clig" 0;
  font-size: 16px;
  font-variant-ligatures: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 1.02;
}

h1 {
  font-size: clamp(3.6rem, 6.6vw, 7.1rem);
}

h2 {
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
}

h3 {
  font-size: 1.25rem;
}

[id] {
  scroll-margin-top: 110px;
}

.container {
  width: min(100%, var(--content-width));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(82px, 8vw, 118px) max(6vw, 24px);
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.gold {
  color: var(--gold);
}

.eyebrow.green {
  color: var(--green);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--navy-deep);
  color: var(--white);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(92%, var(--content-width));
  height: 70px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(248, 246, 242, 0.9);
  box-shadow: 0 12px 40px rgba(15, 30, 51, 0.09);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: top 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, opacity 0.7s var(--ease-premium), transform 0.7s var(--ease-premium);
  will-change: transform;
}

.js body:not(.page-ready) .site-header {
  opacity: 0;
  transform: translate(-50%, -16px);
}

.site-header.is-scrolled {
  top: 10px;
  border-color: rgba(255, 255, 255, 0.94);
  background: rgba(248, 246, 242, 0.96);
  box-shadow: 0 16px 46px rgba(15, 30, 51, 0.13);
}

.scroll-progress {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  box-shadow: 0 0 16px rgba(30, 64, 183, 0.28);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.1s linear;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-utilities {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.language-menu {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  min-height: 42px;
  padding: 0 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(30, 64, 183, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.language-trigger:hover,
.language-trigger[aria-expanded="true"] {
  border-color: rgba(30, 64, 183, 0.2);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(15, 30, 51, 0.09);
  transform: translateY(-1px);
}

.language-trigger svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.language-options {
  position: absolute;
  z-index: 6;
  top: calc(100% + 12px);
  right: 0;
  width: 190px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 15px;
  background: rgba(248, 246, 242, 0.98);
  box-shadow: 0 20px 50px rgba(15, 30, 51, 0.17);
  backdrop-filter: blur(18px);
  transform-origin: top right;
  animation: language-menu-in 0.2s var(--ease-soft) both;
}

.language-options[hidden] {
  display: none;
}

.language-options button {
  display: flex;
  width: 100%;
  min-height: 44px;
  padding: 0 13px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  transition: color 0.18s ease, background-color 0.18s ease;
}

.language-options button:hover,
.language-options button:focus-visible {
  background: var(--white);
  color: var(--blue);
}

.language-options button.is-active {
  background: rgba(30, 64, 183, 0.07);
  color: var(--blue);
}

.language-check {
  opacity: 0;
  color: var(--blue);
  font-size: 0.9rem;
  transition: opacity 0.18s ease;
}

.language-options button.is-active .language-check {
  opacity: 1;
}

@keyframes language-menu-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.site-nav a:not(.nav-cta):hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(15, 30, 51, 0.08);
  transform: translateY(-2px);
}

.site-nav a:not(.nav-cta).is-active {
  border-color: rgba(30, 64, 183, 0.08);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(15, 30, 51, 0.08);
}

.site-nav .nav-cta {
  margin-left: 4px;
  padding: 12px 18px;
  background: var(--blue);
  box-shadow: 0 10px 24px rgba(30, 64, 183, 0.2);
  color: var(--white);
}

.site-nav .nav-cta:hover {
  background: var(--blue-bright);
  box-shadow: 0 14px 30px rgba(30, 64, 183, 0.28);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 0.2s ease;
}

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

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

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 86px;
}

.hero::before {
  position: absolute;
  top: 5%;
  left: -16%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 64, 183, 0.09), rgba(30, 64, 183, 0) 68%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 15%;
  right: -45px;
  width: 320px;
  height: 320px;
  background-image: radial-gradient(rgba(30, 64, 183, 0.16) 1px, transparent 1px);
  background-size: 22px 22px;
  content: "";
  opacity: 0.42;
  pointer-events: none;
  transform: rotate(8deg);
  animation: hero-grid-drift 18s ease-in-out infinite alternate;
  will-change: opacity, transform;
}

@keyframes hero-grid-drift {
  to {
    opacity: 0.62;
    transform: translate3d(-14px, 18px, 0) rotate(11deg);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  gap: clamp(48px, 6vw, 92px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-top: 16px;
  color: var(--navy);
}

.hero-copy > .eyebrow {
  display: inline-block;
  font-size: clamp(0.66rem, 0.78vw, 0.73rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-copy > .eyebrow::before {
  content: none;
}

.hero-copy h1 span,
.problem h2 span {
  color: var(--blue);
}

.hero-copy > p:not(.hero-status) {
  max-width: 680px;
  margin-top: 26px;
  color: #4d586b;
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 700;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  position: relative;
  overflow: hidden;
  min-width: 210px;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(30, 64, 183, 0.26);
  color: var(--white);
}

.button.primary::before {
  position: absolute;
  top: -80%;
  left: -65%;
  width: 42%;
  height: 260%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  content: "";
  transform: rotate(18deg);
  transition: left 0.65s ease;
}

.button.primary:hover::before {
  left: 125%;
}

.button.primary > * {
  position: relative;
  z-index: 1;
}

.button.primary span {
  font-size: 1.25rem;
  transition: transform 0.2s ease;
}

.button.primary:hover {
  background: var(--blue-bright);
  box-shadow: 0 18px 38px rgba(30, 64, 183, 0.32);
  transform: translateY(-2px);
}

.button.primary:hover span {
  transform: translateX(3px);
}

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

.button.secondary:hover {
  border-color: var(--blue);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 12px 28px rgba(15, 30, 51, 0.1);
  transform: translateY(-2px);
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(245, 184, 35, 0.16);
}

.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: min(68vh, 650px);
  min-height: 520px;
}

.hero-mosaic::before {
  position: absolute;
  right: -22px;
  bottom: -22px;
  width: 46%;
  height: 42%;
  border: 1px solid rgba(245, 184, 35, 0.42);
  border-radius: 30px;
  content: "";
  pointer-events: none;
}

.photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: opacity 0.65s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.photo::after,
.problem-figure::after,
.future-figure::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 28%, transparent 68%, rgba(7, 21, 37, 0.13));
  content: "";
  pointer-events: none;
}

.photo.tall {
  grid-row: 1 / 3;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.001);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 0.9s var(--ease-soft);
}

.js .hero-copy.reveal,
.js .hero-mosaic.reveal {
  opacity: 1;
  filter: none;
  scale: 1;
  translate: none;
}

.js .hero-copy > * {
  transition: opacity 0.85s var(--ease-premium), translate 0.85s var(--ease-premium);
}

.js body:not(.page-ready) .hero-copy > * {
  opacity: 0;
  translate: 0 28px;
}

.js .hero-copy > .eyebrow {
  transition-delay: 80ms;
}

.js .hero-copy > h1 {
  transition-delay: 150ms;
}

.js .hero-copy > p:not(.hero-status) {
  transition-delay: 230ms;
}

.js .hero-copy > .hero-actions {
  transition-delay: 310ms;
}

.js .hero-copy > .hero-status {
  transition-delay: 390ms;
}

.js body:not(.page-ready) .hero-mosaic .photo {
  opacity: 0;
}

.js body:not(.page-ready) .hero-mosaic .photo:not(.runner-photo) img {
  transform: translate3d(0, 0, 0) scale(1.055);
}

.js .hero-mosaic .photo:nth-child(1) {
  transition-delay: 170ms;
}

.js .hero-mosaic .photo:nth-child(2) {
  transition-delay: 250ms;
}

.js .hero-mosaic .photo:nth-child(3) {
  transition-delay: 330ms;
}

.hero-mosaic::before {
  transition: opacity 0.9s var(--ease-premium), scale 0.9s var(--ease-premium);
  transition-delay: 420ms;
}

.js body:not(.page-ready) .hero-mosaic::before {
  opacity: 0;
  scale: 0.86;
}

.hero-mosaic .runner-photo img {
  width: 112%;
  max-width: none;
  object-position: 42% center;
  transform: translate3d(0, 0, 0) scale(1.05);
}

.js body:not(.page-ready) .hero-mosaic .runner-photo img {
  transform: translate3d(0, 0, 0) scale(1.105);
}

.early-access {
  padding-top: 26px;
  padding-bottom: clamp(38px, 4vw, 54px);
}

.early-access-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 5vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
  color: var(--white);
}

.early-access-inner::before {
  position: absolute;
  top: 0;
  right: 9%;
  left: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 184, 35, 0.72), transparent);
  content: "";
}

.early-access-inner::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(245, 184, 35, 0.26);
  border-radius: 50%;
  content: "";
}

.early-access-copy,
.signup-block {
  position: relative;
  z-index: 1;
}

.early-access h2 {
  margin: 13px 0 16px;
  font-size: clamp(2.1rem, 3.5vw, 3.6rem);
}

.early-access-copy p {
  max-width: 640px;
  color: #c5ceda;
  font-size: 1rem;
}

.customer-benefits {
  padding: 0 max(6vw, 24px) clamp(82px, 8vw, 118px);
}

.customer-benefits-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.8fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(15, 30, 51, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 52px rgba(15, 30, 51, 0.07);
}

.customer-benefits-heading h2 {
  max-width: 430px;
  margin-top: 14px;
  color: var(--navy);
  font-size: clamp(1.8rem, 2.8vw, 2.75rem);
  line-height: 1.08;
}

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

.customer-benefit {
  min-width: 0;
  padding: 4px clamp(16px, 2vw, 28px);
  border-left: 1px solid rgba(15, 30, 51, 0.1);
}

.customer-benefit > span {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.customer-benefit h3 {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 1.03rem;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.customer-benefit p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  width: min(100%, 620px);
  margin: 34px auto 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.waitlist-form-dark {
  margin: 0;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 0 17px;
  border: 0;
  border-radius: 9px;
  outline: 0;
  background: transparent;
  color: var(--navy);
}

.waitlist-form input::placeholder {
  color: #7d8796;
}

.waitlist-form input:focus-visible {
  outline: 3px solid rgba(30, 64, 183, 0.22);
  outline-offset: -2px;
}

.waitlist-form input[aria-invalid="true"] {
  background: #fff4f2;
}

.waitlist-form button {
  min-height: 52px;
  padding: 0 21px;
  border: 0;
  border-radius: 10px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form button:hover {
  background: var(--blue-bright);
  box-shadow: 0 10px 24px rgba(30, 64, 183, 0.25);
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.form-note,
.form-message {
  width: min(100%, 620px);
  margin-inline: auto;
}

.signup-block .form-note,
.signup-block .form-message {
  margin-left: 0;
}

.form-note {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.76rem;
}

.waitlist-form-dark + .form-note {
  color: #99a8bb;
}

.form-message {
  position: relative;
  min-height: 1.5em;
  margin-top: 8px;
  color: var(--blue);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
}

.form-message:not(:empty) {
  margin-top: 13px;
  padding: 13px 16px 13px 47px;
  border: 1px solid rgba(30, 64, 183, 0.2);
  border-radius: 12px;
  background: rgba(30, 64, 183, 0.07);
  box-shadow: 0 12px 28px rgba(10, 27, 59, 0.09);
  animation: form-message-arrive 0.28s ease-out both;
}

.form-message:not(:empty)::before {
  position: absolute;
  top: 50%;
  left: 15px;
  display: grid;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1;
  content: "\2026";
  place-items: center;
  transform: translateY(-50%);
}

.waitlist-form-dark ~ .form-message {
  color: #ffdc72;
}

.waitlist-form-dark ~ .form-message:not(:empty) {
  border-color: rgba(255, 220, 114, 0.28);
  background: rgba(245, 184, 35, 0.1);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.waitlist-form-dark ~ .form-message:not(:empty)::before {
  background: #ffdc72;
  color: var(--navy);
}

.form-message.is-error {
  color: #b42318;
}

.form-message.is-success {
  color: #157347;
}

.form-message.is-error:not(:empty) {
  border-color: rgba(180, 35, 24, 0.23);
  background: rgba(180, 35, 24, 0.07);
}

.form-message.is-error:not(:empty)::before {
  background: #b42318;
  color: var(--white);
  content: "!";
}

.form-message.is-success:not(:empty) {
  border-color: rgba(21, 115, 71, 0.23);
  background: rgba(21, 115, 71, 0.07);
}

.form-message.is-success:not(:empty)::before {
  background: #157347;
  color: var(--white);
  content: "\2713";
}

.waitlist-form-dark ~ .form-message.is-error {
  color: #ffb4aa;
}

.waitlist-form-dark ~ .form-message.is-success {
  color: #9ee6bd;
}

.waitlist-form-dark ~ .form-message.is-error:not(:empty) {
  border-color: rgba(255, 180, 170, 0.28);
  background: rgba(180, 35, 24, 0.16);
}

.waitlist-form-dark ~ .form-message.is-error:not(:empty)::before {
  background: #ffb4aa;
  color: var(--navy);
}

.waitlist-form-dark ~ .form-message.is-success:not(:empty) {
  border-color: rgba(158, 230, 189, 0.28);
  background: rgba(21, 115, 71, 0.18);
}

.waitlist-form-dark ~ .form-message.is-success:not(:empty)::before {
  background: #9ee6bd;
  color: var(--navy);
}

@keyframes form-message-arrive {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.99);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.problem {
  background: var(--warm);
}

.problem-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.72fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
}

.section-heading {
  max-width: 980px;
}

.section-heading h2 {
  margin-top: 17px;
}

.section-intro {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.everyone .section-intro {
  max-width: 1000px;
}

@media (min-width: 981px) {
  html[lang="en"] .everyone .section-heading {
    max-width: none;
  }

  html[lang="en"] .everyone .section-intro {
    max-width: 980px;
  }
}

html[lang="tr"] [data-i18n="future.communityLine"]:empty {
  display: none;
}

.problem-figure {
  --media-scale: 1.055;
  --parallax-y: 0px;
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 330px;
  justify-self: end;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(15, 30, 51, 0.11);
}

.problem-figure img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--media-scale));
  transition: transform 0.8s var(--ease-soft);
  will-change: transform;
}

.problem-copy {
  display: grid;
  max-width: 980px;
  gap: 18px;
  margin-top: 44px;
}

.problem-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.story-quote {
  --story-quote-size-reduction: 2px;
  position: relative;
  display: block;
  overflow: hidden;
  margin-top: 68px;
  padding: clamp(48px, 7vw, 86px) clamp(28px, 6vw, 76px);
  border-radius: 28px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
  color: var(--white);
  text-align: center;
}

.story-quote::before {
  position: absolute;
  top: -0.28em;
  left: clamp(18px, 4vw, 52px);
  color: rgba(245, 184, 35, 0.16);
  content: "“";
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 1;
  transition: opacity 1s var(--ease-premium), transform 1s var(--ease-premium);
}

.story-quote::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle at 14% 12%, rgba(245, 184, 35, 0.09), transparent 30%);
  content: "";
  pointer-events: none;
}

.story-quote p,
.story-quote strong {
  position: relative;
  z-index: 1;
  letter-spacing: -0.045em;
}

.story-quote p {
  max-width: 980px;
  margin-inline: auto;
  font-size: calc(clamp(1.8rem, 3.2vw, 3.4rem) - var(--story-quote-size-reduction, 0px));
  font-weight: 700;
  line-height: 1.13;
  text-wrap: balance;
}

.story-quote strong {
  display: inline-block;
  margin-top: clamp(20px, 2.5vw, 30px);
  color: var(--gold);
  font-size: calc(clamp(1.8rem, 3.2vw, 3.4rem) - var(--story-quote-size-reduction, 0px));
  line-height: 1.16;
}

.story-quote strong::before {
  display: block;
  width: 64px;
  height: 2px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transform-origin: center;
  transition: transform 0.8s var(--ease-premium) 0.28s;
}

.js .story-quote:not(.visible)::before {
  opacity: 0;
  transform: translate3d(-18px, 10px, 0) scale(0.78) rotate(-4deg);
}

.js .story-quote:not(.visible) strong::before {
  transform: scaleX(0);
}

.platform {
  background: var(--navy);
  color: var(--white);
}

.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  gap: clamp(58px, 9vw, 128px);
  align-items: center;
}

.platform-copy > p {
  max-width: 650px;
  margin: 25px 0 34px;
  color: #b7c1cf;
  font-size: 1.02rem;
}

.platform-copy > .platform-slogan {
  position: relative;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 22px 0 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 700;
  line-height: 1.45;
}

.platform-slogan::before {
  position: absolute;
  top: 31px;
  left: 0;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-bright), var(--gold));
  content: "";
}

.platform-slogan strong {
  color: var(--gold);
}

.platform-visual {
  display: grid;
  min-height: 560px;
  place-items: center;
}

.ecosystem-card {
  position: relative;
  width: min(100%, 500px);
  min-height: 470px;
  overflow: hidden;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 43%, rgba(43, 85, 212, 0.28), transparent 38%), rgba(255, 255, 255, 0.055);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.ecosystem-card::before,
.ecosystem-card::after {
  position: absolute;
  left: 50%;
  border: 1px solid rgba(245, 184, 35, 0.18);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.ecosystem-card::before {
  top: 46%;
  width: 300px;
  height: 300px;
}

.ecosystem-card::after {
  top: 46%;
  width: 410px;
  height: 410px;
  border-color: rgba(255, 255, 255, 0.08);
}

.ecosystem-kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #bdc7d5;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ecosystem-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.ecosystem-core {
  position: relative;
  z-index: 2;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  margin: 72px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  color: var(--navy);
}

.ecosystem-core::before {
  position: absolute;
  z-index: -1;
  inset: -18px;
  border: 1px solid rgba(245, 184, 35, 0.26);
  border-radius: 50%;
  content: "";
  opacity: 0;
}

.ecosystem-core img {
  width: 58px;
  height: 48px;
  object-fit: contain;
}

.ecosystem-core strong {
  font-size: 0.72rem;
  letter-spacing: 0.21em;
}

.ecosystem-paths {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 58px;
}

.ecosystem-paths span {
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 21, 37, 0.76);
  color: #e6ebf1;
  font-size: 0.68rem;
  font-weight: 700;
}

.platform-visual.visible .ecosystem-card::before {
  animation: ecosystem-ring 4.8s ease-in-out infinite;
}

.platform-visual.visible .ecosystem-card::after {
  animation: ecosystem-ring 5.6s ease-in-out 0.5s infinite reverse;
}

.platform-visual.visible .ecosystem-core {
  animation: ecosystem-float 5s ease-in-out 0.4s infinite;
}

.platform-visual.visible .ecosystem-core::before {
  animation: ecosystem-pulse 3.4s ease-out 0.8s infinite;
}

.platform-visual.visible .ecosystem-paths span {
  animation: ecosystem-label 4.2s ease-in-out infinite;
}

.platform-visual.visible .ecosystem-paths span:nth-child(2) {
  animation-delay: 0.45s;
}

.platform-visual.visible .ecosystem-paths span:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes ecosystem-ring {
  50% {
    border-color: rgba(245, 184, 35, 0.34);
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes ecosystem-float {
  50% {
    transform: translateY(-7px);
  }
}

@keyframes ecosystem-pulse {
  0% {
    opacity: 0;
    transform: scale(0.88);
  }

  28% {
    opacity: 0.7;
  }

  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes ecosystem-label {
  50% {
    border-color: rgba(245, 184, 35, 0.32);
    transform: translateY(-3px);
  }
}

.ecosystem-caption {
  position: relative;
  z-index: 2;
  max-width: 360px;
  margin: 30px auto 0;
  color: #aeb9c8;
  font-size: 0.85rem;
  text-align: center;
}

.everyone {
  background: var(--white);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.role-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 18px;
  background: #fafafa;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.role-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.55s var(--ease-premium);
}

.role-card:hover {
  border-color: #d8dce3;
  box-shadow: 0 18px 44px rgba(15, 30, 51, 0.09);
}

.role-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1.001);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 0.75s var(--ease-soft);
}

.js .role-card.reveal:not(.visible) img {
  transform: translate3d(0, 8px, 0) scale(1.045);
}

.role-card img.coach-photo {
  object-position: center 84%;
}

.role-card div {
  padding: 25px;
}

.role-card h3 {
  color: var(--navy);
  font-size: 1.1rem;
  letter-spacing: -0.025em;
}

.role-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.possibilities {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}

.possibilities::before {
  position: absolute;
  top: -240px;
  right: -170px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 64, 183, 0.1), transparent 70%);
  content: "";
  pointer-events: none;
}

.possibilities .section-heading {
  position: relative;
  max-width: 1080px;
}

.possibilities .section-intro {
  max-width: 940px;
}

.use-case-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.use-case-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  padding: 31px 28px;
  border: 1px solid #e8e5df;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 30, 51, 0.06);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.use-case-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  content: "";
  transform: scaleX(0.3);
  transform-origin: left;
  transition: transform 0.55s var(--ease-premium);
}

.use-case-card > span {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.use-case-card h3 {
  margin: 30px 0 13px;
  color: var(--navy);
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  line-height: 1.08;
}

.use-case-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.former-athlete-note {
  position: relative;
  margin-top: 20px;
  padding: 22px 28px;
  border: 1px solid rgba(30, 64, 183, 0.12);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(15, 30, 51, 0.05);
  color: var(--navy);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  font-weight: 700;
  text-align: center;
}

.former-athlete-note::before {
  display: inline-block;
  width: 34px;
  height: 2px;
  margin: 0 12px 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  content: "";
  vertical-align: middle;
}

.our-story {
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
  gap: clamp(70px, 9vw, 130px);
  align-items: center;
}

.story-images {
  --parallax-y: 0px;
  position: relative;
  height: 640px;
}

.story-images .main-image {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.025);
  transition: transform 0.8s var(--ease-soft);
  will-change: transform;
}

.story-images .small-image {
  position: absolute;
  right: -6%;
  bottom: -4%;
  width: 42%;
  height: 38%;
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  object-fit: cover;
  transition: transform 0.65s ease;
}

.story-copy h2 {
  margin: 18px 0 27px;
}

.story-copy p {
  margin-bottom: 18px;
  color: var(--muted);
}

.future {
  background: linear-gradient(140deg, var(--navy-deep), var(--navy));
  color: var(--white);
}

.future-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
}

.future-top h2 {
  margin: 17px 0 24px;
}

.future-top p {
  max-width: 790px;
  color: #bbc4d1;
  font-size: 1.04rem;
}

.build-phases {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.build-phases div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 17px 19px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.build-phases span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.build-phases strong {
  color: #eef2f7;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.future-figure {
  --media-scale: 1.045;
  --parallax-y: 0px;
  position: relative;
  width: 100%;
  height: 390px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.future-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y), 0) scale(var(--media-scale));
  transition: transform 0.8s var(--ease-soft);
  will-change: transform;
}

@media (hover: hover) {
  .hero-mosaic .photo:not(.runner-photo):hover img {
    transform: translate3d(0, 0, 0) scale(1.035);
  }

  .hero-mosaic .runner-photo:hover img {
    transform: translate3d(0, 0, 0) scale(1.085);
  }

  .problem-figure:hover img {
    --media-scale: 1.09;
  }

  .ecosystem-card:hover {
    border-color: rgba(245, 184, 35, 0.32);
    box-shadow: 0 44px 96px rgba(0, 0, 0, 0.36);
    transform: translateY(-5px);
  }

  .role-card:hover::before {
    transform: scaleX(1);
  }

  .role-card:hover img {
    transform: translate3d(0, 0, 0) scale(1.035);
  }

  .use-case-card:hover {
    border-color: rgba(30, 64, 183, 0.16);
    box-shadow: 0 24px 58px rgba(15, 30, 51, 0.1);
    transform: translateY(-5px);
  }

  .use-case-card:hover::before {
    transform: scaleX(1);
  }

  .story-images:hover .main-image {
    transform: translate3d(0, var(--parallax-y), 0) scale(1.055);
  }

  .story-images:hover .small-image {
    transform: translateY(-5px) rotate(1deg);
  }

  .future-figure:hover img {
    --media-scale: 1.08;
  }
}

.future-closing {
  margin-top: 68px;
  padding: 45px clamp(28px, 5vw, 62px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

.future-closing p {
  color: #d9dfe8;
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.future-closing span {
  display: block;
  width: min(180px, 38vw);
  height: 1px;
  margin: 24px auto;
  background: linear-gradient(90deg, transparent, rgba(245, 184, 35, 0.85), transparent);
}

.future-closing strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 136px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(30, 64, 183, 0.18);
  border-radius: 50%;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 2px, 2px 12px;
  color: var(--blue);
  content: "";
  transform: translateY(-50%);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s var(--ease-premium);
}

.faq-list details[open] summary::after {
  background-color: var(--blue);
  color: var(--white);
  transform: translateY(-50%) rotate(45deg);
}

.faq-list summary:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(30, 64, 183, 0.24);
  outline-offset: 4px;
}

.faq-list details p {
  max-width: 740px;
  padding: 0 52px 25px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--warm);
  text-align: center;
}

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

.final-cta::before {
  top: -220px;
  left: -180px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 64, 183, 0.12), transparent 70%);
}

.final-cta::after {
  right: -160px;
  bottom: -240px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 184, 35, 0.18), transparent 70%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.final-cta-inner > img {
  width: 76px;
  height: 64px;
  margin: 0 auto 24px;
  object-fit: contain;
}

.final-cta-inner.visible > img {
  animation: roster-mark-float 4.8s ease-in-out 0.8s infinite;
}

@keyframes roster-mark-float {
  50% {
    filter: drop-shadow(0 12px 16px rgba(30, 64, 183, 0.2));
    transform: translateY(-6px);
  }
}

.final-cta h2 {
  max-width: 860px;
  margin: 17px auto 23px;
  text-wrap: balance;
}

.final-cta-inner > p:not(.form-note, .form-message) {
  max-width: 710px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.connect-strip {
  padding: 28px max(6vw, 24px) 34px;
  background: var(--white);
}

.connect-strip-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(25px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(248, 246, 242, 0.82), var(--white));
  box-shadow: 0 18px 48px rgba(15, 30, 51, 0.07);
}

.connect-strip-copy h2 {
  margin: 9px 0 8px;
  color: var(--navy);
  font-size: clamp(1.65rem, 2.6vw, 2.35rem);
}

.connect-strip-copy p {
  color: var(--muted);
  font-size: 0.88rem;
}

.connect-channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.connect-channel {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 112px;
  align-content: center;
  padding: 20px 22px;
  border: 1px solid rgba(30, 64, 183, 0.12);
  border-radius: 16px;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.connect-channel > span:first-child {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.connect-channel strong {
  min-width: 0;
  margin-top: 7px;
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 0.9rem;
}

.connect-channel-action {
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--blue) !important;
  font-size: 1.05rem !important;
}

.connect-email button {
  width: max-content;
  margin-top: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
}

.connect-email button:hover {
  color: var(--blue-bright);
}

.copy-email-status {
  position: absolute;
  right: 18px;
  bottom: 17px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
}

@media (hover: hover) {
  a.connect-channel:hover {
    border-color: rgba(30, 64, 183, 0.26);
    box-shadow: 0 14px 32px rgba(15, 30, 51, 0.09);
    transform: translateY(-2px);
  }
}

.site-footer {
  padding: 48px max(6vw, 24px);
  background: var(--navy-deep);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px 50px;
  align-items: center;
}

.footer-intro {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer-intro p {
  color: #aab6c5;
  font-size: 0.86rem;
}

.footer-brand img {
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: #c5ced9;
  font-size: 0.78rem;
}

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

.site-footer small {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  grid-column: 1 / -1;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #77869a;
  font-size: 0.72rem;
}

.ai-image-note {
  grid-column: 1 / -1;
  margin: -18px 0 0;
  color: var(--white);
  font-size: 0.72rem;
  text-align: center;
}

.footer-nav a:focus-visible {
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

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

.js .reveal {
  opacity: 0;
  scale: 0.99;
  translate: 0 32px;
  transition: opacity 0.75s var(--ease-premium), scale 0.75s var(--ease-premium), translate 0.75s var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, translate;
}

.js .reveal.reveal-media {
  scale: 0.965;
  translate: 0 38px;
}

.js .role-card.reveal {
  scale: 1;
  translate: none;
  transition: opacity 0.55s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.js .reveal.visible {
  opacity: 1;
  scale: 1;
  translate: none;
  will-change: auto;
}

.js .future-closing > * {
  opacity: 0;
  translate: 0 14px;
  transition: opacity 0.65s var(--ease-premium), translate 0.65s var(--ease-premium), transform 0.75s var(--ease-premium);
}

.js .future-closing.visible > * {
  opacity: 1;
  translate: none;
}

.js .future-closing.visible > :nth-child(2) {
  transition-delay: 90ms;
}

.js .future-closing.visible > :nth-child(3) {
  transition-delay: 180ms;
}

.js .future-closing.visible > :nth-child(4) {
  transition-delay: 270ms;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
    gap: 44px;
  }

  .hero-mosaic {
    min-height: 500px;
  }

  .platform-grid,
  .story-grid {
    gap: 60px;
  }

  .role-card img {
    height: 220px;
  }

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

  .customer-benefit {
    padding-inline: 22px;
  }
}

@media (max-width: 1240px) and (min-width: 1081px) {
  .site-nav {
    gap: 3px;
    font-size: 0.72rem;
  }

  .site-nav a {
    padding-inline: 8px;
  }

  .site-nav .nav-cta {
    padding-inline: 13px;
  }

  .language-trigger-label {
    display: none;
  }

  .language-trigger {
    width: 42px;
    padding-inline: 11px;
  }
}

@media (max-width: 1080px) {
  body.menu-open::before {
    position: fixed;
    z-index: 90;
    inset: 0;
    background: rgba(7, 21, 37, 0.24);
    content: "";
    backdrop-filter: blur(2px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    padding: 14px;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    background: var(--warm);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

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

  .site-nav a {
    padding: 12px 14px;
  }

  .site-nav a:not(.nav-cta) {
    border-color: var(--white);
    background: var(--white);
  }

  .site-nav .nav-cta {
    margin: 4px 0 0;
    text-align: center;
  }

  .language-trigger-label {
    display: inline;
  }

  .language-trigger {
    width: auto;
    min-height: 44px;
  }
}

@media (max-width: 430px) {
  .language-trigger-label {
    display: none;
  }

  .language-trigger {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .language-options {
    right: -48px;
  }
}

@media (max-width: 980px) {

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .platform-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-copy h1 {
    max-width: 780px;
  }

  .hero-mosaic {
    height: 610px;
    min-height: 0;
  }

  .early-access-inner {
    grid-template-columns: 1fr;
  }

  .customer-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 30px;
  }

  .customer-benefit:nth-child(3) {
    border-left: 0;
  }

  .signup-block {
    max-width: 650px;
  }

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

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

  .platform-visual {
    min-height: 500px;
  }

  .story-grid {
    gap: 80px;
  }

  .story-images {
    width: min(100%, 720px);
    height: 570px;
  }

  .story-images .small-image {
    right: -3%;
  }

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

  .future-figure {
    width: min(100%, 620px);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq .section-heading {
    position: static;
  }

  .connect-strip-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 92px;
  }

  [id] {
    scroll-margin-top: 92px;
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .section-pad {
    padding: 74px 20px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    height: 62px;
    padding-left: 15px;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero-copy h1 {
    margin-top: 13px;
  }

  .hero-copy > p:not(.hero-status) {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .js .reveal,
  .js .reveal.reveal-media {
    opacity: 1;
    scale: 1;
    translate: 0 18px;
    transition-delay: 0ms;
  }

  .js .future-closing > * {
    opacity: 1;
    translate: none;
    transition-delay: 0ms;
  }

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

  .button {
    width: 100%;
  }

  .hero-mosaic {
    height: 465px;
    gap: 9px;
  }

  .photo {
    border-radius: 16px;
  }

  .early-access {
    padding-top: 8px;
    padding-bottom: 28px;
  }

  .early-access-inner {
    gap: 30px;
    padding: 34px 22px;
    border-radius: 22px;
  }

  .early-access-copy p {
    font-size: 0.92rem;
  }

  .customer-benefits {
    padding-bottom: 74px;
  }

  .customer-benefits-inner {
    gap: 30px;
    padding: 30px 22px;
    border-radius: 20px;
  }

  .customer-benefit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .customer-benefit,
  .customer-benefit:nth-child(3) {
    padding: 22px 0;
    border-top: 1px solid rgba(15, 30, 51, 0.1);
    border-left: 0;
  }

  .customer-benefit:first-child {
    border-top: 0;
  }

  .customer-benefit h3 {
    margin-top: 9px;
  }

  .waitlist-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .waitlist-form input,
  .waitlist-form button {
    width: 100%;
    min-height: 56px;
  }

  .waitlist-form input {
    padding: 0 16px;
    border: 1px solid var(--line);
    background: var(--white);
  }

  .problem-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .problem-figure {
    max-width: 520px;
    min-height: 250px;
    justify-self: start;
    border-radius: 20px;
  }

  .problem-figure img {
    min-height: 250px;
  }

  .problem-copy {
    margin-top: 34px;
  }

  .problem-copy p {
    font-size: 0.96rem;
  }

  .story-quote {
    margin-top: 52px;
    padding: 46px 24px;
    border-radius: 22px;
  }

  .story-quote::before {
    left: 12px;
  }

  .story-quote p {
    font-size: calc(clamp(1.65rem, 8vw, 2.2rem) - var(--story-quote-size-reduction, 0px));
  }

  .story-quote strong {
    font-size: calc(clamp(1.65rem, 8vw, 2.2rem) - var(--story-quote-size-reduction, 0px));
  }

  .platform-grid {
    gap: 42px;
  }

  .platform-visual {
    min-height: auto;
  }

  .ecosystem-card {
    min-height: 440px;
    padding: 28px 18px;
    border-radius: 24px;
  }

  .ecosystem-card::after {
    width: 360px;
    height: 360px;
  }

  .ecosystem-core {
    margin-top: 66px;
  }

  .ecosystem-paths {
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 52px;
  }

  .role-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .role-card img {
    height: 230px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .use-case-card {
    min-height: 0;
    padding: 28px;
  }

  .use-case-card h3 {
    margin-top: 24px;
  }

  .former-athlete-note {
    padding: 22px;
  }

  .former-athlete-note::before {
    display: block;
    margin: 0 auto 14px;
  }

  .story-grid {
    gap: 66px;
  }

  .story-images {
    height: 460px;
  }

  .story-images .small-image {
    right: 0;
    bottom: -5%;
    border-width: 6px;
  }

  .future-grid {
    gap: 40px;
  }

  .build-phases div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .future-figure {
    height: 280px;
  }

  .future-closing {
    margin-top: 52px;
    padding: 38px 18px;
  }

  .faq-list summary {
    padding-block: 22px;
    font-size: 0.94rem;
  }

  .faq-list details p {
    padding-right: 38px;
    font-size: 0.88rem;
  }

  .final-cta h2 {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
  }

  .final-cta-inner > p:not(.form-note, .form-message) {
    font-size: 0.96rem;
  }

  .connect-strip {
    padding: 18px 20px 24px;
  }

  .connect-strip-inner {
    gap: 18px;
    padding: 22px 18px;
    border-radius: 18px;
  }

  .connect-channels {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .connect-channel {
    min-height: 96px;
    padding: 16px 18px;
  }

  .copy-email-status {
    right: 16px;
    bottom: 14px;
  }

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

  .footer-grid {
    display: grid;
  }

  .footer-intro {
    display: grid;
    gap: 13px;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.85rem;
  }

  .section-pad {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-mosaic {
    height: 410px;
  }

  .early-access-inner {
    padding: 30px 18px;
  }

  .ecosystem-paths span {
    padding-inline: 10px;
    font-size: 0.64rem;
  }

  .role-card img {
    height: 205px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    filter: none;
    scale: 1;
    translate: none;
    transition-delay: 0s !important;
  }

  .js body:not(.page-ready) .site-header,
  .js body:not(.page-ready) .hero-copy > *,
  .js body:not(.page-ready) .hero-mosaic .photo,
  .js .future-closing > * {
    opacity: 1;
    filter: none;
    scale: 1;
    translate: none;
  }

  .problem-figure img,
  .story-images .main-image,
  .future-figure img {
    transform: none;
  }
}
