@font-face {
  font-family: "Inter";
  src: url("fonts/Inter.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #06282c;
  --ink-deep: #041e21;
  --ink-raised: #103a3f;
  --surface: #f3f7f5;
  --surface-alt: #e5eeeb;
  --text: #f7fbfa;
  --text-dark: #12282a;
  --muted: #9db3b4;
  --muted-dark: #5d7374;
  --cyan: #2cc4d5;
  --green: #35c86f;
  --amber: #ffad24;
  --coral: #ff8e45;
  --line: rgba(197, 228, 228, 0.22);
  --shell: min(1180px, calc(100% - 48px));
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink-deep);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #fff;
  color: #071f22;
  transform: translateY(-150%);
}

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

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(24px, calc((100% - 1180px) / 2));
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 30, 33, 0.94);
  border-bottom-color: rgba(197, 228, 228, 0.16);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  line-height: 1;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
  font-weight: 650;
}

.site-nav > a:not(.nav-cta) {
  color: #bdd0d0;
  transition: color 160ms ease;
}

.site-nav > a:not(.nav-cta):hover,
.site-nav > a:not(.nav-cta):focus-visible {
  color: #fff;
}

.nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(44, 196, 213, 0.72);
  border-radius: 6px;
  color: var(--cyan);
}

.language-picker {
  display: flex;
  align-items: center;
}

.language-picker select {
  min-width: 128px;
  height: 38px;
  padding: 0 8px;
  border: 1px solid rgba(197, 228, 228, 0.25);
  border-radius: 6px;
  background: #0b3438;
  color: #d9e7e7;
  font: inherit;
  cursor: pointer;
}

.language-picker select:hover,
.language-picker select:focus-visible {
  border-color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  background: #fff;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  --hero-panel-height: clamp(600px, calc(100svh - 88px), 720px);
  --hero-scroll-distance: min(30svh, 280px);
  position: relative;
  min-height: calc(600px + var(--hero-scroll-distance));
  height: calc(var(--hero-panel-height) + var(--hero-scroll-distance));
  max-height: none;
  overflow: clip;
  isolation: isolate;
  background: var(--ink);
  border-bottom: 1px solid rgba(44, 196, 213, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  top: 17%;
  bottom: 17%;
  left: 62%;
  border-left: 1px solid rgba(44, 196, 213, 0.14);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -2;
  top: 50%;
  right: 0;
  width: 38%;
  border-top: 1px solid rgba(197, 228, 228, 0.08);
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: max(5%, calc((100% - 1180px) / 2));
  width: clamp(280px, 27vw, 400px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.96;
  transform: translateY(-45%);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
}

.hero-product-stage {
  position: sticky;
  z-index: 0;
  top: 0;
  width: 100%;
  height: var(--hero-panel-height);
  overflow: hidden;
}

.product-turntable {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: var(--product-stage-left, 67%);
  width: min(35vw, 500px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%) translateY(var(--product-stage-shift, 0px)) scale(var(--product-stage-scale, 1));
  transform-origin: center;
  touch-action: none;
  cursor: grab;
  outline: none;
  user-select: none;
}

.product-turntable.is-dragging {
  cursor: grabbing;
}

.product-turntable:focus-visible {
  outline: none;
}

.product-turntable:focus-visible .product-turntable-badge {
  border-color: rgba(223, 250, 250, 0.92);
  box-shadow: 0 0 0 3px rgba(85, 226, 235, 0.18), 0 12px 28px rgba(0, 0, 0, 0.22);
}

.product-model-stack {
  position: absolute;
  inset: 0;
  filter: drop-shadow(0 34px 42px rgba(0, 0, 0, 0.34));
}

.product-live-canvas {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.product-turntable.is-live-3d .product-live-canvas {
  opacity: 1;
}

.product-turntable.is-live-3d .hero-product-render {
  opacity: 0;
}

.hero-product-render {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  will-change: transform;
}

.product-shaft-layer {
  z-index: 0;
  transform: translate3d(0, var(--product-shaft-drop, 0px), 0);
}

.product-turntable[data-tilt-index="0"]:not(.is-separated) .product-shaft-layer,
.product-turntable[data-tilt-index="1"]:not(.is-separated) .product-shaft-layer {
  z-index: 4;
}

.product-base-layer {
  z-index: 1;
  transform: translate3d(0, var(--product-base-drop, 0px), 0);
}

.product-body-layer {
  z-index: 2;
  transform: translate3d(0, var(--product-body-lift, 0px), 0);
}

.product-port-cap-layer {
  z-index: 3;
  transform-origin:
    var(--product-port-cap-origin-x, 50%)
    var(--product-port-cap-origin-y, 50%);
  transform: translate3d(
    var(--product-port-cap-shift-x, 0px),
    var(--product-port-cap-shift-y, 0px),
    0
  ) rotate(var(--product-port-cap-angle, 0deg));
}

.product-turntable-badge {
  position: absolute;
  top: 7%;
  right: 3%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(85, 226, 235, 0.38);
  border-radius: 50%;
  background: rgba(5, 34, 38, 0.78);
  color: #dffafa;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.product-turntable-badge svg {
  width: 19px;
  height: 19px;
  color: var(--cyan);
}

.product-turntable-badge b {
  position: absolute;
  right: -7px;
  bottom: -4px;
  font-size: 0.62rem;
  letter-spacing: 0;
}

.product-dimensions {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  opacity: var(--product-detail-opacity, 1);
  will-change: opacity;
}

.product-dimension {
  position: absolute;
  min-width: 132px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #d7e7e6;
  text-align: right;
}

.product-dimension::before {
  content: "";
  width: 76px;
  margin-bottom: 8px;
  border-top: 1px solid rgba(85, 226, 235, 0.6);
}

.product-dimension span {
  color: #75a4a6;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-dimension strong {
  margin-top: 1px;
  color: #f6fbfa;
  font-size: 1.16rem;
  line-height: 1.2;
}

.product-dimension-length {
  top: 19%;
  right: max(7%, calc((100% - 1260px) / 2));
}

.product-dimension-width {
  top: 49%;
  right: 3.5%;
}

.product-dimension-height {
  right: max(9%, calc((100% - 1180px) / 2));
  bottom: 15%;
}

.product-dimension-height::before {
  border-color: rgba(255, 142, 69, 0.68);
}

.product-measure-note {
  position: absolute;
  z-index: 2;
  right: max(4%, calc((100% - 1180px) / 2));
  bottom: 5%;
  margin: 0;
  color: rgba(197, 220, 220, 0.54);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: var(--product-detail-opacity, 1);
  will-change: opacity;
}

.product-base-measure {
  position: absolute;
  z-index: 2;
  right: max(4%, calc((100% - 1180px) / 2));
  bottom: 2.4%;
  margin: 0;
  color: rgba(93, 221, 228, 0.72);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: var(--product-detail-opacity, 1);
  will-change: opacity;
}

.hero-inner {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: var(--shell);
  height: var(--hero-panel-height);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: calc(var(--header-height) + 32px) 0 34px;
  pointer-events: none;
  transform: translateX(-50%);
  opacity: var(--hero-content-opacity, 1);
  will-change: opacity;
}

.hero-inner > * {
  pointer-events: auto;
}

.hero.is-product-focused .hero-inner > * {
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #d1dfdf;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(53, 200, 111, 0.13);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 6.8rem);
  line-height: 0.96;
  font-weight: 850;
  white-space: nowrap;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: #d3e0df;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.45;
}

.hero-hardware-line {
  max-width: 540px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 17px 0 0;
  color: #aac4c4;
  font-size: 0.77rem;
}

.hero-hardware-line span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid rgba(44, 196, 213, 0.42);
  color: var(--cyan);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.hero-hardware-line b {
  font-weight: 600;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 780;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button svg,
.text-link svg,
.feature-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.button-primary {
  background: var(--cyan);
  color: #062b2f;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #4dd4e3;
}

.button-secondary {
  border: 1px solid rgba(218, 238, 237, 0.4);
  background: rgba(6, 40, 44, 0.5);
  color: #f7fbfa;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #fff;
  background: rgba(6, 40, 44, 0.78);
}

.store-note {
  margin: 15px 0 0;
  color: #9bb1b2;
  font-size: 0.82rem;
}

.sport-strip {
  background: #0d373b;
  border-bottom: 1px solid var(--line);
}

.sport-strip-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.sport-strip p {
  margin: 0;
  color: #8ca5a6;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sport-strip p:last-child {
  text-align: right;
}

.sport-strip ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sport-strip li {
  padding: 0 30px;
  border-right: 1px solid var(--line);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 780;
}

.sport-strip li:first-child {
  border-left: 1px solid var(--line);
}

.section {
  padding: 112px 0;
}

.section-intro {
  background: var(--surface);
  color: var(--text-dark);
}

.intro-grid,
.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 10vw;
  align-items: start;
}

.section h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: 1.04;
  font-weight: 820;
}

.intro-copy {
  padding-top: 34px;
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.modes-section {
  background: var(--ink);
}

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

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

.mode-row {
  display: grid;
  grid-template-columns: 72px minmax(220px, 0.75fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 190px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.mode-row-pro {
  color: #fff;
}

.mode-index {
  color: #6f8d8e;
  font-size: 0.8rem;
  font-weight: 800;
}

.mode-title {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  column-gap: 14px;
}

.mode-title svg {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  color: var(--cyan);
}

.mode-row-pro .mode-title svg,
.mode-row-pro .mode-title span {
  color: var(--coral);
}

.mode-title h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.1;
}

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

.mode-row > p {
  max-width: 620px;
  margin: 0;
  color: #a9bebe;
}

.app-section {
  background: var(--surface-alt);
  color: var(--text-dark);
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr);
  gap: 9vw;
  align-items: center;
}

.app-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted-dark);
  font-size: 1.06rem;
}

.metric-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 44px 0;
  border-top: 1px solid rgba(18, 40, 42, 0.2);
  border-bottom: 1px solid rgba(18, 40, 42, 0.2);
}

.metric-line div {
  padding: 22px 18px 22px 0;
  border-right: 1px solid rgba(18, 40, 42, 0.2);
}

.metric-line div:not(:first-child) {
  padding-left: 22px;
}

.metric-line div:last-child {
  border-right: 0;
}

.metric-line strong,
.metric-line span {
  display: block;
}

.metric-line strong {
  color: #0d575e;
  font-size: 2.2rem;
  line-height: 1;
}

.metric-line span {
  margin-top: 8px;
  color: var(--muted-dark);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #29484a;
  font-weight: 670;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list svg {
  color: #0d8e9a;
}

.device-stage {
  position: relative;
  margin: 0;
  padding: 0 42px;
  text-align: center;
}

.device-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 8%;
  right: -60%;
  width: 165%;
  height: 70%;
  border: 1px solid rgba(13, 142, 154, 0.28);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.device-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 365px);
  margin-inline: auto;
  padding: 10px;
  border: 1px solid rgba(10, 42, 45, 0.36);
  border-radius: 46px;
  background: #061f22;
  box-shadow: 0 34px 70px rgba(9, 45, 49, 0.25);
}

.device-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 36px;
  object-fit: contain;
}

.device-stage figcaption {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  color: #617677;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.share-section {
  padding-block: 72px;
  background: #071f22;
  border-top: 1px solid rgba(197, 228, 228, 0.10);
  border-bottom: 1px solid rgba(197, 228, 228, 0.10);
}

.share-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.share-heading {
  align-self: center;
}

.share-heading h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(2.7rem, 3.8vw, 4rem);
  line-height: 0.98;
}

.share-heading > p:last-child {
  max-width: 470px;
  margin: 26px 0 0;
  color: #abc0c1;
  font-size: 1.05rem;
  line-height: 1.7;
}

.share-carousel {
  width: min(100%, 270px);
  justify-self: center;
}

.share-carousel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  margin-bottom: 14px;
}

.share-current-caption {
  display: flex;
  align-items: center;
  gap: 9px;
}

.share-current-caption > span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(44, 196, 213, 0.12);
}

.share-carousel.is-pro .share-current-caption > span {
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 154, 77, 0.12);
}

.share-current-caption strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.25;
}

.share-carousel-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
}

.share-arrow {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(197, 228, 228, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.share-arrow:hover,
.share-arrow:focus-visible {
  border-color: var(--cyan);
  background: rgba(44, 196, 213, 0.12);
  outline: none;
}

.share-arrow svg {
  width: 19px;
  height: 19px;
}

.share-counter {
  min-width: 37px;
  color: #789395;
  font-size: 0.72rem;
  text-align: center;
}

.share-counter strong {
  color: #d9e7e7;
}

.share-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.share-track {
  display: flex;
  transition: transform 300ms ease;
}

.share-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  margin: 0;
}

.share-slide img {
  width: min(100%, 240px);
  height: auto;
  display: block;
  border: 1px solid rgba(197, 228, 228, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.25);
}

.share-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.share-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(197, 228, 228, 0.26);
  cursor: pointer;
}

.share-dots button[aria-current="true"] {
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(44, 196, 213, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .share-track {
    transition: none;
  }
}

.flow-section {
  background: #0d373b;
}

.flow-heading {
  max-width: 860px;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  position: relative;
  min-height: 310px;
  padding: 28px 26px 26px 0;
  border-right: 1px solid var(--line);
}

.flow-list li:not(:first-child) {
  padding-left: 26px;
}

.flow-list li:last-child {
  border-right: 0;
}

.flow-list li > span {
  color: #708c8d;
  font-size: 0.75rem;
  font-weight: 800;
}

.flow-list svg {
  display: block;
  width: 34px;
  height: 34px;
  margin: 70px 0 22px;
  color: var(--cyan);
}

.flow-list li:nth-child(2) svg { color: var(--green); }
.flow-list li:nth-child(3) svg { color: var(--coral); }
.flow-list li:nth-child(4) svg { color: var(--amber); }

.flow-list h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.flow-list p {
  margin: 0;
  color: #9db2b2;
  font-size: 0.92rem;
}

.clubs-section {
  background: #f7f9f6;
  color: var(--text-dark);
}

.clubs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 9vw;
  align-items: start;
}

.clubs-copy {
  position: sticky;
  top: calc(var(--header-height) + 40px);
}

.clubs-copy > p:not(.section-kicker) {
  margin: 28px 0 24px;
  color: var(--muted-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #0b7b85;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.club-capabilities {
  border-top: 1px solid rgba(18, 40, 42, 0.2);
}

.club-capabilities > div {
  display: grid;
  grid-template-columns: 48px 0.65fr 1fr;
  gap: 18px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid rgba(18, 40, 42, 0.2);
}

.club-capabilities svg {
  width: 28px;
  height: 28px;
  color: #0d8e9a;
}

.club-capabilities h3,
.club-capabilities p {
  margin: 0;
}

.club-capabilities h3 {
  font-size: 1.15rem;
}

.club-capabilities p {
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.trust-section {
  background: #173e42;
}

.trust-grid > div:last-child {
  padding-top: 30px;
}

.trust-grid p:not(.section-kicker) {
  margin: 0 0 22px;
  color: #afc2c2;
}

.faq-section {
  background: var(--surface);
  color: var(--text-dark);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 10vw;
  align-items: start;
}

.faq-list {
  border-top: 1px solid rgba(18, 40, 42, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(18, 40, 42, 0.2);
}

.faq-list summary {
  position: relative;
  padding: 24px 46px 24px 0;
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 2px;
  background: #0d7d87;
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list p {
  margin: -6px 0 24px;
  padding-right: 46px;
  color: var(--muted-dark);
}

.contact-section {
  padding: 88px 0;
  background: var(--cyan);
  color: #05282b;
}

.contact-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.contact-section .section-kicker {
  color: #0a5961;
}

.button-light {
  flex: 0 0 auto;
  background: #f7fbfa;
  color: #082f33;
}

.site-footer {
  padding: 52px 0;
  background: #041b1e;
  color: #a2b7b7;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  margin-top: 3px;
  font-size: 0.76rem;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  font-size: 0.82rem;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.site-footer > p,
.footer-inner > p {
  margin: 0;
  font-size: 0.78rem;
}

.error-page {
  width: min(620px, calc(100% - 36px));
  min-height: 100svh;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}

.error-page img {
  margin-bottom: 34px;
  border-radius: 50%;
}

.error-page h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.7rem, 8vw, 5.2rem);
  line-height: 1;
}

.error-page > p:not(.section-kicker) {
  margin: 22px 0 30px;
  color: var(--muted);
}

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

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .site-header {
    padding-inline: 18px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px 22px;
    background: rgba(4, 30, 33, 0.98);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(197, 228, 228, 0.12);
  }

  .site-nav .nav-cta {
    margin-top: 10px;
    padding: 12px 14px;
    text-align: center;
  }

  .language-picker {
    margin-top: 12px;
  }

  .language-picker select {
    width: 100%;
    height: 44px;
  }

  .hero {
    --hero-panel-height: clamp(720px, 90svh, 820px);
    --hero-scroll-distance: min(28svh, 240px);
    min-height: calc(720px + var(--hero-scroll-distance));
    height: calc(var(--hero-panel-height) + var(--hero-scroll-distance));
    max-height: none;
  }

  .hero-logo {
    top: 20%;
    right: -105px;
    width: clamp(220px, 56vw, 300px);
    opacity: 0.26;
    transform: none;
  }

  .product-turntable {
    top: 44px;
    left: var(--product-stage-left, 50%);
    width: 320px;
    transform: translateX(-50%) translateY(var(--product-stage-shift, 0px)) scale(var(--product-stage-scale, 1));
  }

  .product-dimensions {
    top: 320px;
    right: 24px;
    bottom: auto;
    left: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .product-dimension,
  .product-dimension-length,
  .product-dimension-width,
  .product-dimension-height {
    position: static;
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .product-dimension::before {
    width: 38px;
    margin-bottom: 5px;
  }

  .product-measure-note {
    top: 376px;
    right: 24px;
    bottom: auto;
    left: 24px;
    text-align: center;
  }

  .product-base-measure {
    top: 393px;
    right: 24px;
    bottom: auto;
    left: 24px;
    text-align: center;
  }

  .hero-inner {
    justify-content: flex-start;
    padding-top: 410px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: 4.2rem;
    white-space: normal;
  }

  .hero-hardware-line {
    max-width: 100%;
  }

  .sport-strip-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .sport-strip p,
  .sport-strip p:last-child {
    text-align: center;
  }

  .sport-strip ul {
    justify-content: center;
  }

  .sport-strip li {
    padding: 0 20px;
  }

  .section {
    padding: 84px 0;
  }

  .intro-grid,
  .app-grid,
  .share-layout,
  .clubs-grid,
  .trust-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .intro-copy,
  .trust-grid > div:last-child {
    padding-top: 0;
  }

  .mode-row {
    grid-template-columns: 42px 1fr;
    gap: 18px;
  }

  .mode-row > p {
    grid-column: 2;
  }

  .device-stage {
    order: -1;
    max-width: 480px;
    margin-inline: auto;
  }

  .share-heading {
    position: static;
  }

  .share-heading h2,
  .share-heading > p:last-child {
    max-width: 680px;
  }

  .share-carousel {
    max-width: 270px;
    margin-inline: auto;
  }

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

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

  .flow-list li:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .clubs-copy {
    position: static;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 32px);
    --header-height: 70px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 0.94rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }

  .store-note {
    margin-top: 6px;
    font-size: 0.75rem;
    line-height: 1;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-block: 11px;
  }

  .hero {
    --hero-panel-height: clamp(760px, calc(100svh - 30px), 820px);
    --hero-scroll-distance: min(28svh, 220px);
    min-height: calc(760px + var(--hero-scroll-distance));
    height: calc(var(--hero-panel-height) + var(--hero-scroll-distance));
    max-height: none;
  }

  .product-dimensions {
    top: 285px;
    right: 16px;
    left: 16px;
    gap: 4px;
  }

  .product-dimension span {
    font-size: 0.55rem;
    letter-spacing: 0.1em;
  }

  .product-dimension strong {
    font-size: 0.98rem;
  }

  .product-turntable {
    top: 48px;
    width: 290px;
  }

  .product-measure-note {
    top: 338px;
    right: 16px;
    left: 16px;
    font-size: 0.49rem;
    letter-spacing: 0.045em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .product-base-measure {
    top: 356px;
    right: 16px;
    left: 16px;
    font-size: 0.55rem;
  }

  .hero-hardware-line {
    align-items: flex-start;
    gap: 9px;
    font-size: 0.67rem;
    line-height: 1.35;
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero-inner {
    padding-top: 370px;
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .sport-strip li {
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .sport-strip-inner {
    padding-top: 12px;
  }

  .section h2,
  .contact-section h2 {
    font-size: clamp(2.1rem, 11vw, 3.5rem);
  }

  .mode-row {
    grid-template-columns: 1fr;
  }

  .mode-index {
    display: none;
  }

  .mode-row > p {
    grid-column: 1;
    padding-left: 62px;
  }

  .metric-line {
    grid-template-columns: 1fr 1fr;
  }

  .metric-line div:nth-child(2) {
    border-right: 0;
  }

  .metric-line div:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    border-top: 1px solid rgba(18, 40, 42, 0.2);
  }

  .device-stage {
    padding-inline: 18px;
  }

  .device-frame {
    max-width: 300px;
    border-radius: 39px;
  }

  .device-frame img {
    border-radius: 30px;
  }

  .share-carousel {
    width: min(100%, 250px);
  }

  .share-slide img {
    width: min(100%, 220px);
  }

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

  .flow-list li,
  .flow-list li:not(:first-child) {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-list svg {
    margin-top: 34px;
  }

  .club-capabilities > div {
    grid-template-columns: 40px 1fr;
    padding: 24px 0;
  }

  .club-capabilities p {
    grid-column: 2;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 12px;
  }
}

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

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