@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

: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(2.65rem, 3.8vw, 3.55rem);
  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: 100px 0 88px;
  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: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(480px, .92fr);
  align-items: center;
  gap: 70px;
}

.hero-copy {
  max-width: none;
  margin: 0;
  text-align: left;
}

.hero-brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 30px;
}

.hero-brand-method {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #725a2c;
  font-size: clamp(.68rem, .9vw, .82rem);
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-brand-method::before,
.hero-brand-method::after {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.hero-brand-product {
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .95;
}

.hero-brand-product span {
  color: #a26700;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.08;
}

.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: 670px;
  margin: 0 0 30px;
  color: #55574f;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 400;
  line-height: 1.55;
}

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

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 0;
  padding: 0;
  color: #5b5d55;
  font-size: .78rem;
  font-weight: 700;
  list-style: none;
}

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

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

.hero-visual {
  position: relative;
}

.portrait-card {
  overflow: hidden;
  border: 1px solid #2e3028;
  border-radius: 24px;
  background: #151610;
  box-shadow: var(--shadow);
}

.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: 550px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(138deg, transparent 0 49%, rgba(229, 165, 31, .13) 49% 68%, transparent 68%),
    linear-gradient(150deg, #2b2d25, #151610 70%);
  box-shadow: none;
}

.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: relative;
  z-index: 2;
  display: block;
  width: auto;
  padding: 18px 22px 20px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #11120e;
  text-align: center;
}

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

.portrait-credentials strong {
  color: var(--white);
  font-size: .82rem;
  letter-spacing: -.02em;
  line-height: 1.5;
}

.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 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.1;
}

.video-heading .eyebrow {
  margin-bottom: 10px;
}

.video-heading > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: #55574f;
  font-size: 1.04rem;
  line-height: 1.55;
}

.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(520px, calc(100% - 64px));
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 30px 32px 28px;
  border: 3px solid rgba(255, 255, 255, .88);
  border-radius: 18px;
  color: var(--white);
  background: rgba(15, 16, 12, .3);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .2);
  transform: translate(-50%, -50%);
  cursor: pointer;
  backdrop-filter: blur(2px) saturate(104%);
  -webkit-backdrop-filter: blur(2px) saturate(104%);
}

.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.65rem, 3vw, 2.15rem);
  letter-spacing: -.035em;
  line-height: 1.12;
}

.vsl-sound-action {
  font-size: 1.15rem;
  font-weight: 800;
}

.vsl-sound-visual {
  display: block;
  margin: 2px 0;
}

.vsl-muted-icon {
  position: relative;
  width: 112px;
  height: 90px;
}

.vsl-muted-speaker {
  position: absolute;
  top: 16px;
  left: 4px;
  width: 58px;
  height: 58px;
  background: #fff;
  clip-path: polygon(0 35%, 35% 35%, 76% 5%, 76% 95%, 35% 65%, 0 65%);
}

.vsl-muted-wave {
  position: absolute;
  border: 7px solid transparent;
  border-right-color: #fff;
  border-radius: 50%;
  transform-origin: left center;
  animation: vslWavePulse 1.35s ease-in-out infinite;
}

.vsl-muted-wave-one {
  top: 27px;
  right: 24px;
  width: 30px;
  height: 36px;
}

.vsl-muted-wave-two {
  top: 14px;
  right: 2px;
  width: 52px;
  height: 62px;
  animation-delay: -.62s;
}

.vsl-muted-slash {
  position: absolute;
  top: 42px;
  left: 0;
  width: 112px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(15, 16, 12, .18);
  transform: rotate(36deg);
}

@keyframes vslWavePulse {
  0%, 100% { opacity: .22; transform: scale(.88); }
  50% { opacity: 1; transform: scale(1); }
}

.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;
  white-space: nowrap;
  text-transform: uppercase;
}

.vsl-pause {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  color: var(--white);
  background: rgba(12, 13, 9, .66);
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .18s ease, transform .18s ease, background-color .18s ease;
  pointer-events: none;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.video-shell.has-sound.is-playing:hover .vsl-pause,
.video-shell.has-sound.is-playing.controls-visible .vsl-pause,
.vsl-pause:focus-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vsl-pause:hover {
  background: rgba(12, 13, 9, .84);
}

.vsl-pause-mark {
  position: relative;
  width: 12px;
  height: 15px;
  flex: 0 0 12px;
}

.vsl-pause-mark::before,
.vsl-pause-mark::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.vsl-pause-mark::before { left: 0; }
.vsl-pause-mark::after { right: 0; }

.vsl-pause strong {
  color: inherit;
  font-size: .72rem;
  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-pause {
  bottom: 13px;
  left: 13px;
  min-height: 38px;
  padding: 8px 11px;
}

.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,
.video-shell.is-floating .vsl-sound-visual {
  display: none;
}

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

.video-shell.is-floating .vsl-sound-action {
  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: block;
}

.method-copy {
  max-width: 920px;
}

.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(--ink);
  background: var(--paper);
}

.outcomes-grid {
  display: block;
}

.outcomes .eyebrow-light {
  color: #96640b;
}

.outcomes-copy {
  max-width: 780px;
  margin-bottom: 48px;
}

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

.outcomes-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
}

.desire-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 64px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desire-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.desire-list li > span {
  color: #96640b;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.04em;
}

.desire-list p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.desire-list strong {
  color: var(--ink);
  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: 1fr;
  gap: 18px;
  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: "";
}

.offer-copy li strong {
  color: var(--white);
  font-weight: 750;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-bottom: 34px;
}

.price-card-head h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1;
}

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

.price-card-head > span {
  color: #83590e;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.3;
  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: 88px 0 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);
}

.final-cta-inner > .button {
  width: 330px;
  min-width: 330px;
  min-height: 68px;
  flex: 0 0 330px;
  padding: 20px 30px;
  white-space: nowrap;
}

.final-support {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  margin-top: 70px;
  padding: 28px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.final-support-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.final-support-copy img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.final-support-copy div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.final-support-copy strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 750;
}

.final-support-copy span {
  color: #aeb0a8;
  font-size: .88rem;
}

.final-support-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  color: #fff;
  font-size: .84rem;
  font-weight: 750;
  transition: border-color .2s ease, background-color .2s ease;
}

.final-support-link:hover {
  border-color: rgba(37, 211, 102, .7);
  background: rgba(37, 211, 102, .08);
}

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

.footer-inner {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: start;
  gap: 32px 70px;
}

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

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

.footer-company {
  display: grid;
  gap: 7px;
  color: #a4a69e;
  font-style: normal;
  line-height: 1.5;
}

.footer-company strong {
  color: #fff;
  font-size: .72rem;
  letter-spacing: .015em;
}

.footer-company a {
  width: max-content;
  color: #a4a69e;
  text-decoration-color: rgba(255, 255, 255, .25);
  text-underline-offset: 3px;
}

.footer-company a:hover {
  color: #fff;
}

.footer-copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.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;
}

.mobile-chapter-image,
.collapse-toggle {
  display: none;
}

.collapsible-content {
  display: block;
}

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

@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;
  }

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

  .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: 72px;
  }

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

  .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; }
}

/* ============================================================
   V6.5 — DIREÇÃO EDITORIAL DESKTOP
   ============================================================ */

.course-nav{
  position:fixed;z-index:130;right:0;bottom:0;left:0;
  display:flex;min-height:64px;align-items:center;justify-content:space-between;
  padding:10px max(28px,calc((100vw - 1240px)/2));
  border-top:1px solid rgba(255,255,255,.12);
  background:rgba(15,16,12,.94);
  box-shadow:0 -10px 34px rgba(0,0,0,.18);
  opacity:0;visibility:hidden;pointer-events:none;
  transform:translateY(115%);
  transition:transform .36s cubic-bezier(.16,1,.3,1),opacity .22s ease,visibility 0s linear .36s;
  -webkit-backdrop-filter:blur(18px) saturate(150%);
  backdrop-filter:blur(18px) saturate(150%);
}
.course-nav.is-visible{
  opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);
  transition-delay:0s;
}
.course-nav-product{
  display:flex;align-items:baseline;gap:18px;
}
.course-nav-product > strong{
  color:#fff;font-size:1.05rem;font-weight:800;letter-spacing:-.03em;
}
.course-nav-product > span{
  padding-left:18px;border-left:1px solid rgba(255,255,255,.18);
  color:#c8c9c3;font-size:.82rem;font-weight:650;
}
.course-nav-product > span b{
  color:var(--accent);font-size:1.08rem;font-weight:800;
}
.course-nav a{
  display:inline-flex;width:196px;min-height:42px;align-items:center;justify-content:center;
  padding:10px 22px;border-radius:999px;background:var(--accent);color:var(--ink);
  font-size:.9rem;font-weight:800;line-height:1;text-decoration:none;
  transition:transform .2s ease,background .2s ease;
}
.course-nav a:hover{background:#f2b51d;transform:translateY(-1px)}
.course-nav a:focus-visible{outline:3px solid rgba(236,166,18,.34);outline-offset:3px}
.carousel-guide,
.module-swipe-hint{display:none}

.opportunity-card-body > p:last-child{
  margin-top:22px;color:var(--muted);font-size:.9rem;line-height:1.65;
}

.field-image{
  position:relative;align-self:stretch;overflow:hidden;padding:0;background:#f2f2f0;
}
.field-image picture{display:block;height:100%}
.field-image img{
  display:block;width:100%;height:100%;min-height:760px;
  border-radius:0;object-fit:cover;object-position:left center;
}
.field-image::after{
  content:"";position:absolute;z-index:1;right:0;bottom:0;left:0;height:46%;
  pointer-events:none;
  background:linear-gradient(180deg,transparent 0,rgba(10,11,8,.14) 34%,rgba(10,11,8,.78) 100%);
}
.field-image figcaption{
  position:absolute;z-index:2;right:42px;bottom:38px;left:42px;
  max-width:560px;padding:0;border:0;border-radius:0;color:#fff;background:transparent;
  box-shadow:none;font-size:clamp(1.2rem,1.45vw,1.5rem);font-weight:800;
  line-height:1.32;letter-spacing:-.03em;text-shadow:0 3px 22px rgba(0,0,0,.72);
}
.field-copy > p strong{color:#fff;font-weight:800}

@media (min-width:901px){
  .field-grid{
    min-height:clamp(720px,78vh,900px);
    grid-template-columns:minmax(0,1.35fr) minmax(390px,.65fr);
  }
  .field-image{height:clamp(720px,78vh,900px)}
  .field-image img{height:100%;min-height:0}
  .field-copy{padding:72px 0 72px 52px}
}

@media (min-width:761px) and (max-width:900px){
  .field-image{height:auto}
  .field-image img{height:auto;min-height:0}
}

.situations{overflow:hidden}
.pressure-heading{
  max-width:1040px;margin-bottom:72px;
}
.pressure-heading > p:not(.eyebrow){
  max-width:820px;margin-top:28px;color:#9b9d93;font-size:1.2rem;line-height:1.65;
}
.pressure-heading > p strong{color:var(--ink);font-weight:800}
.pressure-visual{
  position:relative;max-width:1180px;margin:0 auto 72px;overflow:hidden;
  border-radius:30px;
}
.pressure-visual img{
  display:block;width:100%;max-height:760px;object-fit:cover;object-position:center 54%;
}
.pressure-visual::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 54%,rgba(11,12,9,.76) 100%);
}
.pressure-visual figcaption{
  position:absolute;z-index:1;right:52px;bottom:46px;left:52px;
  display:flex;max-width:610px;flex-direction:column;gap:10px;
}
.pressure-visual figcaption span{
  color:var(--accent);font-size:.68rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase;
}
.pressure-visual figcaption strong{
  color:#fff;font-size:2rem;line-height:1.18;letter-spacing:-.035em;
}
.pressure-cards{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;
}
.pressure-card{
  min-height:390px;padding:38px 34px;border-radius:24px;background:#fff;
}
.pressure-card > span{
  display:block;margin-bottom:72px;color:#9a6710;
  font-size:.66rem;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
}
.pressure-card h3{
  margin-bottom:24px;color:var(--ink);font-size:1.5rem;line-height:1.25;
  letter-spacing:-.035em;
}
.pressure-card p{color:var(--muted);font-size:.9rem;line-height:1.65}

.module-explorer{
  display:block;
}
.mobile-module-gallery,
.module-dialog{
  display:none;
}
.module-tabs{
  display:none;
}
.module-panels{
  display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;
}
.module-panel,
.module-panel[hidden]{
  display:block;overflow:hidden;min-height:0;
  border:1px solid var(--line);border-radius:var(--radius);background:#fff;
}
.module-panel img{
  display:block;width:100%;height:auto;aspect-ratio:16/9;
  border-bottom:1px solid var(--line);object-fit:cover;
}
.module-panel > div{
  display:block;padding:24px 26px 28px;
}
.module-panel > div > span{
  display:block;margin-bottom:8px;color:#9a6710;font-size:.66rem;
  font-weight:800;letter-spacing:.08em;text-transform:uppercase;
}
.module-panel h3{
  margin-bottom:11px;font-size:1.25rem;line-height:1.25;letter-spacing:-.02em;
}
.module-panel p{margin:0;color:var(--muted);font-size:.86rem;line-height:1.65}
/* Certificado: um respiro visual entre o conteúdo e a transformação. */
.certificate-section{
  position:relative;overflow:hidden;color:#fff;background:
    radial-gradient(circle at 50% 42%,rgba(229,165,31,.11),transparent 38%),
    #11120f;
}
.certificate-section::before{
  position:absolute;top:0;right:0;left:0;height:1px;
  background:linear-gradient(90deg,transparent,rgba(229,165,31,.55),transparent);
  content:"";
}
.certificate-layout{position:relative}
.certificate-heading{
  max-width:900px;margin:0 auto 58px;text-align:center;
}
.certificate-heading h2{
  margin-bottom:24px;color:#fff;font-size:clamp(3rem,5.4vw,5.2rem);
  line-height:1.02;letter-spacing:-.058em;
}
.certificate-heading > p:last-child{
  max-width:760px;margin:0 auto;color:#aeb0a8;font-size:1.08rem;line-height:1.7;
}
.certificate-heading > p strong{color:#fff;font-weight:750}
.certificate-frame{
  position:relative;max-width:1000px;margin:0 auto;padding:14px;
  border:1px solid rgba(255,255,255,.14);border-radius:28px;
  background:rgba(255,255,255,.045);box-shadow:0 44px 110px rgba(0,0,0,.46);
}
.certificate-frame picture{display:block}
.certificate-frame img{
  width:100%;height:auto;border-radius:16px;background:#f4efe6;
}
.certificate-frame figcaption{
  margin:13px 5px 2px;color:#85877f;font-size:.68rem;line-height:1.45;text-align:center;
}

/* Checkout: hierarquia de produto, economia, preço e segurança. */
.price-card{
  scroll-margin-top:84px;
  padding:0;border-radius:30px;background:#fffdf8;
  box-shadow:0 34px 90px rgba(0,0,0,.38);
}
.price-card::before{display:none}
.price-card-top{
  display:block;padding:38px 36px 29px;
}
.price-card-head{display:block;margin:0}
.price-card-head > span{
  display:block;margin-bottom:9px;padding:0;border:0;border-radius:0;
  color:#8a5c0a;background:transparent;font-size:.67rem;
  letter-spacing:.13em;
}
.price-card-head h3{
  margin:0 0 7px;font-size:2.55rem;font-weight:800;
  line-height:.98;letter-spacing:-.06em;
}
.price-card-head p{
  margin:0;color:#6c6e66;font-size:.84rem;font-weight:600;
  letter-spacing:0;text-transform:none;
}
.price-savings{
  display:flex;align-items:center;justify-content:center;gap:18px;
  width:max-content;max-width:calc(100% - 72px);
  margin:0 auto;padding:14px 24px;border-radius:14px;
  color:#654509;background:rgba(229,165,31,.15);
}
.price-savings span{font-size:.78rem;font-weight:650}
.price-savings s{color:#7a705b;text-decoration-thickness:1.5px}
.price-savings strong{
  color:#75500c;font-size:.78rem;font-weight:800;letter-spacing:.01em;
}
.price{
  align-items:center;text-align:center;
  margin:0;padding:28px 36px 30px;border:0;
}
.price > small{
  margin-bottom:8px;color:#63655d;font-size:.8rem;
  font-weight:750;text-transform:uppercase;letter-spacing:.08em;
}
.price strong{
  display:inline-flex;align-items:flex-start;justify-content:center;gap:8px;
  margin:0 0 10px;font-size:clamp(4.6rem,6vw,5.7rem);
  letter-spacing:-.065em;
}
.price strong sup{
  margin:12px 0 0;font-size:1.05rem;line-height:1;
  letter-spacing:0;vertical-align:baseline;
}
.price em{color:#686a62;font-size:.9rem}
.price em b{color:var(--ink);font-weight:800}
.price-cta{
  width:calc(100% - 72px);min-height:66px;margin:0 36px;
  border-radius:15px;
}
@media (max-width:680px){
  .price-card-top{padding:34px 28px 25px}
  .price-card-head{text-align:center}
  .price-savings{max-width:calc(100% - 56px);padding:12px 20px}
  .price{padding:26px 28px 30px}
  .price strong{font-size:clamp(4.8rem,26vw,6rem)}
  .price-cta{width:calc(100% - 56px);margin-right:28px;margin-left:28px}
}
.price-card-contents{
  margin-top:30px;padding:28px 36px 30px;
  border-top:1px solid rgba(20,21,14,.1);
}
.price-card-contents h4{
  margin:0 0 20px;font-size:.78rem;font-weight:800;
  letter-spacing:.09em;text-transform:uppercase;
}
.price-includes{margin:0}
.price-includes li{font-size:.84rem}
.price-assurance{
  display:grid;grid-template-columns:1fr 1fr;gap:18px;
  padding:22px 36px 25px;background:#f2ecde;
}
.price-assurance > div{
  display:flex;min-width:0;align-items:center;gap:11px;
}
.assurance-icon{
  display:grid;position:relative;width:34px;height:34px;flex:0 0 34px;
  place-items:center;border-radius:50%;color:#6f4b09;
  background:rgba(229,165,31,.22);font-size:.78rem;font-weight:800;
}
.assurance-lock{font-size:0}
.assurance-lock::before{
  position:absolute;left:10px;bottom:8px;width:14px;height:11px;
  border:2px solid #6f4b09;border-radius:3px;content:"";
}
.assurance-lock::after{
  position:absolute;top:7px;left:12px;width:10px;height:9px;
  border:2px solid #6f4b09;border-bottom:0;border-radius:7px 7px 0 0;
  content:"";
}
.price-assurance p{
  display:flex;min-width:0;flex-direction:column;gap:2px;margin:0;
}
.price-assurance strong{font-size:.78rem;line-height:1.25}
.price-assurance small{color:#77786f;font-size:.65rem;line-height:1.3}

.price-security{
  display:flex;align-items:center;justify-content:center;gap:12px;
  padding:20px 36px 22px;background:#f2ecde;
}
.price-security p{
  display:flex;flex-direction:column;gap:2px;margin:0;
}
.price-security strong{font-size:.78rem;line-height:1.25}
.price-security small{color:#77786f;font-size:.65rem;line-height:1.3}

/* Garantia como capítulo complementar à oferta. */
.guarantee{
  padding:120px 0;background:#f3efe5;
}
.guarantee-card{
  display:grid;overflow:hidden;padding:0;
  grid-template-columns:280px minmax(0,1fr);align-items:stretch;gap:0;
  border:0;border-radius:30px;background:#fff;
  box-shadow:0 30px 80px rgba(33,29,19,.12);
}
.guarantee-seal{
  display:flex;min-height:420px;flex-direction:column;
  align-items:center;justify-content:center;padding:46px 30px;
  color:#fff;background:
    linear-gradient(135deg,rgba(229,165,31,.13),transparent 44%),
    var(--ink);
}
.guarantee-seal strong{
  font-size:10rem;letter-spacing:-.1em;line-height:.75;
}
.guarantee-seal span{
  margin-top:21px;font-size:2rem;font-weight:800;
  letter-spacing:-.04em;line-height:1;
}
.guarantee-seal small{
  margin-top:13px;color:#e9b747;font-size:.68rem;font-weight:800;
  letter-spacing:.14em;text-transform:uppercase;
}
.guarantee-copy{
  display:flex;flex-direction:column;justify-content:center;
  padding:62px 68px;
}
.guarantee-copy h2{
  max-width:800px;margin-bottom:27px;font-size:clamp(2.8rem,4vw,4.2rem);
  line-height:1.02;letter-spacing:-.055em;
}
.guarantee-copy > p{
  max-width:760px;margin:0;color:#777970;font-size:1.08rem;line-height:1.72;
}
.guarantee-copy > p strong{color:var(--ink);font-weight:800}

.teacher-toggle{display:none}
.teacher-story{max-height:none!important;margin-top:26px!important;opacity:1!important}
.teacher{padding-bottom:64px}
.teacher-story strong{color:var(--ink);font-weight:750}

.faq{
  padding-top:72px;padding-bottom:96px;color:#fff;background:#11120f;
}
.faq-layout{gap:80px}
.faq .eyebrow{color:var(--accent)}
.faq-title h2{color:#fff}
.faq .accordion,
.faq .faq-item{border-color:rgba(255,255,255,.14)}
.faq .faq-item button{color:#fff}
.faq .faq-answer > p{color:#a5a79f;line-height:1.65}
.faq .faq-answer a{color:#efaa13;font-weight:700;text-decoration:none}
.faq .faq-answer a:hover{text-decoration:underline;text-underline-offset:4px}
.faq .faq-answer strong{color:#fff;font-weight:750}

/* Leitura desktop: corpo consistente, sem apagar a hierarquia entre capítulos e cards. */
@media (min-width:901px){
  .field-copy > p:not(.eyebrow),
  .method-copy > p:not(.eyebrow),
  .pressure-heading > p:not(.eyebrow),
  .curriculum .section-heading > p:not(.eyebrow),
  .certificate-heading > p:last-child,
  .outcomes-copy > p:last-child,
  .evidence-copy > p:not(.eyebrow),
  .teacher-copy > p:not(.eyebrow),
  .guarantee-copy > p{
    color:#6f7169;
    font-size:1.16rem;
    line-height:1.68;
  }

  .field-copy > p:not(.eyebrow),
  .method-copy > p:not(.eyebrow),
  .pressure-heading > p:not(.eyebrow),
  .curriculum .section-heading > p:not(.eyebrow),
  .outcomes-copy > p:last-child,
  .evidence-copy > p:not(.eyebrow),
  .teacher-copy > p:not(.eyebrow){
    max-width:720px;
  }

  .desire-list p{
    font-size:1.08rem;
    line-height:1.62;
  }

  .pressure-card p,
  .module-panel p,
  .opportunity-card-body > p:last-child{
    font-size:.98rem;
    line-height:1.62;
  }

  .offer-copy li{
    font-size:.96rem;
    line-height:1.55;
  }
}

@media (prefers-reduced-motion:reduce){
  .module-panel{animation:none}
  .vsl-muted-wave{animation:none;opacity:1;transform:none}
}

/* V9.0.6 — Hero desktop: recupera a proporção editorial da versão anterior. */
@media (min-width:901px){
  .hero{
    padding:76px 0 78px;
  }

  .hero .hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(440px,.78fr);
    align-items:center;
    gap:52px;
  }

  .hero .hero-copy{
    min-width:0;
    max-width:none;
    margin:0;
    text-align:left;
  }

  .hero .hero-brand-lockup{
    margin-bottom:22px;
  }

  .hero .hero-brand-product{
    font-size:clamp(2rem,2.8vw,2.75rem);
  }

  .hero .hero-copy > .eyebrow{
    margin-bottom:17px;
  }

  .hero .hero-copy h1{
    width:auto;
    max-width:650px;
    margin:0 0 22px;
    font-size:clamp(2.8rem,3.7vw,3.25rem);
    line-height:1.045;
    letter-spacing:-.048em;
  }

  .hero .hero-lead{
    max-width:630px;
    margin-bottom:28px;
    font-size:clamp(1rem,1.25vw,1.12rem);
    line-height:1.58;
  }

  .hero .portrait-stage{
    min-height:520px;
  }
}

@media (min-width:901px) and (max-width:1100px){
  .hero{
    padding:66px 0 70px;
  }

  .hero .hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(360px,.78fr);
    gap:34px;
  }

  .hero .hero-copy h1{
    max-width:560px;
    font-size:clamp(2.45rem,4.25vw,2.9rem);
  }

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

  .hero .portrait-stage{
    min-height:455px;
  }

  .hero .portrait-credentials{
    padding:16px 18px 18px;
  }

  .hero .portrait-credentials strong{
    font-size:.74rem;
  }
}

/* V9.0.8 — Ritmo da abertura e centralização do retrato no desktop. */
@media (min-width:901px){
  .hero .hero-brand-lockup{
    margin-bottom:26px;
  }

  .hero .hero-copy > .eyebrow{
    margin-bottom:22px;
  }

  .hero .hero-copy h1{
    margin-bottom:28px;
  }

  .hero .hero-lead{
    margin-bottom:32px;
  }

  .hero .hero-actions{
    margin-bottom:36px;
  }

  .hero .hero-points{
    gap:10px 22px;
    line-height:1.4;
  }

  .hero .hero-portrait{
    right:auto;
    left:50%;
    max-width:82%;
    object-position:bottom center;
    transform:translateX(-50%);
  }

  .hero .portrait-credentials strong{
    display:block;
    max-width:500px;
    margin-inline:auto;
  }

  .hero .credential-line{
    display:block;
  }
}
