@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/manrope-latin-400-800.woff2") format("woff2");
}

:root {
  --ink: #172d3f;
  --ink-soft: #42596a;
  --navy: #3f6f96;
  --navy-2: #78a9cb;
  --navy-3: #a8d2eb;
  --sky: #2f789a;
  --sky-soft: #f4fbff;
  --green: #9fd0c2;
  --green-soft: rgba(159, 208, 194, 0.16);
  --paper: #fffdf9;
  --mist: #f7fbfc;
  --white: #ffffff;
  --section-plain: #fbfcfb;
  --section-soft: #e7f0ed;
  --section-accent: #d6e5e0;
  --section-line: rgba(72, 111, 132, 0.16);
  --panel: rgba(255, 255, 255, 0.88);
  --line: rgba(125, 166, 194, 0.18);
  --shadow: 0 16px 34px rgba(82, 124, 146, 0.1);
  --shadow-deep: 0 24px 56px rgba(82, 124, 146, 0.14);
  --radius: 18px;
  --hero-gradient: linear-gradient(135deg, #5d7f97 0%, #6f96a2 52%, #7ea9a0 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-bottom: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--section-soft);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid rgba(137, 199, 235, 0.14);
  box-shadow: 0 8px 22px rgba(131, 163, 186, 0.08);
}

.nav,
.section,
.footer-inner {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: relative;
  min-height: 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 77px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

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

.language-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.language-control::before {
  content: none;
}

.language-control::after {
  content: none;
}

.language-control:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(8, 44, 77, 0.1);
}

.language-selector {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  width: auto;
  min-width: 76px;
  min-height: 44px;
  padding: 9px 34px 9px 16px;
  border: 1px solid rgba(63, 111, 150, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 247, 0.96));
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 8px rgba(8, 44, 77, 0.05);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-selector:hover {
  border-color: rgba(31, 125, 143, 0.55);
  background: linear-gradient(135deg, #ffffff, #e4f3f5);
}

.language-selector:focus-visible {
  outline: 3px solid rgba(72, 164, 181, 0.28);
  outline-offset: 3px;
  border-color: var(--navy-3);
}

.language-custom {
  position: relative;
  display: block;
}

.language-custom-toggle {
  min-width: 76px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(63, 111, 150, 0.3);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 247, 0.96));
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 8px rgba(8, 44, 77, 0.05);
  cursor: pointer;
}

.language-custom-toggle:focus-visible {
  outline: 3px solid rgba(72, 164, 181, 0.28);
  outline-offset: 3px;
}

.language-custom-arrow {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-custom-toggle[aria-expanded="true"] .language-custom-arrow {
  transform: translateY(2px) rotate(225deg);
}

.language-custom-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 112px;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(63, 111, 150, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 36px rgba(23, 45, 63, 0.18);
}

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

.language-custom-option {
  width: 100%;
  display: block;
  padding: 10px 14px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-weight: 750;
  text-align: left;
  cursor: pointer;
}

.language-custom-option:hover,
.language-custom-option:focus-visible,
.language-custom-option[aria-selected="true"] {
  background: var(--green-soft);
  color: var(--sky);
  outline: none;
}

.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;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2f789a, #357f86);
  color: var(--white);
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(28, 83, 105, 0.24);
  cursor: pointer;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-color: rgba(137, 199, 235, 0.2);
  box-shadow: 0 10px 24px rgba(137, 199, 235, 0.08);
}

.button.ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
  box-shadow: none;
}

.floating-waitlist-cta {
  display: none;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  min-width: 190px;
  border-color: #ffd166;
  background: #ffd166;
  color: #172b3a;
  box-shadow: 0 8px 18px rgba(80, 55, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.floating-waitlist-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-waitlist-cta:hover {
  transform: translateY(-2px);
  background: #ffe09a;
  box-shadow: 0 10px 22px rgba(80, 55, 0, 0.17);
}

.floating-waitlist-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

@media (max-width: 820px) {
  .floating-waitlist-cta {
    display: inline-flex;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: auto;
    width: auto;
    min-width: 168px;
    max-width: calc(100vw - 24px);
    min-height: 48px;
    padding-inline: 20px;
  }
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  color: var(--sky);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 4vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  color: var(--navy);
}

html[lang="de"] h1,
html[lang="en"] h1 {
  font-size: clamp(1.85rem, 3.5vw, 3.8rem);
}

html[lang="de"] h2,
html[lang="de"] .referral-section .section-head h2,
html[lang="de"] .waitlist-success-heading h2,
html[lang="en"] h2,
html[lang="en"] .referral-section .section-head h2,
html[lang="en"] .waitlist-success-heading h2 {
  font-size: clamp(1.75rem, 3.35vw, 3.6rem);
}

h3,
.story-card h2.story-card-heading {
  line-height: 1.12;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  color: var(--navy);
}

p {
  margin: 0;
}

.lead {
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  color: var(--ink-soft);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  background: var(--hero-gradient);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.hero-shell,
.page-hero .section {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 46px;
  padding: 82px 0 76px;
}

.hero-shell {
  width: min(1400px, calc(100% - 32px));
  min-height: 560px;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
}

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

.hero-copy h1,
.page-hero h1 {
  color: var(--white);
}

.home-hero-title span {
  display: block;
  white-space: nowrap;
}

.home-hero-title-emphasis {
  margin-top: 0.14em;
  color: #ffd166;
  font-size: inherit;
  font-weight: 700;
  text-shadow: 0 2px 16px rgba(255, 209, 102, 0.22);
}

.hero-mobile-visual {
  display: none;
}

.hero-copy .lead,
.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
}

.hero .eyebrow,
.page-hero .eyebrow {
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #b9dce8;
}

.hero-actions,
.button-row,
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

@media (min-width: 921px) {
  .hero-copy > .eyebrow,
  .hero-copy .home-hero-title,
  .hero-copy .lead,
  .hero-copy .hero-actions {
    transform: translateX(48px);
  }
}

.equal-width-actions .button {
  width: 240px;
  white-space: nowrap;
}

.home-hero-primary-cta,
a.button:not(.floating-waitlist-cta)[href*="waitlist"],
a.button:not(.floating-waitlist-cta)[href*="warteliste"],
.waitlist-form-card button.button[type="submit"] {
  background: #ffd166;
  border-color: #ffd166;
  color: #172b3a;
  box-shadow: 0 8px 18px rgba(80, 55, 0, 0.14);
}

.home-hero-primary-cta:hover,
a.button:not(.floating-waitlist-cta)[href*="waitlist"]:hover,
a.button:not(.floating-waitlist-cta)[href*="warteliste"]:hover,
.waitlist-form-card button.button[type="submit"]:hover {
  background: #ffe09a;
  border-color: #ffe09a;
}

.home-hero-primary-cta:focus-visible,
a.button:not(.floating-waitlist-cta)[href*="waitlist"]:focus-visible,
a.button:not(.floating-waitlist-cta)[href*="warteliste"]:focus-visible,
.waitlist-form-card button.button[type="submit"]:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.audience-card .button-row {
  margin-top: auto;
  padding-top: 24px;
}

.audience-card {
  display: flex;
  flex-direction: column;
}

.hero-chips {
  margin-top: 34px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border: 1px solid rgba(137, 199, 235, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
}

.hero-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #d6eef9;
  box-shadow: 0 0 14px rgba(214, 238, 249, 0.35);
}

.hero-visual {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  width: calc(50vw + 2px);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 3;
}

.hero-visual::before {
  content: none;
}

.hero-spine-cutout {
  width: min(520px, 100%);
  max-height: 680px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(1.18) brightness(1.08) drop-shadow(0 24px 46px rgba(13, 43, 55, 0.18));
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-hero-animation {
  width: 120%;
  max-width: none;
  height: auto;
  object-fit: contain;
  transform: translate(calc(-10.8333% + 40px), -135px);
}

.technology-spine-visual {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  overflow: visible;
}

.technology-spine-cutout {
  width: min(316px, 100%);
  max-height: 527px;
  object-fit: contain;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, #000 3%, #000 97%, rgba(0, 0, 0, 0.72) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0%, #000 3%, #000 97%, rgba(0, 0, 0, 0.72) 100%);
  filter: drop-shadow(0 22px 42px rgba(23, 45, 63, 0.14));
}

.home-difference-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.home-difference-visual img {
  width: min(390px, 100%);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 22px 42px rgba(23, 45, 63, 0.14));
}

.spinal-load-chart {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(23, 45, 63, 0.12);
}

html[lang="de"] .technology-spine-visual img {
  width: 100%;
  height: auto;
  max-height: none;
}

html[lang="de"] .image-frame-compact img {
  width: min(100%, 520px);
  height: auto;
  max-height: none;
}

html[lang="de"] .image-frame-compact {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

html[lang="de"] .cycle-center strong {
  max-width: 122px;
  font-size: clamp(0.78rem, 1.05vw, 0.94rem);
  line-height: 1.1;
}

html[lang="de"] .technology-spine-visual,
html[lang="de"] .home-difference-visual,
html[lang="de"] .image-frame-compact {
  align-self: center;
}

.scan-video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(72, 111, 132, 0.12);
  border-radius: 22px;
  background: #f7fbfa;
  box-shadow: var(--shadow-deep);
}

.scan-video-frame::before {
  content: "";
  position: absolute;
  width: 72%;
  height: 72%;
  left: 14%;
  top: 14%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(118, 198, 255, 0.1), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}

.scan-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.scan-video,
.scan-still {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.scan-caption {
  padding: 14px 18px 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  background: #f7fbfa;
}

.floating-panel {
  position: absolute;
  right: -28px;
  bottom: 36px;
  width: min(280px, 74%);
  padding: 20px;
  border: 1px solid rgba(137, 199, 235, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.floating-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-panel p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

main > section.section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 88px max(16px, calc((100% - 1200px) / 2));
}

main > section {
  border-top: 1px solid var(--section-line);
}

main > section:first-child {
  border-top: 0;
}

main > section:not(.hero):not(.page-hero):not(.dark-band) {
  background: var(--section-plain);
}

main > section:nth-of-type(even):not(.hero):not(.page-hero):not(.dark-band) {
  background: var(--section-soft);
}

.section.tight {
  padding: 64px 0;
}

main > section.section.tight {
  padding: 64px max(16px, calc((100% - 1200px) / 2));
}

main > section.section.tight.technology-waitlist-section {
  background: var(--section-accent);
}

main > section.section.tight.technology-sports-section {
  background: var(--section-soft);
}

main > section.section.tight.sports-waitlist-section {
  background: #c7ded8;
}

main > section.section.tight.contact-waitlist-section {
  background: var(--section-accent);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-head > h2 + p {
  margin-top: 16px;
}

.section-frame {
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.section-frame-soft {
  background: transparent;
}

.section-frame-accent {
  background: transparent;
  border-color: transparent;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.split-top {
  align-items: start;
}

.split.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
}

.copy-stack > * + * {
  margin-top: 18px;
}

.stats-grid,
.cards-grid,
.audience-grid,
.contact-grid,
.waitlist-grid,
.team-proof-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.contact-grid,
.waitlist-grid,
.team-proof-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.team-engagement-stack {
  grid-template-columns: 1fr;
}

.team-engagement-panel {
  gap: 34px;
}

.team-engagement-heading {
  max-width: 880px;
}

.team-engagement-heading > * + * {
  margin-top: 16px;
}

.team-engagement-heading h2 {
  max-width: none;
}

.team-engagement-heading p:not(.eyebrow) {
  max-width: 780px;
  color: var(--ink-soft);
}

.team-engagement-layout,
.engagement-options,
.team-engagement-aside {
  display: grid;
  gap: 18px;
}

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

.team-engagement-aside {
  grid-template-columns: 1fr;
}

.engagement-option-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 34px;
  border: 1px solid rgba(63, 111, 150, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.engagement-option-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--green), var(--sky));
}

.engagement-option-rollout::before {
  background: linear-gradient(180deg, var(--navy-3), var(--navy));
}

.engagement-option-label {
  display: block;
  margin-bottom: 16px;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.engagement-option-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.engagement-option-card p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.team-engagement-aside .proof-card {
  min-height: 100%;
}

.team-pilot-record {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  column-gap: 32px;
  border-color: rgba(159, 208, 194, 0.34);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(231, 240, 237, 0.92));
}

.team-pilot-record .eyebrow {
  grid-column: 1;
  margin-bottom: 8px;
}

.team-pilot-record h3 {
  grid-column: 1;
}

.team-pilot-record > p:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  padding-left: 32px;
  border-left: 1px solid rgba(63, 111, 150, 0.18);
}

.team-signup-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.team-signup-card .button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.stat-card,
.feature-card,
.audience-card,
.story-card,
.contact-card,
.proof-card,
.waitlist-shell,
.cta-band,
.info-panel,
.image-frame {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.stat-card,
.feature-card,
.audience-card,
.story-card,
.contact-card,
.proof-card,
.waitlist-shell,
.info-panel {
  padding: 32px;
}

.about-story-grid .story-card {
  border: 0;
  background: linear-gradient(145deg, #ffffff 0%, #ffffff 58%, #f2f7f8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06),
    0 22px 48px rgba(0, 0, 0, 0.16),
    0 5px 14px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(18px);
}

.stat-label {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.referral-section {
  padding-top: 88px;
}

#referral-program-terms {
  scroll-margin-top: 120px;
}

.referral-section .section-head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.referral-section .section-head .lead {
  margin-top: 18px;
}

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

.referral-card {
  min-height: 260px;
  display: grid;
  align-content: start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 251, 255, 0.86));
  box-shadow: var(--shadow);
}

.referral-step {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #28b9ad;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.referral-card h3 {
  color: var(--navy);
  font-size: 1.22rem;
}

.referral-card p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.referral-card strong {
  color: #28b9ad;
}

.referral-total {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 26px 30px;
  border: 1px solid rgba(16, 45, 74, 0.1);
  border-top: 5px solid #176f78;
  border-radius: var(--radius);
  background: #f1f8f7;
  color: var(--ink);
  box-shadow: var(--shadow-deep);
}

.referral-total strong {
  color: #244f70;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.25;
}

.referral-total p {
  max-width: 860px;
  color: var(--ink);
}

.stat-value {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pilot-metric-card {
  display: grid;
  align-content: start;
}

.pilot-metric-card .metric-value {
  display: block;
  margin-bottom: 14px;
  color: #28b9ad;
  font-size: clamp(2.25rem, 5vw, 3.55rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-shadow: 0 10px 24px rgba(40, 185, 173, 0.18);
}

.dark-band.about-roadmap-section {
  background: #d6e5e0;
}

.roadmap-head {
  max-width: 960px;
}

.about-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  min-height: 340px;
  margin-top: 222px;
  padding: 54px 0 8px;
}

.about-roadmap::before {
  content: none;
}

.roadmap-item {
  position: relative;
  z-index: 1;
  min-height: 280px;
  padding: 76px 18px 22px;
  transform: translateY(var(--roadmap-rise));
}

.roadmap-item::before {
  content: "";
  position: absolute;
  left: -14px;
  right: -14px;
  top: 36px;
  z-index: -1;
  height: 28px;
  border-radius: 999px;
  background: var(--roadmap-color);
  box-shadow: 0 16px 28px rgba(23, 45, 63, 0.14);
}

.roadmap-item::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 36px;
  z-index: -1;
  width: 28px;
  height: calc(var(--roadmap-drop) + 28px);
  border-radius: 999px 999px 0 0;
  background: var(--roadmap-color);
  box-shadow: 0 16px 28px rgba(23, 45, 63, 0.12);
}

.roadmap-year {
  position: absolute;
  left: 50%;
  top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--roadmap-color);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: center;
  box-shadow: 0 12px 24px rgba(23, 45, 63, 0.14);
  transform: translate(-50%, -48%);
}

.roadmap-dot {
  display: none;
  position: absolute;
  left: 50%;
  top: 48px;
  width: 14px;
  height: 14px;
  margin: 0;
  border: 3px solid var(--white);
  border-radius: 999px;
  background: var(--roadmap-color);
  box-shadow: 0 12px 24px rgba(23, 45, 63, 0.14);
  transform: translateX(-50%);
}

.roadmap-item h3 {
  max-width: none;
  color: var(--navy);
  font-size: clamp(1.02rem, 1.28vw, 1.2rem);
}

.roadmap-item p {
  max-width: none;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.46;
}

.roadmap-step-1 {
  --roadmap-color: #8bcbb8;
  --roadmap-rise: 0px;
  --roadmap-drop: 0px;
}

.roadmap-step-2 {
  --roadmap-color: #78ceb4;
  --roadmap-rise: -38px;
  --roadmap-drop: 38px;
}

.roadmap-step-3 {
  --roadmap-color: #50cca5;
  --roadmap-rise: -76px;
  --roadmap-drop: 38px;
}

.roadmap-step-4 {
  --roadmap-color: #2ec1a5;
  --roadmap-rise: -114px;
  --roadmap-drop: 38px;
}

.roadmap-step-5 {
  --roadmap-color: #28b2b3;
  --roadmap-rise: -152px;
  --roadmap-drop: 38px;
}

.roadmap-step-6 {
  --roadmap-color: #2791ca;
  --roadmap-rise: -181px;
  --roadmap-drop: 29px;
}

.roadmap-step-7 {
  --roadmap-color: #3f6f96;
  --roadmap-rise: -219px;
  --roadmap-drop: 38px;
}

.roadmap-step-7::before {
  left: -14px;
  right: -24px;
  border-radius: 999px 0 0 999px;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
}

@media (min-width: 921px) {
  .about-roadmap {
    margin-bottom: -84px;
  }

  .roadmap-step-7::before {
    background: repeating-linear-gradient(90deg, var(--roadmap-color) 0 7px, transparent 7px 12px);
    box-shadow: none;
  }

  .roadmap-step-7::after {
    top: 60px;
    height: calc(var(--roadmap-drop) + 4px);
    border-radius: 0;
    background: repeating-linear-gradient(180deg, var(--roadmap-color) 0 7px, transparent 7px 12px);
    box-shadow: none;
  }
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(137, 199, 235, 0.14), rgba(159, 208, 194, 0.2));
  color: var(--navy);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

.feature-card p,
.audience-card p,
.story-card p,
.proof-card p,
.contact-card p,
.info-panel p {
  margin-top: 12px;
  color: var(--ink-soft);
}

.performance-cycle {
  position: relative;
  min-height: 760px;
  margin: 38px auto 0;
  isolation: isolate;
}

.sports-sleep-framework .section-head {
  max-width: 980px;
}

.cycle-card {
  position: absolute;
  width: min(470px, 43vw);
  aspect-ratio: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  padding: clamp(42px, 5.8vw, 74px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  box-shadow: 0 28px 62px rgba(23, 45, 63, 0.16);
  text-align: left;
  backdrop-filter: blur(10px);
}

.cycle-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  justify-self: center;
  color: rgba(255, 255, 255, 0.96);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cycle-card h3 {
  width: 260px;
  max-width: 260px;
  color: var(--white);
  font-size: clamp(1.2rem, 1.7vw, 1.48rem);
  letter-spacing: -0.015em;
  text-align: center;
  white-space: nowrap;
}

.cycle-card p {
  width: 260px;
  max-width: 260px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.8rem, 0.92vw, 0.91rem);
  line-height: 1.48;
  text-align: left;
}

@media (min-width: 921px) {
  html[lang="de"] .cycle-card p {
    width: 300px;
    max-width: 300px;
    font-size: clamp(0.76rem, 0.86vw, 0.85rem);
    line-height: 1.44;
  }
}

.cycle-card-top {
  top: 0;
  left: 50%;
  z-index: 2;
  padding-top: clamp(30px, 4vw, 44px);
  transform: translateX(-50%);
  background: #247f79;
}

.cycle-card-right {
  bottom: 0;
  right: 12%;
  z-index: 3;
  background: #267ca8;
}

.cycle-card-left {
  bottom: 0;
  left: 12%;
  z-index: 3;
  background: #3f6f96;
}

.cycle-card-left .cycle-icon,
.cycle-card-left h3,
.cycle-card-left p {
  transform: translateX(0);
}

.cycle-card-left h3 {
  transform: translateX(-6px);
}

.cycle-card-right .cycle-icon,
.cycle-card-right h3,
.cycle-card-right p {
  transform: translateX(42px);
}

.cycle-card-left .cycle-icon,
.cycle-card-right .cycle-icon {
  margin-top: 4px;
}

.cycle-card-left h3,
.cycle-card-right h3 {
  margin-top: 0;
}

.cycle-card-left p,
.cycle-card-right p {
  min-height: 172px;
}

.cycle-card-left p {
  transform: translateX(0);
}

.cycle-card-right .cycle-icon,
.cycle-card-right h3,
.cycle-card-right p {
  transform: translateX(26px);
}

.cycle-card-right h3 {
  transform: translateX(6px);
}

.cycle-card-right .cycle-icon {
  transform: translateX(6px);
}

.cycle-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(174px, 20vw);
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 44px rgba(23, 45, 63, 0.18);
  text-align: center;
  transform: translate(-50%, -26%);
}

.cycle-center span {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cycle-center strong {
  max-width: 140px;
  margin-top: 8px;
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.16;
}

.performance-cycle-note {
  position: relative;
  max-width: 980px;
  margin: 34px auto 0;
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid rgba(39, 143, 210, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 247, 246, 0.9));
  box-shadow: var(--shadow);
}

.sleep-coaching-section .section-head {
  max-width: 980px;
}

.performance-cycle-note::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #28b9ad, #278fd2);
}

.performance-cycle-note h3 {
  color: var(--navy);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.performance-cycle-note > p {
  max-width: 870px;
  margin-top: 14px;
  color: var(--ink-soft);
}

.scope-comparison {
  max-width: none;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(39, 143, 210, 0.24);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(39, 143, 210, 0.14), rgba(137, 199, 235, 0.2));
  color: var(--navy);
  line-height: 1.5;
}

.sleep-support-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.sleep-support-comparison article {
  min-height: 300px;
  padding: clamp(30px, 4vw, 46px);
  border: 1px solid rgba(23, 45, 63, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.sleep-support-comparison article:last-child {
  border-color: rgba(255, 255, 255, 0.28);
  background: #176f78;
  box-shadow: 0 22px 44px rgba(23, 111, 120, 0.2);
}

.sleep-support-comparison article:last-child span {
  color: #bdefe3;
}

.sleep-support-comparison article:last-child h3,
.sleep-support-comparison article:last-child p {
  color: #ffffff;
}

.sleep-support-comparison span {
  color: var(--sky);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.sleep-support-comparison h3 {
  margin-top: 12px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
}

.sleep-support-comparison p {
  margin-top: 11px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.sleep-coaching-section > .scope-comparison {
  max-width: 100%;
  margin-top: 24px;
  padding: 24px 30px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  text-align: center;
}

@media (max-width: 720px) {
  .sleep-support-comparison {
    grid-template-columns: 1fr;
  }
}

.performance-cycle-note .research-reference {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 45, 63, 0.12);
  color: rgba(23, 45, 63, 0.7);
  font-size: 0.82rem;
  line-height: 1.55;
}

html[lang="de"] .sports-sleep-framework .cycle-center strong {
  font-size: clamp(0.86rem, 1.18vw, 1.05rem);
  overflow-wrap: anywhere;
}

.contact-card h2,
.waitlist-aside h2,
.info-panel h3,
.cta-band h2,
.content-page h2 {
  line-height: 1.14;
}

.contact-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

.waitlist-aside h2,
.cta-band h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

html[lang="de"] .contact-card h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

html[lang="de"] .contact-waitlist-section .cta-band h2 {
  font-size: clamp(1.9rem, 3.2vw, 3rem);
}

.feature-card ul,
.info-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--ink-soft);
}

.dark-band {
  position: relative;
  overflow: hidden;
  background: var(--section-accent);
  color: var(--ink);
}

.dark-band.team-engagement-section {
  background: var(--section-soft);
}

.dark-band .section-head h2,
.dark-band h3,
.dark-band .proof-card h3,
.dark-band .info-panel h3 {
  color: var(--navy);
}

.dark-band .lead,
.dark-band p,
.dark-band li {
  color: var(--ink-soft);
}

.dark-band .proof-card,
.dark-band .info-panel,
.dark-band .cta-band {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.75);
}

.dark-band .team-engagement-panel {
  position: relative;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dark-band .team-engagement-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.dark-band .team-engagement-heading .eyebrow {
  color: var(--sky);
}

.dark-band .team-engagement-heading h2 {
  color: var(--navy);
}

.dark-band .team-engagement-heading p:not(.eyebrow) {
  color: var(--ink-soft);
}

.dark-band .team-engagement-layout {
  position: relative;
  z-index: 1;
  gap: 24px;
}

.dark-band .engagement-options {
  gap: 24px;
}

.dark-band .engagement-option-card {
  overflow: visible;
  padding: 38px;
  border: 1px solid rgba(63, 111, 150, 0.12);
  box-shadow: var(--shadow);
}

.dark-band .engagement-option-pilot {
  background:
    radial-gradient(circle at 100% 0%, rgba(168, 210, 235, 0.28), transparent 42%),
    #ffffff;
}

.dark-band .engagement-option-rollout {
  background:
    radial-gradient(circle at 100% 0%, rgba(159, 208, 194, 0.32), transparent 42%),
    #ffffff;
}

.dark-band .engagement-option-card::before {
  inset: 0 0 auto;
  width: auto;
  height: 6px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.dark-band .engagement-option-pilot::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -36px;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 5px solid var(--section-accent);
  border-radius: 50%;
  background: #ffffff;
  color: var(--sky);
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(82, 124, 146, 0.14);
  transform: translateY(-50%);
}

.dark-band .engagement-option-card p {
  color: var(--ink-soft);
}

.dark-band .engagement-option-label {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(168, 210, 235, 0.22);
}

.dark-band .engagement-option-rollout .engagement-option-label {
  background: rgba(159, 208, 194, 0.24);
  color: #34776f;
}

.dark-band .team-engagement-aside {
  gap: 14px;
}

.dark-band .team-pilot-record {
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  padding: 24px 30px;
  border: 1px solid rgba(63, 111, 150, 0.2);
  background: linear-gradient(125deg, #3f6f96 0%, #427f8b 100%);
  box-shadow: 0 16px 34px rgba(63, 111, 150, 0.18);
  backdrop-filter: none;
}

.dark-band .team-pilot-record .eyebrow {
  color: #cdece5;
}

.dark-band .team-pilot-record h3,
.dark-band .team-pilot-record p,
.dark-band .team-pilot-record strong {
  color: #ffffff;
}

.dark-band .team-pilot-record > p:last-child {
  border-left-color: rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.86);
}

.dark-band .team-signup-card {
  padding: 30px;
  border: 0;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.dark-band .team-signup-card .button {
  background: #ffd166;
  border-color: #ffd166;
  color: #172b3a;
  box-shadow: 0 8px 18px rgba(80, 55, 0, 0.14);
}

.dark-band .team-signup-card .button:hover {
  background: #ffe09a;
  border-color: #ffe09a;
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.image-frame-compact {
  max-width: 600px;
  justify-self: center;
  align-self: center;
}

.image-frame-compact img {
  min-height: 0;
  height: auto;
  max-height: 560px;
  object-fit: contain;
}

.tailor-made-system-image {
  display: block;
  border-radius: 24px;
  clip-path: inset(0 round 24px);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px);
  background: #f3f8f7;
  color: var(--ink);
}

.cta-band h2 {
  color: var(--navy);
}

.cta-band p {
  margin-top: 14px;
  color: var(--ink-soft);
}

.page-hero {
  background: var(--hero-gradient);
  color: var(--white);
}

.page-hero .section {
  padding: 92px 0;
}

.page-hero > .section > .eyebrow {
  color: #b9dce8 !important;
}

.waitlist-hero .section {
  min-height: auto;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 70px 0;
}

.waitlist-hero-copy {
  max-width: 760px;
}

.waitlist-hero-copy .eyebrow {
  color: #b9dce8;
}

.technology-hero .section {
  min-height: 490px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  padding: 54px 0;
}

.technology-hero-copy {
  max-width: 650px;
}

.technology-hero-copy .eyebrow {
  color: #b9dce8;
}

.about-hero .section {
  min-height: 500px;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.9fr);
  align-items: center;
  padding: 74px 0;
}

.about-hero-copy {
  max-width: 680px;
}

.about-hero-media {
  min-width: 0;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero .about-hero-media img {
  display: block;
  width: min(100%, 656px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 42px rgba(23, 45, 63, 0.16));
}

.technology-hero-media {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  z-index: 0;
}

.technology-hero-image {
  width: min(720px, 100%);
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: translateY(-32px);
  filter: drop-shadow(0 22px 34px rgba(12, 40, 52, 0.24));
}

.sports-hero .section {
  min-height: 540px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
  padding: 74px 0;
}

.sports-hero-copy {
  max-width: 660px;
}

.sports-hero-copy .eyebrow {
  color: #b9dce8;
}

.sports-hero-media {
  position: absolute;
  top: 0;
  right: calc((100vw - 100%) / -2);
  bottom: 0;
  width: calc(50vw + 2px);
  overflow: hidden;
  z-index: -1;
}

.sports-hero-video,
.sports-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sports-hero-image {
  display: block;
}

html[lang="de"] .about-hero .section,
html[lang="de"] .sports-hero .section {
  min-height: auto;
}

html[lang="de"] .about-hero-media {
  min-height: clamp(280px, 34vw, 430px);
}

html[lang="de"] .about-hero .about-hero-media img {
  width: min(100%, 620px);
  height: auto;
  max-height: 480px;
  object-fit: contain;
}

.content-page {
  max-width: 920px;
}

.content-page > * + * {
  margin-top: 18px;
}

.content-page h2 {
  margin-top: 38px;
  color: var(--navy);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
}

.content-page p,
.content-page li {
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.content-page ul {
  padding-left: 22px;
}

.faq-hero .section {
  min-height: 360px;
  grid-template-columns: minmax(0, 780px);
  align-items: center;
}

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

.faq-list {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--section-line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

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

.faq-item h2 {
  margin: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 750;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-question[aria-expanded="true"] {
  background: var(--green-soft);
}

.faq-question:focus-visible {
  outline: 3px solid rgba(47, 120, 154, 0.26);
  outline-offset: -3px;
}

.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--sky);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer > div {
  padding: 2px 28px 26px;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 14px 0 0;
}

.faq-answer a {
  color: var(--sky);
  font-weight: 700;
}

.waitlist-shell {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 40px);
}

.mattress-steps-section {
  padding-top: clamp(64px, 7vw, 88px);
  padding-bottom: clamp(64px, 7vw, 88px);
}

.mattress-steps-heading {
  max-width: 900px;
  margin-bottom: 40px;
}

.mattress-steps-heading h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
}

html[lang="de"] .mattress-steps-heading h2,
html[lang="en"] .mattress-steps-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.mattress-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mattress-steps::before {
  content: "";
  position: absolute;
  top: 29px;
  left: 9%;
  right: 9%;
  height: 3px;
  background: repeating-linear-gradient(90deg, rgba(63, 111, 150, 0.48) 0 9px, transparent 9px 15px);
}

.mattress-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 58px 1fr;
  justify-items: center;
  min-width: 0;
}

.mattress-step-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 5px solid var(--section-soft);
  border-radius: 999px;
  background: var(--sky);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 10px 22px rgba(47, 120, 154, 0.2);
}

.mattress-step:nth-child(2) .mattress-step-number,
.mattress-step:nth-child(4) .mattress-step-number {
  background: #238e96;
}

.mattress-step:nth-child(3) .mattress-step-number,
.mattress-step:nth-child(5) .mattress-step-number {
  background: #20a78f;
}

.mattress-step-copy {
  width: 100%;
  min-height: 190px;
  padding: 26px 18px 22px;
  border: 1px solid rgba(63, 111, 150, 0.14);
  border-top: 5px solid var(--sky);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mattress-step:nth-child(2) .mattress-step-copy,
.mattress-step:nth-child(4) .mattress-step-copy {
  border-top-color: #238e96;
}

.mattress-step:nth-child(3) .mattress-step-copy,
.mattress-step:nth-child(5) .mattress-step-copy {
  border-top-color: #20a78f;
}

.mattress-step-copy h3 {
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
}

.mattress-step-copy p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .mattress-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mattress-steps::before {
    top: 28px;
    bottom: 28px;
    left: 28px;
    right: auto;
    width: 3px;
    height: auto;
    background: repeating-linear-gradient(180deg, rgba(63, 111, 150, 0.48) 0 9px, transparent 9px 15px);
  }

  .mattress-step {
    grid-template-columns: 58px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 16px;
    align-items: center;
    justify-items: stretch;
    padding-bottom: 18px;
  }

  .mattress-step:last-child {
    padding-bottom: 0;
  }

  .mattress-step-number {
    justify-self: center;
  }

  .mattress-step-copy {
    min-height: 0;
    padding: 20px;
  }
}

@media (max-width: 520px) {
  .mattress-steps-heading {
    margin-bottom: 28px;
  }

  .mattress-step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .mattress-steps::before {
    left: 23px;
  }

  .mattress-step-number {
    width: 48px;
    height: 48px;
    border-width: 4px;
    font-size: 0.76rem;
  }

  .mattress-step-copy {
    padding: 18px;
  }
}

.waitlist-ready-section {
  position: relative;
  scroll-margin-top: 82px;
}

.waitlist-section-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  scroll-margin-top: 82px;
  pointer-events: none;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.waitlist-aside {
  display: grid;
  gap: 20px;
  align-content: start;
}

.waitlist-intro {
  display: grid;
  gap: 16px;
}

.waitlist-intro .eyebrow {
  margin-bottom: 0;
}

.waitlist-benefits {
  display: grid;
  gap: 14px;
}

.waitlist-success-details {
  padding-top: 64px;
  padding-bottom: 24px;
}

.waitlist-success-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.waitlist-success-heading .lead {
  margin-top: 18px;
}

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

@media (max-width: 720px) {
  #referral-program-terms {
    scroll-margin-top: 84px;
  }

  .waitlist-success-details {
    padding-top: 44px;
  }

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

.waitlist-benefit {
  padding: 20px;
  border: 1px solid rgba(16, 45, 74, 0.1);
  border-top: 5px solid #176f78;
  border-radius: calc(var(--radius) - 4px);
  background: #f1f8f7;
  box-shadow: 0 10px 22px rgba(23, 45, 63, 0.08);
}

.waitlist-benefit:nth-child(1) {
  background: #f1f8f7;
}

.waitlist-benefit:nth-child(2) {
  background: #f1f8f7;
}

.waitlist-benefit:nth-child(3) {
  background: #f1f8f7;
}

.waitlist-benefit:nth-child(4) {
  background: #f1f8f7;
}

.waitlist-benefit strong,
.process-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}

.waitlist-benefit p,
.process-item p {
  margin-top: 8px;
  color: var(--ink-soft);
}

.waitlist-benefit strong {
  color: #244f70;
}

.waitlist-benefit p {
  color: var(--ink);
}

.waitlist-benefit a,
.referral-total a {
  color: #176f78;
  font-weight: 700;
}

.waitlist-form-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(92, 133, 158, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.waitlist-switcher {
  display: inline-flex;
  width: fit-content;
  justify-self: start;
  gap: 8px;
  flex-wrap: wrap;
  padding: 7px;
  border: 1px solid rgba(40, 185, 173, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(232, 246, 243, 0.96), rgba(244, 251, 255, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 12px 26px rgba(23, 45, 63, 0.06);
}

.waitlist-switcher button {
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #3d7180;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.waitlist-switcher button:hover {
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy);
}

.waitlist-switcher button.is-active {
  background: linear-gradient(135deg, #28b9ad, #1f8f8b);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(40, 185, 173, 0.26);
  transform: translateY(-1px);
}

.waitlist-note,
.small-note {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.waitlist-form {
  display: grid;
  gap: 18px;
}

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.waitlist-form-card .field > label,
.waitlist-form-card .field-full > label {
  color: #244f70;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-transform: uppercase;
}

.waitlist-form-card .required-marker {
  color: #19988f;
}

.field-full {
  grid-column: 1 / -1;
}

[data-other-size-field][hidden] {
  display: none;
}

.other-size-acknowledgement {
  margin-top: 4px;
  border-color: rgba(40, 169, 158, 0.24);
  background: rgba(159, 208, 194, 0.12);
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 18px;
  border: 1px solid rgba(92, 133, 158, 0.12);
  border-radius: calc(var(--radius) - 4px);
  background: rgba(247, 251, 252, 0.78);
}

.consent-row input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  min-height: 18px;
  width: 18px;
  height: 18px;
  padding: 0;
  border-radius: 3px;
  margin-top: 2px;
  accent-color: #28b9ad;
  flex: 0 0 18px;
}

.consent-row label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
}

label {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
}

.required-marker {
  color: #28b9ad;
  font-weight: 900;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(137, 199, 235, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.waitlist-form-card input:not([type="checkbox"]),
.waitlist-form-card select,
.waitlist-form-card textarea {
  border-color: rgba(63, 111, 150, 0.3);
  background: #f0f7f6;
  color: #155b63;
  caret-color: #28a99e;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 2px rgba(23, 45, 63, 0.06);
}

.waitlist-form-card input:not([type="checkbox"])::placeholder,
.waitlist-form-card textarea::placeholder {
  color: rgba(66, 89, 106, 0.64);
  font-weight: 400;
  letter-spacing: 0;
}

.waitlist-form-card input:-webkit-autofill,
.waitlist-form-card input:-webkit-autofill:hover,
.waitlist-form-card input:-webkit-autofill:focus {
  -webkit-text-fill-color: #155b63;
  transition: background-color 9999s ease-out 0s;
}

.waitlist-form-card input:not([type="checkbox"]):focus,
.waitlist-form-card select:focus,
.waitlist-form-card textarea:focus {
  outline: none;
  border-color: #28b9ad;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(40, 185, 173, 0.16);
}

.waitlist-form-card .waitlist-native-select {
  display: none !important;
}

.waitlist-select-custom {
  position: relative;
  width: 100%;
}

.waitlist-select-toggle {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(63, 111, 150, 0.3);
  border-radius: 14px;
  background: linear-gradient(135deg, #f6fbfa, #eaf4f4);
  color: #155b63;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: left;
  box-shadow: inset 0 1px 2px rgba(23, 45, 63, 0.06);
  cursor: pointer;
}

.waitlist-select-toggle:hover {
  border-color: rgba(40, 185, 173, 0.58);
  background: linear-gradient(135deg, #ffffff, #e7f4f3);
}

.waitlist-select-toggle:focus-visible,
.waitlist-select-toggle[aria-expanded="true"] {
  outline: none;
  border-color: #28b9ad;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(40, 185, 173, 0.16);
}

.waitlist-select-toggle:disabled {
  opacity: 0.56;
  cursor: not-allowed;
}

.waitlist-select-toggle.is-placeholder .waitlist-select-value {
  color: rgba(66, 89, 106, 0.72);
  font-weight: 400;
  letter-spacing: 0;
}

.waitlist-select-arrow {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-right: 2px;
  border-right: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.waitlist-select-toggle[aria-expanded="true"] .waitlist-select-arrow {
  transform: translateY(2px) rotate(225deg);
}

.waitlist-select-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  right: 0;
  z-index: 25;
  max-height: 280px;
  overflow-y: auto;
  padding: 7px;
  border: 1px solid rgba(63, 111, 150, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.99);
  box-shadow: 0 18px 36px rgba(23, 45, 63, 0.18);
  overscroll-behavior: contain;
}

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

.waitlist-select-option {
  width: 100%;
  display: block;
  padding: 10px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.waitlist-select-option:hover,
.waitlist-select-option:focus-visible,
.waitlist-select-option[aria-selected="true"] {
  background: var(--green-soft);
  color: var(--sky);
  outline: none;
}

.waitlist-select-divider {
  height: 1px;
  margin: 7px 5px;
  background: rgba(63, 111, 150, 0.38);
}

.form-panel {
  display: none;
}

.form-panel.is-active {
  display: grid;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-status {
  min-height: 1.4em;
}

.process-panel {
  align-self: stretch;
}

.process-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(92, 133, 158, 0.12);
}

.process-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.process-step {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(94, 164, 207, 0.14), rgba(159, 208, 194, 0.24));
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.contact-panel {
  max-width: 760px;
}

.site-footer {
  border-top: 1px solid rgba(108, 188, 237, 0.14);
  background: #ffffff;
  backdrop-filter: blur(14px);
}

.cookie-settings-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-cookie-separator {
  display: inline-flex;
  align-items: center;
  margin: 0 8px;
  color: rgba(63, 111, 150, 0.42);
  user-select: none;
}

.footer-cookie-group {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
  color: var(--navy-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent[hidden] {
  display: none;
}

body.cookie-consent-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 48, 62, 0.16);
}

.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  max-width: 580px;
  max-height: calc(100dvh - 40px);
  overflow-x: hidden;
  overflow-y: auto;
  display: grid;
  gap: 20px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(37, 109, 112, 0.18);
  border-top: 4px solid #268d87;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 22px 55px rgba(23, 63, 74, 0.2);
}

.cookie-consent-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-consent-close:hover {
  background: var(--green-soft);
}

.cookie-consent-close:focus-visible {
  outline: 3px solid rgba(72, 164, 181, 0.32);
  outline-offset: 2px;
}

.cookie-consent-copy {
  min-width: 0;
  max-width: none;
}

.cookie-consent h2,
html[lang="de"] .cookie-consent h2,
html[lang="en"] .cookie-consent h2 {
  margin: 0;
  padding-right: 34px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  line-height: 1.15;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.cookie-consent h2:focus {
  outline: none;
}

.cookie-consent-copy > p:last-child {
  margin: 10px 0 0;
  color: #314b5f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-consent a {
  color: var(--navy-3);
  font-weight: 700;
  text-underline-offset: 3px;
}

.cookie-consent-actions {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cookie-consent-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding-inline: 16px;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.cookie-consent-actions .button.secondary {
  background: #ffffff;
  border: 2px solid #267c79;
  color: #245f64;
  box-shadow: none;
}

@media (max-width: 820px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-height: calc(100dvh - 24px);
    gap: 18px;
    padding: 20px 18px 18px;
  }

  .cookie-consent h2,
  html[lang="de"] .cookie-consent h2,
  html[lang="en"] .cookie-consent h2 {
    padding-right: 26px;
    font-size: clamp(1rem, 5.2vw, 1.35rem);
    letter-spacing: -0.035em;
  }

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

  .cookie-consent-actions .button {
    width: 100%;
  }
}

.footer-inner {
  padding: 34px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--navy);
  font-weight: 700;
}

.footer-inner > div:first-child {
  order: 2;
  font-size: 0.86rem;
}

.footer-links {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 980px;
  gap: 8px 0;
  font-size: 0.88rem;
  line-height: 1.4;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links > a:not(:last-child):not(:has(+ .footer-break))::after {
  content: "|";
  margin: 0 8px;
  color: rgba(63, 111, 150, 0.42);
}

.footer-break {
  flex-basis: 100%;
  height: 0;
}

.footer-faq-separator {
  color: rgba(63, 111, 150, 0.42);
  user-select: none;
}

@media (max-width: 920px) {
  .engagement-options,
  .team-engagement-aside {
    grid-template-columns: 1fr;
  }

  .dark-band .engagement-option-pilot::after {
    content: "↓";
    top: auto;
    right: 50%;
    bottom: -36px;
    transform: translateX(50%);
  }

  .dark-band .engagement-options {
    gap: 56px;
  }

  .hero-shell,
  .split,
  .split.reverse,
  .stats-grid,
  .cards-grid,
  .referral-grid,
  .audience-grid,
  .story-grid,
  .contact-grid,
  .team-proof-grid,
  .waitlist-layout,
  .form-grid,
  .cta-band,
  .about-hero .section,
  .technology-hero .section,
  .sports-hero .section {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
  }

  .hero-shell > .hero-visual {
    display: none;
  }

  .hero-mobile-visual {
    display: block;
    position: relative;
    z-index: 3;
    width: 100vw;
    margin-top: 24px;
    margin-left: calc(50% - 50vw);
    overflow: visible;
  }

  .hero-mobile-visual img,
  .hero-mobile-visual video {
    display: block;
    position: relative;
    left: 50%;
    width: 135%;
    max-width: none;
    height: auto;
    margin: 0;
    object-position: center;
    transform: translate(calc(-50% - 2vw), -180px);
  }

  .hero-copy > .lead {
    margin-top: -208px;
  }

  .technology-hero .section {
    min-height: auto;
  }

  .about-hero .section {
    min-height: auto;
  }

  .sports-hero .section {
    min-height: auto;
  }

  .technology-hero-copy {
    max-width: none;
  }

  .sports-hero-copy {
    max-width: none;
  }

  .about-hero-media {
    min-height: 280px;
    justify-content: flex-start;
  }

  .home-difference-visual {
    order: 2;
  }

  .about-hero .about-hero-media img {
    width: min(368px, 100%);
    max-width: 100%;
  }

  .technology-hero-media {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 280px;
    z-index: 0;
  }

  .technology-hero-image {
    width: min(720px, 100%);
    min-height: 0;
    max-height: none;
  }

  .sports-hero-media {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 320px;
    z-index: 0;
  }

  .sports-hero-video,
  .sports-hero-image {
    min-height: 320px;
  }

  .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 360px;
    z-index: 0;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, rgba(93, 127, 151, 0.16), rgba(93, 127, 151, 0));
  }

  .home-hero-image {
    border-radius: 22px;
  }

  .floating-panel {
    position: static;
    width: auto;
    margin-top: 16px;
  }

  .performance-cycle {
    min-height: auto;
    display: grid;
    gap: 18px;
    place-items: center;
  }

  .cycle-card {
    position: static;
    width: min(420px, 100%);
    min-height: auto;
    aspect-ratio: auto;
    align-content: center;
    transform: none;
    padding: 30px;
    border-radius: 24px;
  }

  .cycle-card h3,
  .cycle-card p {
    width: 100%;
    max-width: none;
  }

  .cycle-card h3 {
    white-space: normal;
  }

  .cycle-card-left p,
  .cycle-card-right p {
    min-height: 0;
  }

  .cycle-card-left .cycle-icon,
  .cycle-card-left h3,
  .cycle-card-left p,
  .cycle-card-right .cycle-icon,
  .cycle-card-right h3,
  .cycle-card-right p {
    transform: none;
  }

  .cycle-center {
    position: static;
    width: min(420px, 100%);
    min-height: auto;
    aspect-ratio: auto;
    padding: 26px;
    border-radius: 24px;
    transform: none;
  }

  .cycle-center strong {
    max-width: none;
  }

  .about-roadmap {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 18px;
    margin-top: 22px;
    padding: 0;
  }

  .about-roadmap::before,
  .about-roadmap::after {
    display: none;
  }

  .roadmap-item {
    min-height: auto;
    padding: 26px 26px 26px 78px;
    transform: none;
  }

  .roadmap-item::before {
    left: 39px;
    top: 0;
    bottom: -18px;
    width: 2px;
    height: auto;
    background: var(--roadmap-color);
    opacity: 0.34;
  }

  .roadmap-item::after {
    display: none;
  }

  .roadmap-item:last-child::before {
    display: none;
  }

  .roadmap-item.roadmap-step-7::before {
    display: block;
    top: -18px;
    right: auto;
    bottom: auto;
    width: 2px;
    height: 96px;
    border-radius: 0;
    background: repeating-linear-gradient(180deg, var(--roadmap-color) 0 7px, transparent 7px 12px);
    opacity: 1;
    box-shadow: none;
    clip-path: none;
  }

  .roadmap-year {
    position: static;
    width: auto;
    height: 38px;
    min-width: 74px;
    margin-bottom: 14px;
    padding: 0 14px;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    transform: none;
  }

  .roadmap-dot {
    position: absolute;
    left: 30px;
    top: 32px;
    margin: 0;
  }

  .roadmap-year,
  .roadmap-item h3,
  .roadmap-item p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  :root {
    --radius: 14px;
  }

  body {
    overflow-x: hidden;
    font-size: 0.96rem;
  }

  .nav {
    min-height: 59px;
  }

  .logo img {
    width: 65px;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 59px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 12px;
    border-radius: 10px;
  }

  .nav-links a:not(.button) + a:not(.button) {
    border-top: 1px solid rgba(92, 133, 158, 0.1);
  }

  .nav-links .button {
    width: 100%;
    margin-top: 6px;
  }

  .language-control {
    width: auto;
    padding: 0;
  }

  .language-control::after {
    content: none;
  }

  .language-selector {
    display: none;
  }

  .nav > .language-control {
    margin-left: auto;
    margin-right: -14px;
  }

  .language-custom {
    position: relative;
    display: block;
  }

  .language-custom-toggle {
    min-width: 70px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px;
    border: 1px solid rgba(63, 111, 150, 0.3);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 245, 247, 0.96));
    color: var(--navy);
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.04em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 2px 8px rgba(8, 44, 77, 0.05);
    cursor: pointer;
  }

  .language-custom-toggle:focus-visible {
    outline: 3px solid rgba(72, 164, 181, 0.28);
    outline-offset: 3px;
  }

  .language-custom-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 160ms ease;
  }

  .language-custom-toggle[aria-expanded="true"] .language-custom-arrow {
    transform: translateY(2px) rotate(225deg);
  }

  .language-custom-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 30;
    min-width: 112px;
    overflow: hidden;
    padding: 6px;
    border: 1px solid rgba(63, 111, 150, 0.22);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(23, 45, 63, 0.18);
  }

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

  .language-custom-option {
    width: 100%;
    display: block;
    padding: 10px 14px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--navy);
    font: inherit;
    font-weight: 750;
    text-align: left;
    cursor: pointer;
  }

  .language-custom-option:hover,
  .language-custom-option:focus-visible,
  .language-custom-option[aria-selected="true"] {
    background: var(--green-soft);
    color: var(--sky);
    outline: none;
  }

  .hero-shell,
  .page-hero .section,
  main > section.section,
  main > section.section.tight {
    padding: 52px 20px;
  }

  .hero .hero-shell {
    padding-bottom: 0;
  }

  main > .page-hero + .section.tight {
    padding-top: 24px;
  }

  .dark-band > .section {
    padding: 52px 0;
  }

  .hero-shell,
  .page-hero .section {
    gap: 28px;
  }

  .waitlist-hero .section {
    grid-template-columns: 1fr;
    padding-bottom: 36px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  h1 {
    font-size: clamp(2.05rem, 10vw, 2.9rem);
    line-height: 1.05;
  }

  h2,
  .referral-section .section-head h2 {
    font-size: clamp(1.65rem, 7.5vw, 2.25rem);
    line-height: 1.08;
  }

  h3,
  .story-card h2.story-card-heading {
    font-size: clamp(1.05rem, 4.5vw, 1.3rem);
  }

  .lead,
  .hero-copy .lead,
  .page-hero p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .hero-actions,
  .button-row,
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .button-row .button,
  .form-actions .button,
  .cta-band .button {
    width: 100%;
  }

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

  .hero .hero-actions {
    position: relative;
    z-index: 3;
    margin-bottom: 0;
  }

  .cards-grid,
  .audience-grid,
  .story-grid,
  .contact-grid,
  .waitlist-grid,
  .team-proof-grid,
  .referral-grid {
    gap: 16px;
  }

  .team-signup-card {
    align-items: stretch;
    flex-direction: column;
  }

  .team-engagement-panel {
    gap: 26px;
  }

  .dark-band .team-engagement-panel {
    padding: 0;
    border-radius: 0;
  }

  .dark-band .team-pilot-record {
    display: block;
    padding: 24px;
  }

  .dark-band .team-pilot-record > p:last-child {
    margin-top: 14px;
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid rgba(63, 111, 150, 0.18);
    border-left: 0;
  }

  .dark-band .engagement-option-card {
    padding: 26px 24px 26px 28px;
  }

  .team-signup-card .button {
    width: 100%;
  }

  .technology-hero .section,
  .sports-hero .section {
    gap: 28px;
  }

  .technology-hero .section {
    padding-bottom: 28px;
  }

  .sports-hero .section {
    padding-bottom: 0;
  }

  .technology-hero-media,
  .sports-hero-media,
  .sports-hero-video,
  .sports-hero-image {
    min-height: 240px;
  }

  .technology-hero-media {
    min-height: 160px;
  }

  .technology-hero-image {
    width: 100%;
    transform: translateY(-18px);
  }

  .sports-hero-media,
  .hero-visual {
    border-radius: 0;
  }

  .sports-hero-media {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    aspect-ratio: 16 / 7.2;
  }

  .sports-hero-video,
  .sports-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    min-height: 0;
  }

  .hero-visual {
    width: 100vw;
    height: clamp(360px, 76vw, 560px);
    min-height: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
  }

  .home-hero-image {
    border-radius: 0;
  }

  .stat-card,
  .feature-card,
  .audience-card,
  .story-card,
  .contact-card,
  .proof-card,
  .waitlist-shell,
  .info-panel {
    padding: 24px;
    border-radius: 16px;
  }

  .contact-card a,
  .content-page,
  .waitlist-form-card,
  .cta-band {
    overflow-wrap: anywhere;
  }

  .cta-band {
    gap: 22px;
    padding: 28px 24px;
  }

  .image-frame {
    border-radius: 18px;
  }

  .image-frame img {
    min-height: 280px;
  }

  .image-frame-compact {
    max-width: 100%;
  }

  .image-frame-compact img {
    max-height: none;
  }

  .tailor-made-system-image {
    border-radius: 18px;
    clip-path: inset(0 round 18px);
  }

  .technology-spine-cutout {
    width: min(260px, 82vw);
    max-height: 420px;
  }

  .performance-cycle {
    gap: 26px;
    justify-items: center;
    align-items: start;
    width: 100%;
  }

  .cycle-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 360px);
    max-width: 360px;
    margin-inline: auto;
    justify-items: center;
    justify-self: center;
    text-align: left;
    transform: none;
  }

  .cycle-card-top {
    order: 1;
    margin-bottom: 24px;
  }

  .cycle-card-right {
    order: 2;
    margin-bottom: 24px;
  }

  .cycle-card-left {
    order: 3;
  }

  .cycle-card-top::after,
  .cycle-card-right::after {
    position: absolute;
    left: 50%;
    bottom: -43px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 22px rgba(23, 45, 63, 0.12);
    transform: translateX(-50%);
  }

  .cycle-card-top::after {
    content: "=";
  }

  .cycle-card-right::after {
    content: "+";
  }

  .cycle-center {
    display: none;
  }

  .referral-section {
    padding-top: 52px;
  }

  .referral-card {
    min-height: auto;
    padding: 24px;
  }

  .referral-total {
    padding: 24px;
  }

  .waitlist-shell {
    padding: 24px;
  }

  .waitlist-layout {
    display: grid;
    gap: 24px;
  }

  .waitlist-aside {
    display: contents;
  }

  .waitlist-intro {
    order: 1;
  }

  .waitlist-form-card {
    order: 2;
  }

  .waitlist-benefits {
    order: 3;
  }

  .waitlist-switcher {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 18px;
  }

  .waitlist-switcher button {
    width: 100%;
    min-height: 48px;
  }

  .consent-row {
    grid-template-columns: 20px 1fr;
    padding: 16px;
  }

  .consent-row input[type="checkbox"] {
    min-height: 18px;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 3px;
    margin-top: 0;
  }

  input,
  select,
  textarea {
    min-height: 48px;
    font-size: 16px;
  }

  textarea {
    min-height: 118px;
  }

  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .process-step {
    width: 44px;
    height: 44px;
  }

  .roadmap-item {
    padding: 24px 20px 24px 64px;
  }

  .roadmap-item::before {
    left: 29px;
  }

  .roadmap-year {
    min-width: 66px;
  }

  .roadmap-head .lead {
    margin-top: 16px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 28px 0 8px;
  }

  .footer-inner > div:first-child {
    order: 2;
    align-self: center;
    font-size: 0.78rem;
  }

  .footer-links {
    order: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: min(100%, 370px);
    gap: 6px 0;
    margin-inline: auto;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .footer-links a {
    display: inline-flex;
    align-items: center;
    padding: 0;
    white-space: nowrap;
  }

  .footer-links > a:not(:last-child):not(:has(+ .footer-break))::after {
    content: "|";
    margin: 0 4px;
    color: rgba(63, 111, 150, 0.42);
  }
}

@media (max-width: 480px) {
  .home-hero-title {
    font-size: clamp(1.45rem, 7.6vw, 2.15rem);
  }

  .nav,
  .section,
  .footer-inner {
    width: min(100% - 24px, 1200px);
  }

  body {
    font-size: 0.94rem;
  }

  .nav-links {
    left: 12px;
    right: 12px;
  }

  .faq-question {
    gap: 16px;
    padding: 20px;
    font-size: 1rem;
  }

  .faq-answer > div {
    padding: 0 20px 22px;
  }

  .hero-shell,
  .page-hero .section,
  main > section.section,
  main > section.section.tight {
    padding: 44px 14px;
  }

  .hero .hero-shell {
    padding-bottom: 0;
  }

  main > .page-hero + .section.tight {
    padding-top: 18px;
  }

  .dark-band > .section {
    padding: 44px 0;
  }

  .page-hero .section {
    gap: 22px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero .hero-actions {
    margin-bottom: 0;
  }

  .hero-chips {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .technology-hero-media,
  .sports-hero-media,
  .hero-visual {
    min-height: 210px;
  }

  .technology-hero-media {
    min-height: 180px;
  }

  .technology-hero .section {
    padding-bottom: 18px;
  }

  .hero-visual {
    height: 330px;
    min-height: 0;
  }

  .sports-hero-media {
    width: 100vw;
    min-height: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    aspect-ratio: 16 / 7.2;
  }

  .about-hero-media {
    min-height: 210px;
  }

  .about-hero .about-hero-media img {
    width: 100%;
  }

  .stat-card,
  .feature-card,
  .audience-card,
  .story-card,
  .contact-card,
  .proof-card,
  .waitlist-shell,
  .info-panel,
  .referral-card,
  .referral-total {
    padding: 22px;
  }

  .button,
  button.button {
    min-height: 48px;
    padding: 0 18px;
  }

  .cta-band {
    padding: 24px 20px;
  }

  .waitlist-shell {
    padding: 20px;
  }

  .waitlist-form-card {
    padding: 20px;
  }

  .footer-links {
    width: min(100%, 370px);
    gap: 6px 0;
    font-size: 0.66rem;
  }

  .footer-links a {
    padding: 0;
  }

  .footer-inner {
    padding-bottom: 4px;
  }
}

@media (max-width: 920px) {
  .hero .hero-shell {
    padding-bottom: 48px;
  }

  .hero-copy,
  .hero-copy > .lead,
  .hero-copy > .hero-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy > .lead {
    overflow-wrap: anywhere;
  }

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

@media (max-width: 820px) {
  .sports-hero .section {
    padding-bottom: 0;
  }
}
