:root {
  --bg: #000;
  --bg-soft: #000;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.085);
  --text: #f7f2ea;
  --muted: #c3b7a6;
  --muted-2: #918779;
  --line: rgba(255,255,255,.12);
  --gold: #d8aa55;
  --gold-2: #f1d08a;
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --radius: 30px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin-top: 0; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7,7,6,.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; }
.brand { font-weight: 900; letter-spacing: -.045em; font-size: 18px; }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--muted); font-weight: 800; font-size: 15px; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; background: none; border: 0; color: var(--text); font-size: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #130d05;
  font-weight: 900;
  font-size: 17px;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 16px 42px rgba(216,170,85,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(216,170,85,.3); }
.btn-small { min-height: 48px; padding: 0 24px; font-size: 15px; }
.btn-large { min-height: 68px; padding: 0 48px; font-size: 21px; }

.hero {
  min-height: calc(100vh - 74px);
  padding: 18px 0;
  display: flex;
  align-items: center;
}
.hero-grid {
  width: min(1500px, calc(100% - 72px));
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(620px, 760px) minmax(620px, 760px);
  gap: clamp(18px, 2vw, 30px);
  align-items: start;
  justify-content: center;
}
.hero-copy { max-width: 790px; padding-top: 2px; }
h1 {
  max-width: 790px;
  margin: 0 0 24px;
  font-size: clamp(60px, 5.7vw, 94px);
  line-height: 1.02;
  letter-spacing: -.078em;
  font-weight: 900;
  text-wrap: balance;
}
.hero-text {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.45;
  letter-spacing: -.015em;
  font-weight: 500;
}
.hero-actions { margin-top: 34px; }
.hero-card {
  width: min(clamp(620px, 42vw, 760px), calc((100vh - 138px) * 0.5625));
  min-width: 0;
  padding: 10px;
  border-radius: 31px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: start;
  justify-self: end;
}
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 24px;
  background: #050505;
  border: 1px solid rgba(255,255,255,.10);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 900;
}
.section-heading {
  max-width: 890px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-heading h2,
.cta-box h2,
.about-card h2 {
  margin: 0 auto 20px;
  color: var(--text);
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.07em;
  font-weight: 900;
  text-wrap: balance;
}
.section-heading p:not(.eyebrow),
.story-copy p,
.result-card p,
.faq-list p,
.path-card p,
.cta-box p {
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.52;
  letter-spacing: -.012em;
  font-weight: 500;
}

.cards-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.feature-card,
.step,
.result-card,
.about-card,
.faq-list details,
.path-card,
.cta-box,
.included-list {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-card { padding: 26px; min-height: 100%; }
.icon, .step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: -.03em;
}
.feature-card h3,
.step h3,
.result-card h3,
.path-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 900;
}
.feature-card p,
.step p,
.included-list div {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.journey {
  background: #000;
  overflow: hidden;
}
.journey-container {
  width: min(1320px, calc(100% - 56px));
}
.journey-heading {
  margin-bottom: 52px;
}
.journey-heading p:not(.eyebrow) {
  max-width: 920px;
  margin: 18px auto 0;
}
.journey-cta {
  margin-top: 30px;
}
.journey-steps {
  position: relative;
  display: grid;
  gap: 24px;
}
.journey-steps::before {
  display: none;
  content: none;
}
.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 34px;
  align-items: stretch;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 80px rgba(0,0,0,.45);
  overflow: hidden;
}
.journey-step:nth-child(even) {
  grid-template-columns: 1.14fr .86fr;
}
.journey-step:nth-child(even) .journey-image {
  order: 2;
}
.journey-image {
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255,255,255,.10);
}
.journey-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journey-copy {
  position: relative;
  padding: clamp(28px, 3.4vw, 54px) clamp(24px, 3vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.journey-number {
  margin-bottom: 18px;
  color: var(--gold-2);
  font-size: clamp(54px, 5.4vw, 92px);
  line-height: .82;
  letter-spacing: -.07em;
  font-weight: 900;
}
.step-label {
  margin: 0 0 12px;
  color: var(--gold-2) !important;
  font-size: 12px !important;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
}
.journey-copy h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(32px, 3.4vw, 54px);
  line-height: 1.02;
  letter-spacing: -.065em;
  font-weight: 900;
  text-wrap: balance;
}
.journey-copy p:not(.step-label) {
  margin: 0;
  max-width: 720px;
  color: rgba(247,242,234,.76);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.42;
  letter-spacing: -.025em;
  font-weight: 500;
}

.included-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.included-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.10);
  font-weight: 900;
  color: var(--text);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.15;
  letter-spacing: -.045em;
}
.included-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(216,170,85,.95), rgba(241,208,138,.95));
  color: #130d05;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .03em;
  font-weight: 950;
  box-shadow: 0 12px 34px rgba(216,170,85,.18);
}

.about-card {
  padding: 52px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.section-heading-left { text-align: left; margin: 0; }
.section-heading-left h2 { margin-left: 0; }
.story-copy p { margin: 0 0 18px; }
.story-copy .btn { margin-top: 12px; }

.results { background: #000; }
.result-card {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: start;
}
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.result-photo {
  position: relative;
  height: 440px;
  min-height: 0;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #151515, #252019);
  border: 1px solid var(--line);
}
.result-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 22%;
}

.result-photo:nth-child(2) img {
  transform: scale(1.22);
  object-position: center 42%;
}
.result-photo figcaption {
  display: none;
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.68);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  backdrop-filter: blur(10px);
}
.result-copy { align-self: start; padding-top: 0; }
.result-cta { margin-top: 26px; }
.result-cta p { margin: 0 0 16px; color: var(--muted); font-weight: 700; }
.text-link { display: inline-flex; margin-top: 10px; color: var(--gold-2); font-weight: 900; }


.results-comparison {
  margin: 0;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #050505;
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(0,0,0,.35);
}

.results-comparison img {
  display: block;
  width: 100%;
  height: auto;
}

.faq-wrap { max-width: 940px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 22px 24px; }
summary { cursor: pointer; font-weight: 900; font-size: 19px; letter-spacing: -.03em; }
details p { margin: 14px 0 0 !important; }

.path-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.path-card { padding: 36px; }
.path-card-highlight { background: linear-gradient(180deg, rgba(216,170,85,.18), rgba(255,255,255,.06)); }
.path-card h3 { font-size: clamp(32px, 3vw, 48px); }

.final-cta { padding-top: 44px; }
.cta-box { max-width: 980px; margin: 0 auto; padding: 58px; text-align: center; background: linear-gradient(180deg, rgba(216,170,85,.14), rgba(255,255,255,.055)); }
.cta-box p { max-width: 680px; margin-bottom: 28px; }

.footer { border-top: 1px solid var(--line); padding: 42px 0; color: var(--muted); }
.footer-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.footer strong { color: var(--text); font-weight: 900; letter-spacing: -.04em; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; font-weight: 800; }
.copyright { text-align: center; margin: 28px 0 0; color: var(--muted-2); font-size: 13px; }

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



/* Framer-style Learn carousel */
.learn-section {
  position: relative;
  overflow: hidden;
  background:
#000;
}
.learn-section .container {
  width: min(1460px, calc(100% - 56px));
}
.learn-heading {
  margin-bottom: 34px;
}
.learn-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  margin-bottom: 22px;
  color: var(--text);
  letter-spacing: -.02em;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.learn-heading h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: .98;
  letter-spacing: -.075em;
}
.learn-carousel {
  position: relative;
  padding: 0 54px 48px;
}
.learn-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 2px 6px;
}
.learn-track::-webkit-scrollbar {
  display: none;
}
.learn-card {
  flex: 0 0 clamp(355px, 31vw, 440px);
  scroll-snap-align: center;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 26px 70px rgba(0,0,0,.42);
}
.learn-image {
  height: 326px;
  overflow: hidden;
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.learn-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.learn-card:nth-child(1) .learn-image img {
  object-position: center 28%;
}

.learn-card:nth-child(3) .learn-image img {
  object-position: center center;
}

.learn-card:nth-child(4) .learn-image img {
  object-position: center center;
}
.learn-card:nth-child(5) .learn-image img {
  object-position: center center;
}
.learn-content {
  padding: 28px 30px 34px;
  min-height: 344px;
  background: linear-gradient(180deg, rgba(5,5,5,.98), rgba(12,12,12,.96));
}
.learn-content h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(26px, 2vw, 32px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 900;
}
.learn-content p {
  margin: 0;
  color: rgba(247,242,234,.76);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.22;
  letter-spacing: -.045em;
  font-weight: 500;
}
.carousel-arrow {
  position: absolute;
  top: 44%;
  z-index: 3;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  background: rgba(255,255,255,.065);
  color: var(--text);
  font-size: 48px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .18s ease, background .18s ease;
}
.carousel-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.10);
}
.carousel-arrow-left { left: 0; }
.carousel-arrow-right { right: 0; }
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}
.carousel-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
  cursor: pointer;
}
.carousel-dots button.active {
  background: var(--text);
}


@media (max-width: 1320px) and (min-width: 981px) {
  .hero-grid { width: min(1240px, calc(100% - 48px)); grid-template-columns: minmax(0, 1fr) minmax(360px, 430px); gap: 28px; }
  h1 { font-size: clamp(50px, 5.8vw, 76px); }
  .hero-card { min-width: 0; width: clamp(400px, 36vw, 500px); justify-self: end; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .learn-section .container { width: min(1280px, calc(100% - 44px)); }
  .learn-carousel { padding-inline: 42px; }
  .learn-card { flex-basis: clamp(330px, 31vw, 400px); }
  .learn-image { height: 280px; }
  .learn-content p { font-size: 18px; }
}

@media (max-width: 980px) {
  .journey-container { width: min(100% - 32px, 820px); }
  .journey-steps::before { display: none; }
  .journey-step,
  .journey-step:nth-child(even) { grid-template-columns: 1fr; gap: 0; }
  .journey-step:nth-child(even) .journey-image { order: 0; }
  .journey-image { min-height: 300px; }
  .journey-copy { padding: 30px; }
  .journey-copy h3 { font-size: clamp(32px, 7vw, 48px); }

  .section { padding: 78px 0; }
  .hero { min-height: auto; padding: 40px 0 58px; }
  .hero-grid { width: min(760px, calc(100% - 40px)); grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-copy { max-width: 760px; }
  h1 { margin-left: auto; margin-right: auto; font-size: clamp(44px, 8.6vw, 68px); }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-card { width: min(390px, 72vw); min-width: 280px; margin: 0 auto; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-section .container { width: min(100% - 32px, 820px); }
  .learn-carousel { padding-inline: 42px; }
  .learn-track { gap: 16px; }
  .learn-card { flex-basis: min(76vw, 430px); }
  .learn-image { height: 300px; }
  .learn-content { min-height: 0; }
  .about-card, .result-card { grid-template-columns: 1fr; }
  .section-heading-left { text-align: center; margin: 0 auto 24px; }
  .section-heading-left h2 { margin-left: auto; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; inset: 74px 20px auto 20px; display: none; flex-direction: column; align-items: stretch; padding: 22px; background: #111; border: 1px solid var(--line); border-radius: 22px; }
  .nav-links.open { display: flex; }
}

@media (max-width: 640px) {
  .journey-container { width: min(100% - 24px, 540px); }
  .journey-heading { margin-bottom: 34px; }
  .journey-cta { margin-top: 24px; }
  .journey-step { padding: 10px; border-radius: 24px; }
  .journey-image { min-height: 230px; border-radius: 18px; }
  .journey-copy { padding: 24px; }
  .journey-number { font-size: 54px; }
  .journey-copy h3 { font-size: 31px; }
  .journey-copy p:not(.step-label) { font-size: 16px; line-height: 1.38; }

  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 62px 0; }
  .hero { padding: 28px 0 44px; }
  .hero-grid { width: min(100% - 28px, 560px); gap: 24px; }
  h1 { font-size: clamp(38px, 10.5vw, 50px); line-height: 1.04; letter-spacing: -.065em; }
  .hero-text, .section-heading p:not(.eyebrow), .story-copy p, .result-card p, .faq-list p, .path-card p, .cta-box p { font-size: 16px; line-height: 1.48; }
  .btn, .btn-large { width: auto; min-height: 54px; padding: 0 30px; font-size: 17px; }
  .btn-small { width: 100%; }
  .hero-card { width: min(330px, 82vw); min-width: 240px; padding: 8px; border-radius: 24px; }
  .video-embed { border-radius: 18px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .cta-box h2, .about-card h2 { font-size: clamp(34px, 10vw, 44px); line-height: 1.04; letter-spacing: -.06em; }
  .cards-grid, .included-list, .path-grid { grid-template-columns: 1fr; }
  .learn-section .container { width: min(100% - 24px, 540px); }
  .learn-heading h2 { font-size: clamp(42px, 13vw, 58px); }
  .learn-carousel { padding-inline: 0; padding-bottom: 42px; }
  .learn-card { flex-basis: 88vw; }
  .learn-image { height: 250px; }
  .learn-content { padding: 24px; }
  .learn-content h3 { font-size: 26px; }
  .learn-content p { font-size: 17px; line-height: 1.28; letter-spacing: -.035em; }
  .carousel-arrow { display: none; }
  .included-list { padding: 12px; gap: 10px; }
  .included-item { padding: 16px; gap: 14px; font-size: 18px; border-radius: 18px; }
  .included-icon { flex-basis: 44px; width: 44px; height: 44px; border-radius: 14px; font-size: 13px; }
  .feature-card, .step, .path-card { padding: 24px; }
  .about-card, .cta-box { padding: 30px; }
  .result-card { padding: 18px; }
  .before-after { grid-template-columns: 1fr; }
  .result-photo { height: 320px; min-height: 0; }
  .result-photo img { min-height: 0; }
  .footer-grid { display: grid; }
  .footer-links { display: grid; gap: 10px; }
}

@media (max-height: 760px) and (min-width: 981px) {
  h1 { font-size: clamp(50px, 4.8vw, 78px); margin-bottom: 18px; }
  .hero-text { font-size: 18px; max-width: 700px; }
  .hero-actions { margin-top: 26px; }
  .btn-large { min-height: 60px; font-size: 19px; }
  .hero-card { width: clamp(400px, 31vw, 470px); min-width: 0; justify-self: end; }
}

/* v3.3 consistency updates */
.included .learn-heading,
.about-section .learn-heading,
.results .learn-heading,
#faq .learn-heading,
.paths .learn-heading {
  margin-bottom: 42px;
}
.included .learn-heading .eyebrow,
.about-section .learn-heading .eyebrow,
.results .learn-heading .eyebrow,
#faq .learn-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  margin-bottom: 22px;
  color: var(--text);
  letter-spacing: -.02em;
  text-transform: none;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}
.included .learn-heading h2,
.about-section .learn-heading h2,
.results .learn-heading h2,
#faq .learn-heading h2,
.paths .learn-heading h2 {
  margin-bottom: 16px;
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: .98;
  letter-spacing: -.075em;
}
.included-icon {
  font-size: 25px !important;
  letter-spacing: 0 !important;
}
.about-section {
  background: #000;
}
.about-section .about-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: start;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
}
.about-video {
  position: relative;
  width: min(100%, 360px);
  justify-self: center;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.13);
  background: #050505;
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.about-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.about-section .story-copy {
  max-width: 820px;
  margin: 0;
  align-self: start;
  padding-top: 0;
}
.about-section .story-copy p {
  text-align: left;
  margin: 0 0 18px;
}
.about-section .story-copy .btn {
  margin-top: 18px;
}
.results .result-card {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
}
@media (max-width: 700px) {
  .included .learn-heading h2,
  .about-section .learn-heading h2,
  .results .learn-heading h2,
  #faq .learn-heading h2,
  .paths .learn-heading h2 {
    font-size: clamp(42px, 13vw, 58px);
  }
  .about-section .about-card {
    grid-template-columns: 1fr;
    padding: 24px 18px;
    gap: 24px;
    text-align: center;
  }
  .about-video {
    width: min(330px, 82vw);
  }
  .about-section .story-copy,
  .about-section .story-copy p {
    text-align: center;
  }
}

/* v4.0 FAQ and Two Paths image updates */
#faq .learn-heading h2 {
  text-transform: none;
  text-wrap: balance;
}
.paths .learn-heading {
  margin-bottom: 34px;
}
.path-card-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.path-image {
  width: 100%;
  height: clamp(260px, 30vw, 390px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: #080808;
}
.path-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.path-image-stuck img {
  object-position: center 39%;
  transform: scale(1.16);
}
.path-image-transform img {
  object-position: center 28%;
  transform: scale(1.02);
}
.path-content {
  padding: 34px 36px 38px;
  flex: 1;
}
.path-card-image h3 {
  margin-bottom: 12px;
}

@media (max-width: 700px) {
  .path-image { height: 280px; }
  .path-content { padding: 26px 24px 30px; }
  .path-image-stuck img { transform: scale(1.10); object-position: center 36%; }
  .path-image-transform img { transform: scale(1.05); object-position: center 27%; }
}

/* v4.1 navigation, footer socials, and Two Paths image refinements */
.nav-links { gap: clamp(16px, 2vw, 26px); }

#faq .learn-heading h2 {
  text-transform: none;
  text-wrap: balance;
  font-size: clamp(52px, 5.4vw, 84px);
  line-height: .98;
  letter-spacing: -.075em;
}

.path-card-highlight {
  background: var(--panel) !important;
}

.path-card-image {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.path-image {
  height: clamp(260px, 28vw, 370px);
}

.path-image img,
.path-image-stuck img,
.path-image-transform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none !important;
}

.footer-brand p { margin: 8px 0 14px; }
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.social-links a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -.03em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.social-links a:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #130d05;
}

@media (max-width: 700px) {
  #faq .learn-heading h2 { font-size: clamp(42px, 13vw, 58px); }
  .path-image { height: 270px; }
}


/* v4.2 crop and navigation refinements */
.result-photo img {
  object-fit: cover;
  object-position: center center;
  transform: none !important;
}

.result-photo:nth-child(2) img {
  object-position: center center;
  transform: none !important;
}

.path-image {
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
}

.path-image img,
.path-image-stuck img,
.path-image-transform img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center !important;
  transform: none !important;
}

.path-card-image,
.path-card-image.path-card-highlight {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)) !important;
}

.social-links svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 700px) {
  .path-image {
    height: auto;
    aspect-ratio: 16 / 10;
  }
}


/* v4.5 hero polish: keep v4.3 layout, make content fill more space */
@media (min-width: 981px) {
  .hero {
    padding: 10px 0 16px;
    min-height: calc(100vh - 74px);
  }

  .hero-grid {
    width: min(1640px, calc(100% - 48px));
    max-width: 1640px;
    grid-template-columns: minmax(690px, 860px) minmax(460px, 600px);
    gap: clamp(22px, 2vw, 34px);
    justify-content: space-between;
  }

  .hero-copy {
    max-width: 860px;
    padding-top: 0;
  }

  h1 {
    max-width: 860px;
    font-size: clamp(66px, 6.15vw, 104px);
    line-height: 1.01;
    margin-bottom: 26px;
  }

  .hero-text {
    max-width: 790px;
    font-size: clamp(19px, 1.55vw, 24px);
  }

  .hero-actions {
    margin-top: 38px;
  }

  .hero-actions .btn-large {
    min-height: 72px;
    padding-inline: 56px;
    font-size: 22px;
  }

  .hero-card {
    width: clamp(460px, 32vw, 580px);
    justify-self: end;
  }
}

@media (max-height: 820px) and (min-width: 981px) {
  .hero-grid {
    grid-template-columns: minmax(640px, 820px) minmax(420px, 520px);
  }

  h1 {
    font-size: clamp(58px, 5.35vw, 88px);
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 19px;
  }

  .hero-actions {
    margin-top: 28px;
  }

  .hero-card {
    width: clamp(420px, 29vw, 510px);
  }
}


/* Professional application form */
.application-section {
  background: #000;
}
.application-form {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.application-form label {
  display: grid;
  gap: 9px;
  margin-bottom: 16px;
}
.application-form label span {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.application-form input,
.application-form textarea,
.application-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  color: var(--text);
  padding: 16px 18px;
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.application-form textarea {
  resize: vertical;
  min-height: 130px;
}
.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(195,183,166,.58);
}
.application-form select {
  appearance: none;
}
.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  border-color: rgba(241,208,138,.65);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 4px rgba(216,170,85,.10);
}
.form-submit {
  margin-top: 10px;
  border: 0;
  cursor: pointer;
}
.form-note {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .application-form { padding: 22px 16px; }
  .application-form input, .application-form textarea, .application-form select { border-radius: 15px; padding: 14px 15px; }
  .form-submit { width: 100%; }
}

/* v5.2 application form refinements */
.application-form select,
.application-form select option {
  color: #f7f2ea;
  background: #111;
}
.application-form select option:disabled {
  color: rgba(195,183,166,.7);
}
.form-question-group {
  margin: 18px 0;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.035);
}
.form-question-title {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: -.025em;
}
.radio-option {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 12px !important;
  margin: 10px 0 !important;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}
.radio-option input {
  width: 20px !important;
  height: 20px !important;
  padding: 0 !important;
  accent-color: var(--gold);
  cursor: pointer;
}
.radio-option span {
  color: var(--text) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}
.form-submit {
  display: flex;
  margin: 26px auto 0;
}
.form-note {
  margin: 18px auto 0;
  text-align: center;
}


/* v5.3 premium application form polish */
.application-form {
  border-color: rgba(216,170,85,.22);
  background:
    radial-gradient(circle at top left, rgba(216,170,85,.12), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}
.application-form label span,
.form-question-title {
  color: var(--gold-2);
}
.application-form input,
.application-form textarea,
.application-form select {
  border-color: rgba(216,170,85,.20);
  background: rgba(216,170,85,.045);
  color: var(--text);
}
.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(241,208,138,.45);
}
.form-question-group {
  border-color: rgba(216,170,85,.18);
  background: linear-gradient(180deg, rgba(216,170,85,.075), rgba(255,255,255,.025));
}
.radio-option span {
  color: rgba(247,242,234,.90) !important;
}
.application-form select,
.application-form select option {
  color: #f7f2ea;
  background: #15100a;
}
.form-note {
  color: rgba(241,208,138,.74);
}


/* v5.4 application form refinements */
.application-form {
  border-color: rgba(255,255,255,.14) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)) !important;
}
.application-form label span,
.form-question-title {
  color: var(--gold-2) !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -.025em !important;
}
.application-form input,
.application-form textarea,
.application-form select {
  border-color: rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.055) !important;
  color: var(--text) !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
}
.application-form input::placeholder,
.application-form textarea::placeholder {
  color: rgba(195,183,166,.58) !important;
}
.form-question-group {
  border-color: rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.035) !important;
}
.form-select-card {
  display: block;
}
.form-select-card label {
  margin-bottom: 0;
}
.application-form select,
.application-form select option {
  color: #f7f2ea !important;
  background: #111 !important;
}
.radio-option span {
  color: rgba(247,242,234,.92) !important;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif !important;
}
.form-note {
  color: var(--muted) !important;
}


/* v5.5 final application edits */
.application-form select,
.application-form select option,
.application-form select optgroup {
  color: #f7f2ea !important;
  background-color: #111 !important;
  -webkit-text-fill-color: #f7f2ea !important;
}
.application-form select option:checked,
.application-form select option:hover {
  color: #f7f2ea !important;
  background-color: #1a1a1a !important;
}
.application-form select option:disabled {
  color: rgba(247,242,234,.55) !important;
  -webkit-text-fill-color: rgba(247,242,234,.55) !important;
}

/* v5.6 Make webhook submission */
.hidden-submit-frame {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}
.form-note.submitted {
  color: var(--gold-2) !important;
  font-weight: 800;
}


/* v5.7 application form readability */
.application-form,
.application-form label,
.application-form p,
.application-form .question,
.application-form legend,
.application-form .radio-label,
.application-form .checkbox-label{
  color:#fff !important;
}
.application-form input,
.application-form textarea,
.application-form select{
  color:#fff !important;
}
.application-form input::placeholder,
.application-form textarea::placeholder{
  color:#bdbdbd !important;
}
.application-form option{
  color:#fff;
  background:#111;
}

/* v5.8 application form consistency fixes */
.application-form .radio-option span,
.application-form label.radio-option span {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
.application-form .form-question-title {
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
  letter-spacing: -.025em !important;
}
@media (max-width: 640px) {
  .application-form .form-question-title {
    font-size: 17px !important;
  }
}

.hidden-field {
  display: none;
}


/* v5.10 Netlify Forms + mobile thank-you fixes */
.hidden-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.thank-you-page .thank-you-nav-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.thank-you-page .thank-you-hero {
  min-height: calc(100vh - 74px);
  padding: 76px 0;
  align-items: center;
}
.thank-you-page .thank-you-grid {
  grid-template-columns: minmax(0, 840px);
  justify-content: center;
  text-align: center;
}
.thank-you-page .hero-copy {
  max-width: 840px;
  margin-inline: auto;
  padding-top: 0;
}
.thank-you-page h1,
.thank-you-page .hero-text {
  margin-left: auto;
  margin-right: auto;
}
.thank-you-page .hero-actions {
  display: flex;
  justify-content: center;
}

@media (max-width: 700px) {
  .thank-you-page .site-header {
    position: static;
  }
  .thank-you-page .nav {
    min-height: 72px;
    gap: 14px;
  }
  .thank-you-page .brand {
    font-size: 18px;
    letter-spacing: -.04em;
  }
  .thank-you-page .thank-you-nav-action {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    flex: 0 0 auto;
  }
  .thank-you-page .thank-you-nav-action .btn-small {
    width: auto;
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }
  .thank-you-page .thank-you-hero {
    min-height: auto;
    padding: 64px 0 88px;
  }
  .thank-you-page .thank-you-grid {
    width: min(100% - 30px, 560px);
    display: block;
  }
  .thank-you-page h1 {
    font-size: clamp(44px, 14vw, 64px);
    line-height: .98;
    margin-bottom: 24px;
  }
  .thank-you-page .hero-text {
    font-size: 18px;
    line-height: 1.45;
  }
  .thank-you-page .hero-actions .btn-large {
    width: 100%;
    max-width: 360px;
    min-height: 62px;
    padding-inline: 28px;
  }
}


/* Thank you page polish */
.thank-you-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 760px) {
  .thank-you-nav {
    position: static;
    display: flex;
    width: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .thank-you-nav .btn-small {
    padding: 10px 16px;
    font-size: 14px;
  }
}
