@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/fonts/jost-latin-300.woff2") format("woff2");
}

@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/jost-latin-600.woff2") format("woff2");
}

:root {
  --bg: #08090a;
  --bg-elev: #0b0c0e;
  --bg-card: #0d0f11;
  --paper: #f4f5f6;
  --muted: #9a9da3;
  --muted-2: #8a8f94;
  --soft: #c4c7cb;
  --line: #16181b;
  --line-2: #1b1d20;
  --line-3: #1f2124;
  --border: #23262a;
  --border-strong: #2a2d31;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-soft: #7eacfa;
  --success: #4ade80;
  --hyrox: #f59e0b;
  --hyrox-hover: #fbbf24;
  --hyrox-dim: #b4791e;
  --hyrox-border: #3a2d14;
  --hyrox-bg: #14100a;
  --pilates: #c084fc;
  --font: "Jost", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-cjk: "Jost", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
    "Noto Sans KR", "Noto Sans SC", "Noto Sans TC", "PingFang SC", "Microsoft YaHei",
    "Malgun Gothic", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

html[lang="ja"],
html[lang="zh-Hans"],
html[lang="zh-Hant"],
html[lang="ko"] {
  --font: var(--font-cjk);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font);
  font-weight: 300;
  color: var(--paper);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-soft);
}

::selection {
  background: var(--accent);
  color: #fff;
}

body.is-hyrox ::selection {
  background: var(--hyrox);
  color: var(--bg);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

body.is-hyrox :focus-visible {
  outline-color: var(--hyrox);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.5rem 0.75rem;
  background: var(--paper);
  color: var(--bg);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.skip:focus {
  top: 1rem;
}

.w-light {
  font-weight: 300;
}

.w-bold {
  font-weight: 600;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}

.brand:hover {
  color: var(--paper);
}

.brand-mark {
  display: block;
  flex: none;
  width: 24px;
  height: 24px;
}

.brand-sep {
  color: var(--muted-2);
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
}

.brand-word {
  font-size: 17px;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 16px 32px;
  background: rgba(8, 9, 10, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-2);
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.nav-link {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: var(--paper);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn-accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
}

.btn-hyrox {
  background: var(--hyrox);
  border-color: var(--hyrox);
  color: var(--bg);
  font-weight: 600;
}

.btn-hyrox:hover {
  background: var(--hyrox-hover);
  border-color: var(--hyrox-hover);
  color: var(--bg);
}

.btn-paper {
  background: var(--paper);
  color: var(--bg);
  font-weight: 600;
  padding: 15px 30px;
  font-size: 16px;
}

.btn-paper:hover {
  background: #fff;
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--soft);
  padding: 15px 26px;
  font-size: 16px;
  font-weight: 400;
}

.btn-ghost:hover {
  border-color: #4a4e54;
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--paper);
  font-weight: 500;
  padding: 14px 24px;
  font-size: 16px;
}

.btn-outline:hover {
  border-color: #4a4e54;
  color: #fff;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 17px;
}

.lang {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--soft);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.lang-btn:hover {
  border-color: #4a4e54;
  color: #fff;
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 60;
  grid-template-columns: 1fr;
  gap: 1px;
  width: max-content;
  max-width: calc(100vw - 40px);
  padding: 1px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--border);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.lang.is-open .lang-menu {
  display: grid;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 11px 15px;
  border: 0;
  background: #0d0f11;
  color: #e4e6e8;
  font-family: inherit;
  font-size: 14px;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.lang-option:hover,
.lang-option[aria-current="true"] {
  background: #15181b;
  color: #fff;
}

.lang-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  white-space: nowrap;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.wrap-md {
  max-width: 820px;
  margin: 0 auto;
}

.wrap-lg {
  max-width: 1120px;
  margin: 0 auto;
}

.wrap-sm {
  max-width: 900px;
  margin: 0 auto;
}

.section {
  scroll-margin-top: 88px;
  border-top: 1px solid var(--line);
  padding: 88px 32px;
}

.section-tight {
  padding: 72px 32px;
}

.section-hero {
  border-top: 0;
  padding: 96px 32px 88px;
}

.section-cta {
  padding: 104px 32px 96px;
}

.section-alt {
  background: var(--bg-elev);
}

.section-dark {
  background: var(--bg-card);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow-accent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--accent);
}

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

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--success);
}

.dot-hyrox {
  background: var(--hyrox);
}

h1,
h2 {
  margin: 0;
  font-weight: 600;
  text-wrap: balance;
}

h1 {
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.h2-lg {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.022em;
}

.h2-sm {
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.1;
}

.h2-xs {
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.12;
}

.h2-proof {
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 1.06;
  font-weight: 300;
  letter-spacing: -0.025em;
}

.lead {
  margin: 28px 0 0;
  max-width: 34em;
  font-size: 19px;
  line-height: 1.6;
  color: var(--soft);
  font-weight: 300;
  text-wrap: pretty;
}

.body {
  margin: 24px 0 0;
  max-width: 36em;
  font-size: 18px;
  line-height: 1.65;
  color: var(--soft);
  font-weight: 300;
  text-wrap: pretty;
}

.fineprint {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.caption {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.hero-row,
.split-row {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 72px;
  align-items: center;
}

.hero-row.reverse,
.split-row.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 340px;
  min-width: 0;
}

.col-wide {
  flex: 1 1 400px;
}

.col-phone {
  flex: 0 1 320px;
  max-width: 340px;
  min-width: 0;
}

.col-media {
  flex: 1 1 380px;
  max-width: 520px;
  min-width: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.frame {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #0e1013, #0a0b0d);
  padding: 12px;
}

.frame img {
  border-radius: 10px;
  width: 100%;
}

.frame-lg {
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 40px 90px -50px rgba(74, 222, 128, 0.35);
}

.frame-lg img {
  border-radius: 12px;
}

.frame-blue {
  box-shadow: 0 40px 90px -50px rgba(59, 130, 246, 0.4);
}

.frame-amber {
  border-color: var(--hyrox-border);
  background: linear-gradient(180deg, var(--hyrox-bg), #0a0b0d);
  box-shadow: 0 40px 90px -50px rgba(245, 158, 11, 0.35);
}

.frame-purple {
  box-shadow: 0 40px 90px -50px rgba(192, 132, 252, 0.3);
}

.phone {
  border-radius: 26px;
  border: 1px solid var(--border);
  background: #0a0b0d;
  padding: 8px;
  box-shadow: 0 40px 80px -50px rgba(59, 130, 246, 0.4);
}

.phone img {
  border-radius: 20px;
  width: 100%;
}

.phone-amber {
  box-shadow: 0 40px 80px -50px rgba(245, 158, 11, 0.35);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--line-3);
  background: var(--bg-card);
}

.card-label {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.card-label-ok {
  color: var(--success);
}

.card-ok {
  border-color: #234a32;
  background: linear-gradient(180deg, #0e1611, #0b0d0c);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.stat {
  padding: 16px 22px;
  border-radius: 12px;
  border: 1px solid var(--line-3);
  background: var(--bg-card);
}

.stat-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-value {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.stat-accent {
  border-color: #2a3a52;
  background: #0c1017;
}

.stat-accent .stat-value {
  color: var(--accent);
}

.view-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line-3);
  border: 1px solid var(--line-3);
  border-radius: 16px;
  overflow: hidden;
}

.view-cell {
  padding: 24px;
  background: var(--bg-card);
}

.view-cell-accent {
  background: #0c1017;
}

.view-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
}

.view-title-accent {
  color: var(--accent);
}

.view-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-2);
  font-weight: 300;
}

.badge {
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.badge-fill {
  background: var(--accent);
  border: 0;
  color: #fff;
  padding: 3px 9px;
}

.badge-amber {
  border-color: var(--hyrox-border);
  color: var(--hyrox);
}

.badge-ok {
  border: 1px solid #234a32;
  background: #0e1611;
  color: var(--success);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.mod-list {
  display: grid;
  gap: 2px;
  margin-top: 36px;
  background: var(--line-3);
  border: 1px solid var(--line-3);
  border-radius: 14px;
  overflow: hidden;
}

.mod-row {
  display: grid;
  grid-template-columns: minmax(0, 150px) minmax(0, 1fr);
  align-items: baseline;
  gap: 12px;
  padding: 18px 22px;
  background: var(--bg-card);
}

.mod-name {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.mod-desc {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

.mod-desc a {
  color: var(--hyrox);
}

.mod-desc a:hover {
  color: var(--hyrox-hover);
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.family {
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid var(--line-3);
  background: var(--bg-card);
}

.family-accent {
  border-color: #2a3a52;
  background: #0c1017;
}

.family-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #e4e6e8;
}

.family-accent .family-title {
  color: var(--accent);
}

.family-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-2);
  font-weight: 300;
}

.note {
  margin: 24px 0 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.switch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 72px;
  align-items: baseline;
}

.switch-cards {
  flex: 0 1 280px;
  display: grid;
  gap: 12px;
  min-width: 0;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid var(--line-3);
  background: var(--bg-card);
}

.price-card-premium {
  border-color: var(--accent);
  background: linear-gradient(180deg, #0c1119, #0a0b0d);
}

.price-label {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-label-accent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
}

.price-amount {
  margin: 0;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-note {
  margin: 8px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.price-feats {
  display: grid;
  gap: 12px;
}

.price-feats p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--soft);
  font-weight: 300;
}

.price-card-premium .price-feats p {
  color: #e4e6e8;
}

.trio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 56px;
}

.trio-sm {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
}

.calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  margin-top: 48px;
  background: var(--line-3);
  border: 1px solid var(--line-3);
  border-radius: 16px;
  overflow: hidden;
}

.calc-cell {
  padding: 22px;
  background: var(--bg-card);
}

.calc-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
}

.calc-title-hyrox {
  color: var(--hyrox);
}

.faq-list {
  display: grid;
  gap: 2px;
  background: var(--line-3);
  border: 1px solid var(--line-3);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  padding: 28px;
  background: var(--bg-card);
}

.faq-q {
  margin: 0 0 12px;
  font-size: 19px;
  font-weight: 600;
  color: var(--paper);
}

.faq-a {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

.center {
  text-align: center;
}

.center .body,
.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 32px 56px;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.04em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-nav a {
  color: var(--muted);
  font-size: 14px;
}

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

.footer-copy {
  margin: 0;
  font-size: 14px;
  color: var(--muted-2);
}

.footer-disclaimer {
  max-width: 1280px;
  margin: 28px auto 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted-2);
}

.mcta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(8, 9, 10, 0.95);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
}

.mcta p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.mcta .btn {
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .mcta {
    display: flex;
  }

  .site-footer {
    padding-bottom: 128px;
  }

  .site-header {
    padding: 14px 16px;
  }

  .section,
  .section-hero,
  .section-cta,
  .section-tight {
    padding-left: 16px;
    padding-right: 16px;
  }

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

/* HYROX stations table */
.station-table {
  margin-top: 48px;
  max-width: 860px;
  border-top: 1px solid #1a1c1f;
}

.station-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(0, 1.4fr);
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid #1a1c1f;
}

.station-row-total {
  border-bottom: 0;
  padding-top: 22px;
}

.station-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 12px;
  font-weight: 600;
  font-family: ui-monospace, monospace;
  color: var(--muted-2);
}

.station-num-final {
  border-color: var(--hyrox);
  color: var(--hyrox);
}

.station-run,
.station-detail {
  margin: 0;
  font-size: 15px;
  color: var(--muted-2);
  font-weight: 300;
  font-family: ui-monospace, monospace;
}

.station-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}

.station-name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--paper);
}

.station-name-final {
  color: var(--hyrox);
}

.station-load {
  margin: 0;
  font-size: 14px;
  color: var(--hyrox-dim);
  font-weight: 300;
  font-family: ui-monospace, monospace;
}

.hyrox-card {
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--line-3);
  background: var(--bg-card);
}

.hyrox-card-accent {
  border-color: var(--hyrox-border);
  background: var(--hyrox-bg);
}

.hyrox-card-title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 600;
  color: #e4e6e8;
}

.hyrox-card-accent .hyrox-card-title {
  color: var(--hyrox);
}

.hyrox-card-body {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-2);
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
