:root {
  --black: #050505;
  --near-black: #0c0c0d;
  --charcoal: #151515;
  --white: #f5f2ea;
  --muted: #b8b0a1;
  --gold: #c79a3b;
  --gold-light: #f0c66a;
  --line: rgba(245, 242, 234, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.045;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
  background-size: 18px 18px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; gap: 14px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: "Bebas Neue", sans-serif;
  font-size: 25px;
  letter-spacing: 0.04em;
}
.brand-text { font-size: 13px; }

.nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.nav a { color: rgba(245,242,234,0.76); transition: color .2s ease; }
.nav a:hover { color: var(--gold-light); }
.nav-cta { color: var(--black) !important; background: var(--gold); padding: 12px 18px; border-radius: 999px; }
.menu-toggle { display: none; }

.section { padding: 105px 0; background: var(--white); color: var(--black); }
.section-dark { background: var(--black); color: var(--white); }

.hero { position: relative; min-height: 100vh; display: grid; align-items: center; overflow: hidden; padding-top: 95px; }
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 35%, rgba(199,154,59,.26), transparent 30%),
    linear-gradient(120deg, rgba(5,5,5,.98) 20%, rgba(12,12,13,.86) 55%, rgba(5,5,5,.96) 100%),
    url('assets/hero-placeholder.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(.8);
}
.hero::after {
  content: "DISCIPLINE";
  position: absolute;
  bottom: -68px;
  left: 2vw;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(110px, 18vw, 280px);
  line-height: .8;
  color: rgba(255,255,255,.035);
  letter-spacing: .04em;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-copy { max-width: 720px; }
.eyebrow { color: var(--gold-light); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; margin: 0 0 16px; }
.eyebrow.dark { color: #8a641e; }
h1, h2, h3 { margin: 0; line-height: .95; }
h1, h2 { font-family: "Bebas Neue", sans-serif; letter-spacing: .02em; }
h1 { font-size: clamp(64px, 9vw, 132px); max-width: 920px; }
h2 { font-size: clamp(48px, 6vw, 88px); }
h3 { font-size: 24px; }
.hero-lead { margin: 28px 0 34px; max-width: 630px; font-size: clamp(18px, 2vw, 22px); color: rgba(245,242,234,.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; transition: transform .2s ease, background .2s ease, border .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: #070707; }
.btn-outline { border: 1px solid rgba(245,242,234,.28); color: var(--white); }
.btn-black { background: var(--black); color: var(--white); }
.hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 42px; max-width: 560px; }
.hero-stats div { border-top: 1px solid var(--line); padding-top: 16px; }
.hero-stats strong { display: block; font-family: "Bebas Neue", sans-serif; font-size: 42px; line-height: 1; color: var(--gold-light); }
.hero-stats span { display: block; color: rgba(245,242,234,.68); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.hero-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: rgba(255,255,255,.04); }
.image-placeholder { min-height: 520px; display: grid; place-items: center; background: linear-gradient(135deg, #1a1a1a, #070707); color: rgba(245,242,234,.38); text-transform: uppercase; letter-spacing: .12em; font-size: 12px; text-align: center; padding: 30px; }
.image-placeholder.tall { min-height: 640px; }
.card-strip { display: flex; justify-content: space-between; gap: 10px; padding: 18px 22px; color: var(--gold-light); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; }

.split { display: grid; grid-template-columns: .85fr 1fr; gap: 70px; align-items: start; }
.intro-copy { font-size: 19px; }
.muted { color: #625b50; }
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 50px; }
.section-heading p:last-child { color: rgba(245,242,234,.66); font-size: 18px; }
.section-heading.narrow { max-width: 650px; }
.cards { display: grid; gap: 20px; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { position: relative; padding: 30px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.04); min-height: 230px; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 0%, rgba(199,154,59,.2), transparent 35%); opacity: .7; }
.card > * { position: relative; z-index: 2; }
.card-number { display: block; margin-bottom: 60px; color: var(--gold-light); font-family: "Bebas Neue", sans-serif; font-size: 42px; }
.card p { color: rgba(245,242,234,.68); }
.light .card { background: #fff; color: var(--black); border-color: rgba(0,0,0,.12); box-shadow: 0 20px 70px rgba(0,0,0,.08); }
.light .card p { color: #625b50; }

.results-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; }
.results-grid p { color: rgba(245,242,234,.72); font-size: 18px; }
.results-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.result-tile { min-height: 180px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); color: rgba(245,242,234,.44); text-transform: uppercase; letter-spacing: .12em; font-weight: 900; text-align: center; padding: 20px; }
.result-tile.large { min-height: 380px; grid-row: span 2; }
.result-tile.wide { grid-column: span 2; }

.offer-box, .cta-box { border-radius: 34px; padding: clamp(36px, 6vw, 70px); background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.12); }
.offer-box { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: start; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.check-list li { padding: 16px 16px 16px 44px; border: 1px solid rgba(0,0,0,.1); border-radius: 16px; position: relative; font-weight: 800; }
.check-list li::before { content: "✓"; position: absolute; left: 16px; color: #8a641e; }

.coach-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 70px; align-items: center; }
.coach p { color: rgba(245,242,234,.72); font-size: 18px; }
blockquote { margin: 30px 0; padding-left: 24px; border-left: 3px solid var(--gold); color: var(--gold-light); font-size: 24px; font-weight: 900; }
.text-link { color: var(--gold-light); font-weight: 900; }
.cta { background: linear-gradient(135deg, var(--gold-light), var(--gold)); }
.cta-box { text-align: center; max-width: 900px; margin: 0 auto; }
.cta-box p { font-size: 20px; }
.cta-box small { display: block; margin-top: 18px; color: rgba(0,0,0,.58); }

.footer { padding: 34px 0; background: #050505; color: rgba(245,242,234,.72); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer strong { color: var(--white); text-transform: uppercase; letter-spacing: .1em; }
.footer p { margin: 8px 0 0; }
.footer a { margin-left: 22px; color: var(--gold-light); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .nav { position: fixed; inset: 85px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px; background: rgba(5,5,5,.96); border: 1px solid var(--line); border-radius: 18px; }
  .nav a { padding: 15px; }
  body.menu-open .nav { display: flex; }
  .menu-toggle { display: inline-flex; background: transparent; color: var(--white); border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; text-transform: uppercase; font-weight: 900; letter-spacing: .08em; }
  .hero-grid, .split, .results-grid, .offer-box, .coach-grid { grid-template-columns: 1fr; }
  .cards.four, .cards.three, .check-list { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 140px 0 80px; }
  .image-placeholder, .image-placeholder.tall { min-height: 360px; }
}

@media (max-width: 560px) {
  .brand-text { display: none; }
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 78px 0; }
  .hero-stats { grid-template-columns: 1fr; }
  .results-wall { grid-template-columns: 1fr; }
  .result-tile.large, .result-tile.wide { grid-column: auto; grid-row: auto; min-height: 180px; }
}
