:root {
  --black: #030303;
  --ink: #0a0a09;
  --panel: #11100d;
  --panel-2: #1a1812;
  --white: #f7f6f1;
  --muted: #b8b2a2;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #f5c400;
  --blue: #d6a300;
  --soft: #f0eee6;
  --dark-text: #11100d;
  --max: 1180px;
  --radius: 8px;
  --page-bg: var(--black);
  --page-text: var(--white);
  --header-bg: rgba(3, 3, 3, 0.66);
  --header-bg-scrolled: rgba(3, 3, 3, 0.88);
  --nav-text: #d8d3c7;
  --dark-section-bg:
    linear-gradient(135deg, rgba(245, 196, 0, 0.08), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(214, 163, 0, 0.12), transparent 28%),
    var(--black);
  --light-section-bg: var(--soft);
  --surface-bg: rgba(255, 255, 255, 0.055);
  --field-bg: rgba(3, 3, 3, 0.72);
  --field-text: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--page-bg);
  color: var(--page-text);
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: padding 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: var(--header-bg-scrolled);
  border-bottom-color: rgba(245, 196, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(245, 196, 0, 0.65);
  background: rgba(255, 255, 255, 0.05);
  color: var(--lime);
  border-radius: 8px;
  font-size: 13px;
  overflow: hidden;
}

.brand-mark img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(5, 7, 9, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--nav-text);
  font-size: 12.5px;
  font-weight: 800;
}

.site-nav a,
.footer-links a {
  transition: color 0.2s ease;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.is-active,
.footer-links a:hover {
  color: var(--lime);
}

.site-nav a.is-active {
  background: rgba(245, 196, 0, 0.14);
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  opacity: 0;
}

.header-cta {
  justify-self: end;
  padding: 11px 18px;
  border: 1px solid rgba(245, 196, 0, 0.5);
  border-radius: var(--radius);
  color: var(--lime);
  font-size: 14px;
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  border-color: var(--lime);
  background: rgba(245, 196, 0, 0.12);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}


.nav-toggle {
  display: none;
}

.overview-screen {
  display: none;
}

section {
  position: relative;
  padding: 96px clamp(18px, 5vw, 72px);
}

.section-dark {
  background: var(--dark-section-bg);
  color: var(--page-text);
}

.section-light {
  background: var(--light-section-bg);
  color: var(--dark-text);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  padding-top: 116px;
  padding-bottom: 70px;
  overflow: hidden;
}

.hero::before,
.process::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(transparent, black);
  opacity: 0.45;
}

.hero-copy,
.hero-media,
.section-heading,
.intro-copy,
.personal-panel,
.coach-copy,
.contact-copy,
.contact-form,
.players .section-heading {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(48px, 6.4vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.12;
}

p {
  color: inherit;
  line-height: 1.7;
}

.hero-lead {
  max-width: 720px;
  color: #f0ede2;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.55;
}

.hero-note {
  max-width: 650px;
  margin-bottom: 0;
  color: #ddd6c6;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
}

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

.section-actions {
  width: min(100%, var(--max));
  margin: 26px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.section-actions.center {
  justify-content: center;
}

.intro-copy .section-actions,
.coach .section-actions {
  width: 100%;
}

.hero-trust {
  max-width: 720px;
  margin: 16px 0 0;
  color: #bdb7aa;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.coach-trust-strip {
  max-width: 760px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(245, 196, 0, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.035);
}

.coach-trust-strip span {
  display: block;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.coach-trust-strip p {
  margin: 6px 0 0;
  color: #efe9dc;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1.1;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--lime);
  color: #080704;
  box-shadow: 0 20px 54px rgba(245, 196, 0, 0.24);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  border-color: var(--lime);
}

.btn-primary.dark {
  background: var(--dark-text);
  color: var(--lime);
  box-shadow: none;
}

.btn-secondary.dark {
  border-color: rgba(17, 22, 20, 0.25);
  color: var(--dark-text);
  background: rgba(17, 22, 20, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 860px;
  margin-top: 28px;
}

.hero-stats div {
  position: relative;
  padding: 17px;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.08), transparent 65%),
    rgba(255, 255, 255, 0.045);
  overflow: hidden;
}

.hero-stats div::after {
  content: "";
  position: absolute;
  inset: auto 14px 0;
  height: 2px;
  border-radius: 99px 99px 0 0;
  background: var(--lime);
  opacity: 0.58;
}

.hero-stats strong {
  display: block;
  color: var(--lime);
  font-size: 28px;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-media {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.hero-media img {
  width: min(640px, 112%);
  max-width: none;
  filter: drop-shadow(0 40px 90px rgba(0, 0, 0, 0.55));
  animation: float 5s ease-in-out infinite;
}

.hero-coach-photo {
  isolation: isolate;
  min-height: clamp(520px, 44vw, 680px);
  max-height: 720px;
  align-self: stretch;
  overflow: visible;
}

.hero-coach-photo::before,
.hero-coach-photo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-coach-photo::before {
  inset: 7% -3% 4% 5%;
  z-index: -2;
  border-radius: 38px;
  background:
    radial-gradient(circle at 70% 28%, rgba(245, 196, 0, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(245, 196, 0, 0.1), rgba(255, 255, 255, 0.035) 42%, rgba(3, 3, 3, 0.62)),
    #060606;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.6),
    0 0 120px rgba(245, 196, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-coach-photo::after {
  inset: 10% 0 4% 10%;
  z-index: 1;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.72), transparent 28%, transparent 66%, rgba(3, 3, 3, 0.42)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.12), transparent 45%, rgba(3, 3, 3, 0.7)),
    radial-gradient(circle at 82% 76%, rgba(245, 196, 0, 0.18), transparent 24%);
  mix-blend-mode: normal;
}

.hero-coach-photo img {
  width: min(620px, 108%);
  height: clamp(500px, 42vw, 650px);
  object-fit: cover;
  object-position: center 20%;
  border-radius: 34px;
  filter:
    saturate(0.98)
    contrast(1.08)
    brightness(0.82)
    drop-shadow(0 36px 80px rgba(0, 0, 0, 0.62));
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-composite: intersect;
  animation: none;
}

.hero-coach-photo .media-badge {
  z-index: 3;
}

.hero-training-video {
  isolation: isolate;
  min-height: clamp(520px, 44vw, 680px);
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-radius: 28px;
  background: #050505;
  box-shadow:
    0 42px 120px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(245, 196, 0, 0.1);
}

.hero-training-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.36), transparent 24%, transparent 78%, rgba(3, 3, 3, 0.22)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), transparent 58%, rgba(3, 3, 3, 0.4));
}

.hero-training-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-coach-photo .media-badge::before {
  content: "";
  position: absolute;
  left: -78px;
  top: 50%;
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 196, 0, 0.78));
  transform: translateY(-50%);
}

.hero-coach-photo .media-badge::after {
  content: "";
  position: absolute;
  right: 18px;
  top: -18px;
  width: 38px;
  height: 38px;
  border-top: 2px solid rgba(245, 196, 0, 0.76);
  border-right: 2px solid rgba(245, 196, 0, 0.76);
  opacity: 0.85;
}

.media-badge {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: min(260px, 54vw);
  padding: 18px;
  border: 1px solid rgba(245, 196, 0, 0.45);
  border-radius: var(--radius);
  background: rgba(8, 7, 4, 0.82);
  backdrop-filter: blur(14px);
}

.hero-coach-photo .media-badge {
  right: 0;
  bottom: 12%;
  width: min(290px, 46vw);
  border-color: rgba(245, 196, 0, 0.62);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(3, 3, 3, 0.84);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.5),
    0 0 48px rgba(245, 196, 0, 0.12);
}

.media-badge span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.media-badge strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
}

.intro,
.final-cta,
.contact,
.coach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.intro {
  align-items: center;
}

.section-heading {
  max-width: var(--max);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.intro-copy p,
.contact-copy p,
.coach-copy p {
  font-size: 18px;
}

.intro .section-heading h2 {
  max-width: 720px;
  margin-bottom: 22px;
}

.intro-message {
  max-width: 620px;
  margin-top: 20px;
  color: #3c382f;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 900;
  line-height: 1.45;
}

.intro-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.intro-highlights span {
  padding: 10px 13px;
  border-left: 3px solid var(--lime);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  color: #2d2a23;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.intro-copy {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 22, 20, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(245, 196, 0, 0.08)),
    #fff;
  box-shadow: 0 24px 70px rgba(17, 22, 20, 0.06);
}

.intro-copy p {
  max-width: 720px;
  margin-bottom: 0;
  color: #4f493d;
  line-height: 1.75;
}

.intro-panel-copy {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 22, 20, 0.1);
}

.skill-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
}

.skill-group {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(17, 22, 20, 0.1);
  border-radius: var(--radius);
  background: rgba(17, 22, 20, 0.035);
}

.skill-group h3,
.work-steps h3 {
  margin-bottom: 12px;
  color: #181611;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.skill-group h3 {
  margin-bottom: 0;
  color: #3a352b;
}

.skill-cloud,
.coach-details,
.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.skill-group .skill-cloud {
  margin-top: 0;
}

.skill-cloud span,
.coach-details span,
.coach-details a,
.results-grid span {
  padding: 10px 13px;
  border: 1px solid rgba(17, 22, 20, 0.12);
  border-radius: var(--radius);
  background: rgba(17, 22, 20, 0.04);
  font-weight: 800;
}

.skill-cloud span {
  background: #fff;
  font-size: 13px;
}

.work-steps {
  margin-top: 0;
  padding: 20px;
  border: 1px solid rgba(245, 196, 0, 0.38);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.12), rgba(255, 255, 255, 0.74)),
    #fff;
}

.work-steps ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: work-step;
}

.work-steps li {
  counter-increment: work-step;
  position: relative;
  min-height: 92px;
  padding: 42px 14px 14px;
  border: 1px solid rgba(17, 22, 20, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: #3f3a30;
  font-weight: 850;
  line-height: 1.45;
}

.work-steps li::before {
  content: counter(work-step);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark-text);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.paths,
.programs,
.audience,
.process,
.results,
.testimonials,
.players,
.faq {
  display: grid;
  gap: 38px;
}

.path-grid,
.program-grid,
.audience-grid,
.player-grid,
.testimonial-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}


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

.feature-card,
.program-card,
.audience-grid article,
blockquote,
.faq details {
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card {
  min-height: 360px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
}

.feature-card.accent {
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.18), rgba(214, 163, 0, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.feature-card:hover,
.program-card:hover,
.audience-grid article:hover,
blockquote:hover {
  transform: translateY(-5px);
}

.card-index,
.program-tag {
  color: var(--lime);
  font-weight: 900;
  font-size: 13px;
}

.feature-card p {
  color: #d8d2c3;
  max-width: 520px;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  color: var(--lime);
  font-weight: 900;
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.program-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto minmax(0, 1fr) auto;
  align-content: stretch;
  gap: 16px;
  height: 100%;
  min-height: 100%;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(245, 196, 0, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  color: var(--white);
  overflow: hidden;
}

.program-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: rgba(245, 196, 0, 0.18);
}

.program-shop .section-heading {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.program-shop .program-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
}

[data-purchase-trust] {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.purchase-trust {
  width: min(100%, var(--max));
  margin: clamp(28px, 5vw, 52px) auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.purchase-trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(245, 196, 0, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.075), transparent 70%),
    rgba(255, 255, 255, 0.035);
  color: #f4f0e6;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.purchase-trust-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.32);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(245, 196, 0, 0.08);
  font-size: 16px;
  font-weight: 900;
}

.purchase-trust-icon-secure::before {
  content: "✓";
}

.purchase-trust-icon-instant::before {
  content: "↗";
}

.purchase-trust-icon-email::before {
  content: "@";
}

.purchase-trust-icon-support::before {
  content: "?";
}

.program-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  margin: calc(clamp(18px, 2vw, 24px) * -1) calc(clamp(18px, 2vw, 24px) * -1) 2px;
  overflow: hidden;
  border-radius: 18px 18px 10px 10px;
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.08), rgba(214, 163, 0, 0.08)),
    #18150d;
}

.program-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.02), rgba(3, 3, 3, 0.24)),
    radial-gradient(circle at 82% 14%, rgba(245, 196, 0, 0.14), transparent 28%);
  pointer-events: none;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.program-card:hover .program-image img {
  transform: scale(1.04);
}

.program-title {
  display: block;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}

.program-label {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 7px 10px;
  border: 1px solid rgba(245, 196, 0, 0.26);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(245, 196, 0, 0.08);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.program-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  line-height: 1.1;
}

.program-badge-featured {
  border: 1px solid rgba(255, 231, 141, 0.76);
  color: #1b1300;
  background:
    linear-gradient(135deg, #fff3a7 0%, #f5c400 45%, #b97900 100%);
  box-shadow:
    0 0 24px rgba(245, 196, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.program-desc,
.program-result {
  margin: 0;
  color: #ded8c9;
  line-height: 1.55;
}

.program-desc {
  font-size: 15px;
}

.program-meta {
  display: grid;
  gap: 8px;
  align-self: start;
  min-width: 0;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.program-meta p {
  margin: 0;
  color: #d9d2c2;
  font-size: 14px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.program-meta strong {
  color: var(--white);
}

.program-result {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #cfc7b6;
  font-size: 14px;
  font-weight: 760;
}

.program-price {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(255, 231, 141, 0.36);
  border-radius: 999px;
  color: #1b1300;
  background: linear-gradient(135deg, #fff3a7 0%, #f5c400 48%, #c78c00 100%);
  box-shadow:
    0 14px 34px rgba(245, 196, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.program-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: row;
  gap: 10px;
  align-self: end;
  margin-top: auto;
  min-width: 0;
}

.program-actions > :first-child {
  grid-column: 1 / -1;
}

.program-buy,
.program-cart {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 11px 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.program-buy {
  background: var(--lime);
  color: #080806;
}

.program-cart {
  border: 1px solid rgba(245, 196, 0, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
}

.program-buy:hover,
.program-cart:hover {
  transform: translateY(-2px);
}

.program-buy:hover {
  background: var(--lime);
}

.program-cart:hover {
  border-color: rgba(245, 196, 0, 0.58);
  color: var(--lime);
  background: rgba(245, 196, 0, 0.08);
}

.program-cart.is-added,
.btn-secondary.is-added {
  border-color: rgba(245, 196, 0, 0.72);
  color: #080806;
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(245, 196, 0, 0.18);
}

.program-card-featured {
  border-color: rgba(245, 196, 0, 0.36);
  background:
    radial-gradient(circle at 86% 12%, rgba(245, 196, 0, 0.18), transparent 26%),
    linear-gradient(145deg, rgba(245, 196, 0, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 34px 94px rgba(0, 0, 0, 0.32),
    0 0 70px rgba(245, 196, 0, 0.08);
}

.program-card-featured::after {
  background: linear-gradient(90deg, rgba(245, 196, 0, 0.25), var(--lime), rgba(245, 196, 0, 0.25));
}

.program-card-summer {
  border-color: rgba(255, 221, 94, 0.56);
  background:
    radial-gradient(circle at 78% 10%, rgba(255, 212, 74, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(245, 196, 0, 0.18), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.program-card-strength {
  border-color: rgba(245, 196, 0, 0.2);
}

.program-card-strength::before {
  content: attr(data-level);
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.26);
  border-radius: 999px;
  color: rgba(245, 196, 0, 0.9);
  background: rgba(245, 196, 0, 0.06);
  font-size: 12px;
  font-weight: 950;
}

.product-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  padding-top: 118px;
}

.product-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 760px;
}

.product-hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.product-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #f0eadc;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}

.product-price-card {
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  padding: 18px;
  border: 1px solid rgba(245, 196, 0, 0.26);
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 196, 0, 0.15), transparent 42%),
    rgba(255, 255, 255, 0.055);
}

.product-price-card span,
.product-focus-panel span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.product-price-card strong {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 950;
  line-height: 1;
}

.product-price-card p,
.product-focus-panel p {
  margin: 0;
  color: #cfc7b8;
  line-height: 1.5;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-hero-media,
.product-media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 72% 12%, rgba(245, 196, 0, 0.17), transparent 35%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(245, 196, 0, 0.08);
}

.product-hero-media::after,
.product-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(3, 3, 3, 0.28));
  pointer-events: none;
}

.product-hero-media img,
.product-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-media {
  aspect-ratio: 4 / 5;
  max-height: 720px;
}

.product-intro,
.product-description {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}

.product-media-frame {
  aspect-ratio: 4 / 5;
}

.product-copy-block {
  display: grid;
  gap: 18px;
}

.product-copy-block h2,
.product-fit h2,
.product-final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 950;
  line-height: 1.02;
}

.product-copy-block p,
.product-fit > p {
  margin: 0;
  color: #e4ded1;
  font-size: 17px;
  line-height: 1.72;
}

.product-inside-layout {
  width: min(100%, var(--max));
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.92fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.product-inside-layout article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.product-inside-layout img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-inside-layout span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 9px 12px;
  border: 1px solid rgba(245, 196, 0, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(3, 3, 3, 0.76);
  font-size: 13px;
  font-weight: 900;
}

.product-description {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.54fr);
}

.product-focus-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 196, 0, 0.16), transparent 40%),
    rgba(255, 255, 255, 0.055);
}

.product-focus-panel strong {
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 950;
  line-height: 1.12;
}

.product-benefit-grid {
  width: min(100%, var(--max));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-benefits {
  padding-bottom: clamp(68px, 7vw, 88px);
}

.product-benefits .section-heading p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px auto 0;
  color: #d8d1c0;
  font-size: 17px;
  line-height: 1.65;
}

.product-benefit-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(245, 196, 0, 0.17);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.product-benefit-grid span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.product-benefit-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  line-height: 1.16;
}

.product-benefit-grid p {
  margin: 0;
  color: #d5cebd;
  line-height: 1.55;
}

.product-fit {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.product-fit > p {
  padding: clamp(22px, 4vw, 36px);
  border-left: 3px solid var(--lime);
  background: rgba(245, 196, 0, 0.055);
}

.product-final-cta {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.product-final-cta h2 {
  max-width: 880px;
}

.product-detail-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 78px);
  padding-top: 118px;
}

.product-detail-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(460px, 72vh, 760px);
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-radius: 26px;
  background: radial-gradient(circle at 50% 18%, rgba(245, 196, 0, 0.18), transparent 28%), rgba(255, 255, 255, 0.045);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.product-detail-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(5, 5, 4, 0.74)), radial-gradient(circle at 22% 0%, rgba(245, 196, 0, 0.18), transparent 32%);
  pointer-events: none;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.product-detail-copy {
  display: grid;
  gap: 20px;
  max-width: 720px;
}

.product-detail-copy h1,
.cart-page h1,
.checkout-page h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 7vw, 96px);
  font-weight: 950;
  line-height: 0.94;
  text-transform: uppercase;
}

.product-lead,
.checkout-copy p,
.cart-page .section-heading p {
  color: #f0eadc;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.55;
}

.product-detail-price {
  width: fit-content;
  min-width: 190px;
  padding: 18px 20px;
  border: 1px solid rgba(245, 196, 0, 0.34);
  border-radius: 18px;
  background: radial-gradient(circle at 88% 0%, rgba(245, 196, 0, 0.2), transparent 42%), rgba(255, 255, 255, 0.055);
}

.product-detail-price span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-price strong {
  color: var(--lime);
  font-size: 34px;
  line-height: 1;
}

.product-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin: 0 0 14px;
  padding: 9px 13px;
  border: 1px solid rgba(245, 196, 0, 0.42);
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.11);
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.product-badge-featured {
  border-color: rgba(255, 231, 153, 0.9);
  background: linear-gradient(135deg, #fff3ba 0%, #f8c84a 44%, #b7791f 100%);
  color: #100d05;
  box-shadow: 0 0 26px rgba(248, 200, 74, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-shadow: none;
}

.product-detail-meta {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.product-detail-meta p {
  margin: 0;
  color: #f3ead9;
  line-height: 1.5;
}

.product-detail-meta strong {
  color: var(--lime);
}

.product-description-grid,
.product-process-grid,
.testimonial-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.product-description-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-detail-description.product-description-wide {
  display: block;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.product-description-wide .product-description-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

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

.product-description-grid article,
.product-process-grid article,
.testimonial-grid article,
.cart-summary {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  background: radial-gradient(circle at 90% 0%, rgba(245, 196, 0, 0.12), transparent 34%), rgba(255, 255, 255, 0.055);
}

.product-description-grid article,
.testimonial-grid article {
  padding: 24px;
}

.product-description-wide .product-description-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 230px;
  padding: 20px;
}

.product-description-wide .product-description-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 16px;
  border: 1px solid rgba(245, 196, 0, 0.42);
  border-radius: 999px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.product-description-grid h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 18px;
}

.product-description-wide .product-description-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.16;
}

.product-description-grid p {
  margin: 0;
  color: #d7ceba;
  line-height: 1.55;
}

.product-description-wide .product-description-grid p {
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  .product-description-wide .product-description-grid,
  .product-included-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-description-wide .product-description-grid,
  .product-included-grid {
    grid-template-columns: 1fr;
  }

  .product-description-wide .product-description-grid article {
    min-height: 0;
  }
}

.product-process-grid article {
  min-height: 150px;
  padding: 20px;
}

.product-process-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 196, 0, 0.42);
  border-radius: 999px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.product-process-grid p {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.testimonial-grid p {
  color: #f2eadb;
  font-size: 18px;
  line-height: 1.5;
}

.testimonial-grid strong {
  color: var(--lime);
  font-size: 13px;
  text-transform: uppercase;
}

.product-related-grid {
  margin-top: 28px;
}

.product-related-card .program-desc {
  -webkit-line-clamp: 3;
}

.product-included {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.product-included-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.product-included-grid-three {
  width: min(100%, 920px);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-included-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 20px;
  background: radial-gradient(circle at 100% 0%, rgba(245, 196, 0, 0.13), transparent 38%), rgba(255, 255, 255, 0.055);
}

.product-included-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.22;
}

.product-included-grid p {
  margin: 0;
  color: #d7ceba;
  line-height: 1.55;
}

.product-bonus {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.product-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.product-bonus-grid article {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(245, 196, 0, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(245, 196, 0, 0.11), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.22);
}

.product-bonus-grid h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 19px;
  line-height: 1.2;
}

.product-bonus-grid p {
  margin: 0;
  color: #d7ceba;
  line-height: 1.58;
}

@media (max-width: 900px) {
  .product-included-grid-three,
  .product-bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .product-included-grid,
  .product-included-grid-three,
  .product-bonus-grid {
    grid-template-columns: 1fr;
  }
}

.cart-page,
.checkout-page {
  min-height: 100vh;
  padding-top: 130px;
}

.cart-layout,
.checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.checkout-page {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.92fr);
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.cart-item img {
  width: 120px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 14px;
}

.cart-item h3 {
  margin-bottom: 8px;
  color: var(--white);
}

.cart-item p {
  margin-bottom: 10px;
  color: #d8d0bf;
}

.cart-item strong {
  display: block;
  margin-top: 7px;
  color: var(--lime);
}

.cart-item-quantity {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.cart-item button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.cart-summary {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.cart-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
}

.cart-summary-row + .cart-summary-row {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-summary-row strong {
  display: block;
  color: var(--lime);
  font-size: 18px;
}

.cart-summary-total strong {
  font-size: 28px;
}

.cart-summary p {
  color: #d7ceba;
  line-height: 1.5;
}

.checkout-copy {
  max-width: 620px;
}

.checkout-form {
  align-self: start;
}

.checkout-order-summary {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-radius: 20px;
  background: radial-gradient(circle at 100% 0%, rgba(245, 196, 0, 0.15), transparent 38%), rgba(255, 255, 255, 0.045);
}

.checkout-order-summary > span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-order-summary article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
}

.checkout-order-summary img {
  width: 58px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 10px;
}

.checkout-order-summary strong {
  color: var(--white);
}

.checkout-order-summary p {
  margin: 4px 0 0;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
}

.checkout-total {
  display: block;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--lime) !important;
  font-size: 28px;
}

.payment-result,
.admin-page {
  min-height: 100vh;
  padding-top: 130px;
}

.payment-card,
.admin-shell {
  width: min(100%, var(--max));
  margin-inline: auto;
  border: 1px solid rgba(245, 196, 0, 0.2);
  border-radius: 28px;
  background: radial-gradient(circle at 88% 12%, rgba(245, 196, 0, 0.14), transparent 34%), rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.payment-card {
  max-width: 900px;
  padding: clamp(32px, 6vw, 72px);
  text-align: center;
}

.payment-card h1,
.admin-page h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  text-transform: uppercase;
}

.payment-card p {
  margin-inline: auto;
  max-width: 760px;
  color: #eee5d5;
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.payment-actions,
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}

.admin-shell {
  display: grid;
  gap: 24px;
  padding: clamp(22px, 4vw, 42px);
}

.admin-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  width: min(100% - 28px, 1680px);
  margin-inline: auto;
}

.admin-layout.admin-page {
  padding-inline: 0;
}

.admin-main {
  width: 100%;
}

.admin-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  max-height: calc(100vh - 128px);
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(245, 196, 0, 0.12), transparent 34%),
    rgba(3, 8, 8, 0.94);
  box-shadow: var(--shadow);
}

.admin-sidebar-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

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

.admin-sidebar-brand strong {
  color: var(--white);
  font-size: 16px;
  text-transform: uppercase;
}

.admin-sidebar-brand small,
.admin-sidebar-footer span {
  color: var(--muted);
}

.admin-sidebar-nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar-nav button {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.admin-sidebar-nav button span {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.admin-sidebar-nav button:hover,
.admin-sidebar-nav button.is-active {
  border-color: rgba(245, 196, 0, 0.45);
  color: var(--white);
  background: rgba(245, 196, 0, 0.1);
  transform: translateX(2px);
}

.admin-sidebar-footer {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 13px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(5, 14, 14, 0.92), rgba(245, 196, 0, 0.06));
}

.admin-topbar h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
}

.admin-topbar p {
  margin: 8px 0 0;
  color: var(--muted);
}

.admin-mobile-menu {
  display: none;
  min-height: 44px;
  border: 1px solid rgba(245, 196, 0, 0.35);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  font-weight: 950;
}

.admin-orders[hidden],
.admin-stripe-diagnostics[hidden],
.admin-contact-inquiries[hidden],
.admin-logs[hidden] {
  display: none;
}

.admin-overview,
.admin-marketing,
.admin-deep-analytics,
.admin-placeholder-section,
.admin-settings-overview {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 196, 0, 0.11), transparent 30%),
    rgba(255, 255, 255, 0.035);
}

.admin-two-column,
.admin-placeholder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-module-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.26);
}

.admin-module-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
}

.admin-module-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.admin-activity-list {
  display: grid;
  gap: 10px;
}

.admin-activity-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-activity-item span {
  grid-row: span 2;
  align-self: start;
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-activity-item strong {
  color: var(--white);
}

.admin-activity-item p,
.admin-activity-item small {
  margin: 0;
  color: var(--muted);
}

.admin-mini-funnel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-mini-funnel span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 196, 0, 0.2);
  border-radius: 14px;
  color: var(--white);
  background: rgba(245, 196, 0, 0.08);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.admin-training-requests > .admin-controls {
  display: none;
}

.admin-crm-metrics,
.admin-crm-funnel,
.admin-followups-card,
.admin-crm-filters {
  margin-top: 12px;
}

.admin-followups-card {
  background:
    radial-gradient(circle at 90% 0%, rgba(245, 196, 0, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.24);
}

.admin-mini-button {
  min-height: 34px;
  padding: 8px 12px;
  font-size: 12px;
}

.admin-lead-modal {
  width: min(1040px, calc(100vw - 28px));
  max-height: min(860px, calc(100vh - 28px));
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: 26px;
  padding: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(245, 196, 0, 0.14), transparent 34%),
    #070707;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.72);
}

.admin-lead-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.admin-lead-modal-shell {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}

.admin-lead-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 14px;
}

.admin-lead-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-lead-detail-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-lead-detail-list span,
.admin-lead-modal label {
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-lead-detail-list strong {
  color: var(--white);
  overflow-wrap: anywhere;
}

.admin-lead-modal label {
  display: grid;
  gap: 8px;
}

.admin-lead-modal input,
.admin-lead-modal select,
.admin-lead-modal textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
}

.admin-training-table {
  min-width: 1500px;
}

.admin-shell > *,
.admin-orders {
  min-width: 0;
}

.admin-login-card {
  display: grid;
  gap: 16px;
  max-width: 520px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 900;
}

.admin-login-card input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
}

.admin-orders {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  padding: 0;
}

.admin-training-requests {
  margin-top: clamp(34px, 6vw, 72px);
  padding-top: clamp(28px, 5vw, 56px);
  border-top: 1px solid rgba(245, 196, 0, 0.22);
}

.admin-landing-analytics {
  margin-top: clamp(34px, 6vw, 72px);
  padding-top: clamp(28px, 5vw, 56px);
  border-top: 1px solid rgba(245, 196, 0, 0.22);
}

.admin-analytics-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 12px;
  width: 100%;
  min-width: 0;
}

.admin-analytics-filters label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  min-width: 0;
}

.admin-analytics-filters input,
.admin-analytics-filters select {
  min-width: 0;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
}

.admin-landing-pages {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 205, 0, 0.09), transparent 32%),
    rgba(8, 8, 8, 0.94);
}

.admin-dashboard-block,
.admin-dashboard-panel {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.admin-dashboard-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.admin-dashboard-title h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

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

.admin-comparison-card {
  border: 1px solid rgba(255, 205, 0, 0.28);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 205, 0, 0.1), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.admin-comparison-card span,
.admin-funnel-step span {
  display: block;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-comparison-card strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2.3rem);
  line-height: 1;
}

.admin-comparison-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.admin-dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 4px;
}

.admin-dashboard-tab {
  border: 1px solid rgba(255, 205, 0, 0.3);
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 950;
  cursor: pointer;
}

.admin-dashboard-tab.is-active,
.admin-dashboard-tab:hover {
  color: #050505;
  background: var(--lime);
  box-shadow: 0 14px 32px rgba(255, 205, 0, 0.18);
}

.admin-dashboard-panel[hidden] {
  display: none;
}

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

.admin-funnel-step {
  position: relative;
  min-height: 110px;
  border: 1px solid rgba(255, 205, 0, 0.24);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.admin-funnel-step strong {
  display: block;
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(1.5rem, 2vw, 2.25rem);
}

.admin-funnel-step em {
  position: absolute;
  top: 18px;
  right: 16px;
  color: var(--lime);
  font-style: normal;
  font-weight: 950;
}

.admin-leads-dashboard-table,
.admin-orders-dashboard-table {
  min-width: 1320px;
}

.admin-analytics-actions {
  display: flex;
  gap: 8px;
  align-items: end;
}

.admin-analytics-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.admin-analytics-tables {
  display: grid;
  gap: 26px;
}

.admin-analytics-tables h3 {
  margin: 0 0 12px;
}

.admin-analytics-table {
  min-width: 820px;
}

.admin-funnel-table {
  min-width: 1180px;
}

.admin-funnel-table th:not(:first-child),
.admin-funnel-table td:not(:first-child) {
  text-align: center;
}

.admin-funnel-table td:nth-child(2),
.admin-funnel-table td:nth-child(3),
.admin-funnel-table td:nth-child(4),
.admin-funnel-table td:nth-child(5) {
  color: var(--lime);
  font-weight: 900;
}

.admin-section-heading {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}

.admin-section-heading h2 {
  margin: 0;
}

.admin-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
}

.admin-toolbar strong {
  color: var(--lime);
  font-size: 18px;
}

.admin-refresh {
  min-height: 42px;
  padding-inline: 16px;
}

.admin-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.admin-search {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-search input {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.3);
}

.admin-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-filter button {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 950;
  cursor: pointer;
}

.admin-filter button.is-active {
  border-color: rgba(245, 196, 0, 0.72);
  color: #101008;
  background: var(--lime);
  box-shadow: 0 0 22px rgba(245, 196, 0, 0.14);
}

.admin-state {
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  color: #eee6d8;
  background: rgba(255, 255, 255, 0.055);
}

.admin-error {
  border: 1px solid rgba(255, 85, 85, 0.28);
  color: #ffd0d0;
  background: rgba(255, 85, 85, 0.08);
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
}

.admin-table {
  width: 100%;
  min-width: 1120px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #eee6d8;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.admin-table td span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.admin-table code {
  color: #f6df75;
  white-space: normal;
  word-break: break-word;
}

.admin-table a {
  color: var(--lime);
  font-weight: 900;
}

.admin-diagnostics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.admin-diagnostic-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  padding: 14px;
}

.admin-diagnostic-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-diagnostic-card strong {
  display: block;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.admin-table tr.is-paid td {
  background: rgba(48, 210, 120, 0.045);
}

.admin-table tr.is-failed td,
.admin-table tr.is-expired td,
.admin-table tr.is-cancelled td {
  color: rgba(238, 230, 216, 0.68);
}

.order-status {
  display: inline-grid;
  min-width: 78px;
  place-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #101008;
  background: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.status-failed,
.status-cancelled,
.status-expired {
  color: var(--white);
  background: rgba(255, 85, 85, 0.7);
}

.status-pending {
  background: #e6d4a8;
}

.admin-training-table {
  min-width: 860px;
}

.training-request-status {
  min-width: 126px;
  min-height: 40px;
  padding: 8px 34px 8px 12px;
  border: 1px solid rgba(245, 196, 0, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: #24231d;
  font-weight: 900;
  cursor: pointer;
}

.training-request-status.status-booked {
  border-color: rgba(48, 210, 120, 0.58);
  background: rgba(48, 210, 120, 0.14);
}

.training-request-status.status-declined {
  border-color: rgba(255, 85, 85, 0.46);
  background: rgba(255, 85, 85, 0.12);
}

.training-request-status:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 760px) {
  .admin-page {
    padding-top: 96px;
  }

  .admin-layout {
    grid-template-columns: 1fr;
    width: min(100% - 18px, 100%);
    gap: 14px;
  }

  .admin-sidebar {
    position: static;
    max-height: none;
    padding: 12px;
    border-radius: 20px;
  }

  .admin-sidebar-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .admin-sidebar-nav button {
    flex: 0 0 auto;
    width: auto;
    min-height: 42px;
    white-space: nowrap;
  }

  .admin-sidebar-footer {
    display: none;
  }

  .admin-mobile-menu {
    display: inline-flex;
    align-items: center;
  }

  .admin-topbar {
    align-items: flex-start;
  }

  .admin-two-column,
  .admin-placeholder-grid,
  .admin-mini-funnel,
  .admin-lead-detail-grid,
  .admin-lead-detail-list {
    grid-template-columns: 1fr;
  }

  .admin-activity-item {
    grid-template-columns: 1fr;
  }

  .admin-controls {
    grid-template-columns: 1fr;
  }

  .admin-filter {
    justify-content: flex-start;
  }

  .admin-section-heading,
  .admin-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-analytics-filters {
    grid-template-columns: 1fr;
  }

  .admin-comparison-grid,
  .admin-funnel-visual {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-tab {
    width: 100%;
  }
}

.shop-toast {
  position: fixed;
  right: clamp(16px, 4vw, 34px);
  bottom: clamp(16px, 4vw, 34px);
  z-index: 90;
  width: min(340px, calc(100vw - 32px));
  padding: 15px 17px;
  border: 1px solid rgba(245, 196, 0, 0.34);
  border-radius: 16px;
  color: var(--white);
  background: rgba(10, 10, 8, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.44);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.shop-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}


.programs-hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(30px, 6vw, 92px);
  padding-top: 126px;
  padding-bottom: 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 30%, rgba(245, 196, 0, 0.18), transparent 24%),
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(120deg, #070706 0%, #040405 48%, #141006 100%);
}

.programs-hero::before {
  content: "";
  position: absolute;
  inset: 78px 0 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, transparent 92%);
  pointer-events: none;
}

.programs-hero-copy,
.training-dashboard {
  position: relative;
  z-index: 1;
}

.programs-hero-copy {
  width: min(100%, 690px);
}

.programs-hero-label {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.programs-hero h1 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(52px, 6.8vw, 112px);
  line-height: 0.92;
  letter-spacing: 0;
}

.programs-hero-lead {
  max-width: 630px;
  margin: 26px 0 0;
  color: #e4dfd2;
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.65;
}

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

.programs-hero-trust {
  margin: 18px 0 0;
  color: #a7a291;
  font-size: 14px;
  font-weight: 800;
}

.system-proof {
  max-width: 500px;
  margin-top: 38px;
  padding: 18px 20px;
  border-left: 2px solid var(--lime);
  background: linear-gradient(90deg, rgba(245, 196, 0, 0.1), rgba(255, 255, 255, 0.03));
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
}

.system-proof span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.system-proof p {
  margin: 10px 0 0;
  color: #ddd7c8;
  line-height: 1.65;
}

.training-dashboard {
  justify-self: center;
  width: min(100%, 520px);
}

.training-dashboard > p {
  width: min(100%, 370px);
  margin: 22px auto 0;
  color: #999584;
  text-align: center;
  line-height: 1.6;
}

.training-video-showcase {
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 14px;
}

.training-video-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: 22px;
  background: #070807;
  box-shadow:
    0 34px 92px rgba(0, 0, 0, 0.46),
    0 0 70px rgba(245, 196, 0, 0.12);
}

.training-video-card.featured-video {
  grid-row: span 2;
}

.training-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.04), rgba(3, 3, 3, 0.72)),
    radial-gradient(circle at 82% 14%, rgba(245, 196, 0, 0.18), transparent 24%);
  pointer-events: none;
}

.training-video-card video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.06) brightness(0.82);
}

.training-video-card span {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border: 1px solid rgba(245, 196, 0, 0.34);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.76);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
}

.training-video-showcase > p {
  grid-column: 1 / -1;
  width: min(100%, 430px);
  margin: 8px auto 0;
  color: #b8b29f;
  text-align: center;
  line-height: 1.58;
}

.dashboard-card {
  position: relative;
  min-height: 610px;
  padding: 28px;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    #070807;
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.64),
    0 0 90px rgba(245, 196, 0, 0.14);
  overflow: hidden;
}

.dashboard-card::before,
.dashboard-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dashboard-card::before {
  width: 280px;
  height: 280px;
  right: -84px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 196, 0, 0.3), transparent 64%);
}

.dashboard-card::after {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
}

.dashboard-topline,
.dashboard-focus,
.dashboard-metrics,
.dashboard-progress,
.dashboard-badges {
  position: relative;
  z-index: 1;
}

.dashboard-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #bfb8a5;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-topline strong {
  padding: 8px 10px;
  border: 1px solid rgba(245, 196, 0, 0.35);
  border-radius: 999px;
  color: var(--lime);
  background: rgba(245, 196, 0, 0.08);
  font-size: 11px;
}

.dashboard-focus {
  margin-top: 48px;
}

.dashboard-focus p,
.dashboard-focus span {
  margin: 0;
  color: #9c9686;
  font-weight: 850;
}

.dashboard-focus h2 {
  margin: 8px 0 8px;
  color: var(--white);
  font-size: clamp(38px, 4vw, 62px);
  line-height: 0.95;
}

.pitch-map {
  position: relative;
  z-index: 1;
  height: 210px;
  margin: 32px 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background:
    linear-gradient(rgba(245, 196, 0, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 196, 0, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(245, 196, 0, 0.08), rgba(255, 255, 255, 0.02));
  background-size: 54px 54px, 54px 54px, auto;
  overflow: hidden;
}

.marker,
.ball-dot {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.marker {
  width: 16px;
  height: 16px;
  border: 2px solid var(--lime);
  background: #080807;
  box-shadow: 0 0 24px rgba(245, 196, 0, 0.45);
}

.marker-one {
  left: 18%;
  top: 62%;
}

.marker-two {
  left: 48%;
  top: 34%;
}

.marker-three {
  right: 18%;
  top: 52%;
}

.run-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  opacity: 0.78;
  transform-origin: left center;
}

.run-line-one {
  left: 20%;
  top: 60%;
  width: 170px;
  transform: rotate(-18deg);
}

.run-line-two {
  right: 17%;
  top: 48%;
  width: 150px;
  transform: rotate(20deg);
}

.ball-dot {
  right: 12%;
  bottom: 18%;
  width: 46px;
  height: 46px;
  border: 2px solid var(--lime);
  background:
    radial-gradient(circle at 35% 35%, #fff 0 18%, transparent 19%),
    radial-gradient(circle, #f6f3e7 0 56%, #111 57% 100%);
}

.dashboard-metrics,
.dashboard-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-metrics span,
.dashboard-badges span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #eee8d8;
  background: rgba(255, 255, 255, 0.055);
  font-size: 12px;
  font-weight: 900;
}

.dashboard-progress {
  margin: 28px 0 18px;
  padding: 18px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 16px;
  background: rgba(245, 196, 0, 0.06);
}

.dashboard-progress div {
  display: flex;
  justify-content: space-between;
  color: #d8d2c3;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-progress strong {
  color: var(--lime);
}

.progress-track {
  display: block;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.progress-track span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), #fff2a0);
}

.program-slide {
  min-height: 92vh;
  display: grid;
  align-content: center;
  gap: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 196, 0, 0.12), transparent 26%),
    linear-gradient(145deg, #050506, #090909 52%, #120f06);
}

.program-slide .section-heading {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.program-slide .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: #d6d0c0;
  font-size: 18px;
  line-height: 1.7;
}

.problem-solution-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.slide-kicker {
  margin: 0 0 14px;
  color: #8f8a79;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slide-kicker.accent {
  color: var(--lime);
}

.slide-card-grid {
  display: grid;
  gap: 18px;
}

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

.slide-card {
  min-height: 205px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.slide-card.solution {
  border-color: rgba(245, 196, 0, 0.22);
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.slide-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: rgba(245, 196, 0, 0.17);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.slide-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 20px;
}

.slide-card p {
  margin: 0;
  color: #d6d0c0;
  line-height: 1.65;
}

.program-flow {
  background:
    radial-gradient(circle at 18% 22%, rgba(245, 196, 0, 0.1), transparent 24%),
    linear-gradient(145deg, #050609, #090b12 54%, #070706);
}

.flow-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.86fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(245, 196, 0, 0.16);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(10, 12, 17, 0.72);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
}

.flow-copy h2 {
  max-width: 760px;
}

.flow-copy p {
  max-width: 690px;
  color: #e0dacb;
  font-size: 18px;
  line-height: 1.7;
}

.flow-copy .section-actions {
  width: 100%;
  margin-inline: 0;
}

.flow-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
  padding-left: 24px;
  color: #f0eadc;
  font-weight: 780;
  line-height: 1.5;
}

.flow-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
}

.flow-cards {
  display: grid;
  gap: 16px;
}

.flow-cards-heading {
  padding: 0 4px 6px;
}

.flow-cards-heading h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.12;
}

.flow-cards-heading p {
  margin: 0;
  color: #d9d3c2;
  line-height: 1.55;
}

.flow-cards article {
  min-height: 134px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.flow-cards article.highlight {
  border-color: rgba(245, 196, 0, 0.3);
  background: rgba(245, 196, 0, 0.1);
}

.flow-cards span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: 999px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.flow-cards h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 22px;
}

.flow-cards p {
  margin: 0;
  color: #d9d3c2;
  line-height: 1.6;
}

.training-hero .dashboard-focus h2 {
  max-width: 360px;
  font-size: clamp(34px, 3.2vw, 52px);
}

.training-hero h1 {
  font-size: clamp(48px, 6vw, 92px);
}

.training-options {
  background:
    radial-gradient(circle at 74% 18%, rgba(245, 196, 0, 0.14), transparent 24%),
    linear-gradient(145deg, #040404, #0a0a09 58%, #141006);
}

.training-after-signup {
  display: grid;
  gap: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(245, 196, 0, 0.1), transparent 24%),
    linear-gradient(145deg, #050505, #08090b 58%, #111007);
}

.training-after-signup .section-heading,
.signup-info-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.signup-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
}

.signup-steps,
.training-logistics {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(245, 196, 0, 0.16);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.signup-steps h3,
.training-logistics h3 {
  margin: 0 0 20px;
  color: var(--white);
  font-size: clamp(23px, 2vw, 30px);
}

.signup-steps ol {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: signup-step;
}

.signup-steps li {
  counter-increment: signup-step;
  position: relative;
  min-height: 48px;
  padding: 12px 14px 12px 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #f0eadc;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 760;
  line-height: 1.45;
}

.signup-steps li::before {
  content: counter(signup-step);
  position: absolute;
  left: 14px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lime);
  color: #080704;
  font-size: 12px;
  font-weight: 900;
}

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

.logistics-grid div {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.logistics-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.logistics-grid strong {
  color: var(--white);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.35;
}

.training-options-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.session-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.session-card.featured {
  border-color: rgba(245, 196, 0, 0.34);
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.session-card span {
  display: inline-flex;
  margin-bottom: 40px;
  padding: 8px 10px;
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: 999px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.session-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 22px;
}

.session-card p {
  margin: 0;
  color: #d8d2c3;
  line-height: 1.65;
}

.photo-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(26px, 5vw, 70px);
  background:
    radial-gradient(circle at 78% 22%, rgba(245, 196, 0, 0.12), transparent 26%),
    linear-gradient(145deg, #040404, #08090b 58%, #111007);
}

.photo-proof-copy {
  max-width: 620px;
}

.photo-proof-copy h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
}

.photo-proof-copy p:not(.eyebrow) {
  margin: 0;
  color: #ded8c9;
  font-size: 17px;
  line-height: 1.7;
}

.photo-proof-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(170px, 1fr));
  gap: 14px;
  min-height: clamp(420px, 38vw, 560px);
}

.photo-proof-card {
  position: relative;
  margin: 0;
  min-height: 0;
  border: 1px solid rgba(245, 196, 0, 0.2);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.photo-proof-card.large {
  grid-row: 1 / -1;
}

.photo-proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 3, 3, 0.78)),
    radial-gradient(circle at 84% 18%, rgba(245, 196, 0, 0.16), transparent 24%);
  pointer-events: none;
}

.photo-proof-card img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.86);
  transition: transform 0.35s ease;
}

.photo-proof-card:hover img {
  transform: scale(1.035);
}

.photo-proof-card figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border: 1px solid rgba(245, 196, 0, 0.35);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.74);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.training-process {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(245, 196, 0, 0.12), transparent 25%),
    radial-gradient(circle at 20% 72%, rgba(255, 255, 255, 0.055), transparent 24%),
    linear-gradient(145deg, #040404, #08090b 58%, #111007);
}

.training-process-copy {
  max-width: 760px;
}

.training-process-copy h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
}

.training-process-lead {
  margin: 0;
  color: #e6decc;
  font-size: 18px;
  line-height: 1.68;
}

.training-process-text {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.training-process-text p {
  margin: 0;
  color: #d8d2c3;
  line-height: 1.68;
}

.training-process-cards {
  display: grid;
  gap: 14px;
}

.training-process-cards article {
  display: grid;
  gap: 10px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.training-process-cards span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.training-process-cards h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.12;
}

.training-process-cards p {
  margin: 0;
  color: #d8d2c3;
  line-height: 1.58;
}

.training-process-cards article > p:first-of-type {
  color: #f4d85a;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-inside {
  display: grid;
  gap: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(245, 196, 0, 0.11), transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(255, 255, 255, 0.055), transparent 24%),
    linear-gradient(145deg, #040404, #080909 58%, #111006);
}

.program-inside .section-heading,
.inside-grid,
.program-inside-note {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.program-inside .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: #ded8c9;
  font-size: 17px;
  line-height: 1.7;
}

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

.inside-card {
  min-height: 235px;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.inside-card span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  border: 1px solid rgba(245, 196, 0, 0.34);
  border-radius: 50%;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.inside-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.16;
}

.inside-card p {
  margin: 0;
  color: #d9d3c2;
  line-height: 1.62;
}

.program-inside-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: 16px;
  background: rgba(245, 196, 0, 0.08);
}

.program-inside-note strong {
  color: var(--lime);
  font-size: 14px;
  font-weight: 950;
  text-transform: uppercase;
}

.program-inside-note p {
  max-width: 760px;
  margin: 0;
  color: #e8e1d1;
  line-height: 1.55;
}

.home-products,
.home-path,
.home-why {
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 10%, rgba(245, 196, 0, 0.11), transparent 24%),
    radial-gradient(circle at 20% 58%, rgba(255, 255, 255, 0.055), transparent 22%),
    linear-gradient(145deg, #030303, #070809 56%, #111007);
}

.home-products {
  display: grid;
  gap: clamp(18px, 2.5vw, 30px);
  padding-top: clamp(78px, 9vw, 118px);
  padding-bottom: clamp(72px, 8vw, 110px);
}

.home-products-grid {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(310px, 0.76fr) minmax(0, 1.05fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.brand-face-card,
.real-products-card,
.home-inline-cta,
.home-path-panel,
.why-feature-card {
  border: 1px solid rgba(245, 196, 0, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.032);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-face-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: clamp(660px, 56vw, 790px);
  overflow: hidden;
}

.brand-face-gallery {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0), rgba(3, 3, 3, 0.24)),
    #090909;
}

.brand-face-image {
  height: 100%;
}

.brand-face-image img,
.brand-face-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.98) contrast(1.05);
}

.brand-face-image video {
  display: block;
}

.brand-face-image.main {
  min-height: 0;
  height: 100%;
}

.brand-face-image.main img,
.brand-face-image.main video {
  object-position: center center;
}

.brand-face-copy {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: clamp(22px, 2.7vw, 34px);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.1), rgba(3, 3, 3, 0.24)),
    rgba(255, 255, 255, 0.018);
}

.brand-face-copy h2,
.real-products-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.04;
}

.brand-face-copy p,
.real-products-card p {
  margin: 0;
  color: #ddd7c8;
  line-height: 1.65;
}

.real-products-card {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  align-content: start;
  padding: clamp(22px, 2.7vw, 34px);
  min-width: 0;
  min-height: clamp(660px, 56vw, 790px);
  height: auto;
}

.section-heading.compact {
  margin: 0;
}

.section-heading.compact p:not(.eyebrow) {
  max-width: 680px;
  color: #d8d2c3;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(88px, 7.8vw, 116px);
  grid-auto-flow: dense;
  gap: clamp(10px, 1.3vw, 14px);
}

.product-showcase-grid.start-path-grid {
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: minmax(0, auto);
  grid-auto-flow: row;
  gap: clamp(14px, 1.8vw, 18px);
  min-width: 0;
}

.start-path-card {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: clamp(220px, 17vw, 270px);
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(245, 196, 0, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  text-decoration: none;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.start-path-card.featured,
.start-path-card.field {
  grid-column: 1;
  min-height: clamp(220px, 17vw, 270px);
}

.start-path-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 196, 0, 0.46);
  box-shadow: 0 34px 88px rgba(0, 0, 0, 0.34);
}

.path-card-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.path-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.06), rgba(3, 3, 3, 0.78)),
    radial-gradient(circle at 84% 18%, rgba(245, 196, 0, 0.2), transparent 25%);
  pointer-events: none;
}

.path-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(0.78);
  transition: transform 0.36s ease;
}

.start-path-card:hover .path-card-media img {
  transform: scale(1.035);
}

.start-path-card.featured .path-card-media img {
  object-position: center 50%;
}

.start-path-card.field .path-card-media img {
  object-position: 64% 42%;
}

.path-card-media.split {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0;
}

.path-card-media.split img:first-child {
  object-position: center 34%;
}

.path-card-media.split img:last-child {
  object-position: center 18%;
}

.path-card-media.split img {
  min-width: 0;
}

.path-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: inherit;
  padding: clamp(16px, 2vw, 24px);
  min-width: 0;
  max-width: 100%;
}

.path-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(245, 196, 0, 0.34);
  border-radius: 999px;
  background: rgba(3, 3, 3, 0.68);
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.path-card-copy strong {
  max-width: min(430px, 100%);
  color: var(--white);
  font-size: clamp(20px, 1.85vw, 30px);
  font-weight: 950;
  line-height: 1.02;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.64);
}

.product-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-tile.large {
  grid-column: span 2;
  grid-row: span 2;
}

.product-tile:nth-child(2),
.product-tile:nth-child(3),
.product-tile:nth-child(4),
.product-tile:nth-child(5),
.product-tile:nth-child(7),
.product-tile:nth-child(10),
.product-mini {
  grid-column: auto;
}

.product-tile:nth-child(6),
.product-tile:nth-child(8) {
  grid-row: span 2;
}

.product-tile:nth-child(9) {
  grid-column: span 2;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-tile:hover img {
  transform: scale(1.05);
}

.product-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 196, 0, 0.35);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.product-tile span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 900;
  line-height: 1.1;
}

.product-mini {
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.product-mini strong {
  color: var(--lime);
  font-size: 34px;
  line-height: 1;
}

.product-mini span {
  position: static;
  background: transparent;
  padding: 0;
  max-width: 100%;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.home-inline-cta {
  width: min(100%, 1240px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  background:
    linear-gradient(90deg, rgba(245, 196, 0, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(245, 196, 0, 0.04);
}

.home-inline-cta h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 22px;
}

.home-inline-cta p {
  margin: 0;
  color: #d8d2c3;
}

.home-path {
  min-height: 92vh;
  display: grid;
  align-content: center;
}

.home-path-panel {
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(24px, 3.5vw, 56px);
}

.home-path-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(16px, 2vw, 24px);
  width: 100%;
}

.home-path-cards article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  min-width: 0;
  min-height: 300px;
  padding: clamp(20px, 2vw, 28px);
  border: 1px solid rgba(245, 196, 0, 0.46);
  border-radius: 20px;
  background:
    radial-gradient(circle at 15% 0%, rgba(245, 196, 0, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(245, 196, 0, 0.08));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.home-path-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 196, 0, 0.85);
  background:
    radial-gradient(circle at 15% 0%, rgba(245, 196, 0, 0.24), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(245, 196, 0, 0.12));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.38), 0 0 26px rgba(245, 196, 0, 0.14);
}

.home-path-cards span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.home-path-cards h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(19px, 1.45vw, 24px);
  line-height: 1.12;
  overflow-wrap: normal;
  hyphens: auto;
}

.home-path-cards p {
  margin: 0;
  color: #d8d2c3;
  font-size: 15px;
  line-height: 1.58;
  max-width: 34ch;
}

.home-path-cards .btn {
  align-self: end;
  margin-top: 18px;
  width: 100%;
  min-width: 0;
  justify-content: center;
  white-space: normal;
  text-align: center;
}

.home-why {
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

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

.why-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
}

.why-copy p {
  max-width: 710px;
  color: #e0dacb;
  font-size: 18px;
  line-height: 1.75;
}

.why-feature-card {
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(245, 196, 0, 0.04);
}

.why-feature-card h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.1;
}

.why-feature-card p {
  margin: 0 0 24px;
  color: #e3ddcf;
  line-height: 1.75;
}

.why-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 900px);
}

.why-points article {
  padding: 18px;
  border-left: 2px solid var(--lime);
  background: rgba(255, 255, 255, 0.04);
}

.why-points span {
  color: var(--lime);
  font-weight: 900;
}

.why-points p {
  margin: 8px 0 0;
  color: #d8d2c3;
  line-height: 1.55;
}

.faq-hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  padding-top: 126px;
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 196, 0, 0.14), transparent 24%),
    linear-gradient(135deg, #090705, #050608 52%, #061018);
}

.faq-pill {
  display: inline-flex;
  margin-bottom: 24px;
  padding: 9px 16px;
  border: 1px solid rgba(245, 196, 0, 0.35);
  border-radius: 999px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.faq-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 0.96;
}

.faq-hero-copy p {
  max-width: 650px;
  color: #e3ddcf;
  font-size: 18px;
  line-height: 1.7;
}

.faq-next-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.faq-next-card a {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: #f2edde;
  background: rgba(3, 3, 3, 0.24);
  font-weight: 850;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.faq-next-card a:hover {
  transform: translateX(4px);
  border-color: rgba(245, 196, 0, 0.42);
  color: var(--lime);
}

.faq-search-section {
  padding-top: 36px;
  padding-bottom: 28px;
  background: #050608;
}

.faq-search-label {
  width: min(100%, 960px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.faq-search-label span {
  color: #8f8a79;
  font-size: 12px;
  font-weight: 900;
}

.faq-search-label input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0 18px;
  background: rgba(3, 3, 3, 0.36);
  color: var(--white);
  font: inherit;
  outline: none;
}

.faq-search-label input:focus {
  border-color: rgba(245, 196, 0, 0.55);
}

.faq-page {
  padding-top: 28px;
  padding-bottom: 28px;
  background: #050608;
}

.faq-category-card {
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.faq-category-card h2 {
  margin: 0 0 20px;
  padding-top: 8px;
  border-top: 1px solid rgba(245, 196, 0, 0.55);
  color: var(--white);
  text-align: right;
  font-size: clamp(24px, 2.5vw, 34px);
}

.faq-category-card .faq-list {
  width: 100%;
}

.audience-grid p {
  color: #5f5848;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 24px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  color: #5f5848;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(245, 196, 0, 0.14);
}

.personal-panel {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(245, 196, 0, 0.12), rgba(214, 163, 0, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.personal-panel p,
.check-list li {
  color: #e1d9c8;
}

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

.audience-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 232px;
  padding: 24px;
  border: 1px solid rgba(17, 22, 20, 0.1);
  background: #fff;
}

.audience-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 196, 0, 0.35);
  border-radius: var(--radius);
  background: rgba(245, 196, 0, 0.1);
  font-size: 22px;
}

.audience-grid h3 {
  margin-bottom: 0;
  font-size: clamp(19px, 1.5vw, 24px);
}

.audience-grid p {
  margin-bottom: 0;
  line-height: 1.65;
}

.process-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.process-list li {
  min-height: 170px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #d9e2dd;
  font-weight: 800;
  line-height: 1.35;
}

.process-list span {
  display: block;
  margin-bottom: 30px;
  color: var(--lime);
  font-size: 13px;
}

.results-grid {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.results-grid span {
  flex: 1 1 300px;
  padding: 18px;
  background: #fff;
}

.coach {
  width: min(100%, 1320px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 78px);
  padding-top: clamp(62px, 7vw, 90px);
  padding-bottom: clamp(62px, 7vw, 90px);
}

.coach-copy {
  display: grid;
  align-content: start;
  max-width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.coach-media {
  position: relative;
  min-height: 0;
  height: 100%;
  min-height: clamp(560px, 58vw, 760px);
  max-height: 780px;
  align-self: stretch;
  border: 1px solid rgba(245, 196, 0, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0), rgba(3, 3, 3, 0.32)),
    radial-gradient(circle at 50% 18%, rgba(245, 196, 0, 0.12), transparent 30%),
    #050504;
  overflow: hidden;
  box-shadow:
    0 36px 110px rgba(0, 0, 0, 0.44),
    0 0 92px rgba(245, 196, 0, 0.12);
}

.coach-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.38), transparent 36%, rgba(3, 3, 3, 0.24)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.08), transparent 46%, rgba(3, 3, 3, 0.62)),
    radial-gradient(circle at 82% 20%, rgba(245, 196, 0, 0.16), transparent 28%);
  pointer-events: none;
}

.coach-media > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 16%;
  filter: saturate(1.02) contrast(1.07) brightness(0.84);
}

.coach-story-proof {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
  bottom: clamp(16px, 2vw, 24px);
  display: grid;
  gap: 12px;
}

.coach-story-proof article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(245, 196, 0, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(3, 3, 3, 0.78);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(245, 196, 0, 0.1);
  backdrop-filter: blur(12px);
}

.coach-story-proof img {
  width: 104px;
  height: 82px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  filter: saturate(0.96) contrast(1.05) brightness(0.86);
}

.coach-story-proof div {
  min-width: 0;
}

.coach-story-proof span {
  display: block;
  margin-bottom: 5px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-story-proof strong {
  display: block;
  color: var(--white);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.2;
}

.coach-name {
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 22px;
  font-weight: 900;
}

.coach-copy h2 {
  font-size: clamp(38px, 4vw, 62px);
  line-height: 1.04;
}

.coach-role {
  margin: -2px 0 10px;
  color: var(--lime);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 900;
  line-height: 1.35;
}

.coach-copy p {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.75;
}

.coach-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.coach-proof-grid article {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
}

.coach-proof-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
}

.coach-proof-grid h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 20px;
  line-height: 1.15;
}

.coach-proof-grid p {
  margin: 0;
  color: #d8d2c3;
  font-size: 14px;
  line-height: 1.55;
}

.coach-copy .section-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.coach-story-section,
.coach-method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(26px, 4.5vw, 66px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(245, 196, 0, 0.12), transparent 26%),
    linear-gradient(145deg, #040404, #080909 58%, #111006);
}

.coach-story-copy,
.coach-method-copy {
  max-width: 720px;
}

.coach-story-copy h2,
.coach-method-copy h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.coach-story-copy p:not(.eyebrow),
.coach-method-copy p:not(.eyebrow) {
  margin: 0 0 16px;
  color: #d8d2c3;
  font-size: 17px;
  line-height: 1.72;
}

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

.coach-archive-grid article {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 460px;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.3);
}

.coach-archive-grid img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04) brightness(0.88);
}

.coach-archive-grid div {
  padding: 18px;
}

.coach-archive-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.coach-archive-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.1;
}

.coach-method-section {
  align-items: start;
}

.coach-method-section .coach-proof-grid {
  margin-top: 0;
}

.coach-method-copy .section-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.coach-details span,
.coach-details a {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: #e5dece;
}

.coach-details a {
  color: var(--lime);
}

.training-philosophy {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.training-philosophy h3 {
  margin-bottom: 10px;
}

.training-philosophy p {
  margin-bottom: 0;
  color: #e1d9c8;
}

.player-results-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(245, 196, 0, 0.13), transparent 25%),
    radial-gradient(circle at 16% 72%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(145deg, #030303, #070809 58%, #111007);
}

.online-results {
  background:
    radial-gradient(circle at 18% 18%, rgba(245, 196, 0, 0.13), transparent 25%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.055), transparent 24%),
    linear-gradient(145deg, #030303, #080808 58%, #130f05);
}

.player-results-section .section-heading h2,
.player-results-section .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.player-results-section .section-heading p:not(.eyebrow) {
  max-width: 790px;
  margin-inline: auto;
  color: #ddd7c8;
}

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

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

.player-card {
  padding: 22px;
  border: 1px solid rgba(245, 196, 0, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.player-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 196, 0, 0.36);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.player-photo {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.1), rgba(3, 3, 3, 0.74)),
    radial-gradient(circle at 50% 32%, rgba(245, 196, 0, 0.22), transparent 28%),
    #18150d;
  overflow: hidden;
}

.authority-player-card {
  border-color: rgba(245, 196, 0, 0.26);
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.online-player-card {
  display: flex;
  flex-direction: column;
}

.online-player-card .player-profile-copy {
  flex: 1;
  grid-template-rows: auto auto 1fr;
  min-height: 451px;
}

.authority-player-card .player-photo {
  min-height: 0;
  margin-bottom: 18px;
}

.player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04) brightness(0.9);
}

.live-player-card .player-photo img {
  object-position: center top;
}

.live-player-card {
  display: flex;
  flex-direction: column;
  border-color: rgba(245, 196, 0, 0.24);
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.085), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.038);
}

.live-player-card:hover {
  border-color: rgba(245, 196, 0, 0.62);
  box-shadow:
    0 36px 96px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(245, 196, 0, 0.14);
}

.live-player-card .player-photo img {
  transition: transform 0.28s ease, filter 0.28s ease;
}

.live-player-card:hover .player-photo img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.06) brightness(0.94);
}

.live-player-card .player-profile-copy {
  flex: 1;
  grid-template-rows: auto auto auto 1fr;
}

.live-training-badge {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(245, 196, 0, 0.42);
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.1);
  color: var(--lime);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.live-player-facts {
  gap: 0;
}

.live-player-quote {
  align-content: start;
  min-height: 164px;
  border-color: rgba(245, 196, 0, 0.24);
  background:
    linear-gradient(145deg, rgba(245, 196, 0, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.035);
}

.live-player-quote p {
  color: #f0eadc;
  font-style: italic;
}

.program-photo {
  aspect-ratio: 16 / 11;
  background:
    radial-gradient(circle at 72% 18%, rgba(245, 196, 0, 0.2), transparent 26%),
    #080806;
}

.program-photo img {
  object-position: center 28%;
  filter: saturate(1.04) contrast(1.06) brightness(0.82);
}

.player-card p {
  color: #d8d2c3;
}

.player-profile-copy {
  display: grid;
  gap: 12px;
}

.player-profile-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.1;
}

.player-position,
.player-focus {
  margin: 0;
  font-weight: 900;
}

.player-position {
  color: #f0eadc;
}

.player-detail-block {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid rgba(245, 196, 0, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.player-detail-block strong {
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.player-detail-block p {
  margin: 0;
  line-height: 1.58;
}

.player-profile-facts {
  gap: 0;
}

.player-fact-row {
  display: grid;
  gap: 4px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 196, 0, 0.12);
}

.player-fact-row:first-child {
  padding-top: 0;
}

.player-fact-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.player-achievements {
  align-content: start;
}

.player-achievements ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.player-achievements li {
  color: #d8d2c3;
  line-height: 1.5;
}

.player-focus {
  width: fit-content;
  padding: 9px 11px;
  border: 1px solid rgba(245, 196, 0, 0.44);
  border-radius: 999px;
  background: rgba(245, 196, 0, 0.12);
  color: var(--lime);
  font-size: 13px;
}

.player-goal {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  padding: 16px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.player-goal strong {
  color: var(--lime);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.player-goal p {
  margin: 0;
}

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

blockquote {
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(17, 22, 20, 0.1);
  background: #fff;
  color: #202824;
  font-size: 18px;
  line-height: 1.6;
}

cite {
  display: block;
  margin-top: 18px;
  color: #66736d;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  width: min(100%, 900px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.faq summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 24px 22px;
  color: #cad4ce;
}

.final-cta {
  align-items: center;
}

.final-cta p {
  max-width: 660px;
  color: #5f5848;
}

.contact {
  align-items: start;
}

.contact-page {
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  min-height: calc(100vh - 88px);
}

.contact-page h1 {
  max-width: 560px;
  font-size: clamp(40px, 4.55vw, 58px);
  line-height: 1.04;
  text-wrap: balance;
}

.contact-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-reasons span,
.contact-info-card {
  border: 1px solid rgba(245, 196, 0, 0.22);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
}

.contact-reasons span {
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 900;
}

.contact-info-card {
  display: grid;
  gap: 8px;
  max-width: 420px;
  margin-top: 28px;
  padding: 18px;
  border-radius: var(--radius);
}

.contact-info-card p {
  margin: 0;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-info-card a {
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.contact-inquiry-form {
  align-self: start;
  border-color: rgba(245, 196, 0, 0.42);
  background:
    radial-gradient(circle at 100% 0%, rgba(245, 196, 0, 0.09), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0b0c0c;
  box-shadow:
    0 0 0 1px rgba(245, 196, 0, 0.07) inset,
    0 20px 60px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(245, 196, 0, 0.08);
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  grid-column: 1 / -1;
}

.contact-inquiry-form label {
  color: #f5f5f0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-inquiry-form input,
.contact-inquiry-form textarea {
  background: #050606;
  border-color: rgba(255, 255, 255, 0.13);
  color: var(--white);
  caret-color: var(--lime);
}

.contact-inquiry-form input:hover,
.contact-inquiry-form textarea:hover {
  border-color: rgba(245, 196, 0, 0.48);
}

.contact-inquiry-form input:focus,
.contact-inquiry-form textarea:focus {
  border-color: var(--lime);
  box-shadow:
    0 0 0 3px rgba(245, 196, 0, 0.12),
    0 0 22px rgba(245, 196, 0, 0.08);
}

.contact-inquiry-form textarea {
  min-height: 128px;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #d7d8d2;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: normal;
  text-transform: none;
}

.contact-consent input {
  width: auto;
  min-height: auto;
  margin-top: 3px;
  accent-color: var(--lime);
}

.contact-inquiry-form .btn-primary {
  margin-top: 2px;
  box-shadow: 0 12px 30px rgba(245, 196, 0, 0.14);
}

.contact-inquiry-form .btn-primary:hover {
  box-shadow: 0 14px 38px rgba(245, 196, 0, 0.24);
}

label {
  display: grid;
  gap: 8px;
  color: #dbe4df;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--field-bg);
  color: var(--field-text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 4px rgba(245, 196, 0, 0.12);
}

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

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--lime);
  font-weight: 800;
}

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.admin-contact-table {
  min-width: 920px;
}

.contact-inquiry-status {
  min-width: 132px;
  min-height: 40px;
  padding: 8px 34px 8px 12px;
  border: 1px solid rgba(245, 196, 0, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: #24231d;
  font-weight: 900;
  cursor: pointer;
}

.contact-inquiry-status.status-answered {
  border-color: rgba(48, 210, 120, 0.58);
  background: rgba(48, 210, 120, 0.14);
}

.contact-inquiry-status.status-archived {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.contact-inquiry-status:disabled {
  cursor: wait;
  opacity: 0.65;
}

.admin-message-cell {
  max-width: 360px;
  white-space: normal;
  line-height: 1.45;
}

.site-footer {
  display: block;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) 22px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 0%, rgba(245, 196, 0, 0.08), transparent 32%),
    var(--page-bg);
}

.footer-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 0.75fr));
  gap: clamp(28px, 4vw, 58px);
}

.footer-brand p {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.footer-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-logo strong {
  color: var(--lime);
}

.footer-column {
  display: grid;
  gap: 11px;
  align-content: start;
  color: var(--muted);
  font-weight: 700;
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.footer-column a {
  width: fit-content;
  max-width: 100%;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
  transition: color 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 38px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-page {
  min-height: 70vh;
  padding: clamp(118px, 13vw, 164px) clamp(18px, 5vw, 72px) clamp(64px, 9vw, 110px);
  background:
    radial-gradient(circle at 80% 0%, rgba(245, 196, 0, 0.09), transparent 30%),
    var(--page-bg);
}

.legal-card {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(245, 196, 0, 0.17);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.25);
}

.legal-card h1 {
  max-width: 760px;
  margin-bottom: 10px;
}

.legal-card section {
  padding-top: 26px;
  border-top: 1px solid var(--line);
  margin-top: 26px;
}

.legal-card h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 24px);
}

.legal-card p,
.legal-card li {
  color: #cfc9bb;
  line-height: 1.75;
}

.legal-card a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    inset: 75px 16px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 3, 3, 0.96);
  }

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

  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--white);
  }

  .hero,
  .programs-hero,
  .product-hero,
  .product-detail-hero,
  .product-intro,
  .product-description,
  .product-fit,
  .cart-layout,
  .checkout-page,
  .photo-proof,
  .training-process,
  .coach-story-section,
  .coach-method-section,
  .flow-panel,
  .home-products-grid,
  .home-path-panel,
  .home-why,
  .signup-info-grid,
  .faq-hero,
  .intro,
  .personal-panel,
  .coach,
  .contact,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .home-products-grid {
    max-width: 720px;
  }

  .brand-face-card,
  .real-products-card {
    height: auto;
    min-height: 0;
  }

  .brand-face-card {
    grid-template-rows: auto auto;
  }

  .brand-face-gallery,
  .brand-face-image.main {
    min-height: 0;
    height: clamp(500px, 62vw, 560px);
  }

  .real-products-card {
    align-content: start;
  }

  .product-showcase-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 112px;
  }

  .programs-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .product-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .product-hero-media {
    width: min(100%, 560px);
    justify-self: center;
  }

  .hero-stats,
  .purchase-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-media {
    min-height: clamp(420px, 68vw, 620px);
    width: min(100%, 640px);
    justify-self: center;
  }

  .product-description-grid,
  .product-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-dashboard {
    width: min(100%, 560px);
  }

  .training-video-showcase {
    width: min(100%, 680px);
  }

  .dashboard-card {
    min-height: 560px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-media {
    min-height: 390px;
    order: -1;
  }

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

  .hero-coach-photo {
    order: 0;
    min-height: 560px;
    max-height: none;
    width: min(100%, 680px);
    justify-self: center;
  }

  .hero-coach-photo::before {
    inset: 4% 0 0;
  }

  .hero-coach-photo::after {
    inset: 7% 3% 0;
  }

  .hero-coach-photo img {
    width: min(620px, 100%);
    height: 560px;
    object-position: center 16%;
  }

  .hero-coach-photo .media-badge {
    right: 4%;
    bottom: 8%;
  }

  .hero-training-video {
    width: min(100%, 680px);
    min-height: 540px;
    justify-self: center;
  }

  .program-grid,
  .slide-card-grid.three,
  .inside-grid,
  .training-options-grid,
  .photo-proof-grid,
  .home-path-cards,
  .audience-grid,
  .player-grid,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-inside-layout,
  .product-benefit-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-path-cards {
    grid-template-columns: 1fr;
  }

  .home-path-cards article {
    min-height: auto;
  }

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

  .authority-player-card .player-photo {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .skill-groups,
  .work-steps ol {
    grid-template-columns: 1fr;
  }

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

  .photo-proof {
    align-items: start;
  }

  .photo-proof-copy {
    max-width: 760px;
  }

  .photo-proof-grid {
    min-height: auto;
    grid-template-rows: none;
  }

  .photo-proof-card,
  .photo-proof-card.large {
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .training-process-copy {
    max-width: 780px;
  }

  .program-inside-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .coach {
    gap: 30px;
  }

  .coach-story-section,
  .coach-method-section {
    gap: 28px;
  }

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

  .coach-copy {
    order: 1;
  }

  .coach-media {
    order: 2;
    min-height: 560px;
    max-height: none;
  }

  .coach-media > img {
    min-height: 460px;
    object-position: center 20%;
  }
}

@media (max-width: 720px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  p,
  a,
  button,
  label,
  strong,
  span {
    overflow-wrap: break-word;
  }

  section {
    padding: 72px 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    padding-inline: 14px;
    gap: 8px;
  }

  .header-actions {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1;
    white-space: nowrap;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding-top: 98px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-copy > .eyebrow,
  .hero-copy > h1,
  .hero-copy > .hero-lead,
  .hero-copy > .hero-note,
  .hero-copy > .hero-actions,
  .hero-copy > .hero-trust,
  .hero-copy > .coach-trust-strip,
  .hero-copy > .hero-stats {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy > .eyebrow {
    order: 1;
  }

  .hero-copy > h1 {
    order: 2;
  }

  .hero-copy > .hero-lead {
    order: 3;
  }

  .hero-copy > .hero-note {
    order: 4;
  }

  .hero-copy > .hero-actions {
    order: 5;
  }

  .hero > .hero-media {
    order: 6;
  }

  .hero-copy > .hero-trust {
    order: 7;
  }

  .hero-copy > .coach-trust-strip {
    order: 8;
  }

  .hero-copy > .hero-stats {
    order: 9;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.03;
  }

  .hero h1 {
    font-size: clamp(23px, 6.4vw, 28px);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-note,
  .hero-trust {
    font-size: 14px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions,
  .programs-hero-actions,
  .cta-actions,
  .section-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .btn,
  .programs-hero-actions .btn,
  .cta-actions .btn,
  .section-actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }


  .section-actions.center {
    justify-content: stretch;
  }

  .path-grid,
  .program-grid,
  .program-shop .program-grid,
  .product-inside-layout,
  .product-benefit-grid,
  .product-description-grid,
  .product-process-grid,
  .testimonial-grid,
  .cart-layout,
  .checkout-page,
  .slide-card-grid.three,
  .inside-grid,
  .training-options-grid,
  .photo-proof-grid,
  .home-path-cards,
  .why-points,
  .audience-grid,
  .player-grid,
  .process-list,
  .contact-form,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coach-trust-strip {
    padding: 14px;
  }

  .programs-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .programs-hero-copy,
  .programs-hero-copy > *,
  .programs-hero-lead,
  .programs-hero-trust,
  .system-proof,
  .training-dashboard,
  .product-detail-copy,
  .product-detail-copy > *,
  .product-detail-meta,
  .checkout-copy,
  .checkout-copy > *,
  .checkout-form,
  .cart-page .section-heading {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .programs-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .program-card {
    padding: 15px;
    border-radius: 16px;
  }

  .program-image {
    margin: -15px -15px 2px;
    border-radius: 16px 16px 10px 10px;
  }

  .product-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .product-detail-copy h1,
  .cart-page h1,
  .checkout-page h1 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .product-hero-copy > p:not(.eyebrow) {
    font-size: 17px;
  }

  .product-detail-hero {
    min-height: auto;
    padding-top: 110px;
  }

  .product-detail-media {
    min-height: 420px;
    border-radius: 20px;
  }

  .product-actions {
    display: grid;
    width: 100%;
  }

  .cart-item {
    grid-template-columns: 92px 1fr;
  }

  .cart-item img {
    width: 92px;
  }

  .cart-item button {
    grid-column: 1 / -1;
  }

  .cart-summary {
    position: static;
  }

  .product-inside-layout article {
    min-height: 330px;
  }

  .product-benefit-grid article {
    min-height: auto;
  }

  .authority-player-card .player-photo {
    aspect-ratio: 4 / 5;
    min-height: 360px;
  }

  .inside-card {
    min-height: auto;
  }

  .program-inside-note {
    padding: 18px;
  }

  .program-features,
  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .signup-steps,
  .training-logistics {
    padding: 20px;
    border-radius: 16px;
  }

  .logistics-grid div {
    min-height: auto;
  }

  .photo-proof {
    gap: 22px;
  }

  .training-process {
    gap: 24px;
  }

  .training-process-copy h2 {
    font-size: clamp(30px, 8.8vw, 42px);
  }

  .training-process-lead {
    font-size: 16px;
    line-height: 1.62;
  }

  .training-process-cards article {
    padding: 20px;
    border-radius: 16px;
  }

  .photo-proof-copy h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .photo-proof-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .photo-proof-card,
  .photo-proof-card.large {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .hero-stats div,
  .audience-grid article,
  blockquote {
    padding: 20px;
  }

  .hero-media {
    min-height: 300px;
  }

  .hero-coach-photo {
    min-height: 470px;
    margin-top: 12px;
  }

  .hero-coach-photo::before {
    inset: 3% -2% 2%;
    border-radius: 22px;
  }

  .hero-coach-photo::after {
    inset: 6% 0 2%;
    border-radius: 20px;
  }

  .hero-coach-photo img {
    width: 100%;
    height: 470px;
    border-radius: 20px;
    object-position: center 12%;
  }

  .hero-coach-photo .media-badge {
    left: 14px;
    right: 14px;
    bottom: 22px;
    width: auto;
  }

  .hero-coach-photo .media-badge::before,
  .hero-coach-photo .media-badge::after {
    display: none;
  }

  .hero-training-video {
    width: 100%;
    min-height: 430px;
    margin-top: 12px;
    border-radius: 20px;
  }

  .programs-hero h1 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .programs-hero-lead {
    font-size: 16px;
  }

  .programs-hero-trust {
    line-height: 1.7;
  }

  .training-video-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .training-video-card,
  .training-video-card.featured-video {
    grid-row: auto;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  .training-video-showcase > p {
    font-size: 14px;
  }

  .dashboard-card {
    min-height: 500px;
    padding: 20px;
    border-radius: 20px;
  }

  .pitch-map {
    height: 180px;
  }

  .dashboard-focus {
    margin-top: 34px;
  }

  .program-slide {
    min-height: auto;
  }

  .slide-card,
  .session-card,
  .flow-cards article {
    min-height: auto;
  }

  .flow-panel {
    padding: 22px;
    border-radius: 18px;
  }

  .home-products {
    padding-top: 76px;
    padding-inline: 14px;
  }

  .brand-face-card {
    height: auto;
    min-height: 0;
  }

  .brand-face-gallery,
  .brand-face-image,
  .brand-face-image.main {
    min-height: 0;
    height: 420px;
  }

  .brand-face-copy,
  .real-products-card {
    padding: 20px;
  }

  .brand-face-copy h2,
  .real-products-card h2 {
    font-size: clamp(27px, 8.2vw, 36px);
    line-height: 1.08;
  }

  .brand-face-copy p,
  .real-products-card p {
    font-size: 14px;
    line-height: 1.58;
  }

  .home-inline-cta {
    display: grid;
    padding: 20px;
    border-radius: 16px;
  }

  .faq-next-card {
    padding: 22px;
  }

  .faq-category-card h2 {
    text-align: left;
  }

  .product-tile.large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .product-showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(118px, 34vw, 156px);
    gap: 10px;
  }

  .product-showcase-grid.start-path-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 12px;
  }

  .start-path-card,
  .start-path-card.featured,
  .start-path-card.field {
    grid-column: span 1;
    min-height: 260px;
  }

  .start-path-card.field .path-card-media img {
    object-position: 62% 40%;
  }

  .path-card-copy {
    padding: 18px;
  }

  .path-card-copy strong {
    font-size: clamp(20px, 6.2vw, 27px);
    line-height: 1.04;
  }

  .product-tile:nth-child(2),
  .product-tile:nth-child(3),
  .product-tile:nth-child(4),
  .product-tile:nth-child(5),
  .product-tile:nth-child(6),
  .product-tile:nth-child(7),
  .product-tile:nth-child(8),
  .product-tile:nth-child(9),
  .product-tile:nth-child(10),
  .product-mini {
    grid-column: span 1;
    grid-row: span 1;
  }

  .product-tile:nth-child(6),
  .product-tile:nth-child(8),
  .product-tile:nth-child(9) {
    grid-row: span 2;
  }

  .hero-media img {
    width: 112%;
  }

  .hero-coach-photo img {
    width: 100%;
  }

  .media-badge {
    left: 0;
    right: auto;
    bottom: 0;
    width: min(240px, 78vw);
  }

  .hero-coach-photo .media-badge {
    left: 14px;
    right: 14px;
    bottom: 22px;
    width: auto;
  }

  .feature-card,
  .program-card {
    min-height: auto;
  }

  .process-list li {
    min-height: 130px;
  }

  .coach-copy h2 {
    font-size: 34px;
  }

  .coach-copy p {
    font-size: 15px;
  }

  .coach-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .coach-archive-grid {
    grid-template-columns: 1fr;
  }

  .coach-archive-grid article {
    min-height: 0;
  }

  .coach-archive-grid img {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .coach-proof-grid article {
    min-height: 0;
    padding: 16px;
  }

  .coach-media > img {
    min-height: 0;
  }

  .coach-media {
    height: 590px;
    min-height: 590px;
  }

  .coach-story-proof {
    left: 12px;
    right: 12px;
    bottom: 12px;
    gap: 10px;
  }

  .coach-story-proof article {
    grid-template-columns: 86px minmax(0, 1fr);
    padding: 8px;
    gap: 10px;
  }

  .coach-story-proof img {
    width: 86px;
    height: 72px;
    border-radius: 8px;
  }

  .coach-story-proof strong {
    font-size: 14px;
  }

}

@media (max-width: 430px) {
  .program-actions {
    grid-template-columns: 1fr;
  }

  .coach-media {
    height: 560px;
    min-height: 560px;
  }

  .coach-story-proof article {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .coach-story-proof img {
    width: 76px;
    height: 66px;
  }

  .home-products {
    padding-inline: 10px;
  }

  .brand-face-gallery,
  .brand-face-image,
  .brand-face-image.main {
    min-height: 0;
    height: 380px;
  }

  .product-showcase-grid {
    grid-auto-rows: 126px;
  }

  .product-showcase-grid.start-path-grid {
    grid-auto-rows: auto;
  }

  .start-path-card,
  .start-path-card.featured,
  .start-path-card.field {
    min-height: 236px;
  }

  .product-tile span {
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.page-links {
  padding-top: 96px;
}

.page-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.page-link-card {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 24px;
  color: var(--light-text);
  background: var(--light-card-bg);
  border: 1px solid var(--light-border);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.page-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.page-link-card span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
}

.page-link-card strong {
  font-size: 1.35rem;
  color: var(--light-heading);
}

.page-link-card p {
  margin: 0;
  color: var(--light-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .page-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .footer-main,
  .contact-form-row,
  .purchase-trust {
    grid-template-columns: 1fr;
  }

  .page-link-grid {
    grid-template-columns: 1fr;
  }

  .page-link-card {
    min-height: auto;
  }
}



/* Audit fixes: conversion, SEO support, responsive shortcuts */
@media (min-width: 721px) {
  .hero {
    min-height: 86vh;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(44px, 5.2vw, 64px);
    line-height: 1.03;
  }

  .programs-hero h1,
  .product-hero h1 {
    font-size: clamp(46px, 5.6vw, 72px);
    line-height: 1.02;
  }

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

.section-heading h1,
.coach-copy h1 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.cart-empty-page {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
}

.cart-empty-heading {
  max-width: 880px;
}

.cart-empty-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cart-empty-recommendations {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cart-empty-recommendations article {
  padding: 22px;
  border: 1px solid rgba(245, 196, 0, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.cart-empty-recommendations span,
.cart-empty-recommendations a,
.contact-reassurance strong {
  color: var(--lime);
  font-weight: 950;
}

.cart-empty-recommendations h2 {
  margin: 8px 0;
  font-size: 20px;
  line-height: 1.15;
}

.cart-empty-recommendations p {
  color: #d8d1c0;
  line-height: 1.55;
}

.cart-empty-recommendations a {
  display: inline-flex;
  margin-top: 10px;
}

.contact-reassurance {
  max-width: 420px;
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(245, 196, 0, 0.22);
  border-radius: var(--radius);
  background: rgba(245, 196, 0, 0.07);
}

.contact-reassurance span {
  color: #efe9dc;
  line-height: 1.45;
}

.mobile-quick-actions {
  display: none;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 72px;
  }

  .mobile-quick-actions {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(245, 196, 0, 0.24);
    border-radius: 16px;
    background: rgba(5, 5, 5, 0.92);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(14px);
  }

  .mobile-quick-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #050505;
    background: var(--lime);
    font-size: 14px;
    font-weight: 950;
    text-decoration: none;
  }

  .mobile-quick-actions a + a {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .cart-empty-recommendations {
    grid-template-columns: 1fr;
  }
}
