:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: #0d1118;
  --panel-strong: #121923;
  --text: #f6f8fb;
  --muted: #aab4c2;
  --line: rgba(255, 255, 255, 0.12);
  --blue: #38bdf8;
  --cyan: #67e8f9;
  --gold: #f5c451;
  --green: #34d399;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 70%);
}

a {
  color: inherit;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--text);
  color: var(--bg);
  padding: 0.7rem 1rem;
  border-radius: 6px;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(5, 7, 10, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-mark {
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  border: 1px solid rgba(103, 232, 249, 0.55);
  border-radius: 8px;
  background: #05070a;
  color: var(--cyan);
  font-weight: 950;
  letter-spacing: 0;
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 0.76rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

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

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px 0 58px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 50%;
  opacity: 0.74;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 30%, rgba(56, 189, 248, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.95) 0%, rgba(5, 7, 10, 0.78) 42%, rgba(5, 7, 10, 0.2) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 36%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  align-items: end;
  gap: 2rem;
}

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

.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
}

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

h1,
h2 {
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 1.4rem;
  font-size: clamp(4rem, 10vw, 8.4rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 5.7vw, 5.1rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-lede,
.section-heading p,
.copy-stack p,
.merch-panel p,
.contact p {
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button svg,
.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button.primary {
  background: var(--blue);
  color: #001018;
  box-shadow: 0 16px 38px rgba(56, 189, 248, 0.27);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.hero-card,
.pillar-card,
.social-card,
.feature-card,
.photo-panel,
.merch-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 25, 35, 0.88), rgba(13, 17, 24, 0.82));
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.25rem;
}

.logo-card > img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 7px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
}

.hero-card p {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.35;
}

.card-kicker {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 0.9rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.metric-row span {
  min-width: 0;
  color: var(--muted);
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-row strong {
  display: block;
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1;
}

.section {
  position: relative;
  padding: clamp(72px, 10vw, 126px) 0;
}

.feature-thumb img,
.photo-panel img,
.spread-photo img,
.wide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 7vw, 5rem);
  align-items: start;
}

.about-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 0.9fr);
}

.about-photo {
  grid-column: 1 / -1;
  justify-self: end;
  width: min(760px, 72%);
  margin-top: clamp(1.5rem, 4vw, 3rem);
}

.spread-photo,
.wide-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.spread-photo {
  min-height: 360px;
}

.spread-photo figcaption,
.wide-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(5, 7, 10, 0.72);
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
}

.wide-photo {
  height: clamp(340px, 47vw, 520px);
  margin-top: clamp(2.75rem, 7vw, 5rem);
}

.fitness-photo {
  margin: clamp(1.5rem, 4vw, 2.4rem) 0 0;
  min-height: 320px;
}

.reverse {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  align-items: center;
}

.copy-stack {
  display: grid;
  gap: 1rem;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 2rem;
}

.section-heading.compact {
  max-width: 740px;
}

.pillar-grid,
.social-grid,
.feature-grid {
  display: grid;
  gap: 1rem;
}

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

.pillar-card,
.social-card,
.feature-card {
  padding: 1.15rem;
}

.pillar-card span {
  display: block;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.pillar-card p,
.social-card p,
.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.social-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-card:hover,
.social-card:focus-visible,
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(103, 232, 249, 0.45);
}

.social-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.14);
  color: var(--cyan);
  font-weight: 950;
}

.social-card strong,
.social-card small {
  display: block;
}

.social-card small {
  color: var(--muted);
}

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

.feature-card {
  display: grid;
  grid-template-rows: 180px 1fr;
  overflow: hidden;
}

.feature-thumb {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 180px;
  margin: -1.15rem -1.15rem 1.1rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.18), transparent 46%),
    linear-gradient(45deg, rgba(245, 196, 81, 0.16), transparent 55%),
    #0b1118;
}

.feature-thumb span {
  position: relative;
  z-index: 1;
  padding: 0.42rem 0.62rem;
  border-radius: 6px;
  background: rgba(5, 7, 10, 0.72);
  color: var(--cyan);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.feature-card a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--cyan);
  font-weight: 850;
  text-decoration: none;
}

.awareness {
  background: linear-gradient(180deg, transparent, rgba(56, 189, 248, 0.06), transparent);
}

.photo-panel {
  overflow: hidden;
  min-height: 460px;
  padding: 1rem;
}

.photo-panel img {
  min-height: 430px;
  border-radius: 7px;
  object-position: 50% 50%;
}

.training-list {
  display: grid;
  gap: 0.8rem;
}

.training-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.training-item span {
  color: var(--gold);
  font-weight: 950;
  font-size: 1.2rem;
}

.training-item p {
  margin: 0;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
  line-height: 1.1;
  font-weight: 850;
}

.merch-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 2rem;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 2.4rem);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.13), transparent 44%),
    linear-gradient(315deg, rgba(52, 211, 153, 0.11), transparent 40%),
    var(--panel);
}

.waitlist-form,
.contact-form,
.product-form {
  display: grid;
  gap: 0.9rem;
}

.waitlist-form {
  box-shadow: none;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
}

.waitlist-form img {
  width: 100%;
  max-height: 150px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
}

.waitlist-form label,
.contact-form label,
.product-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-weight: 800;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.waitlist-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.7rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  padding: 0.82rem 0.9rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(103, 232, 249, 0.65);
  outline-offset: 2px;
}

.shop {
  background: linear-gradient(180deg, transparent, rgba(52, 211, 153, 0.06), transparent);
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.product-media,
.product-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(18, 25, 35, 0.9), rgba(13, 17, 24, 0.88));
  box-shadow: var(--shadow);
}

.product-media {
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.product-panel {
  padding: clamp(1.2rem, 4vw, 2rem);
}

.product-panel h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.8rem);
}

.product-panel > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.product-meta span {
  padding: 0.48rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cyan);
  font-weight: 850;
}

.product-form {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
}

.fulfillment-note {
  margin-top: 1rem;
  padding: 1rem;
  border-left: 3px solid var(--green);
  background: rgba(52, 211, 153, 0.08);
  color: var(--muted);
}

.fulfillment-note strong {
  color: var(--text);
}

.contact-form {
  padding: 1.1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
}

.contact-copy {
  min-width: 0;
}

.contact-copy h2 {
  font-size: clamp(2.1rem, 4.1vw, 4rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, rgba(18, 25, 35, 0.98), rgba(13, 17, 24, 0.98));
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0;
  background: #030507;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.2rem;
}

.footer-grid p {
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 0;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 10, 0.96);
  }

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

  .hero-grid,
  .split,
  .reverse,
  .merch-panel,
  .shop-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 520px;
  }

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

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

  .about-photo {
    justify-self: stretch;
    width: 100%;
  }

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

@media (max-width: 640px) {
  .nav-shell,
  .section-inner {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 4.9rem);
  }

  .hero-actions,
  .waitlist-form > div {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .metric-row,
  .pillar-grid,
  .social-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .social-card {
    grid-template-columns: 46px 1fr;
  }

  .social-icon {
    width: 46px;
  }

  .feature-card {
    grid-template-rows: 150px 1fr;
  }

  .feature-thumb {
    min-height: 150px;
  }

  .photo-panel,
  .photo-panel img,
  .spread-photo {
    min-height: 300px;
  }

  .wide-photo {
    height: 320px;
  }

  .product-media img {
    min-height: 360px;
  }
}

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