:root {
  --bg: #050505;
  --bg-soft: #101111;
  --surface: #f5f6f2;
  --surface-strong: #ffffff;
  --ink: #080908;
  --muted: #686d68;
  --line: rgba(8, 9, 8, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);
  --accent: #d9ff18;
  --accent-strong: #b8e600;
  --danger: #ff3f2f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 8px;
  --max: 1180px;
  --header: 78px;
  font-family:
    Inter, "Helvetica Neue", Arial, "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

main > section {
  scroll-margin-top: 90px;
}

.seo-faq {
  padding-block: clamp(72px, 9vw, 120px);
}

.seo-faq h2 {
  max-width: 760px;
  margin: 10px 0 34px;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.05;
}

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

.seo-faq-grid article {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background: var(--surface-strong);
}

.seo-faq-grid h3 {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
}

.seo-faq-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 720px) {
  .seo-faq-grid {
    grid-template-columns: 1fr;
  }
}

button,
input,
textarea {
  font: inherit;
}

.page-grid {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: 16px clamp(20px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.18));
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #050505;
  background: var(--accent);
  border-radius: 4px;
  font-weight: 900;
}

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

.brand strong {
  font-size: 1rem;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.76);
}

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

.nav-cta {
  padding: 12px 18px;
  color: #050505;
  background: var(--accent);
  border-radius: 4px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  color: #fff;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section-dark {
  color: #fff;
  background: var(--bg);
}

.section-light {
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.78) 38%, rgba(5, 5, 5, 0.1) 70%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0) 32%),
    url("./assets/hyrox-athlete-hero.png");
  background-position: center, center, 62% center;
  background-size: cover, cover, cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(5, 5, 5, 0));
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(240px, 1fr);
  align-items: end;
  min-height: 100svh;
  padding-top: 120px;
  padding-bottom: clamp(34px, 7vw, 72px);
  gap: 48px;
}

.hero-copy {
  padding-top: 13vh;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  font-weight: 920;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.04rem, 1.7vw, 1.35rem);
  line-height: 1.8;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  color: #050505;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  color: #fff;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  align-self: end;
  max-width: 340px;
  margin-left: auto;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.hero-proof div {
  padding: 22px;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(10px);
}

.proof-number,
.proof-label {
  display: block;
}

.proof-number {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 920;
  line-height: 1;
}

.proof-label {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid var(--line-dark);
  color: #fff;
  background: #050505;
}

.partner-strip p {
  margin: 0;
  padding: 18px 12px;
  border-right: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 860;
  text-align: center;
  text-transform: uppercase;
}

.split,
.stats-layout,
.sponsor-layout,
.media-layout,
.contact-layout {
  padding-block: clamp(72px, 11vw, 132px);
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 7vw, 94px);
}

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

.section-index {
  display: block;
  margin-bottom: 18px;
  color: var(--danger);
  font-size: 0.78rem;
  font-weight: 920;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  font-weight: 910;
  line-height: 1;
}

.section-heading p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.narrative p {
  margin: 0 0 24px;
  color: #292d29;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 2;
}

.trust-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-rail article {
  min-height: 168px;
  padding: 24px;
  background: var(--surface-strong);
}

.trust-rail strong,
.trust-rail span {
  display: block;
}

.trust-rail strong {
  font-size: 1.05rem;
}

.trust-rail span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.career-timeline {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.career-timeline h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 950;
}

.career-timeline article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
}

.career-timeline time {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.career-timeline strong {
  display: block;
  color: #fff;
  font-size: 1.04rem;
}

.career-timeline p,
.source-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.78;
}

.source-note {
  padding: 16px 18px;
  border-left: 5px solid var(--accent);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.section-stats {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(217, 255, 24, 0.1), transparent 28%),
    #080908;
}

.stats-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(34px, 6vw, 72px);
}

.stats-panel {
  display: grid;
  gap: 18px;
}

.stat-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.stat-kpis article,
.chart-wrap,
.discipline-grid article,
.social-feed,
.contact-form,
.plan-card {
  border-radius: var(--radius);
}

.stat-kpis article {
  min-height: 140px;
  padding: 22px;
  background: #111311;
}

.stat-kpis span,
.stat-kpis small {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 760;
  text-transform: uppercase;
}

.stat-kpis strong {
  display: block;
  margin: 18px 0 10px;
  color: var(--accent);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1;
}

.chart-wrap {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line-dark);
  background: #111311;
}

.chart-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.chart-head strong {
  font-size: 1.12rem;
}

.chart-head span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
}

.bar-row {
  display: grid;
  grid-template-columns: 76px 1fr 70px;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}

.bar-row span,
.bar-row b {
  font-size: 0.82rem;
}

.bar-row span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  text-transform: uppercase;
}

.bar-row div {
  height: 11px;
  background: rgba(255, 255, 255, 0.1);
}

.bar-row i {
  display: block;
  width: var(--bar);
  height: 100%;
  background: #fff;
}

.bar-row.target i {
  background: var(--accent);
}

.discipline-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.discipline-grid article {
  min-height: 178px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.discipline-grid h3 {
  margin: 0;
  font-size: 1.1rem;
}

.discipline-grid p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.8;
}

.ranking-frame {
  background:
    linear-gradient(135deg, rgba(217, 255, 24, 0.16), transparent 50%),
    rgba(255, 255, 255, 0.04) !important;
}

.sponsor-layout {
  display: grid;
  gap: 48px;
}

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

.plan-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 14px 44px rgba(8, 9, 8, 0.06);
}

.plan-card.featured {
  color: #050505;
  background: var(--accent);
  transform: translateY(-14px);
}

.plan-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(8, 9, 8, 0.16);
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.plan-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.featured span {
  color: rgba(5, 5, 5, 0.72);
}

.plan-card ul {
  display: grid;
  gap: 16px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: #303530;
  line-height: 1.7;
}

.plan-card li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--danger);
  content: "";
}

.plan-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 12px 16px;
  color: #fff;
  background: #050505;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 850;
}

.media-section {
  overflow: hidden;
}

.media-layout {
  display: grid;
  gap: 44px;
}

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 22px;
}

.media-large {
  position: relative;
  min-height: 510px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #111;
}

.media-large img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  object-position: center;
}

.media-large figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  color: #050505;
  background: var(--accent);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.social-feed {
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line-dark);
  background: #111311;
}

.social-feed article {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.social-feed time {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.social-feed p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  padding: 12px 14px;
  color: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 850;
}

.contact-section {
  background: #fff;
}

.blog-section {
  background: var(--surface);
}

.blog-layout {
  display: grid;
  gap: 44px;
  padding-block: clamp(72px, 11vw, 132px);
}

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

.blog-card {
  display: grid;
  align-content: start;
  min-height: 320px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 44px rgba(8, 9, 8, 0.06);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--danger);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 20px 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.blog-card > p,
.blog-body p,
.blog-empty {
  color: var(--muted);
  line-height: 1.8;
}

.blog-card > p {
  margin: 18px 0 0;
}

.blog-body {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.blog-body summary {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 880;
  cursor: pointer;
}

.blog-empty {
  grid-column: 1 / -1;
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 6vw, 72px);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--surface);
}

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form span {
  color: #343834;
  font-size: 0.82rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--ink);
  border: 1px solid rgba(8, 9, 8, 0.18);
  border-radius: 4px;
  background: #fff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(217, 255, 24, 0.55);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #050505;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  font-size: 0.84rem;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--accent);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.noscript-message {
  margin: 0;
  padding: 18px;
  color: #050505;
  background: var(--accent);
  font-weight: 800;
}

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

  .site-nav {
    position: fixed;
    inset: var(--header) 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line-dark);
    background: rgba(5, 5, 5, 0.96);
    box-shadow: var(--shadow);
  }

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

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

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero-grid,
  .split,
  .stats-layout,
  .contact-layout,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: end;
    gap: 30px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
    margin-left: 0;
  }

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

  .partner-strip p:last-child {
    grid-column: 1 / -1;
  }

  .trust-rail,
  .discipline-grid,
  .plan-grid,
  .blog-grid,
  .stat-kpis {
    grid-template-columns: 1fr;
  }

  .plan-card.featured {
    transform: none;
  }
}

@media (max-width: 620px) {
  :root {
    --header: 68px;
  }

  .page-grid {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: var(--header);
    padding: 13px 14px;
  }

  .brand small {
    display: none;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.98) 72%),
      url("./assets/hyrox-athlete-hero.png");
    background-position: center top, 57% top;
    background-size: cover, auto 56%;
    background-repeat: no-repeat;
  }

  .hero-grid {
    min-height: 100svh;
    padding-top: 48vh;
    padding-bottom: 30px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }

  .hero p {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .split,
  .stats-layout,
  .sponsor-layout,
  .media-layout,
  .contact-layout {
    padding-block: 58px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .bar-row {
    grid-template-columns: 68px 1fr;
  }

  .bar-row b {
    grid-column: 2;
    color: rgba(255, 255, 255, 0.72);
  }

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

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

/* Radical 2026 race-poster direction */
:root {
  --bg: #030303;
  --bg-soft: #0a0b0a;
  --surface: #070707;
  --surface-strong: #111111;
  --ink: #f8f8f0;
  --muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --accent: #f4ff00;
  --accent-strong: #fff45a;
  --danger: #ff1717;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
  --radius: 6px;
  font-family:
    "Arial Narrow", "Roboto Condensed", Impact, "Noto Sans JP", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", sans-serif;
}

body {
  color: var(--ink);
  background:
    repeating-linear-gradient(115deg, transparent 0 34px, rgba(255, 23, 23, 0.08) 34px 38px),
    radial-gradient(circle at 20% 0%, rgba(244, 255, 0, 0.07), transparent 25%),
    #030303;
  overflow-x: clip;
}

html {
  overflow-x: clip;
}

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

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.site-header {
  min-height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 2, 2, 0.92);
}

.brand-mark {
  position: relative;
  border-radius: 2px;
  box-shadow: 5px 5px 0 var(--danger);
}

.brand strong {
  font-size: 1.1rem;
  font-weight: 950;
}

.site-nav {
  font-size: 0.78rem;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--danger);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  content: "";
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button-primary,
.admin-button.primary {
  color: #050505;
  background: var(--accent);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
  box-shadow: 7px 7px 0 var(--danger);
}

.hero {
  min-height: 100svh;
  background: #020202;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(2, 2, 2, 0.99) 0%, rgba(2, 2, 2, 0.85) 36%, rgba(2, 2, 2, 0.26) 69%),
    repeating-linear-gradient(112deg, transparent 0 54px, rgba(255, 23, 23, 0.2) 54px 61px),
    linear-gradient(0deg, #020202 0%, rgba(2, 2, 2, 0) 38%),
    url("./assets/hyrox-athlete-hero.png");
  background-position: center, center, center, 66% center;
}

.hero::before {
  position: absolute;
  top: 14%;
  right: clamp(14px, 3vw, 44px);
  z-index: 0;
  color: var(--danger);
  font-size: 3.2rem;
  font-weight: 950;
  line-height: 1.02;
  writing-mode: vertical-rl;
  text-shadow: 8px 8px 0 rgba(0, 0, 0, 0.8);
  content: "挑戦継続進化";
}

.hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 34px;
}

.hero h1 {
  max-width: 900px;
  font-size: 6rem;
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 7px 7px 0 rgba(255, 23, 23, 0.38);
  text-wrap: balance;
}

.hero h1 span:first-child {
  color: #fff;
}

.hero h1 span:last-child {
  color: var(--accent);
  font-size: 3.4rem;
  line-height: 1.08;
}

.hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.9;
}

.button {
  min-height: 54px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 950;
  text-transform: uppercase;
}

.button-secondary,
.button-dark {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.28), transparent 52%),
    rgba(255, 255, 255, 0.08);
}

.hero-proof {
  max-width: 420px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-7deg);
}

.hero-proof div {
  padding: 24px 24px 22px;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.16), transparent 54%),
    rgba(5, 5, 5, 0.78);
}

.hero-proof div > * {
  transform: skewX(7deg);
}

.proof-number {
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 3.1rem;
  text-shadow: 4px 4px 0 var(--danger);
}

.proof-label {
  color: var(--accent);
  font-weight: 950;
}

.partner-strip {
  border-block: 2px solid var(--danger);
  background: #080808;
}

.partner-strip p {
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.84rem;
  font-weight: 950;
}

.section-light,
.blog-section,
.contact-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.12), transparent 34%),
    #080808;
}

.split,
.stats-layout,
.sponsor-layout,
.media-layout,
.blog-layout,
.contact-layout {
  padding-block: 104px;
}

.section-index {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px 9px;
  color: #050505;
  background: var(--accent);
  font-weight: 950;
  transform: skewX(-10deg);
}

.section-heading h2 {
  color: #fff;
  font-size: 4.2rem;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.section-heading p,
.section-dark .section-heading p,
.narrative p,
.blog-card > p,
.blog-body p,
.form-note {
  color: rgba(255, 255, 255, 0.74);
}

.narrative p {
  font-size: 1.06rem;
  font-weight: 650;
}

.trust-rail,
.stat-kpis,
.plan-grid,
.blog-grid {
  gap: 10px;
  background: transparent;
  border: 0;
}

.trust-rail article,
.stat-kpis article,
.discipline-grid article,
.plan-card,
.blog-card,
.contact-form,
.social-feed,
.chart-wrap {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.13), transparent 50%),
    #101010;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.trust-rail strong,
.blog-card h3,
.discipline-grid h3 {
  color: #fff;
}

.trust-rail span,
.discipline-grid p,
.social-feed p,
.plan-card li {
  color: rgba(255, 255, 255, 0.74);
}

.section-stats {
  background:
    repeating-linear-gradient(115deg, transparent 0 40px, rgba(244, 255, 0, 0.06) 40px 43px),
    #020202;
}

.stat-kpis strong,
.chart-head strong {
  color: var(--accent);
}

.stat-kpis article {
  min-height: 172px;
}

.stat-kpis strong {
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 3.6rem;
  text-shadow: 4px 4px 0 rgba(255, 23, 23, 0.72);
}

.bar-row div {
  height: 16px;
  transform: skewX(-12deg);
}

.bar-row i {
  background: linear-gradient(90deg, var(--danger), var(--accent));
}

.plan-card {
  overflow: hidden;
  position: relative;
  color: #fff;
  min-height: 430px;
}

.plan-card::after {
  position: absolute;
  right: -44px;
  bottom: 18px;
  width: 160px;
  height: 28px;
  background: var(--danger);
  transform: rotate(-18deg);
  content: "";
}

.plan-card.featured {
  color: #050505;
  background:
    linear-gradient(135deg, var(--accent), #fff47a);
  box-shadow: 10px 10px 0 var(--danger), 0 22px 60px rgba(0, 0, 0, 0.35);
}

.plan-card.featured h3,
.plan-card.featured li {
  color: #050505;
}

.plan-card h3 {
  color: inherit;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 3.2rem;
}

.plan-card span {
  color: var(--accent);
}

.plan-card.featured span {
  color: var(--danger);
}

.plan-card a {
  border-radius: 2px;
  color: #050505;
  background: var(--accent);
  box-shadow: 5px 5px 0 var(--danger);
}

.plan-card.featured a {
  color: #fff;
  background: #050505;
}

.media-large {
  border-radius: 4px;
  box-shadow: 10px 10px 0 var(--danger);
}

.media-large::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, transparent, rgba(255, 23, 23, 0.16));
  content: "";
}

.social-links a {
  border-radius: 2px;
  border-color: rgba(244, 255, 0, 0.4);
  color: var(--accent);
}

.blog-meta {
  color: var(--accent);
}

.blog-body summary {
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: #050505;
}

.contact-form span {
  color: var(--accent);
}

.site-footer {
  border-top: 2px solid var(--danger);
}

.hyrox-race-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 255, 0, 0.08), transparent 24%),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 23, 23, 0.12) 42px 46px),
    #020202;
}

.hyrox-race-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 56px);
  padding-block: 104px;
}

.hyrox-race-layout .section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.reel-insight,
.race-formula,
.race-course,
.watch-grid,
.hongo-focus-grid,
.race-takeaway {
  grid-column: 2;
}

.reel-insight {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(244, 255, 0, 0.32);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.2), transparent 58%),
    #101010;
  box-shadow: 9px 9px 0 rgba(255, 23, 23, 0.8);
}

.reel-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  color: #050505;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  transform: skewX(-10deg);
}

.reel-insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.85;
}

.reel-insight .reel-source {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.race-formula {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.race-formula article {
  min-height: 172px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(135deg, rgba(244, 255, 0, 0.11), transparent 58%),
    #101010;
}

.race-formula span,
.run-chip,
.station-body span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.race-formula strong {
  display: block;
  margin: 16px 0 12px;
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.92;
  text-shadow: 4px 4px 0 var(--danger);
}

.race-formula p,
.station-body p,
.race-takeaway {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.race-course {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: race;
}

.race-step {
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  min-height: 0;
  align-content: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.14), transparent 56%),
    #0d0d0d;
}

.race-step > * {
  position: relative;
  z-index: 1;
}

.race-step::after {
  position: absolute;
  z-index: 0;
  right: -34px;
  bottom: 14px;
  width: 132px;
  height: 18px;
  background: rgba(255, 23, 23, 0.9);
  transform: rotate(-18deg);
  content: "";
}

.station-photo {
  grid-column: 1 / -1;
  position: relative;
  aspect-ratio: 16 / 9;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #050505;
}

.station-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0));
  content: "";
}

.station-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.06);
  transform: scale(1.06);
}

.run-chip {
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background:
    repeating-linear-gradient(115deg, rgba(244, 255, 0, 0.16) 0 8px, transparent 8px 18px),
    rgba(255, 255, 255, 0.04);
  writing-mode: vertical-rl;
}

.station-body {
  padding: 22px 22px 24px;
}

.station-body span {
  display: inline-block;
  margin-bottom: 12px;
}

.station-body h3 {
  margin: 0;
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 0.95;
}

.station-body p {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.race-takeaway {
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  border-left: 6px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  font-weight: 780;
}

.watch-grid,
.hongo-focus-grid {
  display: grid;
  gap: 12px;
}

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

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

.watch-grid article,
.hongo-focus-grid article {
  position: relative;
  min-height: 176px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(244, 255, 0, 0.12), transparent 55%),
    #101010;
}

.watch-grid article::after,
.hongo-focus-grid article::after {
  position: absolute;
  right: -38px;
  bottom: 18px;
  width: 140px;
  height: 18px;
  background: rgba(255, 23, 23, 0.9);
  transform: rotate(-18deg);
  content: "";
}

.watch-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 950;
  line-height: 1.2;
}

.watch-grid p,
.hongo-focus-grid p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.hongo-focus-grid span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hongo-focus-grid strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.92;
  text-shadow: 4px 4px 0 var(--danger);
  text-transform: uppercase;
}

.world-challenge-section {
  color: var(--ink-deep);
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.1), transparent 28%),
    linear-gradient(225deg, rgba(244, 255, 0, 0.25), transparent 32%),
    #f7f8f1;
}

.world-challenge-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(72px, 10vw, 118px);
}

.world-challenge-layout .section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.world-challenge-layout .section-heading h2,
.world-challenge-layout .section-heading p {
  color: var(--ink-deep);
}

.world-challenge-layout .section-heading p {
  color: var(--muted-readable);
}

.world-challenge-body {
  display: grid;
  gap: 18px;
}

.world-manifesto {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(17, 22, 17, 0.15);
  border-radius: 6px;
  background:
    linear-gradient(135deg, #111611, #222 54%, rgba(255, 23, 23, 0.9));
  color: #fff;
  box-shadow: 0 20px 48px rgba(17, 22, 17, 0.14);
}

.world-manifesto span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 9px;
  color: #050505;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.world-manifesto h3 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1.1;
}

.world-manifesto p {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

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

.emotion-photo-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(17, 22, 17, 0.16);
  border-radius: 6px;
  background: #050505;
  box-shadow: 0 20px 48px rgba(17, 22, 17, 0.14);
}

.emotion-photo-card:first-child {
  grid-row: span 2;
  min-height: 520px;
}

.emotion-photo-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.emotion-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.08);
  transform: scale(1.06);
}

.emotion-photo-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2) 62%, rgba(0, 0, 0, 0.04)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 58%);
  content: "";
}

.emotion-photo-card > div {
  position: absolute;
  inset: auto clamp(18px, 3vw, 30px) clamp(18px, 3vw, 30px);
  z-index: 1;
}

.emotion-photo-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  color: #050505;
  background: var(--accent);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 950;
}

.emotion-photo-card h3 {
  max-width: 10em;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 950;
  line-height: 1.05;
}

.emotion-photo-card p {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.world-chapters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.world-chapters article,
.support-switcher,
.official-links {
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 22, 17, 0.08);
}

.world-chapters article {
  min-height: 226px;
  padding: 22px;
}

.world-chapters span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 16px;
  color: #050505;
  background: var(--accent);
  font-weight: 950;
}

.world-chapters h3,
.support-switcher h3,
.official-links h3,
.support-panel h4 {
  margin: 0;
  color: var(--ink-deep);
  line-height: 1.22;
}

.world-chapters h3 {
  font-size: 1.18rem;
  font-weight: 950;
}

.world-chapters p,
.support-panel p,
.official-links span {
  margin: 14px 0 0;
  color: var(--muted-readable);
  line-height: 1.78;
}

.support-switcher,
.official-links {
  padding: clamp(20px, 3vw, 28px);
}

.support-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.support-controls button {
  min-height: 54px;
  padding: 12px;
  color: var(--ink-deep);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fbfcf6;
  font-weight: 920;
  cursor: pointer;
}

.support-controls button.is-active {
  color: #050505;
  background: var(--accent);
  box-shadow: 4px 4px 0 var(--danger);
}

.support-panel {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid rgba(17, 22, 17, 0.12);
  border-radius: 6px;
  background: #f7f8f1;
}

.support-panel .button {
  margin-top: 18px;
}

.official-links > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.official-links a {
  display: grid;
  min-height: 150px;
  padding: 18px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fbfcf6;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.official-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 23, 23, 0.44);
  background: #fff;
}

.official-links strong {
  color: var(--ink-deep);
  font-size: 1rem;
  font-weight: 950;
}

.agent-review-section {
  background:
    radial-gradient(circle at 78% 10%, rgba(244, 255, 0, 0.09), transparent 24%),
    repeating-linear-gradient(115deg, transparent 0 42px, rgba(255, 23, 23, 0.09) 42px 46px),
    #060606;
}

.agent-review-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(28px, 5vw, 56px);
  padding-block: 104px;
}

.agent-review-layout .section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.review-board,
.conversion-board {
  grid-column: 2;
}

.review-board {
  display: grid;
  gap: 12px;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 0.56fr);
  gap: 18px 28px;
  min-height: 230px;
  padding: clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.16), transparent 58%),
    #101010;
  box-shadow: 9px 9px 0 rgba(255, 23, 23, 0.72);
}

.review-card::after {
  position: absolute;
  right: -52px;
  bottom: 20px;
  width: 172px;
  height: 22px;
  background: rgba(244, 255, 0, 0.92);
  transform: rotate(-18deg);
  content: "";
}

.review-card-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.review-card-head span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
}

.review-card-head strong {
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 0.9;
  text-shadow: 4px 4px 0 var(--danger);
}

.review-card h3 {
  margin: 0;
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 0.92;
}

.review-score {
  align-self: start;
  height: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
  transform: skewX(-12deg);
}

.review-score i {
  display: block;
  width: var(--score);
  height: 100%;
  background: linear-gradient(90deg, var(--danger), var(--accent));
}

.review-issue,
.review-action,
.review-card b {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.review-action {
  color: rgba(244, 255, 0, 0.86);
}

.review-card b {
  grid-column: 2;
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.conversion-board {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(244, 255, 0, 0.28);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(244, 255, 0, 0.12), transparent 58%),
    #101010;
}

.conversion-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.conversion-head h3 {
  margin: 0;
  color: #fff;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.conversion-head p {
  margin: 0;
  color: var(--accent);
  font-weight: 950;
}

.conversion-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.conversion-path article {
  min-height: 176px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(0, 0, 0, 0.35);
}

.conversion-path span {
  color: var(--accent);
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: 1.7rem;
}

.conversion-path h4 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.15;
}

.conversion-path p,
.review-takeaway {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.conversion-path p {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.review-takeaway {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 6px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
}

.sponsor-benefits,
.sponsor-decision-table {
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.13), transparent 50%),
    #101010;
}

.sponsor-benefits h3,
.sponsor-decision-table h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.sponsor-benefits > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sponsor-benefits article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
}

.sponsor-benefits strong {
  color: var(--accent);
  font-size: 1rem;
}

.sponsor-benefits p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.sponsor-decision-table {
  overflow-x: auto;
}

.sponsor-decision-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.sponsor-decision-table th,
.sponsor-decision-table td {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.76);
  text-align: left;
  vertical-align: top;
}

.sponsor-decision-table thead th {
  color: #050505;
  background: var(--accent);
  font-weight: 950;
}

.sponsor-decision-table tbody th {
  color: #fff;
  font-weight: 950;
}

.note-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 13px;
  color: #050505;
  background: var(--accent);
  border-radius: 2px;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 5px 5px 0 var(--danger);
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.contact-direct a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  color: var(--accent);
  border: 1px solid rgba(244, 255, 0, 0.38);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.86rem;
  font-weight: 950;
}

/* Sponsor-first readability refresh */
:root {
  --surface-bright: #f7f8f1;
  --surface-card: #ffffff;
  --ink-deep: #111611;
  --muted-readable: #4f5a52;
  --soft-line: rgba(17, 22, 17, 0.14);
}

.sponsor-value-section {
  color: var(--ink-deep);
  background:
    linear-gradient(135deg, rgba(244, 255, 0, 0.26), transparent 34%),
    var(--surface-bright);
}

.sponsor-value-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 6vw, 70px);
  padding-block: clamp(72px, 10vw, 118px);
}

.sponsor-value-section .section-heading h2,
.sponsor-value-section .section-heading p {
  color: var(--ink-deep);
}

.sponsor-value-section .section-heading p {
  color: var(--muted-readable);
}

.sponsor-value-body {
  display: grid;
  gap: 18px;
}

.mission-panel {
  padding: clamp(22px, 4vw, 36px);
  color: #071007;
  border: 1px solid rgba(17, 22, 17, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(244, 255, 0, 0.88), rgba(255, 255, 255, 0.94) 56%),
    #fff;
  box-shadow: 0 20px 46px rgba(17, 22, 17, 0.1);
}

.mission-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  color: #fff;
  background: #111611;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-panel h3 {
  margin: 0;
  max-width: 760px;
  color: #071007;
  font-size: clamp(1.5rem, 3.8vw, 2.6rem);
  line-height: 1.12;
}

.mission-panel p {
  max-width: 820px;
  margin: 16px 0 0;
  color: #243024;
  font-size: 1rem;
  line-height: 1.88;
}

.value-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.value-pillars article,
.page-flow,
.activation-panel {
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: var(--surface-card);
  box-shadow: 0 18px 42px rgba(17, 22, 17, 0.08);
}

.value-pillars article {
  min-height: 178px;
  padding: 22px;
}

.value-pillars h3,
.page-flow h3,
.activation-panel h3 {
  margin: 0;
  color: var(--ink-deep);
  font-size: 1.15rem;
  font-weight: 920;
  line-height: 1.25;
}

.value-pillars p,
.page-flow p,
.activation-panel p {
  margin: 14px 0 0;
  color: var(--muted-readable);
  line-height: 1.78;
}

.page-flow {
  padding: 24px;
}

.page-flow > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.page-flow article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid var(--soft-line);
  background: #fbfcf6;
}

.page-flow span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #050505;
  background: var(--accent);
  font-weight: 950;
}

.page-flow strong {
  display: block;
  margin-top: 12px;
  color: var(--ink-deep);
  font-size: 1rem;
}

.activation-tabs {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 12px;
}

.activation-tab-buttons {
  display: grid;
  gap: 8px;
}

.activation-tab-buttons button {
  width: 100%;
  min-height: 58px;
  padding: 13px 15px;
  color: var(--ink-deep);
  border: 1px solid var(--soft-line);
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 880;
  text-align: left;
  cursor: pointer;
}

.activation-tab-buttons button.is-active {
  color: #050505;
  background: var(--accent);
  box-shadow: 5px 5px 0 var(--danger);
}

.activation-panel {
  min-height: 196px;
  padding: 26px;
}

@media (max-width: 920px) {
  .sponsor-value-layout,
  .activation-tabs {
    grid-template-columns: 1fr;
  }

  .value-pillars,
  .page-flow > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .hero::before {
    display: none;
  }

  .hero h1 {
    font-size: 3.7rem;
    line-height: 0.94;
  }

  .hero h1 span:last-child {
    font-size: 2.2rem;
    line-height: 1.08;
  }

  .hero-proof {
    transform: none;
  }

  .hero-proof div > * {
    transform: none;
  }

  .section-heading h2 {
    font-size: 3.1rem;
  }

  .hyrox-race-layout {
    grid-template-columns: 1fr;
  }

  .hyrox-race-layout .section-heading {
    position: static;
  }

  .reel-insight,
  .race-formula,
  .race-course,
  .watch-grid,
  .hongo-focus-grid,
  .race-takeaway {
    grid-column: 1;
  }

  .race-formula,
  .watch-grid,
  .hongo-focus-grid,
  .world-challenge-layout {
    grid-template-columns: 1fr;
  }

  .world-challenge-layout .section-heading {
    position: static;
  }

  .world-chapters,
  .official-links > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .agent-review-layout {
    grid-template-columns: 1fr;
  }

  .agent-review-layout .section-heading {
    position: static;
  }

  .review-board,
  .conversion-board {
    grid-column: 1;
  }

  .conversion-path,
  .sponsor-benefits > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  main > section {
    scroll-margin-top: 78px;
  }

  body {
    background: #f7f8f1;
    font-family:
      "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Inter, Arial,
      sans-serif;
  }

  .site-header {
    background: rgba(5, 5, 5, 0.94);
  }

  .brand strong {
    font-size: 0.98rem;
    letter-spacing: 0;
  }

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

  .partner-strip p {
    padding: 11px 14px;
    font-size: 0.76rem;
    text-align: left;
  }

  .hero-bg {
    background-position: center, center, center, 58% top;
    background-size: cover, auto, cover, auto 38%;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34vh;
    padding-bottom: 44px;
    gap: 24px;
  }

  .hero h1 {
    max-width: 16rem;
    font-family:
      "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: clamp(2.15rem, 11vw, 2.9rem);
    line-height: 1.08;
    text-shadow: 3px 3px 0 rgba(255, 23, 23, 0.42);
    text-wrap: balance;
  }

  .hero h1 span:last-child {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    line-height: 1.18;
  }

  .hero p {
    max-width: 22rem;
    margin-top: 18px;
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.82;
  }

  .hero-proof div {
    padding: 15px 16px;
  }

  .proof-number {
    font-size: 2.15rem;
  }

  .proof-label {
    font-size: 0.72rem;
  }

  .split,
  .stats-layout,
  .sponsor-value-layout,
  .sponsor-layout,
  .world-challenge-layout,
  .media-layout,
  .blog-layout,
  .contact-layout {
    padding-block: 58px;
  }

  .section-index {
    margin-bottom: 14px;
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .section-heading h2 {
    max-width: 22rem;
    font-family:
      "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: clamp(1.8rem, 8.8vw, 2.35rem);
    line-height: 1.16;
    text-transform: none;
    text-wrap: balance;
  }

  .section-heading p {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.82;
  }

  .value-pillars,
  .page-flow > div,
  .stat-kpis,
  .discipline-grid,
  .plan-grid,
  .emotion-photo-grid,
  .world-chapters,
  .support-controls,
  .official-links > div,
  .blog-grid,
  .conversion-path,
  .sponsor-benefits > div,
  .contact-direct {
    grid-template-columns: 1fr;
  }

  .value-pillars article,
  .page-flow article,
  .discipline-grid article,
  .plan-card,
  .world-chapters article,
  .support-switcher,
  .official-links,
  .support-panel,
  .blog-card,
  .review-card,
  .conversion-board,
  .sponsor-benefits,
  .sponsor-decision-table,
  .contact-form,
  .social-feed,
  .chart-wrap {
    min-height: auto;
    padding: 18px;
    border-radius: 6px;
    box-shadow: none;
  }

  .value-pillars h3,
  .page-flow h3,
  .activation-panel h3,
  .career-timeline h3,
  .discipline-grid h3,
  .watch-grid h3,
  .blog-card h3 {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .value-pillars p,
  .page-flow p,
  .activation-panel p,
  .career-timeline p,
  .source-note,
  .discipline-grid p,
  .watch-grid p,
  .hongo-focus-grid p,
  .blog-card > p,
  .blog-body p,
  .plan-card li,
  .social-feed p,
  .race-takeaway,
  .review-takeaway {
    font-size: 0.93rem;
    line-height: 1.82;
  }

  .activation-tab-buttons {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .activation-tab-buttons button {
    min-width: 180px;
    min-height: 48px;
    white-space: nowrap;
  }

  .activation-panel {
    min-height: auto;
  }

  .stat-kpis article {
    min-height: auto;
    padding: 18px;
  }

  .stat-kpis strong {
    margin: 10px 0 6px;
    font-size: 2.15rem;
  }

  .career-timeline article {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 16px;
  }

  .chart-head {
    display: grid;
    gap: 8px;
  }

  .plan-card {
    overflow: visible;
  }

  .emotion-photo-card,
  .emotion-photo-card:first-child {
    grid-row: auto;
    min-height: 420px;
  }

  .emotion-photo-card h3 {
    max-width: 12em;
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    line-height: 1.12;
  }

  .emotion-photo-card p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .plan-card::after,
  .review-card::after,
  .watch-grid article::after,
  .hongo-focus-grid article::after {
    display: none;
  }

  .plan-card.featured {
    transform: none;
    box-shadow: none;
  }

  .plan-top {
    display: grid;
    gap: 8px;
    padding-bottom: 18px;
  }

  .plan-card h3 {
    font-family:
      "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.65rem;
    line-height: 1.16;
  }

  .plan-card ul {
    gap: 10px;
    margin: 18px 0;
  }

  .hyrox-race-layout,
  .agent-review-layout {
    padding-block: 58px;
  }

  .reel-insight,
  .race-formula article,
  .race-step,
  .watch-grid article,
  .hongo-focus-grid article {
    min-height: auto;
    box-shadow: none;
  }

  .reel-insight p {
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .race-course {
    grid-template-columns: 1fr;
  }

  .race-step {
    grid-template-columns: 64px 1fr;
  }

  .run-chip {
    padding: 10px 8px;
    font-size: 0.7rem;
  }

  .station-body {
    padding: 17px;
  }

  .station-body h3,
  .race-formula strong,
  .hongo-focus-grid strong {
    font-size: 1.62rem;
    line-height: 1.05;
  }

  .race-formula strong,
  .hongo-focus-grid strong,
  .review-card-head strong {
    text-shadow: 3px 3px 0 rgba(255, 23, 23, 0.55);
  }

  .review-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card b {
    grid-column: 1;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .review-card-head {
    display: grid;
    gap: 8px;
  }

  .review-card-head strong {
    font-size: 2rem;
  }

  .review-card h3,
  .conversion-head h3 {
    font-family:
      "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.58rem;
    line-height: 1.18;
  }

  .conversion-head {
    display: grid;
  }

  .conversion-path article {
    min-height: auto;
  }

  .sponsor-decision-table table {
    min-width: 640px;
  }

  .media-large,
  .media-large img {
    min-height: 280px;
  }

  .contact-layout {
    gap: 24px;
  }
}

/* Sponsor announcement video */
.partner-strip {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.partner-strip p:last-child {
  grid-column: auto;
}

.video-story-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(244, 255, 0, 0.12), transparent 32%),
    linear-gradient(180deg, #050505, #101010 64%, #050505);
}

.video-story-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 88%);
}

.video-story-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(28px, 5vw, 64px);
  padding-block: clamp(74px, 10vw, 122px);
}

.video-story-layout .section-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.video-story-body {
  display: grid;
  gap: 18px;
}

.video-frame {
  position: relative;
  padding: clamp(12px, 2vw, 18px);
  border: 1px solid rgba(244, 255, 0, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 23, 23, 0.16), transparent 58%),
    #0f0f0f;
  box-shadow: 12px 12px 0 rgba(255, 23, 23, 0.72);
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: #000;
  object-fit: cover;
}

.video-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.video-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.video-badges span {
  display: inline-flex;
  padding: 7px 10px;
  color: #050505;
  background: var(--accent);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 950;
}

.video-chapters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.video-chapters article,
.video-link-board {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
}

.video-chapters article {
  min-height: 198px;
  padding: 20px;
}

.video-chapters span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #050505;
  background: var(--accent);
  font-weight: 950;
}

.video-chapters h3 {
  margin: 16px 0 0;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 950;
  line-height: 1.28;
}

.video-chapters p {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.76;
}

.video-link-board {
  padding: clamp(20px, 3vw, 28px);
  background:
    linear-gradient(135deg, rgba(244, 255, 0, 0.13), transparent 60%),
    rgba(255, 255, 255, 0.055);
}

.video-link-board h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  font-weight: 950;
  line-height: 1.05;
}

.video-link-board > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.video-link-board a {
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 14px 15px;
  color: #fff;
  border: 1px solid rgba(244, 255, 0, 0.34);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.28);
  font-size: 0.86rem;
  font-weight: 950;
  line-height: 1.42;
}

.video-link-board a:hover,
.video-link-board a:focus-visible {
  color: #050505;
  background: var(--accent);
}

.conversion-path {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@media (max-width: 920px) {
  .video-story-layout {
    grid-template-columns: 1fr;
  }

  .video-story-layout .section-heading {
    position: static;
  }

  .video-chapters,
  .video-link-board > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .video-story-layout {
    padding-block: 58px;
  }

  .video-frame {
    padding: 10px;
    box-shadow: none;
  }

  .video-actions {
    display: grid;
  }

  .video-chapters,
  .video-link-board > div {
    grid-template-columns: 1fr;
  }

  .video-chapters article,
  .video-link-board {
    min-height: auto;
    padding: 18px;
  }
}

/* Polished sponsor refinement */
:root {
  --danger: #d61f1f;
  --accent: #ecff2c;
  --accent-strong: #f6ff76;
}

body {
  background:
    radial-gradient(circle at 22% 0%, rgba(236, 255, 44, 0.065), transparent 24%),
    linear-gradient(180deg, #030303 0%, #090909 44%, #050505 100%);
}

body::before {
  opacity: 0.2;
}

.site-header {
  background: rgba(4, 4, 4, 0.86);
  backdrop-filter: blur(18px);
}

.nav-cta,
.button-primary,
.admin-button.primary {
  box-shadow: 0 14px 34px rgba(236, 255, 44, 0.14);
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(2, 2, 2, 0.97) 0%, rgba(2, 2, 2, 0.79) 35%, rgba(2, 2, 2, 0.24) 69%),
    linear-gradient(0deg, #020202 0%, rgba(2, 2, 2, 0) 42%),
    url("./assets/hyrox-athlete-hero.png");
  background-position: center, center, 66% center;
  background-size: cover, cover, cover;
  transform: scale(1.025);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero::before {
  right: clamp(22px, 4vw, 68px);
  bottom: clamp(28px, 6vw, 86px);
  top: auto;
  color: rgba(255, 255, 255, 0.22);
  font-size: clamp(2rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  writing-mode: horizontal-tb;
  text-shadow: none;
  content: "LIFE CHANGE";
}

.hero h1 {
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.54);
}

.hero h1 span:last-child {
  color: var(--accent);
}

.hero p {
  max-width: 720px;
  font-weight: 680;
}

.hero-proof {
  transform: none;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.hero-proof div {
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
}

.hero-proof div > * {
  transform: none;
}

.proof-number,
.stat-kpis strong,
.race-formula strong,
.hongo-focus-grid strong,
.review-card-head strong {
  text-shadow: 0 0 28px rgba(236, 255, 44, 0.18);
}

.proof-number {
  color: #fff;
  font-family: inherit;
  font-size: 2.45rem;
}

.proof-label {
  color: rgba(236, 255, 44, 0.9);
}

.partner-strip {
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 3, 3, 0.96);
}

.partner-strip p {
  letter-spacing: 0.06em;
}

.section-light,
.blog-section,
.contact-section {
  background:
    linear-gradient(135deg, rgba(214, 31, 31, 0.08), transparent 34%),
    #080808;
}

.sponsor-value-section,
.world-challenge-section {
  background:
    linear-gradient(135deg, rgba(236, 255, 44, 0.16), transparent 30%),
    linear-gradient(180deg, #f8f9f2, #eef0e8);
}

.mission-panel,
.world-manifesto,
.reel-insight,
.video-frame,
.conversion-board,
.sponsor-benefits,
.sponsor-decision-table {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.18);
}

.reel-insight,
.review-card {
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.24);
}

.plan-card::after,
.race-step::after,
.watch-grid article::after,
.hongo-focus-grid article::after,
.review-card::after {
  opacity: 0.46;
}

.plan-card.featured {
  background: linear-gradient(135deg, var(--accent), #ffffff 72%);
  box-shadow: 0 28px 70px rgba(236, 255, 44, 0.18);
}

.video-frame.is-still {
  padding: 0;
  overflow: hidden;
}

.video-still {
  position: relative;
  display: block;
  min-height: clamp(360px, 52vw, 650px);
  overflow: hidden;
  color: #fff;
  border-radius: 6px 6px 0 0;
  background: #050505;
}

.video-still img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.04);
  filter: saturate(0.98) contrast(1.04);
  animation: still-drift 16s ease-in-out infinite alternate;
}

.video-still::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34) 56%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 45%);
  content: "";
}

.video-still-overlay {
  position: absolute;
  inset: auto clamp(20px, 5vw, 54px) clamp(22px, 5vw, 54px);
  z-index: 1;
  max-width: 680px;
}

.video-still-overlay span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: #050505;
  background: var(--accent);
  font-size: 0.74rem;
  font-weight: 950;
}

.video-still-overlay strong {
  display: block;
  max-width: 12em;
  font-size: clamp(2.2rem, 5.6vw, 5.8rem);
  font-weight: 950;
  line-height: 0.96;
  text-wrap: balance;
}

.video-still-overlay p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.motion-line {
  position: absolute;
  top: 18%;
  right: -16%;
  z-index: 1;
  width: 46%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(236, 255, 44, 0.92), transparent);
  transform: rotate(-18deg);
  animation: line-sweep 4.8s ease-in-out infinite;
}

.motion-line.second {
  top: 66%;
  right: auto;
  left: -18%;
  width: 38%;
  animation-delay: 1.4s;
}

.video-actions,
.video-badges {
  padding-inline: clamp(14px, 2vw, 18px);
}

.video-badges {
  padding-bottom: clamp(14px, 2vw, 18px);
}

.video-link-board a,
.contact-direct a,
.social-links a {
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.video-link-board a:hover,
.contact-direct a:hover,
.social-links a:hover {
  transform: translateY(-2px);
}

.contact-direct {
  grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
}

/* Corporate sponsor interaction refinement */
.hero-channels {
  max-width: 760px;
  margin-top: 18px;
  padding: 12px;
  border: 1px solid rgba(236, 255, 44, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(236, 255, 44, 0.12), transparent 58%),
    rgba(5, 5, 5, 0.62);
  backdrop-filter: blur(14px);
}

.hero-channels-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-channels-head span {
  width: fit-content;
  padding: 6px 9px;
  color: #050505;
  background: var(--accent);
  border-radius: 3px;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-channels-head p {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.48;
}

.hero-channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.hero-channel {
  display: flex;
  flex: 1 1 128px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.hero-channel strong,
.hero-channel small {
  display: block;
}

.hero-channel strong {
  font-size: 0.9rem;
  line-height: 1.1;
}

.hero-channel small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 720;
  line-height: 1.36;
}

.hero-channel.is-primary {
  flex-basis: 190px;
  color: #050505;
  border-color: rgba(236, 255, 44, 0.8);
  background: var(--accent);
}

.hero-channel:not(.is-primary) small {
  display: none;
}

.hero-channel:hover,
.hero-channel:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(236, 255, 44, 0.7);
  background: rgba(236, 255, 44, 0.14);
}

.hero-channel.is-primary:hover,
.hero-channel.is-primary:focus-visible {
  background: var(--accent-strong);
}

.hero-proof {
  gap: 10px;
  grid-template-columns: 1fr;
  max-width: 460px;
  border: 0;
  background: transparent;
}

.hero-proof-grid {
  display: grid;
  gap: 1px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: none !important;
}

.hero-proof button {
  display: block;
  width: 100%;
  padding: 20px 22px;
  color: #fff;
  border: 0;
  border-left: 4px solid transparent;
  background: rgba(5, 5, 5, 0.72);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.hero-proof button:hover,
.hero-proof button.is-active {
  border-left-color: var(--accent);
  background:
    linear-gradient(135deg, rgba(236, 255, 44, 0.16), transparent 58%),
    rgba(5, 5, 5, 0.86);
}

.hero-proof button:hover {
  transform: translateX(-3px);
}

.hero-proof-detail {
  padding: 20px 22px;
  color: #fff;
  border: 1px solid rgba(236, 255, 44, 0.3);
  background:
    linear-gradient(135deg, rgba(236, 255, 44, 0.14), transparent 58%),
    rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(16px);
}

.hero-proof-detail span,
.hero-proof-detail strong,
.hero-proof-detail p {
  display: block;
}

.hero-proof-detail span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-proof-detail strong {
  margin-top: 10px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-proof-detail p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.stat-kpis article {
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.stat-kpis article:hover,
.stat-kpis article.is-active {
  border-color: rgba(236, 255, 44, 0.42);
  background:
    linear-gradient(135deg, rgba(236, 255, 44, 0.14), transparent 58%),
    #111311;
}

.stat-kpis article:hover {
  transform: translateY(-3px);
}

.stat-detail-panel {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(236, 255, 44, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(236, 255, 44, 0.12), transparent 60%),
    #111311;
}

.stat-detail-panel span,
.stat-detail-panel strong {
  display: block;
}

.stat-detail-panel span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.stat-detail-panel strong {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  line-height: 1.08;
}

.stat-detail-panel p,
.signal-detail {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.stat-detail-panel p {
  margin: 12px 0 0;
}

.bar-row {
  cursor: pointer;
  border-radius: 3px;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.bar-row:hover,
.bar-row.is-active {
  background: rgba(236, 255, 44, 0.07);
}

.bar-row:hover {
  transform: translateX(3px);
}

.bar-row.is-active i {
  background: var(--accent);
}

.signal-detail {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.media-large figcaption {
  top: 18px;
  bottom: auto;
  z-index: 3;
}

.media-large::after {
  z-index: 1;
}

.media-frame-info {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: min(460px, calc(100% - 36px));
  padding: 18px 20px;
  color: #fff;
  border: 1px solid rgba(236, 255, 44, 0.26);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(14px);
}

.media-frame-info h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.14;
}

.media-frame-info p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.media-frame-controls {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 180px);
}

.media-frame-controls button {
  min-height: 36px;
  padding: 8px 11px;
  color: #fff;
  border: 1px solid rgba(236, 255, 44, 0.34);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  cursor: pointer;
}

.media-frame-controls button:hover,
.media-frame-controls button.is-active {
  color: #050505;
  background: var(--accent);
}

.hero-proof button:focus-visible,
.stat-kpis article:focus-visible,
.bar-row:focus-visible,
.media-frame-controls button:focus-visible {
  outline: 3px solid rgba(236, 255, 44, 0.72);
  outline-offset: 3px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(5px);
  transition:
    opacity 560ms ease var(--reveal-delay, 0ms),
    transform 560ms ease var(--reveal-delay, 0ms),
    filter 560ms ease var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@keyframes hero-drift {
  from {
    transform: scale(1.025);
    background-position: center, center, 66% center;
  }
  to {
    transform: scale(1.055);
    background-position: center, center, 61% center;
  }
}

@keyframes still-drift {
  from {
    transform: scale(1.04) translateX(0);
  }
  to {
    transform: scale(1.08) translateX(-1.5%);
  }
}

@keyframes line-sweep {
  0%, 100% {
    opacity: 0;
    transform: translateX(-18%) rotate(-18deg);
  }
  45%, 58% {
    opacity: 1;
    transform: translateX(18%) rotate(-18deg);
  }
}

@media (max-width: 920px) {
  .hero::before {
    display: block;
    right: 18px;
    bottom: 18px;
    font-size: clamp(1.6rem, 9vw, 3.6rem);
    opacity: 0.16;
  }
}

@media (max-width: 620px) {
  .hero-bg {
    background-position: center, center, 58% top;
    background-size: cover, cover, auto 42%;
    animation: none;
  }

  .hero h1 {
    max-width: 19rem;
    text-shadow: 0 16px 44px rgba(0, 0, 0, 0.55);
  }

  .video-still {
    min-height: 440px;
  }

  .video-still-overlay {
    inset: auto 18px 20px;
  }

  .video-still-overlay strong {
    max-width: 9em;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .video-still-overlay p {
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .hero-channels {
    margin-top: 18px;
    padding: 12px;
  }

  .hero-channels-head {
    display: grid;
    gap: 8px;
  }

  .hero-channels-head p {
    display: none;
  }

  .hero-channel {
    flex: 1 1 calc(50% - 8px);
    min-height: auto;
    padding: 12px;
  }

  .hero-proof {
    max-width: none;
  }

  .hero-proof button,
  .hero-proof-detail,
  .stat-detail-panel,
  .signal-detail {
    padding: 16px;
  }

  .media-large {
    display: grid;
  }

  .media-large figcaption,
  .media-frame-info,
  .media-frame-controls {
    position: static;
    max-width: none;
  }

  .media-large figcaption {
    justify-self: start;
    margin: 12px 14px 0;
  }

  .media-frame-info,
  .media-frame-controls {
    margin: 12px 14px 0;
  }

  .media-frame-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .video-still img,
  .motion-line {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

.hero::before {
  display: none !important;
  content: none !important;
}

.hero-copy {
  padding-top: clamp(88px, 10vh, 118px);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.9rem, 5vw, 5.45rem);
  line-height: 0.9;
}

.hero p {
  max-width: 690px;
  margin-top: 22px;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.68;
}

.hero-channels {
  margin-top: 16px;
}

@media (max-width: 620px) {
  .hero h1 {
    max-width: 8.4em;
    font-size: clamp(2.85rem, 12.4vw, 3.65rem);
    line-height: 0.94;
  }

  .hero p {
    margin-top: 18px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .hero-channels {
    margin-top: 14px;
  }
}
