:root {
  color-scheme: dark;
  --bg: #0f0f0f;
  --panel: #171717;
  --panel-strong: #1f1f1f;
  --text: #f7f3ea;
  --muted: #b7b0a4;
  --line: rgba(255, 255, 255, 0.14);
  --amber: #f59e0b;
  --amber-soft: rgba(245, 158, 11, 0.18);
  --teal: #2dd4bf;
  --danger: #ef4444;
  --max: 1120px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 82px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.92), rgba(15, 15, 15, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(48px, 5.2vw, 62px);
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--amber);
  color: #15110b;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a[aria-current="page"] {
  color: var(--text);
}

.header-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 16px;
  color: #15110b;
  background: var(--amber);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 118px clamp(18px, 4vw, 48px) 64px;
}

.landing-hero {
  min-height: 82vh;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 72px;
}

.hero-visual,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-visual {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(15, 15, 15, 0.18), rgba(15, 15, 15, 0.92)),
    linear-gradient(90deg, rgba(15, 15, 15, 0.90), rgba(15, 15, 15, 0.38) 56%, rgba(15, 15, 15, 0.80));
}

.hero-inner {
  position: relative;
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.landing-hero .hero-inner {
  width: min(1040px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 4.9vw, 4.85rem);
  line-height: 1;
  max-width: 1040px;
}

.hero-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: #e4ded4;
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.cta-microcopy,
.hero-risk-line {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-risk-line {
  width: min(720px, 100%);
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d8d1c4;
}

.hero-video {
  width: min(980px, 100%);
  margin-top: 30px;
  border-color: rgba(245, 158, 11, 0.34);
}

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

.hero-actions .button {
  min-width: 178px;
}

.hero-proof-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  padding: 0;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof-points li {
  position: relative;
  padding-left: 14px;
}

.hero-proof-points li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--amber);
  color: #15110b;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.button.large {
  width: min(100%, 340px);
  min-height: 58px;
  font-size: 1.04rem;
}

.apply-section,
.testimonials-section,
.framework-section,
.coaching-section,
.coach-section,
.faq-section,
.disclaimer {
  padding: 86px clamp(18px, 4vw, 48px);
}

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

.section-heading h2,
.apply-panel h2,
.coaching-copy h2,
.coach-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.section-heading p,
.apply-panel p,
.coaching-copy p,
.coach-copy p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.framework-section {
  background: #101010;
}

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

.framework-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.08), rgba(255, 255, 255, 0.025));
}

.framework-index {
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 900;
}

.framework-card h3,
.process-step h3 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: 1.3rem;
}

.framework-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.framework-bridge {
  width: min(var(--max), 100%);
  margin: 20px auto 0;
  padding-left: 16px;
  border-left: 2px solid var(--amber);
  color: var(--muted);
  line-height: 1.65;
}

.coaching-section {
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.055), transparent 42%),
    #141414;
}

.coaching-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 96px);
  align-items: start;
}

.coaching-boundary {
  padding: 16px 18px;
  border-left: 2px solid var(--amber);
  background: rgba(255, 255, 255, 0.035);
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step > span {
  padding-top: 2px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
}

.process-step h3 {
  margin-top: 0;
}

.coach-section {
  background: #0d0d0d;
}

.coach-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 0.35fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.coach-logo {
  min-height: 240px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
}

.coach-logo img {
  width: min(170px, 80%);
  height: auto;
}

.coach-copy p:last-child {
  margin-bottom: 0;
  color: #e4ded4;
}

.video-shell {
  position: relative;
  width: min(var(--max), 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 20%, rgba(245, 158, 11, 0.22), transparent 28%),
    linear-gradient(135deg, #171717, #111 55%, #1d2b29);
}

.video-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.38;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(72px, 12vw, 118px);
  height: clamp(72px, 12vw, 118px);
  border-radius: 50%;
  background: var(--amber);
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 80px rgba(245, 158, 11, 0.28);
}

.play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 26px solid #17120a;
  transform: translate(-50%, -50%);
}

.video-copy {
  position: absolute;
  left: clamp(18px, 4vw, 48px);
  right: clamp(18px, 4vw, 48px);
  bottom: clamp(18px, 4vw, 42px);
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.video-copy span {
  color: var(--amber);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.video-copy strong {
  max-width: 560px;
  color: var(--text);
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  line-height: 1.12;
}

.small-note,
.disclaimer p,
.footer {
  color: var(--muted);
}

.apply-section {
  background:
    linear-gradient(180deg, #101010, #141414),
    #121212;
  color: var(--text);
}

.apply-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(32px, 7vw, 104px);
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.apply-panel.is-embed {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 28px;
}

.apply-copy {
  max-width: 690px;
}

.apply-panel.is-embed .apply-copy {
  max-width: 780px;
}

.apply-panel .eyebrow,
.apply-panel p {
  color: var(--muted);
}

.apply-panel .button.primary {
  background: #17120a;
  color: #fff9ec;
}

.application-card {
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(245, 158, 11, 0.13), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.28);
}

.application-card .card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.application-card strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1;
}

.application-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.application-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.application-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
}

.application-card .button.primary {
  width: 100%;
  background: var(--amber);
  color: #15110b;
}

.application-form {
  display: grid;
  gap: 18px;
}

.application-embed {
  display: grid;
  gap: 18px;
}

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

.application-flow li {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 4px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.application-flow span {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #15110b;
  background: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.application-flow strong {
  color: var(--text);
  font-size: 0.98rem;
}

.application-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.application-card--focused {
  width: min(680px, 100%);
  margin: 0 auto;
}

.embed-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.calendly-frame-wrap {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #f8f8f8;
}

.calendly-inline-widget {
  display: block;
  width: 100%;
  background: #f8f8f8;
}

.hidden-field {
  display: none;
}

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

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

.form-grid span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(0, 0, 0, 0.26);
  font: inherit;
}

.form-grid textarea {
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: rgba(245, 158, 11, 0.76);
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.13);
}

.testimonials-section {
  background: #0f0f0f;
}

.proof-feature-grid,
.proof-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  gap: 24px 18px;
}

.proof-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.proof-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 16px;
}

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

.proof-grid.proof-grid--curated .community-proof-card {
  grid-column: auto;
  display: grid;
  gap: 12px;
}

.proof-grid.proof-grid--curated .community-proof-card:nth-child(-n+6) {
  grid-column: auto;
}

.proof-grid.proof-grid--curated .proof-card-image,
.proof-grid.proof-grid--curated .community-proof-card:nth-child(-n+6) .proof-card-image {
  height: auto;
  aspect-ratio: 900 / 620;
}

.proof-grid.proof-grid--curated .proof-card-image img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.proof-grid.proof-grid--curated .community-proof-card figcaption {
  position: static;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.proof-risk-note--standalone {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
  color: var(--muted);
  line-height: 1.6;
}

.proof-risk-note {
  padding: 14px 16px;
  border: 1px solid rgba(245, 158, 11, 0.26);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.08);
}

.community-proof-card {
  min-width: 0;
  margin: 0;
  overflow: visible;
  cursor: zoom-in;
}

.community-proof-card.is-featured {
  position: relative;
}

.proof-grid .community-proof-card {
  grid-column: span 2;
}

.proof-grid .community-proof-card:nth-child(-n+4) {
  grid-column: span 3;
}

.proof-grid .community-proof-card.is-wide {
  grid-column: span 6;
}

.proof-grid .community-proof-card.is-discord-shot {
  grid-column: span 6;
}

.proof-card-image {
  height: 270px;
  display: grid;
  place-items: center;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: #080808;
}

.proof-grid .community-proof-card:nth-child(-n+4) .proof-card-image {
  height: 340px;
}

.proof-grid .community-proof-card.is-written-proof {
  order: 1;
}

.proof-grid .community-proof-card.is-process-proof {
  order: 2;
}

.proof-grid .community-proof-card.is-outcome-proof {
  order: 3;
}

.proof-grid .proof-payout-note {
  order: 4;
}

.proof-grid .community-proof-card.is-payout-proof {
  order: 5;
  grid-column: span 2;
}

.proof-grid .community-proof-card.is-payout-proof .proof-card-image {
  height: 270px;
}

.proof-payout-note {
  grid-column: 1 / -1;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  line-height: 1.6;
}

.proof-cta {
  width: min(var(--max), 100%);
  margin: 36px auto 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.proof-cta p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.is-featured .proof-card-image {
  height: 310px;
}

.community-proof-card.is-wide .proof-card-image {
  height: clamp(190px, 20vw, 260px);
}

.community-proof-card.is-discord-shot .proof-card-image {
  height: auto;
  display: block;
  background: #080808;
}

.proof-card-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.community-proof-card.is-discord-shot .proof-card-image img {
  width: 100%;
  height: auto;
  max-height: none;
}

.community-proof-card figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.community-proof-card span {
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-proof-card strong {
  min-width: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.25;
  text-align: right;
}

.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 32px);
  border: 0;
  background: rgba(0, 0, 0, 0.86);
}

.proof-lightbox[hidden] {
  display: none;
}

.proof-lightbox__inner {
  position: relative;
  width: min(1100px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}

.proof-lightbox img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  object-fit: contain;
  background: #080808;
}

.proof-lightbox button {
  justify-self: end;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.proof-page-links {
  width: min(var(--max), 100%);
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.proof-pager {
  justify-content: flex-end;
}

.proof-pager.is-single {
  justify-content: flex-start;
}

.proof-page-status {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-pager-link {
  min-width: 184px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(245, 158, 11, 0.36);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.14), rgba(255, 255, 255, 0.03));
  text-decoration: none;
}

.proof-pager-link::after {
  content: "->";
  color: var(--amber);
  font-weight: 900;
}

.proof-pager-link.is-back::after {
  content: none;
}

.proof-pager-link.is-back::before {
  content: "<-";
  color: var(--muted);
  font-weight: 900;
}

.proof-pager-link span {
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-pager-link strong {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1;
}

.proof-pager-link:hover {
  border-color: rgba(245, 158, 11, 0.66);
  background: rgba(245, 158, 11, 0.18);
}

.proof-pager-link.is-disabled {
  display: none;
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.results-page {
  background: #0d0d0d;
}

.results-page .site-header {
  background: rgba(15, 15, 15, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.results-section {
  padding-top: 132px;
}

.results-hero,
.proof-tabs,
.results-note,
.results-page .proof-grid,
.results-page .proof-page-links {
  width: min(1220px, 100%);
}

.results-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin: 0 auto 22px;
}

.results-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.results-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.results-summary {
  min-width: 168px;
  padding: 18px 20px;
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.08);
}

.results-summary span {
  display: block;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.results-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 1.18rem;
}

.proof-tabs {
  display: flex;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.proof-tabs a {
  flex: 1;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-weight: 800;
  text-decoration: none;
}

.proof-tabs a:hover,
.proof-tabs a.is-active {
  color: #15110b;
  background: var(--amber);
}

.results-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px auto 0;
}

.results-note span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 0;
  border-radius: 999px;
  padding: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
}

.results-note span + span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.25);
}

.results-page .proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
  margin-top: 24px;
}

.results-page .proof-grid .community-proof-card {
  grid-column: auto;
  background: transparent;
}

.results-page .proof-grid .community-proof-card.is-wide {
  grid-column: 1 / -1;
}

.results-page .proof-card-image {
  height: 292px;
  padding: 0;
  background: #090909;
}

.results-page .community-proof-card figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.results-page .community-proof-card span {
  flex: 0 0 auto;
  font-size: 0.66rem;
}

.results-page .community-proof-card strong {
  min-width: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.2;
  text-align: right;
}

.results-page .proof-page-links {
  justify-content: space-between;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.faq-section {
  background:
    linear-gradient(90deg, rgba(45, 212, 191, 0.08), transparent 45%),
    #111;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--text);
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--amber);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.small-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.disclaimer {
  padding-top: 34px;
  padding-bottom: 34px;
  background: #111;
}

.disclaimer p {
  width: min(var(--max), 100%);
  margin: 0 auto;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 48px);
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.footer-links {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 780px) {
  .site-header {
    position: fixed;
    padding-top: 14px;
    padding-bottom: 14px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.97), rgba(15, 15, 15, 0.76), rgba(15, 15, 15, 0));
  }

  .nav-links {
    display: none;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero {
    min-height: 88vh;
    align-items: center;
    padding-top: 110px;
  }

  .hero-inner {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-proof-points {
    justify-content: flex-start;
    gap: 8px 14px;
    font-size: 0.72rem;
  }

  .hero-proof-points li {
    white-space: nowrap;
  }

  .button {
    width: 100%;
  }

  .apply-section,
  .testimonials-section,
  .framework-section,
  .coaching-section,
  .coach-section,
  .faq-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .framework-grid,
  .coaching-layout,
  .coach-layout,
  .application-flow {
    grid-template-columns: 1fr;
  }

  .framework-grid {
    gap: 12px;
  }

  .framework-card {
    padding: 22px;
  }

  .coaching-layout,
  .coach-layout {
    gap: 30px;
  }

  .coach-logo {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .coach-logo img {
    width: 132px;
  }

  .application-flow {
    gap: 10px;
  }

  .video-shell {
    aspect-ratio: 16 / 9;
  }

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

  .proof-grid.proof-grid--curated {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-grid.proof-grid--curated .proof-card-image,
  .proof-grid.proof-grid--curated .community-proof-card:nth-child(-n+6) .proof-card-image {
    height: auto;
  }

  .proof-grid.proof-grid--curated .community-proof-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .proof-grid.proof-grid--curated .community-proof-card strong {
    text-align: left;
  }

  .proof-grid .community-proof-card {
    grid-column: auto;
  }

  .proof-grid .community-proof-card:nth-child(-n+6),
  .proof-grid .community-proof-card.is-discord-shot {
    grid-column: 1 / -1;
  }

  .proof-grid .community-proof-card.is-payout-proof {
    grid-column: auto;
  }

  .proof-grid .community-proof-card.is-wide {
    grid-column: 1 / -1;
  }

  .proof-card-image,
  .is-featured .proof-card-image {
    height: 176px;
  }

  .proof-grid .community-proof-card:nth-child(-n+6) .proof-card-image {
    height: 280px;
  }

  .proof-grid .community-proof-card.is-payout-proof .proof-card-image {
    height: 176px;
  }

  .community-proof-card.is-wide .proof-card-image {
    height: 168px;
    place-items: stretch;
  }

  .community-proof-card.is-wide .proof-card-image img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: left top;
  }

  .community-proof-card.is-discord-shot .proof-card-image {
    height: auto;
    overflow-x: auto;
    place-items: initial;
    -webkit-overflow-scrolling: touch;
  }

  .community-proof-card.is-discord-shot .proof-card-image img {
    width: 820px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: initial;
  }

  .apply-panel {
    grid-template-columns: 1fr;
  }

  .application-card {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .results-section {
    padding-top: 104px;
  }

  .results-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .results-summary {
    width: 100%;
  }

  .proof-tabs {
    overflow-x: auto;
  }

  .proof-tabs a {
    min-width: 108px;
    flex: 0 0 auto;
    padding: 0 14px;
  }

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

  .results-page .proof-card-image {
    height: 280px;
  }

  .results-page .community-proof-card.is-wide .proof-card-image {
    height: 118px;
  }

  .results-page .community-proof-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .results-page .community-proof-card strong {
    text-align: left;
  }
}

/* Minimal VSL funnel */
.simple-funnel .simple-header {
  background: rgba(15, 15, 15, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.simple-vsl-section {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 124px clamp(18px, 4vw, 48px) 72px;
  background:
    linear-gradient(180deg, rgba(245, 158, 11, 0.06), transparent 34%),
    #0d0d0d;
}

.simple-vsl-heading {
  width: min(900px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.simple-vsl-heading h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 4.8rem);
  line-height: 0.98;
}

.simple-vsl-heading > p:last-child {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
}

.simple-vsl-frame {
  position: relative;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-content: center;
  gap: 8px;
  overflow: hidden;
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    #080808;
  background-size: 64px 64px;
  text-align: center;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.38);
}

.simple-vsl-frame span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.simple-vsl-frame strong {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.simple-vsl-frame small {
  color: var(--muted);
  font-size: 0.9rem;
}

.simple-vsl-video {
  display: block;
  background: #080808;
}

.simple-vsl-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080808;
}

.simple-vsl-cta {
  margin-top: 24px;
}

.simple-book-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.simple-section-heading {
  margin-bottom: 26px;
  text-align: center;
}

.simple-section-heading > .eyebrow {
  width: 100%;
  max-width: none;
  margin: 0 auto 14px;
}

.simple-section-heading h2 {
  max-width: 820px;
  margin-inline: auto;
}

.simple-section-heading p:last-child {
  margin: 14px auto 0;
}

.application-card--simple {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #171717;
  box-shadow: none;
}

.application-card--simple .button {
  justify-self: center;
}

.application-request-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 5vw, 42px);
  text-align: center;
}

.application-request-card p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.application-request-card small {
  color: var(--muted);
  line-height: 1.55;
}

.simple-testimonials {
  padding-top: 80px;
  padding-bottom: 80px;
}

.video-testimonial-grid {
  width: min(980px, 100%);
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.video-testimonial-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: #111;
}

.video-testimonial-card.is-landscape {
  width: min(760px, 100%);
  grid-column: 1 / -1;
  justify-self: center;
}

.video-testimonial-media {
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.video-testimonial-card.is-landscape .video-testimonial-media {
  aspect-ratio: 16 / 9;
}

.video-testimonial-card.is-portrait .video-testimonial-media {
  aspect-ratio: 3 / 4;
}

.video-testimonial-media video {
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #050505;
}

.video-testimonial-card figcaption {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
}

.video-testimonial-card figcaption span {
  color: var(--amber);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-testimonial-card figcaption strong {
  color: var(--text);
  font-size: 0.82rem;
  text-align: right;
}

.simple-testimonials .proof-grid--curated {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px 14px;
}

.simple-testimonials .proof-grid--curated .community-proof-card {
  grid-column: span 2;
  gap: 8px;
}

.simple-testimonials .proof-grid--curated .community-proof-card:nth-child(-n+3) {
  grid-column: span 2;
}

.simple-testimonials .proof-grid--curated .community-proof-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.simple-testimonials .proof-grid--curated .community-proof-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.simple-testimonials .proof-grid--curated .community-proof-card.is-wide-proof {
  grid-column: 1 / -1;
}

.simple-testimonials .proof-grid--curated .community-proof-card.is-wide-proof .proof-card-image {
  aspect-ratio: 940 / 122;
}

.simple-testimonials .proof-grid--curated .proof-card-image {
  position: relative;
  background: #111;
}

.simple-testimonials .proof-grid--curated .proof-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.simple-testimonials .proof-grid--curated .community-proof-card figcaption {
  gap: 10px;
}

.simple-testimonials .proof-grid--curated .community-proof-card span {
  font-size: 0.62rem;
}

.simple-testimonials .proof-grid--curated .community-proof-card strong {
  font-size: 0.78rem;
}

.more-proof-block {
  width: min(var(--max), 100%);
  margin: 38px auto 0;
}

.more-proof-block h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 1.12rem;
  text-align: left;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  padding-bottom: 14px;
}

.proof-strip-card {
  display: grid;
  gap: 8px;
  scroll-snap-align: start;
}

.proof-strip-card .proof-card-image {
  position: relative;
  height: 230px;
  background: #111;
}

.proof-strip-card .proof-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.proof-strip-card figcaption {
  position: static;
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.proof-strip-card figcaption span {
  font-size: 0.62rem;
}

.proof-strip-card figcaption strong {
  font-size: 0.78rem;
  text-align: left;
}

.simple-proof-note {
  width: min(var(--max), 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.simple-footer {
  align-items: center;
}

.simple-footer a {
  color: var(--muted);
  text-underline-offset: 3px;
}

@media (max-width: 780px) {
  .simple-vsl-section {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 56px;
  }

  .simple-vsl-heading {
    margin-bottom: 22px;
  }

  .simple-vsl-heading h1 {
    font-size: 2.7rem;
  }

  .simple-vsl-frame {
    background-size: 42px 42px;
  }

  .simple-book-section,
  .simple-testimonials {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .simple-testimonials .proof-grid--curated {
    width: calc(100% + 18px);
    max-width: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(275px, 78vw);
    grid-template-columns: none;
    justify-content: start;
    gap: 12px;
    overflow-x: auto;
    padding: 0 18px 14px 0;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .video-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .video-testimonial-card.is-landscape,
  .video-testimonial-card.is-portrait {
    width: min(100%, 440px);
    grid-column: auto;
    justify-self: center;
  }

  .simple-testimonials .proof-grid--curated .community-proof-card {
    grid-column: auto;
    scroll-snap-align: start;
  }

  .simple-testimonials .proof-grid--curated .community-proof-card:nth-child(4),
  .simple-testimonials .proof-grid--curated .community-proof-card:nth-child(5),
  .simple-testimonials .proof-grid--curated .community-proof-card:nth-child(-n+3) {
    grid-column: auto;
  }

  .simple-testimonials .proof-grid--curated .community-proof-card.is-wide-proof {
    grid-column: auto;
  }

  .simple-testimonials .proof-grid--curated .community-proof-card.is-wide-proof .proof-card-image {
    aspect-ratio: 900 / 620;
  }

  .more-proof-block {
    margin-top: 30px;
  }

  .proof-strip {
    width: calc(100% + 18px);
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(245px, 72vw);
    overflow-x: auto;
    padding-right: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .proof-strip-card .proof-card-image {
    height: 210px;
  }

  .application-card--simple {
    padding: 10px;
  }

  .simple-footer {
    align-items: flex-start;
  }
}
