@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/7cHpv4kjgoGqM7E_DMs5ynghnQ.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/7cHqv4kjgoGqM7E30-8s51ostz0rdg.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/7cHqv4kjgoGqM7E3t-4s51ostz0rdg.woff2") format("woff2");
}

@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("assets/fonts/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2z3bWuYMBYro.woff2") format("woff2");
}

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2") format("woff2");
}

:root {
  --bg: #050505;
  --surface: #090909;
  --surface-2: #0e0e0e;
  --surface-3: #121212;
  --border: #171717;
  --border-strong: rgba(240, 234, 89, 0.22);
  --text: #f5f5f5;
  --muted: #b8b8b8;
  --muted-soft: #8f8f8f;
  --yellow: #f0ea59;
  --yellow-deep: #d4cd3d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.28);
  --max: 1220px;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --nav-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(240, 234, 89, 0.1), transparent 22%),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.03), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: "Barlow", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 82%);
  pointer-events: none;
  z-index: 0;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -48px;
  padding: 10px 14px;
  background: var(--yellow);
  color: #111;
  border-radius: 999px;
  font-weight: 700;
  z-index: 200;
}

.skip-link:focus {
  top: 18px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
}

h3 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.04em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

ul {
  margin: 0;
  padding: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--yellow);
  color: #111;
  box-shadow: 0 16px 36px rgba(240, 234, 89, 0.18);
}

.button-primary:hover {
  background: #f4ef72;
}

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

.button-secondary:hover {
  border-color: var(--border-strong);
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.header-row {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  flex-shrink: 0;
}

.brand img {
  width: 168px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--yellow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 8, 0.96);
}

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

.hero {
  position: relative;
  padding: 56px 0 36px;
  overflow: clip;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 5%, rgba(5, 5, 5, 0.58) 48%, rgba(5, 5, 5, 0.82) 100%),
    url("assets/images/a1c978af-91b1-52cf-180f-825af82da949.jpg") center/cover no-repeat;
  filter: saturate(0.9);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(180deg, transparent, var(--bg));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  min-height: calc(100vh - var(--nav-height) - 40px);
}

.hero-copy,
.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.74), rgba(8, 8, 8, 0.92));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 8.2vw, 7rem);
}

.hero-lead {
  margin-top: 18px;
  max-width: 62ch;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(240, 234, 89, 0.18);
  background: rgba(240, 234, 89, 0.08);
  color: var(--text);
  font-weight: 600;
}

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

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust strong,
.contact-meta strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-trust span,
.contact-meta span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-stack {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 18px;
  height: 100%;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-card-image {
  min-height: 0;
}

.hero-card-image img,
.hero-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-video {
  min-height: 0;
  background: #000;
}

.hero-video {
  display: block;
  filter: saturate(0.96) contrast(1.02);
}

.hero-video-toggle {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(240, 234, 89, 0.24);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.82);
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-video-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(240, 234, 89, 0.48);
}

.hero-video-toggle.is-active {
  background: rgba(240, 234, 89, 0.92);
  color: #111;
  border-color: transparent;
}

.image-chip {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.86);
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-card-panel {
  padding: 26px;
}

.hero-card-panel h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(240, 234, 89, 0.12);
}

.statement-band {
  padding: 18px 0 10px;
}

.statement-band p {
  margin: 0;
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 8vw, 5.4rem);
  line-height: 1;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.geo-section {
  padding-top: 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 16%),
    radial-gradient(circle at top right, rgba(240, 234, 89, 0.08), transparent 28%);
}

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

.geo-card,
.geo-fact-strip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow-soft);
}

.geo-card {
  padding: 24px;
}

.geo-kicker {
  margin-bottom: 10px;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.55rem;
}

.geo-fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding: 20px;
}

.geo-fact {
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(240, 234, 89, 0.14);
  background: rgba(240, 234, 89, 0.06);
}

.geo-fact strong {
  display: block;
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.geo-fact span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  line-height: 1.45;
}

.section {
  padding: 84px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head.left {
  margin-bottom: 26px;
}

.section-head h2 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.section-lead {
  margin-top: 14px;
  font-size: 1.08rem;
}

.issue-grid,
.offer-grid,
.result-grid,
.coach-grid {
  display: grid;
  gap: 20px;
}

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

.issue-card,
.system-step,
.result-card,
.proof-item,
.coach-card,
.contact-panel,
.reviews-frame,
.faq-list details,
.offer-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow-soft);
}

.issue-card {
  padding: 28px;
}

.issue-number {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(240, 234, 89, 0.92);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2.6rem;
  line-height: 1;
}

.issue-card h3,
.system-step h3,
.result-card h3,
.proof-item h3,
.coach-card h3,
.offer-body h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.55rem;
}

.section-system {
  padding-top: 22px;
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: start;
}

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

.system-step {
  padding: 24px;
}

.system-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(240, 234, 89, 0.11);
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
}

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

.offer-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
}

.offer-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.offer-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.8));
}

.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card--milon .offer-image img {
  object-position: center 44%;
}

.offer-card--gym .offer-image img {
  object-position: center 36%;
}

.offer-card--pt .offer-image img {
  object-position: center 42%;
}

.offer-body {
  padding: 24px;
}

.offer-label,
.coach-role,
.footer-brand {
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-label,
.coach-role {
  margin-bottom: 8px;
  font-size: 0.96rem;
}

.mini-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.mini-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.mini-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--yellow);
}

.milon-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 18%),
    radial-gradient(circle at top right, rgba(240, 234, 89, 0.08), transparent 22%);
}

.milon-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  align-items: start;
}

.milon-visuals,
.milon-copy,
.milon-flow {
  display: grid;
  gap: 18px;
}

.milon-card,
.milon-step {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.milon-photo img,
.milon-diagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.milon-photo img {
  aspect-ratio: 4 / 4.2;
}

.milon-diagram-card {
  padding: 24px;
}

.milon-diagram-card img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.milon-video-card {
  padding: 20px;
}

.milon-video-copy {
  padding: 4px 4px 16px;
}

.milon-video-copy h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.7rem;
}

.milon-video {
  display: block;
  width: 100%;
  max-height: 620px;
  border-radius: 22px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.milon-panel {
  padding: 26px;
}

.milon-panel h3,
.milon-step h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.7rem;
}

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

.milon-stat {
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(240, 234, 89, 0.14);
  background: rgba(240, 234, 89, 0.06);
}

.milon-stat strong {
  display: block;
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.milon-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  line-height: 1.45;
}

.milon-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 22px;
  align-items: start;
}

.milon-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(240, 234, 89, 0.1);
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.milon-fit .mini-list {
  margin-top: 16px;
}

.milon-actions {
  margin-top: 22px;
}

.pt-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012) 18%, transparent 100%),
    radial-gradient(circle at top left, rgba(240, 234, 89, 0.06), transparent 24%);
}

.pt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
  align-items: start;
}

.pt-copy,
.pt-visuals,
.pt-steps {
  display: grid;
  gap: 18px;
}

.pt-card,
.pt-step {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.pt-panel {
  padding: 26px;
}

.pt-panel h3,
.pt-step h3,
.pt-duo-copy h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.7rem;
}

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

.pt-stat {
  padding: 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(240, 234, 89, 0.14);
  background: rgba(240, 234, 89, 0.06);
}

.pt-stat strong {
  display: block;
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pt-stat span {
  display: block;
  margin-top: 8px;
  color: var(--text);
  line-height: 1.45;
}

.pt-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  padding: 22px;
  align-items: start;
}

.pt-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(240, 234, 89, 0.1);
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.pt-fit .mini-list {
  margin-top: 16px;
}

.pt-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}

.pt-duo {
  display: grid;
}

.pt-duo-copy {
  padding: 24px 24px 0;
}

.pt-duo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-top: 18px;
}

.pricing-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 18%),
    radial-gradient(circle at top right, rgba(240, 234, 89, 0.07), transparent 24%);
}

.pricing-block,
.pricing-cta {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow-soft);
}

.pricing-block {
  padding: 28px;
}

.pricing-block + .pricing-block,
.pricing-block + .pricing-cta {
  margin-top: 22px;
}

.pricing-signup {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.94), rgba(8, 8, 8, 0.98)),
    radial-gradient(circle at top right, rgba(240, 234, 89, 0.06), transparent 36%);
  box-shadow: var(--shadow-soft);
}

.pricing-signup-copy h3 {
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.pricing-signup-copy p:last-of-type {
  max-width: 68ch;
}

.pricing-signup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.signup-drawer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signup-drawer summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.signup-drawer summary::-webkit-details-marker {
  display: none;
}

.signup-drawer summary::after {
  content: "+";
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.signup-drawer[open] summary {
  border-color: rgba(240, 234, 89, 0.22);
  color: var(--yellow);
  background: rgba(240, 234, 89, 0.06);
}

.signup-drawer[open] summary::after {
  content: "-";
}

.signup-drawer-body {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.signup-note,
.signup-fallback {
  color: var(--muted);
}

.signup-fallback a {
  color: var(--yellow);
}

.signup-embed-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.signup-embed {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  background: #fff;
}

.pricing-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.pricing-intro h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 2rem;
}

.pricing-plan-media {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 360px);
  gap: 22px;
  align-items: center;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-plan-copy h3 {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.pricing-plan-copy .mini-list {
  margin-top: 16px;
}

.pricing-plan-video-wrap {
  display: flex;
  justify-content: center;
}

.pricing-plan-video {
  display: block;
  width: min(100%, 320px);
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: #000;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.pricing-grid,
.pricing-followup {
  display: grid;
  gap: 18px;
}

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

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

.price-card,
.followup-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
}

.price-card {
  padding: 22px;
}

.price-card-accent {
  border-color: rgba(240, 234, 89, 0.26);
  background: linear-gradient(180deg, rgba(240, 234, 89, 0.1), rgba(255, 255, 255, 0.03));
}

.price-tag {
  margin-bottom: 10px;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.price-card h4 {
  margin: 0;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-value {
  margin-top: 14px;
  color: var(--text);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.price-value span {
  margin-left: 6px;
  color: var(--yellow);
  font-size: 0.48em;
}

.price-note {
  margin-top: 12px;
  margin-bottom: 16px;
}

.pricing-grid-pt .price-note {
  margin-bottom: 0;
}

.pricing-followup {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.pricing-note-bar {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(240, 234, 89, 0.18);
  border-radius: 24px;
  background: rgba(240, 234, 89, 0.06);
}

.pricing-note-bar strong {
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-note-bar span {
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.pricing-note-bar p {
  color: var(--text);
}

.followup-item {
  padding: 20px;
}

.followup-item strong {
  display: block;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.followup-item span {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-family: "Bebas Neue", "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.followup-item p {
  margin-top: 10px;
}

.pricing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
}

.section-results {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012) 18%, transparent 100%);
}

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

.result-card {
  padding: 24px;
}

.split-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: stretch;
}

.proof-visual {
  min-height: 100%;
}

.proof-visual img,
.contact-visual img,
.coach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.proof-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.proof-list {
  display: grid;
  gap: 16px;
}

.proof-item {
  padding: 22px;
}

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

.coach-card {
  overflow: hidden;
}

.coach-card img {
  display: block;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
  border-radius: 0;
  background: #050505;
}

.coach-body {
  padding: 22px;
}

.tour-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.012) 18%, transparent 100%),
    radial-gradient(circle at top left, rgba(240, 234, 89, 0.06), transparent 24%);
}

.tour-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.tour-video-card,
.tour-copy-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.92), rgba(8, 8, 8, 0.96));
  box-shadow: var(--shadow-soft);
}

.tour-video-card {
  overflow: hidden;
}

.tour-video {
  display: block;
  width: 100%;
  max-height: 760px;
  background: #000;
}

.tour-copy-card {
  padding: 26px;
}

.tour-copy-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1.7rem;
}

.tour-actions {
  margin-top: 22px;
}

.reviews-section .section-head,
.faq-section .section-head {
  margin-bottom: 26px;
}

.reviews-frame {
  padding: 22px;
  min-height: 180px;
}

.reviews-fallback {
  margin-top: 18px;
  font-size: 0.96rem;
  color: var(--muted-soft);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  list-style: none;
}

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

.faq-list p {
  margin-top: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 28px;
  align-items: stretch;
}

.contact-panel {
  padding: 30px;
}

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

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-visual {
  position: relative;
}

.contact-visual img {
  aspect-ratio: 4 / 4;
}

.contact-badge {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(5, 5, 5, 0.82);
  border: 1px solid rgba(240, 234, 89, 0.14);
}

.contact-badge span {
  color: var(--text);
  font-weight: 700;
}

.contact-badge a {
  color: var(--yellow);
  font-weight: 700;
}

.site-footer {
  padding: 36px 0 110px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-row,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-row p,
.footer-bottom p {
  color: var(--muted-soft);
}

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

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--yellow);
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted-soft);
  cursor: pointer;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 120;
}

.cookie-consent-card,
.cookie-panel-dialog {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: var(--shadow);
}

.cookie-consent-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  padding: 24px 26px;
}

.cookie-consent-copy h2,
.cookie-panel-head h2 {
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
}

.cookie-consent-copy p:last-child {
  max-width: 70ch;
}

.cookie-consent-actions,
.cookie-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 130;
}

.cookie-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(6px);
}

.cookie-panel-dialog {
  position: relative;
  width: min(720px, calc(100vw - 28px));
  margin: clamp(20px, 8vh, 80px) auto 0;
  padding: 28px;
}

.cookie-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cookie-close-button {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
}

.cookie-option-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.cookie-option-copy {
  display: grid;
  gap: 6px;
}

.cookie-option-copy strong {
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.22rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-option-copy small {
  color: var(--muted);
  line-height: 1.55;
}

.cookie-option input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--yellow);
}

.cookie-panel-actions {
  margin-top: 24px;
}

.mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions .button-primary {
    display: none;
  }

  .hero-grid,
  .system-layout,
  .milon-grid,
  .pt-grid,
  .tour-grid,
  .split-proof,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .issue-grid,
  .offer-grid,
  .geo-grid,
  .result-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .milon-stats {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid,
  .pricing-followup {
    grid-template-columns: 1fr;
  }

  .pricing-plan-media {
    grid-template-columns: 1fr;
  }

  .pricing-signup-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-note-bar {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  body::before {
    background-size: 54px 54px;
  }

  .shell {
    width: min(var(--max), calc(100vw - 28px));
  }

  .hero {
    padding-top: 22px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.94) 10%, rgba(5, 5, 5, 0.62) 56%, rgba(5, 5, 5, 0.95) 100%),
      url("assets/images/a1c978af-91b1-52cf-180f-825af82da949-m.jpg") center/cover no-repeat;
  }

  .hero-copy,
  .hero-card-panel,
  .issue-card,
  .system-step,
  .offer-body,
  .result-card,
  .proof-item,
  .contact-panel,
  .reviews-frame,
  .faq-list details {
    padding: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero-actions,
  .contact-actions,
  .cookie-consent-actions,
  .cookie-panel-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .contact-actions .button,
  .mobile-cta .button,
  .pricing-signup-actions .button,
  .cookie-consent-actions .button,
  .cookie-panel-actions .button {
    width: 100%;
  }

  .hero-trust,
  .contact-meta,
  .issue-grid,
  .geo-grid,
  .offer-grid,
  .result-grid,
  .system-steps,
  .coach-grid {
    grid-template-columns: 1fr;
  }

  .geo-fact-strip {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .milon-step {
    grid-template-columns: 1fr;
  }

  .milon-step span {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .pt-step {
    grid-template-columns: 1fr;
  }

  .pt-step span {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }

  .pricing-signup {
    padding: 22px;
  }

  .signup-drawer summary {
    min-height: 64px;
    padding: 0 16px;
    line-height: 1.2;
  }

  .signup-embed {
    min-height: 680px;
  }

  .hero-card-image img,
  .hero-card-video video,
  .contact-visual img {
    min-height: 300px;
  }

  .contact-badge {
    position: static;
    margin-top: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .statement-band p {
    text-align: left;
  }

  .footer-row,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 88px;
  }

  .cookie-consent-card,
  .cookie-panel-dialog {
    padding: 22px;
  }

  .cookie-option {
    align-items: flex-start;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: block;
    z-index: 95;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
