:root {
  --ink: #171812;
  --ink-soft: #292a23;
  --paper: #fffdf8;
  --surface: #f2efe6;
  --surface-deep: #e8e3d6;
  --muted: #686a62;
  --line: #d9d5c9;
  --accent: #e5a51f;
  --accent-hover: #f0b638;
  --white: #ffffff;
  --max: 1180px;
  --radius: 20px;
  --shadow: 0 24px 70px rgba(29, 27, 19, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  font-weight: 750;
}

h3 {
  font-size: 1.28rem;
  font-weight: 750;
}

p {
  color: var(--muted);
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 18px;
  color: #9a6810;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f1bd50;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  color: var(--ink);
  background: var(--accent);
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.desktop-nav a:focus-visible,
.faq-item button:focus-visible {
  outline: 3px solid rgba(229, 165, 31, .5);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: .78rem;
}

.button-large {
  min-height: 60px;
  padding: 17px 27px;
}

.button-dark {
  border-color: var(--ink);
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  border-color: #000;
  background: #000;
}

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-size: .88rem;
  font-weight: 750;
}

.text-link-light {
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(23, 24, 18, .08);
  background: rgba(255, 253, 248, .94);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: grid;
  min-height: 74px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  display: block;
  width: 5px;
  height: 38px;
  border-radius: 4px;
  background: var(--accent);
}

.brand span:last-child {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand strong {
  font-size: .95rem;
  letter-spacing: -.02em;
}

.brand small {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  color: #4c4e47;
  font-size: .78rem;
  font-weight: 700;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.hero {
  overflow: hidden;
  padding: 58px 0 26px;
  background:
    linear-gradient(90deg, rgba(229, 165, 31, .08) 1px, transparent 1px) 0 0 / 60px 60px,
    linear-gradient(rgba(229, 165, 31, .08) 1px, transparent 1px) 0 0 / 60px 60px,
    var(--paper);
}

.hero-grid {
  display: block;
}

.hero-copy {
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.hero-copy h1 {
  max-width: 1120px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 5.2vw, 4.8rem);
  line-height: 1.06;
}

.promise-highlight {
  position: relative;
  z-index: 0;
  display: inline-block;
  isolation: isolate;
  white-space: nowrap;
}

.promise-highlight::before {
  position: absolute;
  z-index: -1;
  right: -.08em;
  bottom: .06em;
  left: -.06em;
  height: .38em;
  background: linear-gradient(
    96deg,
    rgba(229, 165, 31, .14),
    rgba(229, 165, 31, .42) 22%,
    rgba(229, 165, 31, .31) 78%,
    rgba(229, 165, 31, .12)
  );
  clip-path: polygon(1% 15%, 100% 0, 98.5% 90%, 0 100%);
  transform: rotate(-.7deg);
  content: "";
}

.hero-lead {
  max-width: 850px;
  margin: 0 auto;
  color: #42443d;
  font-size: clamp(1.08rem, 1.6vw, 1.34rem);
  font-weight: 600;
  line-height: 1.48;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 800;
}

.hero-visual {
  position: relative;
}

.large-product-window {
  overflow: hidden;
  border: 1px solid #cbc6b8;
  border-radius: 18px;
  background: #12130f;
  box-shadow: var(--shadow);
}

.portrait-stage {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid #2e3028;
  border-radius: 24px;
  background:
    linear-gradient(138deg, transparent 0 49%, rgba(229, 165, 31, .13) 49% 68%, transparent 68%),
    linear-gradient(150deg, #2b2d25, #151610 70%);
  box-shadow: var(--shadow);
}

.portrait-stage::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 23%;
  background: linear-gradient(to top, rgba(14, 15, 11, .58), transparent);
  content: "";
  pointer-events: none;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  right: 2%;
  bottom: 0;
  width: auto;
  height: min(92%, 585px);
  max-width: 76%;
  object-fit: contain;
  object-position: bottom right;
}

.portrait-credentials {
  position: absolute;
  z-index: 2;
  top: 42px;
  left: 36px;
  display: flex;
  width: 230px;
  flex-direction: column;
  align-items: flex-start;
}

.portrait-credentials > span {
  margin-bottom: 14px;
  color: #efb844;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.portrait-credentials strong {
  color: var(--white);
  font-size: 1.04rem;
  letter-spacing: -.035em;
  line-height: 1.48;
}

.window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .62);
  background: #20211c;
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6c6d66;
}

.window-bar span:first-child {
  background: var(--accent);
}

.window-bar small {
  margin-left: 7px;
  font-size: .68rem;
  font-weight: 600;
}

.large-product-window img {
  width: 100%;
  height: auto;
}

.video-section {
  overflow: visible;
  padding: 22px 0 112px;
  background: var(--paper);
}

.video-section-inner {
  width: min(calc(100% - 64px), 1240px);
}

.video-heading {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.video-heading h2 {
  margin: 0;
  color: #3f413a;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.45;
}

.video-stage {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
}

.video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 6px;
  border: 1px solid rgba(23, 24, 18, .18);
  border-radius: 26px;
  background: #10110d;
  box-shadow: 0 34px 90px rgba(25, 23, 15, .18);
}

.vsl-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #070805;
  object-fit: cover;
}

.vsl-sound-gate {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: min(500px, calc(100% - 56px));
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 28px 30px 26px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 18px;
  color: var(--white);
  background: rgba(20, 21, 15, .78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .32);
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
}

.video-shell.has-sound .vsl-sound-gate {
  display: none;
}

.vsl-sound-state {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.vsl-sound-gate strong {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -.035em;
  line-height: 1.12;
}

.vsl-sound-gate > span:not(.vsl-sound-state) {
  font-size: 1rem;
  font-weight: 750;
}

.vsl-sound-gate small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .66);
  font-size: .68rem;
  font-weight: 650;
}

.vsl-resume {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  color: var(--white);
  background: rgba(20, 21, 15, .78);
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.vsl-resume[hidden] {
  display: none;
}

.vsl-resume-mark {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--white);
}

.vsl-resume strong {
  color: var(--white);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.vsl-floating-close {
  position: absolute;
  z-index: 4;
  top: 8px;
  right: 8px;
  display: none;
  width: 34px;
  height: 34px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(12, 13, 9, .78);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.vsl-floating-close span {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
}

.vsl-progress {
  position: absolute;
  z-index: 5;
  right: 9px;
  bottom: 9px;
  left: 9px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  pointer-events: none;
}

.vsl-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f4c152, #e8a51a);
  box-shadow: 0 0 12px rgba(232, 165, 26, .42);
  transform: scaleX(var(--vsl-progress, 0));
  transform-origin: left center;
  transition: transform .24s linear;
}

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

.video-noscript {
  margin: 16px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

.video-shell.is-floating {
  position: fixed;
  z-index: 110;
  inset: auto 22px 22px auto;
  width: min(320px, calc(100vw - 44px));
  aspect-ratio: 16 / 9;
  padding: 3px;
  border-radius: 16px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .38);
  animation: vslFloatIn .26s ease both;
}

.video-shell.is-floating .vsl-video {
  border-radius: 12px;
}

.video-shell.is-floating .vsl-floating-close {
  display: grid;
}

.video-shell.is-floating .vsl-progress {
  right: 5px;
  bottom: 5px;
  left: 5px;
  height: 3px;
}

.video-shell.is-floating .vsl-sound-gate {
  width: calc(100% - 24px);
  gap: 2px;
  padding: 14px 12px;
  border-radius: 10px;
}

.video-shell.is-floating .vsl-sound-state,
.video-shell.is-floating .vsl-sound-gate small {
  display: none;
}

.video-shell.is-floating .vsl-sound-gate strong {
  font-size: 1rem;
}

.video-shell.is-floating .vsl-sound-gate > span:not(.vsl-sound-state) {
  font-size: .72rem;
}

@keyframes vslFloatIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.credibility {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.credibility-grid {
  display: grid;
  min-height: 112px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.credibility-grid div {
  display: flex;
  min-height: 50px;
  flex-direction: column;
  justify-content: center;
  padding: 0 26px;
  border-left: 1px solid var(--line);
}

.credibility-grid div:first-child {
  padding-left: 0;
  border-left: 0;
}

.credibility-grid strong {
  font-size: .98rem;
  letter-spacing: -.01em;
}

.credibility-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.4;
}

.opportunity {
  overflow: hidden;
  color: var(--white);
  background: #11120f;
}

.opportunity-heading {
  max-width: 910px;
  margin: 0 auto 54px;
  text-align: center;
}

.opportunity-heading h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 5.8vw, 5.1rem);
  line-height: .98;
}

.opportunity-heading .eyebrow {
  margin-bottom: 20px;
}

.opportunity-intro {
  margin: 0 auto 9px;
  color: #f1f1ed;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.55;
}

.opportunity-subcopy {
  margin: 0 auto;
  color: #9b9d96;
  font-size: .94rem;
  line-height: 1.65;
}

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

.opportunity-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid #e4e0d6;
  border-radius: 22px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .13);
}

.opportunity-photo {
  height: 230px;
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.opportunity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.86) contrast(1.02);
}

.opportunity-card:nth-child(2) .opportunity-photo img {
  object-position: 46% center;
}

.opportunity-card:nth-child(3) .opportunity-photo img {
  object-position: center 56%;
}

.opportunity-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 31px 30px 30px;
  text-align: center;
}

.opportunity-value {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}



.salary-list strong {
  color: var(--ink);
  font-size: clamp(1.35rem, 1.85vw, 1.72rem);
  letter-spacing: -.035em;
  line-height: 1.18;
}

.salary-list span {
  color: var(--muted);
  font-size: .56em;
  font-weight: 600;
  letter-spacing: 0;
}

.opportunity-card h3 {
  margin-bottom: 19px;
  color: #8f6210;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.opportunity-feature {
  max-width: 310px;
  margin-bottom: 14px !important;
  color: #34362f !important;
  font-size: .92rem !important;
  font-weight: 750;
  line-height: 1.48 !important;
}

.opportunity-card p {
  max-width: 315px;
  margin-bottom: 22px;
  color: #6c6e66;
  font-size: .79rem;
  line-height: 1.65;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 54px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.audience .section-heading {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.audience {
  color: var(--white);
  background: #1b1c18;
}

.audience .section-heading h2 {
  color: var(--white);
}

.audience .section-heading > p:last-child {
  margin-inline: auto;
  color: #b6b8b0;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.audience-card {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
  transition: border-color .2s ease, transform .2s ease;
}

.audience-card-opportunity {
  border-color: rgba(255, 255, 255, .12);
}

.audience-card:hover {
  border-color: rgba(229, 165, 31, .48);
  transform: translateY(-4px);
}

.audience-photo {
  height: 350px;
  margin: 0;
  overflow: hidden;
  background: #30312b;
}

.audience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.audience-card:first-child .audience-photo img {
  object-position: 52% center;
}

.audience-card:last-child .audience-photo img {
  object-position: center;
}

.audience-card-body {
  padding: 32px 34px 35px;
}

.audience-card h3 {
  margin-bottom: 20px;
  max-width: 470px;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.25vw, 2.05rem);
}

.audience-professions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.audience-professions li {
  padding: 9px 12px;
  border: 1px solid #d5cdb9;
  border-radius: 999px;
  color: #4b4c45;
  background: rgba(255, 255, 255, .58);
  font-size: .82rem;
  font-weight: 750;
  line-height: 1.25;
}

.audience-hook {
  display: block;
  margin-bottom: 14px;
  color: #34362f;
  font-size: 1.05rem;
  line-height: 1.5;
}

.audience-card p {
  margin-bottom: 0;
  max-width: 490px;
  font-size: .88rem;
  line-height: 1.7;
}

.field-section {
  padding: 0;
  color: var(--white);
  background: var(--ink);
}

.field-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: stretch;
}

.field-image {
  align-self: center;
  margin: 0;
  padding: 54px 0;
}

.field-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.field-copy {
  display: flex;
  max-width: 500px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 0 72px 72px;
}

.field-copy h2 {
  font-size: clamp(2.2rem, 4vw, 3.65rem);
}

.field-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #babbb4;
}

.situations {
  background: var(--surface);
}

.situation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.situation-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.situation-card > span {
  display: inline-block;
  margin-bottom: 40px;
  color: #9a6810;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.situation-card h3 {
  margin-bottom: 16px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.situation-card p {
  margin-bottom: 0;
  font-size: .84rem;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .8fr);
  align-items: start;
  gap: 100px;
}

.method-copy h2 {
  font-size: clamp(2.3rem, 4.2vw, 3.75rem);
}

.method-copy > p:last-child {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.logic-list {
  border-top: 1px solid var(--line);
}

.logic-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.logic-list article > span {
  color: #9a6810;
  font-size: .72rem;
  font-weight: 800;
}

.logic-list h3 {
  margin-bottom: 8px;
  font-size: 1.14rem;
}

.logic-list p {
  margin-bottom: 0;
  font-size: .85rem;
}

.inside {
  color: var(--white);
  background: var(--ink);
}

.inside-heading {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 50px;
}

.inside-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.inside-heading > p {
  margin-bottom: 8px;
  color: #b7b8b1;
}

.large-product-window {
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 35px 90px rgba(0, 0, 0, .38);
}

.curriculum {
  background: var(--surface);
}

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

.module-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.module-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.module-body {
  padding: 24px 26px 28px;
}

.module-body > span {
  display: block;
  margin-bottom: 8px;
  color: #9a6810;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.module-body h3 {
  margin-bottom: 11px;
}

.module-body p {
  margin-bottom: 0;
  font-size: .86rem;
}

.bonus-card {
  display: grid;
  overflow: hidden;
  margin-top: 18px;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.bonus-card img {
  width: 100%;
  height: auto;
}

.bonus-card > div {
  padding: 42px;
}

.bonus-card h3 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.bonus-card p:last-child {
  margin-bottom: 0;
  color: #babbb5;
}

.outcomes {
  color: var(--white);
  background: #10110d;
}

.outcomes-grid {
  display: block;
}

.outcomes-copy {
  max-width: 880px;
  margin-bottom: 58px;
}

.outcomes-copy h2 {
  font-size: clamp(2.25rem, 4.2vw, 3.85rem);
}

.outcomes-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #a7a9a2;
}

.desire-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  list-style: none;
}

.desire-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 34px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.desire-list li > span {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.desire-list p {
  margin: 0;
  color: #9b9d96;
  font-size: clamp(.98rem, 1.8vw, 1.22rem);
  line-height: 1.65;
}

.desire-list strong {
  color: var(--white);
  font-weight: 750;
}

.evidence {
  background: var(--surface-deep);
}

.evidence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
  align-items: center;
  gap: 90px;
}

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

.evidence-copy > p:not(.eyebrow) {
  max-width: 650px;
}

.evidence-number {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(229, 165, 31, .24), transparent 38%),
    linear-gradient(145deg, #28291f, #10110d);
  box-shadow: var(--shadow);
}

.evidence-number strong {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 800;
  letter-spacing: -.09em;
  line-height: .75;
}

.evidence-number strong span {
  color: var(--accent);
  font-size: .48em;
  vertical-align: top;
}

.evidence-number p {
  max-width: 300px;
  margin: 0;
  color: #c8c9c2;
  font-size: .88rem;
  line-height: 1.55;
}

.teacher-grid {
  display: grid;
  grid-template-columns: minmax(320px, .65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 90px;
}

.teacher-photo {
  max-width: 520px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: #172125;
  box-shadow: var(--shadow);
}

.teacher-photo img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.teacher-copy h2 {
  margin-bottom: 20px;
}

.teacher-intro {
  color: #41433c;
  font-size: 1.08rem;
  font-weight: 600;
}

.teacher-copy > p {
  max-width: 690px;
}

.offer {
  color: var(--white);
  background: var(--ink);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .68fr);
  align-items: center;
  gap: 90px;
}

.offer-copy h2 {
  max-width: 700px;
}

.offer-copy ul {
  display: grid;
  margin: 38px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 28px;
  list-style: none;
}

.offer-copy li {
  position: relative;
  padding-left: 20px;
  color: #c6c7c0;
  font-size: .84rem;
}

.offer-copy li::before {
  position: absolute;
  top: .65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.price-card {
  position: relative;
  padding: 42px;
  overflow: hidden;
  border: 1px solid rgba(229, 165, 31, .62);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at 100% 0, rgba(229, 165, 31, .14), transparent 34%),
    linear-gradient(160deg, #fffdf8, #f2ecde);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--accent);
  content: "";
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.price-card-head p {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.price-card-head > span {
  padding: 7px 10px;
  border: 1px solid rgba(154, 104, 16, .28);
  border-radius: 999px;
  color: #83590e;
  background: rgba(229, 165, 31, .12);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

.price {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(23, 24, 18, .13);
}

.price > small {
  margin-bottom: 4px;
  color: #4f514a;
  font-size: .88rem;
  font-weight: 750;
}

.price strong {
  margin: 0 0 7px;
  font-size: clamp(4rem, 6vw, 5.65rem);
  font-weight: 800;
  letter-spacing: -.07em;
  line-height: .92;
}

.price sup {
  margin-right: 4px;
  font-size: 1.05rem;
  letter-spacing: 0;
  vertical-align: 2.1em;
}

.price strong span {
  font-size: .48em;
  letter-spacing: -.03em;
}

.price em {
  color: #575951;
  font-size: .86rem;
  font-style: normal;
}

.price-cta {
  min-height: 66px;
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(176, 117, 9, .24);
  font-size: .98rem;
}

.price-cta:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  box-shadow: 0 18px 34px rgba(176, 117, 9, .3);
}

.price-badge {
  display: inline-block;
  width: max-content;
  margin-bottom: 22px;
  padding: 7px 14px;
  border: 1px solid rgba(154, 104, 16, .3);
  border-radius: 999px;
  color: #83590e;
  background: rgba(229, 165, 31, .12);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.price-anchor {
  margin-bottom: 8px;
  color: #6b6d64;
  font-size: .9rem;
  font-weight: 650;
}

.price-anchor s {
  color: #85867e;
  font-weight: 700;
  text-decoration-thickness: 1.5px;
}

.price-includes {
  display: grid;
  gap: 10px;
  margin: 26px 0 22px;
  padding: 0;
  list-style: none;
}

.price-includes li {
  position: relative;
  padding-left: 26px;
  color: #43453e;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.45;
}

.price-includes li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: #1c7a3c;
  font-weight: 800;
  content: "✓";
}

.price-cta span {
  margin-left: 8px;
  font-size: 1.15em;
}

.secure-line {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  margin-top: 16px;
}

.secure-mark {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(229, 165, 31, .34);
  font-size: .72rem;
  font-weight: 800;
}

.secure-line p {
  margin: 0;
  color: #5e6058;
  font-size: .7rem;
}

.guarantee-mini {
  display: grid;
  margin-top: 26px;
  padding: 20px;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  border: 1px solid rgba(23, 24, 18, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
}

.guarantee-mini strong {
  color: #8b5d0d;
  font-size: .88rem;
  line-height: 1.35;
}

.guarantee-mini p {
  margin: 0;
  color: #565850;
  font-size: .74rem;
  line-height: 1.55;
}

.guarantee {
  padding-block: 84px;
  background: var(--surface);
}

.guarantee-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 56px;
  padding: 54px 62px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.guarantee-number {
  color: var(--accent);
  font-size: 9rem;
  font-weight: 800;
  letter-spacing: -.1em;
  line-height: .75;
}

.guarantee-card h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.guarantee-card p:last-child {
  max-width: 740px;
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 100px;
}

.faq-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.accordion {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 30px;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button span {
  font-size: .96rem;
  font-weight: 750;
}

.faq-item button b {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] b {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  font-size: .86rem;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item button[aria-expanded="true"] + .faq-answer > p {
  padding: 0 50px 26px 0;
}

.final-cta {
  padding: 80px 0;
  color: var(--white);
  background: #24251e;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.footer {
  padding: 34px 0;
  color: var(--white);
  background: #11120e;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-footer small,
.footer p {
  color: #85877f;
}

.footer p {
  margin: 0;
  font-size: .67rem;
}

.footer p a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.footer p a:hover {
  color: #fff;
}

.mobile-buy {
  display: none;
}

@media (max-width: 1100px) {
  .opportunity-card-body {
    padding-inline: 24px;
  }

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

  .audience-card {
    min-height: 0;
  }

  .method-grid,
  .offer-grid {
    gap: 60px;
  }

  .credibility-grid div {
    padding-inline: 18px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .desktop-nav {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-copy h1 {
    max-width: 800px;
  }

  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 0;
  }

  .credibility-grid div,
  .credibility-grid div:first-child {
    min-height: 70px;
    padding: 12px 18px;
    border-left: 1px solid var(--line);
  }

  .credibility-grid div:nth-child(odd) {
    border-left: 0;
  }

  .field-grid,
  .method-grid,
  .inside-heading,
  .outcomes-grid,
  .evidence-grid,
  .teacher-grid,
  .offer-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

  .opportunity-card {
    width: min(100%, 620px);
    min-height: 0;
    margin-inline: auto;
  }

  .opportunity-photo {
    height: 300px;
  }

  .opportunity-card-body {
    min-height: 370px;
  }

  .audience-photo {
    height: 330px;
  }

  .field-grid {
    padding: 72px 0;
  }

  .field-image {
    padding: 0;
  }

  .field-copy {
    max-width: 700px;
    padding: 12px 0 0;
  }

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

  .method-grid,
  .inside-heading,
  .outcomes-grid,
  .evidence-grid,
  .teacher-grid,
  .offer-grid,
  .faq-layout {
    gap: 54px;
  }

  .faq-title {
    position: static;
  }

  .teacher-photo {
    max-width: 460px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 74px;
    font-size: 15px;
  }

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

  .section {
    padding: 72px 0;
  }

  .site-header .button {
    display: none;
  }

  .nav-wrap {
    min-height: 66px;
  }

  .hero {
    padding: 54px 0 64px;
    background:
      linear-gradient(90deg, rgba(229, 165, 31, .07) 1px, transparent 1px) 0 0 / 42px 42px,
      linear-gradient(rgba(229, 165, 31, .07) 1px, transparent 1px) 0 0 / 42px 42px,
      var(--paper);
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    margin-bottom: 20px;
    font-size: clamp(2.55rem, 13vw, 4rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .window-bar {
    height: 34px;
  }

  .portrait-stage {
    min-height: 0;
    aspect-ratio: 4 / 5;
    max-height: 440px;
  }

  .window-bar small {
    font-size: .59rem;
  }

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

  .opportunity-card {
    min-height: 0;
  }

  .opportunity-photo {
    height: 220px;
  }

  .opportunity-card-body {
    min-height: 0;
    padding: 25px;
  }

  .opportunity-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .audience-grid,
  .situation-grid,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: 0;
    padding: 0;
  }

  .audience-photo {
    height: 245px;
  }

  .audience-card-body {
    padding: 24px;
  }

  .situation-card > span {
    margin-bottom: 28px;
  }

  .field-grid {
    min-height: auto;
    padding: 54px 0 62px;
  }

  .field-copy {
    padding-top: 28px;
  }

  .situation-card {
    min-height: 0;
    padding: 25px;
  }

  .method-grid,
  .inside-heading,
  .outcomes-grid,
  .evidence-grid,
  .teacher-grid,
  .offer-grid,
  .faq-layout {
    gap: 42px;
  }

  .module-body {
    padding: 21px 22px 24px;
  }

  .bonus-card {
    grid-template-columns: 1fr;
  }

  .bonus-card > div {
    padding: 27px 24px 31px;
  }

  .bonus-card h3 {
    font-size: 1.55rem;
  }

  .desire-list li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .desire-list li > span {
    font-size: 1rem;
  }

  .desire-list p {
    font-size: .9rem;
  }

  .teacher-photo {
    max-width: none;
  }

  .offer-copy ul {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 28px 22px;
  }

  .price-card-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  .price strong {
    font-size: clamp(4rem, 23vw, 5.2rem);
  }

  .guarantee-mini {
    grid-template-columns: 70px 1fr;
    padding: 18px;
  }

  .guarantee {
    padding-block: 60px;
  }

  .guarantee-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 34px 25px;
  }

  .guarantee-number {
    font-size: 6rem;
  }

  .final-cta {
    padding: 62px 0;
  }

  .final-cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 32px;
  }

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

  .mobile-buy {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 9px 14px 9px 18px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: var(--white);
    background: rgba(23, 24, 18, .97);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .2);
    transform: translateY(110%);
    transition: transform .25s ease;
  }

  .mobile-buy.is-visible {
    transform: translateY(0);
  }

  .mobile-buy div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
  }

  .mobile-buy small {
    color: #aeb0a8;
    font-size: .59rem;
    font-weight: 700;
  }

  .mobile-buy strong {
    font-size: .83rem;
  }

  .mobile-buy a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--ink);
    background: var(--accent);
    font-size: .72rem;
    font-weight: 800;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.section-cta {
  margin-top: 44px;
  text-align: center;
}
.section-cta .button { min-width: 300px; }
@media (max-width: 680px) {
  .section-cta .button { width: 100%; min-width: 0; }
}
