:root {
  --ink: #001412;
  --ink-2: #062522;
  --ink-3: #0b332f;
  --paper: #f3f1ea;
  --paper-2: #e9e7df;
  --white: #fbfcf8;
  --green: #75f26c;
  --green-2: #17d391;
  --green-dark: #006b4b;
  --muted-dark: #9fb2ae;
  --muted-light: #536560;
  --line-dark: rgba(206, 245, 232, .16);
  --line-light: rgba(0, 20, 18, .14);
  --shadow: 0 30px 90px rgba(0, 20, 18, .14);
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --chapter: clamp(112px, 13vw, 196px);
  --radius: 26px;
  --radius-sm: 15px;
  --ease: cubic-bezier(.2, .75, .2, 1);
  --urgency-height: 58px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
section[id] { scroll-margin-top: 150px; }
button:focus-visible, a:focus-visible, summary:focus-visible, [tabindex]:focus-visible, input:focus-visible, select:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; clip: rect(0, 0, 0, 0); overflow: hidden; white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 1000; padding: 12px 16px; color: var(--ink); background: var(--green); transform: translateY(-160%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.container { width: min(100%, var(--container)); margin-inline: auto; padding-inline: var(--gutter); }
.page-shell { width: 100%; max-width: 100%; overflow-x: hidden; }
.section-dark { color: var(--white); background: var(--ink); }
.chapter, .tools-section, .offer, .instructor, .faq, .contact, .closing { padding-block: var(--chapter); }
.chapter-light { color: var(--ink); background: var(--paper); }

.site-header { position: fixed; inset: 18px 0 auto; z-index: 100; padding-inline: var(--gutter); transition: transform .4s var(--ease); }
.site-header.is-hidden { transform: translateY(-140%); }
.nav-shell {
  width: min(100%, 1180px);
  min-height: 66px;
  margin-inline: auto;
  padding: 9px 10px 9px 20px;
  display: flex;
  align-items: center;
  gap: 26px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(0, 20, 18, .78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(0,0,0,.22);
}
.brand { flex: 0 0 auto; }
.brand img { width: 178px; height: auto; filter: none; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links a { color: #d6e2df; font-size: 14px; text-decoration: none; transition: color .25s; }
.nav-links a:hover { color: var(--green); }
.menu-toggle { display: none; }

.button {
  min-height: 54px;
  padding: 15px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s, color .28s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: var(--ink); background: var(--green); box-shadow: 0 14px 36px rgba(117, 242, 108, .2); }
.button-primary:hover { background: #96ff8e; box-shadow: 0 18px 50px rgba(117, 242, 108, .28); }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.06); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-3); }
.button-small { min-height: 46px; padding: 13px 20px; font-size: 14px; }
.button-full { width: 100%; }
.center-action { margin-top: 56px; text-align: center; }

.eyebrow, .card-kicker {
  margin-bottom: 20px;
  color: var(--green);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--green-dark); }
.section-heading { max-width: 760px; }
.section-heading.heading-wide { max-width: 1050px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2, .closing h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5.5vw, 78px);
  letter-spacing: -.055em;
  line-height: .98;
}
.section-heading > p:last-child { max-width: 720px; margin: 0 auto; color: var(--muted-dark); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.chapter-light .section-heading > p:last-child { color: var(--muted-light); }

.hero {
  min-height: 100svh;
  padding: clamp(150px, 17vh, 200px) 0 80px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, black, transparent 70%); }
.hero-glow { position: absolute; z-index: -1; top: -20%; left: 50%; width: 1100px; height: 720px; transform: translateX(-50%); background: radial-gradient(circle, rgba(23,211,145,.22), transparent 66%); filter: blur(20px); }
.hero-copy { max-width: 1320px; text-align: center; }
.hero-copy .eyebrow { margin-bottom: 28px; }
.hero h1 {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(52px, 7.25vw, 108px);
  letter-spacing: -.072em;
  line-height: .91;
}
.hero h1 span { color: var(--green); }
.hero-lead { max-width: 790px; margin: 32px auto 0; color: #c8d7d3; font-size: clamp(19px, 2.1vw, 25px); line-height: 1.5; }
.hero-actions { margin-top: 38px; display: flex; justify-content: center; gap: 12px; }
.hero-media-wrap { margin-top: 72px; }
.hero-media {
  height: clamp(480px, 62vw, 760px);
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: #06110f;
  box-shadow: 0 50px 120px rgba(0,0,0,.38);
}
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,20,18,.85), transparent 46%), radial-gradient(circle at center, transparent 30%, rgba(0,20,18,.45)); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; filter: saturate(.78) contrast(1.06); transition: transform .9s var(--ease); }
.hero-media:hover img { transform: scale(1.035); }
.hero-media figcaption { position: absolute; z-index: 2; inset: auto 28px 26px; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.hero-media figcaption span { font-size: clamp(22px, 3vw, 38px); font-weight: 700; letter-spacing: -.04em; }
.hero-media figcaption small { max-width: 300px; color: #c3d2ce; font-family: "IBM Plex Mono", monospace; font-size: 11px; line-height: 1.5; text-align: right; text-transform: uppercase; letter-spacing: .08em; }

.program-bento { margin-top: 76px; display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, minmax(250px, auto)); grid-auto-flow: dense; gap: 12px; }
.bento-card { padding: clamp(25px, 3.2vw, 42px); position: relative; overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius); background: var(--ink-2); }
.bento-main { grid-column: span 2; grid-row: span 2; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; }
.bento-wide { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; align-items: end; }
.bento-card h3 { position: relative; z-index: 2; margin: 0; font-size: clamp(25px, 3vw, 42px); line-height: 1.03; letter-spacing: -.045em; }
.bento-card > p:last-child { position: relative; z-index: 2; max-width: 470px; margin: 18px 0 0; color: var(--muted-dark); line-height: 1.55; }
.card-kicker { position: relative; z-index: 2; margin-bottom: 16px; }
.accent-card { color: var(--ink); background: var(--green); }
.accent-card .card-kicker { color: var(--green-dark); }
.bento-visual { position: absolute; inset: 0; }
.orbit { position: absolute; border: 1px solid rgba(117,242,108,.28); border-radius: 50%; }
.orbit-one { width: 390px; height: 390px; top: -80px; right: -70px; }
.orbit-two { width: 250px; height: 250px; top: -10px; right: 0; }
.data-dot { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 24px var(--green); }
.dot-one { top: 26%; right: 10%; }.dot-two { top: 10%; right: 35%; }
.signal-chart { height: 120px; display: flex; align-items: end; justify-content: end; gap: 8px; }
.signal-chart i { width: 13px; height: 40%; display: block; border-radius: 6px 6px 0 0; background: var(--green-2); }
.signal-chart i:nth-child(2) { height: 75%; }.signal-chart i:nth-child(3) { height: 52%; }.signal-chart i:nth-child(4) { height: 90%; }.signal-chart i:nth-child(5) { height: 68%; }.signal-chart i:nth-child(6) { height: 100%; }.signal-chart i:nth-child(7) { height: 84%; }
.interactive-card { transition: transform .55s var(--ease), border-color .35s, box-shadow .55s var(--ease); }
.interactive-card:hover { transform: translateY(-7px); border-color: rgba(117,242,108,.62); box-shadow: 0 22px 70px rgba(0,0,0,.18); }

.faq summary i { width: 24px; height: 24px; position: relative; display: block; }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; top: 11px; left: 2px; width: 20px; height: 2px; background: currentColor; transition: transform .25s; }
.faq summary i::after { transform: rotate(90deg); }
.faq details[open] summary i::after { transform: rotate(0); }
@keyframes detail-in { from { opacity: 0; transform: translateY(-8px); } }

.tools-section { position: relative; overflow: hidden; padding-bottom: calc(var(--chapter) * .85); font-family: "Outfit", "Geist", Arial, sans-serif; background: radial-gradient(circle at 20% 18%, #0b3b34 0, var(--ink) 36%); }
.tools-intro { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(34px, 5vw, 76px); align-items: center; }
.tools-stage { min-height: 610px; grid-column: span 7; position: relative; overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius); background: radial-gradient(circle at 48% 48%, rgba(23,211,145,.18), transparent 48%), linear-gradient(145deg, #0b332f, #001412 72%); box-shadow: inset 0 0 80px rgba(117,242,108,.04), 0 35px 90px rgba(0,0,0,.26); }
.tools-stage-glow { width: 330px; height: 330px; position: absolute; top: 23%; left: 27%; border-radius: 50%; background: rgba(117,242,108,.18); filter: blur(85px); }
.tools-stage img { position: absolute; object-fit: contain; filter: drop-shadow(0 28px 28px rgba(0,0,0,.34)); }
.tools-stage-dashboard { width: 76%; left: 7%; bottom: 2%; z-index: 1; transform: rotate(-4deg); }
.tools-stage-portfolio { width: 46%; right: -2%; top: 2%; z-index: 2; transform: rotate(7deg); }
.tools-stage-watchlist { width: 38%; left: 0; top: 0; z-index: 3; transform: rotate(-10deg); }
.tools-stage > span { max-width: 310px; padding: 12px 16px; position: absolute; z-index: 4; left: 24px; bottom: 22px; border: 1px solid rgba(117,242,108,.38); border-radius: 999px; color: #d8e7e3; background: rgba(0,20,18,.78); backdrop-filter: blur(12px); font-family: "IBM Plex Mono", monospace; font-size: 9px; line-height: 1.4; text-transform: uppercase; letter-spacing: .1em; }
.tools-copy { grid-column: span 5; }
.tools-copy .eyebrow { margin-bottom: 24px; }
.tools-copy h2 { max-width: 610px; margin-bottom: 26px; font-size: clamp(43px, 4vw, 58px); line-height: .94; letter-spacing: -.055em; }
.tools-copy > p:not(.eyebrow) { max-width: 590px; color: var(--muted-dark); font-family: "Geist", Arial, sans-serif; font-size: 18px; line-height: 1.6; }
.tools-proof { margin: 32px 0 38px; padding: 0; display: grid; gap: 0; list-style: none; }
.tools-proof li { padding: 14px 0; display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: center; border-bottom: 1px solid var(--line-dark); color: #dce8e5; font-family: "Geist", Arial, sans-serif; font-size: 14px; }
.tools-proof svg { width: 18px; height: 18px; color: var(--green); }
.marquee { margin-top: clamp(72px, 9vw, 120px); padding: 24px 0; overflow: hidden; border-block: 1px solid var(--line-dark); }
.marquee-track { width: max-content; display: flex; align-items: center; animation: marquee 32s linear infinite; }
.marquee-track span { display: flex; align-items: center; color: #dce7e4; font-size: clamp(26px, 4vw, 54px); font-weight: 600; letter-spacing: -.045em; white-space: nowrap; }
.marquee-track span::after { content: "◆"; margin: 0 34px; color: var(--green); font-size: .32em; }
@keyframes marquee { to { transform: translateX(-50%); } }
.tools-grid { margin-top: 14px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.tool-card, .tool-card:nth-child(n) { min-width: 0; min-height: 290px; padding: 0; grid-column: auto; overflow: hidden; border: 1px solid var(--line-dark); border-radius: var(--radius-sm); background: rgba(6,37,34,.88); }
.tool-visual, .tool-card:nth-child(n+3) .tool-visual { width: 100%; height: 100%; min-height: 290px; padding: 18px 14px 66px; position: relative; display: grid; place-items: center; overflow: hidden; border: 0; background: rgba(6,37,34,.88); }
.tool-visual img { width: 100%; height: 100%; max-height: 220px; object-fit: contain; filter: drop-shadow(0 16px 18px rgba(0,0,0,.24)); }
.tool-card h3 { margin: 0; position: absolute; left: 18px; right: 18px; bottom: 20px; font-size: clamp(16px,1.35vw,20px); line-height: 1.05; letter-spacing: -.035em; }

.classes { position: relative; overflow: visible; isolation: isolate; }
.classes-layout { display: grid; grid-template-columns: minmax(310px, .75fr) minmax(0, 1.25fr); gap: clamp(50px, 8vw, 110px); align-items: start; }
.classes-intro { padding-top: 10px; position: sticky; top: 110px; align-self: start; }
.classes-intro h2 { margin-bottom: 28px; font-size: clamp(42px, 5.2vw, 72px); letter-spacing: -.055em; line-height: .98; }
.classes-intro > p:not(.eyebrow) { color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 14px; font-weight: 600; }
.schedule { margin: 28px 0 36px; padding: 22px; display: grid; gap: 10px; border-left: 3px solid var(--green-dark); background: var(--paper-2); }
.schedule span { color: var(--muted-light); font-family: "IBM Plex Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.schedule b { margin-right: 10px; color: var(--green-dark); }
.class-stack { display: flex; flex-direction: column; gap: 24px; }
.class-card { min-height: 340px; padding: clamp(30px, 4vw, 52px); position: sticky; top: 110px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.class-card:nth-child(2n) { background: #e5ecdf; }.class-card:nth-child(3n) { background: #d7e8dc; }
.class-card > span { color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.class-card h3 { max-width: 660px; margin: 58px 0 18px; font-size: clamp(28px, 4vw, 48px); line-height: 1; letter-spacing: -.045em; }
.class-card p { max-width: 620px; margin: 0 0 28px; color: var(--muted-light); font-size: 17px; line-height: 1.55; }
.class-card strong { display: block; padding-top: 22px; border-top: 1px solid var(--line-light); font-size: 16px; }

.offer { position: relative; overflow: hidden; color: var(--ink); background: #eef0ed; }
.offer-ambient { position: absolute; inset: 0; pointer-events: none; }
.offer-ambient svg { width: clamp(100px, 14vw, 220px); height: auto; position: absolute; color: var(--green-2); opacity: .075; stroke-width: 1.35; }
.offer-ambient svg:nth-child(1) { top: 9%; left: -2%; transform: rotate(-8deg); }
.offer-ambient svg:nth-child(2) { right: -2%; top: 22%; transform: rotate(8deg); }
.offer-ambient svg:nth-child(3) { right: 3%; bottom: 5%; transform: rotate(-12deg); }
.offer-ambient svg:nth-child(4) { left: 1%; bottom: 6%; transform: rotate(5deg); }
.offer .container { position: relative; z-index: 1; }
.offer-shell { max-width: 1060px; margin: 0 auto; overflow: hidden; border: 1px solid rgba(0,168,116,.72); border-radius: var(--radius); background: var(--white); box-shadow: 0 42px 100px rgba(0,32,28,.13); }
.offer-ribbon { min-height: 62px; padding: 16px 28px; display: flex; align-items: center; justify-content: center; gap: 13px; color: var(--white); background: var(--ink); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 600; text-align: center; text-transform: uppercase; letter-spacing: .14em; }
.offer-ribbon svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--green); }
.offer-body { padding: clamp(38px, 6vw, 76px); }
.offer-logo { width: min(250px, 56%); height: auto; margin: 0 auto 32px; display: block; }
.offer-title { max-width: 800px; margin: 0 auto 24px; font-size: clamp(39px, 4.8vw, 63px); line-height: .98; letter-spacing: -.055em; text-align: center; }
.offer-title span { color: var(--green-2); }
.offer-subtitle { margin: 0 0 36px; color: var(--muted-light); font-size: clamp(17px, 2vw, 22px); font-weight: 650; text-align: center; }
.offer-benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.offer-benefit { min-width: 0; min-height: 104px; padding: 21px; display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 13px; align-items: start; border: 1px solid var(--line-light); border-radius: 12px; background: #f5f6f4; }
.offer-benefit > svg { width: 24px; height: 24px; color: var(--green-2); stroke-width: 1.8; }
.offer-benefit div { min-width: 0; }
.offer-benefit strong, .offer-benefit span { display: block; }
.offer-benefit strong { margin-bottom: 6px; font-size: 16px; line-height: 1.25; }
.offer-benefit span { color: #788a87; font-size: 14px; line-height: 1.42; }
.offer-guarantee { margin-top: 28px; padding: 20px 24px; display: grid; grid-template-columns: 26px 1fr; gap: 15px; align-items: center; border: 1px solid rgba(0,107,75,.55); border-radius: 12px; background: rgba(117,242,108,.07); }
.offer-guarantee svg { width: 25px; height: 25px; color: var(--green-dark); }
.offer-guarantee span { font-size: 15px; line-height: 1.5; }
.offer-price { margin: 50px auto 32px; text-align: center; }
.old-price { color: #526762; font-family: "IBM Plex Mono", monospace; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .09em; }
.old-price s { margin-left: 7px; color: var(--ink); font-size: 15px; font-weight: 700; text-decoration-color: rgba(162,58,39,.68); text-decoration-thickness: 2px; }
.price { margin: 12px 0 20px; display: flex; align-items: baseline; justify-content: center; gap: 12px; }.price span { font-size: clamp(76px, 9vw, 112px); font-weight: 700; line-height: .82; letter-spacing: -.075em; }.price small { color: var(--muted-light); font-family: "IBM Plex Mono", monospace; font-size: 18px; }
.offer-savings { width: fit-content; margin: 0 auto; padding: 9px 16px; display: flex; align-items: center; gap: 9px; border-radius: 999px; color: var(--white); background: var(--green-2); font-family: "IBM Plex Mono", monospace; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.offer-savings svg { width: 16px; height: 16px; }
.offer-cta { min-height: 70px; border-radius: 8px; font-family: "IBM Plex Mono", monospace; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; }
.offer-meta { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 28px; color: #80918e; font-family: "IBM Plex Mono", monospace; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.offer-meta span { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.offer-meta svg { width: 16px; height: 16px; color: var(--green-2); }

.instructor-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: clamp(46px, 8vw, 120px); align-items: center; }
.instructor-photo { min-height: 680px; margin: 0; position: relative; overflow: hidden; border-radius: var(--radius); background: var(--ink); }
.instructor-photo img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: center top; transition: transform .9s var(--ease); }
.instructor-photo:hover img { transform: scale(1.04); }
.instructor-photo figcaption { padding: 10px 14px; position: absolute; z-index: 2; left: 24px; bottom: 22px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: var(--white); background: rgba(0,20,18,.72); backdrop-filter: blur(8px); font-family: "IBM Plex Mono", monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.instructor-copy h2 { margin-bottom: 28px; font-size: clamp(44px, 5.8vw, 80px); line-height: .96; letter-spacing: -.06em; }
.instructor-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted-light); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.method-carousel { margin: 42px 0 32px; padding: 26px 0; border-block: 1px solid var(--line-light); }
.quote-track { min-height: 92px; position: relative; }
.quote-track blockquote { margin: 0; position: absolute; inset: 0; display: none; font-size: clamp(22px, 2.6vw, 34px); font-weight: 600; line-height: 1.18; letter-spacing: -.035em; }
.quote-track blockquote.is-current { display: block; animation: quote-in .45s var(--ease); }
@keyframes quote-in { from { opacity: 0; transform: translateY(10px); } }
.carousel-controls { margin-top: 20px; display: flex; align-items: center; gap: 14px; }
.carousel-controls button { width: 44px; height: 44px; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; cursor: pointer; }
.carousel-controls span { color: var(--muted-light); font-family: "IBM Plex Mono", monospace; font-size: 11px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
.faq .section-heading { position: sticky; top: 120px; }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq details { border-bottom: 1px solid var(--line-dark); }
.faq summary { min-height: 94px; padding: 24px 0; display: grid; grid-template-columns: 1fr 30px; gap: 24px; align-items: center; list-style: none; font-size: clamp(19px, 2vw, 25px); font-weight: 600; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { max-width: 680px; padding: 0 54px 30px 0; color: var(--muted-dark); line-height: 1.65; animation: detail-in .35s var(--ease); }

.contact { padding-block: clamp(80px, 9vw, 130px); }
.contact-card { padding: clamp(34px, 6vw, 74px); display: flex; align-items: end; justify-content: space-between; gap: 44px; border: 1px solid var(--line-light); border-radius: var(--radius); background: var(--paper-2); }
.contact-card h2 { max-width: 760px; margin-bottom: 16px; font-size: clamp(38px, 5vw, 68px); line-height: .98; letter-spacing: -.055em; }
.contact-card p:last-child { max-width: 650px; margin-bottom: 0; color: var(--muted-light); line-height: 1.55; }
.contact-card .button { flex: 0 0 auto; }
.closing { position: relative; overflow: hidden; text-align: center; }
.closing::before { content: ""; position: absolute; left: 50%; bottom: -520px; width: 1000px; height: 760px; transform: translateX(-50%); border-radius: 50%; background: radial-gradient(circle, rgba(117,242,108,.22), transparent 66%); }
.closing-copy { position: relative; }
.closing h2 { max-width: 1120px; margin-inline: auto; font-size: clamp(48px, 7vw, 100px); }
.closing p { max-width: 650px; margin: 0 auto 34px; color: var(--muted-dark); font-size: 20px; line-height: 1.55; }

.footer { padding: 52px 0 36px; color: var(--white); background: #000c0b; border-top: 1px solid var(--line-dark); }
.footer-main { padding-bottom: 32px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-bottom: 1px solid var(--line-dark); }
.footer-main img { width: 190px; filter: invert(1) grayscale(1) brightness(5); }
.footer-main a { color: #bfd0cc; font-size: 14px; }
.footer-legal { padding-top: 28px; display: flex; justify-content: space-between; gap: 40px; color: #829793; font-size: 12px; line-height: 1.6; }
.footer-legal p { max-width: 720px; margin: 0; }
.whatsapp-float { width: 62px; height: 62px; position: fixed; right: max(22px, env(safe-area-inset-right)); bottom: max(22px, env(safe-area-inset-bottom)); z-index: 95; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.9); border-radius: 50%; color: #fff; background: #25d366; box-shadow: 0 14px 32px rgba(0,20,18,.28); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.whatsapp-float > svg { width: 31px; height: 31px; fill: currentColor; stroke: none; }
.whatsapp-float span { width: max-content; max-width: min(240px, calc(100vw - 105px)); padding: 10px 13px; position: absolute; right: 72px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; color: var(--white); background: #064e3b; box-shadow: 0 12px 30px rgba(0,20,18,.24); font-size: 12px; font-weight: 700; line-height: 1.35; opacity: 0; pointer-events: none; transform: translateX(10px) scale(.96); transform-origin: right center; animation: whatsapp-tooltip-prompt 12s ease-in-out 1.2s infinite both; white-space: normal; }
.whatsapp-float span::after { content: ""; width: 10px; height: 10px; position: absolute; right: -5px; top: 50%; background: #064e3b; transform: translateY(-50%) rotate(45deg); }
.whatsapp-float:hover, .whatsapp-float:focus-visible { color: #fff; transform: translateY(-3px) scale(1.03); box-shadow: 0 18px 38px rgba(0,20,18,.34); }
.whatsapp-float:hover span, .whatsapp-float:focus-visible span { opacity: 1; transform: none; animation: none; }
.whatsapp-float:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
@keyframes whatsapp-tooltip-prompt {
  0%,8% { opacity: 0; transform: translateX(10px) scale(.96); }
  12%,32% { opacity: 1; transform: none; }
  38%,100% { opacity: 0; transform: translateX(6px) scale(.98); }
}

@media (max-width: 1080px) {
  .nav-links { gap: 18px; }.nav-links a:nth-child(4) { display: none; }
  .tools-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(210px,28vw); overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-width: thin; }
  .tool-card, .tool-card:nth-child(n) { grid-column: auto; scroll-snap-align: start; }
}

@media (max-width: 1000px) {
}

@media (max-width: 820px) {
  :root { --chapter: clamp(90px, 18vw, 132px); --radius: 21px; }
  .site-header { inset: 10px 0 auto; padding-inline: 12px; }
  .nav-shell { min-height: 58px; padding: 7px 8px 7px 15px; gap: 10px; border-radius: 20px; }
  .brand img { width: 145px; }
  .menu-toggle { width: 42px; height: 42px; margin-left: auto; padding: 11px; display: grid; align-content: center; gap: 4px; border: 1px solid var(--line-dark); border-radius: 50%; background: transparent; }
  .menu-toggle span:not(.sr-only) { height: 2px; display: block; border-radius: 2px; background: var(--white); transition: transform .25s, opacity .25s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .nav-cta { display: none; }
  .nav-links { position: absolute; top: 66px; left: 12px; right: 12px; padding: 18px; display: grid; gap: 4px; border: 1px solid var(--line-dark); border-radius: 18px; background: rgba(0,20,18,.96); box-shadow: 0 22px 60px rgba(0,0,0,.35); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s var(--ease); }
  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links a, .nav-links a:nth-child(4) { padding: 12px; display: block; font-size: 16px; }
  .hero { padding-top: 130px; }
  .hero h1 { max-width: 720px; font-size: clamp(48px, 12vw, 78px); line-height: .94; }
  .hero-media-wrap { margin-top: 54px; }
  .hero-media { height: min(105vw, 640px); }
  .program-bento { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .bento-main { grid-column: span 2; grid-row: auto; min-height: 480px; }.bento-wide { grid-column: span 2; min-height: 280px; }
  .tools-intro { grid-template-columns: 1fr; gap: 52px; }
  .tools-stage, .tools-copy { grid-column: auto; }
  .tools-stage { min-height: 620px; order: 2; }
  .tools-copy { max-width: 680px; }
  .tools-copy h2 { max-width: 680px; }
  .tools-grid { grid-template-columns: none; grid-auto-flow: column; }
  .tool-card, .tool-card:nth-child(n) { min-height: 290px; grid-column: auto; }
  .tool-card .tool-visual, .tool-card:nth-child(n+3) .tool-visual { height: 100%; min-height: 290px; }
  .classes-layout { grid-template-columns: 1fr; }
  .classes-intro { position: static !important; transform: none !important; }
  .class-card { top: 92px; }
  .instructor-grid, .faq-layout { grid-template-columns: 1fr; }
  .instructor-photo { min-height: 700px; }.faq .section-heading { position: static; }.faq-list { margin-top: 20px; }
  .contact-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 700px) {
  .offer-benefits { grid-template-columns: 1fr; }
  .offer-meta { flex-wrap: wrap; gap: 14px 20px; }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  section[id] { scroll-margin-top: 74px; }
  .chapter, .tools-section, .offer, .instructor, .faq, .closing { padding-block: 92px; }
  .button { width: 100%; min-height: 52px; }
  .hero { min-height: auto; padding: 118px 0 56px; }
  .hero-copy { padding-inline: 17px; }
  .hero-copy .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .hero h1 { max-width: 390px; font-size: clamp(43px, 13.5vw, 64px); letter-spacing: -.065em; line-height: .92; }
  .hero-lead { margin-top: 24px; font-size: 17px; line-height: 1.5; }
  .hero-actions { margin-top: 30px; display: grid; }
  .hero-media-wrap { margin-top: 38px; padding-inline: 12px; }
  .hero-media { height: 118vw; max-height: 560px; border-radius: 18px; }
  .hero-media img { object-position: 51% top; }
  .hero-media figcaption { inset: auto 18px 18px; display: block; }.hero-media figcaption small { margin-top: 6px; display: block; text-align: left; }
  .section-heading h2, .closing h2 { font-size: clamp(38px, 11.5vw, 56px); line-height: .98; }
  .program-bento { margin-top: 48px; grid-template-columns: 1fr; }
  .bento-main, .bento-wide, .bento-card { grid-column: auto; min-height: 300px; }.bento-main { min-height: 460px; }.bento-wide { display: block; }.signal-chart { margin-top: 40px; }
  .tools-intro { gap: 40px; }
  .tools-copy h2 { font-size: 46px; }
  .tools-copy > p:not(.eyebrow) { font-size: 16px; }
  .tools-copy .button { width: 100%; }
  .tools-stage { min-height: 410px; }
  .tools-stage-dashboard { width: 87%; left: 1%; bottom: 2%; }
  .tools-stage-portfolio { width: 51%; right: -7%; }
  .tools-stage-watchlist { width: 43%; left: -5%; }
  .tools-stage > span { max-width: calc(100% - 36px); left: 18px; bottom: 16px; white-space: normal; }
  .marquee { margin-top: 70px; }.marquee-track span::after { margin-inline: 22px; }
  .tools-grid { margin-top: 10px; grid-template-columns: none; grid-auto-columns: minmax(230px,78vw); }
  .tool-card, .tool-card:nth-child(n) { min-height: 290px; grid-column: auto; }
  .tool-card .tool-visual, .tool-card:nth-child(n+3) .tool-visual { height: 100%; min-height: 290px; }
  .tool-card h3 { font-size: 20px; }
  .classes-layout { gap: 48px; }.classes-intro h2 { font-size: 46px; }.class-stack { gap: 14px; }.class-card { min-height: 330px; top: 78px; padding: 27px; }.class-card h3 { margin-top: 45px; font-size: 31px; }.class-card p { font-size: 15px; }
  .offer-ambient { display: none; }
  .offer-shell { border-radius: 18px; }
  .offer-ribbon { min-height: 54px; padding: 14px 16px; gap: 9px; font-size: 9px; line-height: 1.45; letter-spacing: .09em; }
  .offer-body { padding: 30px 20px 32px; }
  .offer-logo { width: 205px; margin-bottom: 25px; }
  .offer-title { margin-bottom: 18px; font-size: 36px; line-height: .98; }
  .offer-subtitle { margin-bottom: 28px; font-size: 16px; }
  .offer-benefit { min-height: auto; padding: 18px 16px; }
  .offer-benefit strong { font-size: 15px; }
  .offer-guarantee { margin-top: 20px; padding: 18px 16px; align-items: start; }
  .offer-guarantee span { font-size: 14px; }
  .offer-price { margin: 42px auto 28px; }
  .price span { font-size: 76px; }
  .offer-cta { min-height: 62px; font-size: 12px; }
  .offer-meta { margin-top: 20px; display: grid; justify-items: center; gap: 10px; }
  .instructor-copy h2 { font-size: 47px; }
  .instructor-photo { min-height: 118vw; max-height: 640px; }.instructor-grid { gap: 42px; }.quote-track { min-height: 125px; }
  .faq summary { min-height: 82px; font-size: 18px; }.faq details p { padding-right: 0; }
  .contact { padding-block: 70px; }.contact-card { padding: 28px 22px; }.contact-card h2 { font-size: 40px; }
  .closing p { font-size: 17px; }
  .footer-main, .footer-legal { align-items: flex-start; flex-direction: column; }.footer-main img { width: 170px; }
  .whatsapp-float { width: 56px; height: 56px; right: max(14px, env(safe-area-inset-right)); bottom: max(14px, env(safe-area-inset-bottom)); }
  .whatsapp-float > svg { width: 28px; height: 28px; }
  .whatsapp-float span { right: 66px; max-width: min(210px, calc(100vw - 90px)); padding: 9px 11px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .marquee-track { transform: none !important; }
}

/* Conversion-first light redesign */
:root {
  --paper: #f7f4ed;
  --paper-2: #efede6;
  --white: #fff;
  --container: 1180px;
  --chapter: clamp(82px, 9vw, 126px);
  --radius: 18px;
  --shadow: 0 18px 55px rgba(0, 20, 18, .08);
}

html { background: var(--paper); }
body { background: var(--paper); }
.chapter, .tools-section, .offer, .instructor, .faq, .contact, .closing { padding-block: var(--chapter); }
.interactive-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(0,20,18,.08); }

.urgency-bar { position: sticky; top: 0; z-index: 110; color: var(--white); border-bottom: 1px solid var(--line-dark); background: var(--ink); }
.urgency-bar-inner { min-height: 62px; display: grid; grid-template-columns: minmax(230px,1fr) auto minmax(150px,1fr); align-items: center; gap: clamp(18px,3vw,42px); }
.urgency-bar p { margin: 0; justify-self: start; display: flex; align-items: center; gap: 10px; font-size: 13px; }
.urgency-bar p svg { width: 17px; height: 17px; color: var(--green); }
.urgency-bar p span { color: #a9bcb8; }
.urgency-context { display: none; }
.urgency-message { display: grid; gap: 2px; }
.urgency-message strong { color: var(--white); line-height: 1.15; }
.urgency-message b { color: var(--green); font-family: "IBM Plex Mono", monospace; font-size: 8px; line-height: 1.15; text-transform: uppercase; letter-spacing: .12em; }
.urgency-link { padding: 0 0 3px; border: 0; border-bottom: 1px solid rgba(255,255,255,.55); color: var(--white); background: transparent; font-size: 12px; font-weight: 700; text-decoration: none; cursor: pointer; }

.countdown { display: flex; align-items: flex-start; gap: 12px; }
.countdown > span { min-width: 46px; position: relative; display: grid; justify-items: center; gap: 4px; }
.countdown > span:not(:last-child)::after { content: ":"; position: absolute; top: 2px; right: -9px; color: #71827e; font-weight: 700; }
.countdown b { font-family: "IBM Plex Mono", monospace; font-size: 24px; line-height: 1; letter-spacing: -.05em; }
.countdown small { color: #71827e; font-family: "IBM Plex Mono", monospace; font-size: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.countdown-compact { gap: 8px; }
.countdown-compact > span { min-width: 36px; }
.countdown-compact > span:not(:last-child)::after { right: -6px; color: #718b85; }
.countdown-compact b { color: var(--green); font-size: 18px; }
.countdown-compact small { color: #91a5a0; font-size: 7px; }
.urgency-bar .countdown-compact { gap: 7px; align-items: stretch; }
.urgency-bar .countdown-compact > span { min-width: 50px; padding: 7px 7px 6px; gap: 3px; border: 1px solid rgba(255,255,255,.92); border-radius: 8px; background: var(--white); box-shadow: 0 5px 14px rgba(0,0,0,.15); }
.urgency-bar .countdown-compact > span:not(:last-child)::after { display: none; }
.urgency-bar .countdown-compact b { color: var(--ink); font-size: 17px; font-weight: 700; }
.urgency-bar .countdown-compact small { color: #526762; font-size: 6px; }
.urgency-link { justify-self: end; }

.site-header { min-height: 72px; position: sticky; inset: auto; top: var(--urgency-height); z-index: 100; padding: 0 var(--gutter); border-bottom: 1px solid var(--line-dark); background: rgba(0,20,18,.96); backdrop-filter: blur(16px); transition: none; }
.site-header.is-hidden { transform: none; }
.nav-shell { width: min(100%, 1180px); min-height: 72px; margin: 0 auto; padding: 0; gap: 28px; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; }
.brand img { width: 164px; filter: none; }
.nav-links a { color: #c8d5d2; }
.nav-links a:hover { color: var(--green); }
.nav-cta { min-height: 44px; }

.hero { min-height: 0; padding: clamp(58px, 6vw, 80px) 0 clamp(64px, 7vw, 90px); color: var(--ink); background: var(--white); isolation: auto; }
.hero::before, .hero-glow { display: none; }
.hero-layout { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(330px, .72fr); gap: clamp(46px, 7vw, 92px); align-items: center; }
.hero-copy { max-width: 710px; padding: 0; text-align: left; }
.hero-copy .eyebrow { margin-bottom: 12px; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(52px, 5.2vw, 76px); line-height: .94; letter-spacing: -.068em; }
.hero h1 span { color: var(--green-2); }
.hero-lead { max-width: 650px; margin: 20px 0 0; color: var(--muted-light); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; }
.hero-benefits { margin: 22px 0 0; padding: 0; display: grid; gap: 9px; list-style: none; }
.hero-benefits li { display: flex; align-items: center; gap: 10px; color: #243d38; font-size: 15px; }
.hero-benefits svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--green-dark); }
.hero-actions { margin-top: 25px; justify-content: flex-start; }
.hero .button-ghost { color: var(--ink); border-color: var(--line-light); background: var(--white); }
.hero .button-ghost:hover { background: var(--paper); }
.hero-deadline { max-width: 660px; margin-top: 22px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 22px; color: var(--white); border: 1px solid rgba(117,242,108,.28); border-radius: 14px; background: linear-gradient(135deg, var(--ink) 0%, #06342c 100%); box-shadow: 0 16px 38px rgba(0,20,18,.16); }
.hero-deadline > div:first-child { display: grid; gap: 4px; }
.hero-deadline strong { color: var(--green); font-size: 15px; }
.hero-deadline > div:first-child span { max-width: 285px; color: #c8d7d3; font-size: 12px; line-height: 1.35; }
.hero-deadline .countdown { gap: 7px; align-items: stretch; }
.hero-deadline .countdown > span { min-width: 50px; padding: 8px 7px 7px; gap: 3px; border: 1px solid rgba(255,255,255,.17); border-radius: 8px; background: rgba(255,255,255,.09); box-shadow: inset 0 1px rgba(255,255,255,.08); }
.hero-deadline .countdown > span:not(:last-child)::after { display: none; }
.hero-deadline .countdown b { color: var(--white); font-size: 21px; }
.hero-deadline .countdown small { color: #b7cbc6; font-size: 6px; }
.hero-trust { margin-top: 15px; display: flex; flex-wrap: wrap; gap: 10px 22px; color: #6b7d79; font-size: 11px; }
.hero-trust span { display: flex; align-items: center; gap: 7px; }
.hero-trust svg { width: 15px; height: 15px; color: var(--green-dark); }
.hero-media { width: 100%; height: 440px; max-width: 390px; margin: 0 0 0 auto; border: 1px solid var(--line-light); border-radius: 16px; background: var(--paper-2); box-shadow: var(--shadow); }
.hero-media::after { display: none; }
.hero-media img { filter: none; object-position: center 18%; }
.hero-live-banner { min-height: 54px; padding: 10px 14px; position: absolute; z-index: 3; top: 16px; left: 16px; right: 16px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(0,20,18,.18); border-radius: 10px; color: var(--ink); background: var(--green); box-shadow: 0 12px 28px rgba(0,20,18,.22); }
.hero-live-banner > svg { width: 21px; height: 21px; flex: 0 0 21px; stroke-width: 2.2; }
.hero-live-banner span { min-width: 0; display: grid; gap: 2px; }
.hero-live-banner strong { font-size: 13px; line-height: 1.1; }
.hero-live-banner small { font-family: "IBM Plex Mono", monospace; font-size: 8px; line-height: 1.25; letter-spacing: .06em; text-transform: uppercase; }
.hero-media figcaption { inset: auto 16px 16px; padding: 13px 15px; display: grid; gap: 2px; border-radius: 10px; color: var(--white); background: rgba(0,20,18,.9); }
.hero-media figcaption strong { font-size: 15px; }
.hero-media figcaption span { color: #c7d4d1; font-size: 11px; }

.section-heading h2, .closing h2 { font-size: clamp(40px, 4.9vw, 68px); line-height: 1; }

.advantages { padding-block: clamp(72px,7vw,104px); border-top: 1px solid var(--line-light); background: var(--white); }
.advantages-header { max-width: 980px; }
.advantages-header h2 { max-width: 900px; margin: 0 0 26px; font-size: clamp(44px,5.2vw,72px); line-height: .96; letter-spacing: -.06em; }
.advantages-header > p:last-child { max-width: 860px; margin: 0; color: var(--muted-light); font-size: clamp(17px,1.65vw,20px); line-height: 1.58; }
.advantages-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); grid-auto-flow: dense; gap: 12px; }
.advantages-grid article { min-width: 0; min-height: 250px; padding: 20px 22px 22px; display: flex; flex-direction: column; border: 1px solid rgba(0,107,75,.18); border-radius: 14px; background: #f1f7ee; }
.advantage-top { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.advantage-top span { color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.advantages-grid .advantage-top svg { width: 32px; height: 32px; margin: 0; flex: 0 0 32px; color: var(--green-dark); stroke-width: 1.55; }
.advantages-grid h3 { margin: 16px 0 0; font-size: clamp(19px,1.55vw,23px); line-height: 1.03; letter-spacing: -.035em; }
.advantages-grid p { margin: 10px 0 0; color: var(--muted-light); font-size: 13px; line-height: 1.44; }
.advantages-compare { margin-top: 14px; padding: 26px 28px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)) auto; gap: 24px; align-items: center; border-radius: 14px; color: var(--white); background: var(--ink); }
.advantages-compare > div { min-width: 0; }
.advantages-compare > div + div { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.16); }
.advantages-compare span { display: block; margin-bottom: 7px; color: var(--green); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.advantages-compare p { margin: 0; color: #d5e0dc; font-size: 14px; line-height: 1.48; }

.program-section { padding-block: clamp(72px,7vw,104px); border-top: 1px solid var(--line-light); background: #f4f2ec; }
.program-intro { max-width: 1180px; margin-inline: auto; }
.program-intro-heading { margin-top: 22px; display: grid; justify-items: start; gap: 18px; }
.program-badge { width: fit-content; margin: 0; padding: 9px 13px; display: block; border: 1px solid rgba(0,107,75,.2); border-radius: 999px; color: var(--green-dark); background: #eaf4e6; font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.program-intro h2 { width: 100%; max-width: 1180px; margin: 0; font-size: clamp(42px,5.2vw,72px); line-height: .96; letter-spacing: -.058em; }
.program-system-grid { max-width: 1180px; margin: 46px auto 0; display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: 14px; align-items: stretch; }
.program-portrait { min-height: 238px; margin: 0; position: relative; overflow: hidden; border: 1px solid var(--line-light); border-radius: 12px; background: var(--ink); }
.program-portrait img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 50% 34%; }
.program-portrait figcaption { left: 12px; right: 12px; bottom: 12px; padding: 10px 12px; position: absolute; display: grid; gap: 2px; border-radius: 8px; color: var(--white); background: rgba(0,20,18,.88); }
.program-portrait figcaption strong { font-size: 14px; }
.program-portrait figcaption span { color: #c0d1cc; font-family: "IBM Plex Mono", monospace; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.program-shell { min-width: 0; margin: 0; padding: clamp(28px,3vw,38px); border: 1px solid var(--line-light); border-radius: 16px; background: var(--white); }
.program-shell-heading { margin-bottom: 26px; display: grid; grid-template-columns: .45fr 1.55fr; gap: 24px; align-items: start; }
.program-shell-heading span { color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.program-shell-heading strong { max-width: 620px; font-size: clamp(22px,2.2vw,29px); line-height: 1.08; letter-spacing: -.035em; }
.program-outcomes { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.program-outcomes article { min-width: 0; min-height: 250px; padding: 18px; border: 1px solid rgba(0,107,75,.14); border-radius: 12px; background: #f1f7ee; }
.program-step { display: block; color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.program-outcomes svg { width: 34px; height: 34px; margin: 22px 0 14px; color: var(--green-dark); }
.program-outcomes h3 { margin-bottom: 10px; font-size: 21px; line-height: 1.1; }
.program-outcomes p { margin: 0; color: var(--muted-light); font-size: 13px; line-height: 1.48; }
.program-proof { margin: 18px 0 0; padding-top: 18px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; border-top: 1px solid var(--line-light); }
.program-proof span { min-height: 58px; padding: 13px 15px; display: flex; align-items: center; gap: 9px; border: 1px solid var(--line-light); border-radius: 10px; background: var(--white); font-size: 12px; }
.program-proof svg { width: 19px; height: 19px; flex: 0 0 19px; color: var(--green-dark); }
.program-enroll-card { padding: 12px; display: flex; flex-direction: column; border: 1px solid var(--line-light); border-radius: 16px; background: #e8eee4; }
.program-enroll-kicker { margin: 22px 12px 10px; color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.program-enroll-card h3 { margin: 0 12px 12px; font-size: 27px; line-height: 1.02; letter-spacing: -.045em; }
.program-enroll-card > p { margin: 0 12px 24px; color: var(--muted-light); font-size: 14px; line-height: 1.5; }
.program-enroll-card .button { margin-top: auto; }

@media (min-width: 821px) {
  .program-shell { display: flex; flex-direction: column; }
  .program-outcomes { flex: 1; grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 1fr; }
  .program-outcomes article { min-height: 0; padding: 22px; }
  .program-outcomes svg { margin: 16px 0 14px; }
  .program-outcomes h3 { font-size: 24px; }
  .program-outcomes p { font-size: 14px; }
}

.method-proof { padding-block: clamp(56px,5vw,72px); overflow: hidden; border-top: 1px solid var(--line-light); background: #f0ede5; }
.method-proof-header { max-width: 930px; margin-inline: auto; text-align: center; }
.method-proof-header h2 { margin: 0 auto 22px; font-size: clamp(42px,5vw,68px); line-height: .98; letter-spacing: -.058em; }
.method-proof-header > p:last-child { max-width: 790px; margin: 0 auto; color: var(--muted-light); font-size: clamp(17px,1.7vw,20px); line-height: 1.55; }
.method-timeline { margin-top: clamp(48px,4.2vw,60px); position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); grid-auto-flow: dense; gap: 16px; }
.method-timeline::before { content: ""; position: absolute; top: 45px; left: 10%; right: 10%; border-top: 2px solid rgba(0,107,75,.22); }
.method-step { min-width: 0; position: relative; z-index: 1; display: flex; flex-direction: column; text-align: center; }
.method-icon { width: 90px; height: 90px; margin: 0 auto 18px; position: relative; display: grid; place-items: center; border: 1px solid rgba(0,107,75,.28); border-radius: 50%; color: var(--green-dark); background: var(--white); box-shadow: 0 12px 32px rgba(0,20,18,.07); }
.method-icon svg { width: 38px; height: 38px; stroke-width: 1.45; }
.method-icon span { min-width: 26px; height: 26px; padding-inline: 5px; position: absolute; right: -4px; bottom: -3px; display: grid; place-items: center; border-radius: 999px; color: var(--ink); background: var(--green); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 700; }
.method-step-copy { min-height: 170px; padding: 22px 20px; flex: 1; border: 1px solid var(--line-light); border-radius: 14px; background: rgba(255,255,255,.72); }
.method-step h3 { margin-bottom: 12px; font-size: clamp(21px,2vw,27px); line-height: 1.05; }
.method-step p { margin: 0; color: var(--muted-light); font-size: 14px; line-height: 1.55; }
.method-proof-closing { margin-top: 16px; padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 32px; border: 1px solid rgba(0,107,75,.3); border-radius: 14px; background: var(--white); }
.method-proof-closing > div { max-width: 700px; }
.method-proof-closing strong { display: block; margin-bottom: 7px; font-size: clamp(20px,2.2vw,28px); line-height: 1.12; }
.method-proof-closing p { margin: 0; color: var(--muted-light); font-size: 14px; line-height: 1.5; }
.method-proof-closing .cta-stack { flex: 0 0 auto; }

.tools-section { color: var(--ink); background: var(--paper); font-family: "Geist", Arial, sans-serif; }
.tools-intro { grid-template-columns: repeat(2,minmax(0,1fr)); gap: clamp(38px, 6vw, 76px); }
.tools-stage, .tools-copy { grid-column: auto; }
.tools-stage { min-height: 460px; border-color: var(--line-light); background: #e8eee7; box-shadow: none; }
.tools-stage > span { color: var(--ink); border-color: rgba(0,107,75,.24); background: rgba(255,255,255,.9); }
.tools-copy h2 { font-size: clamp(40px, 4.4vw, 60px); }
.tools-copy > p:not(.eyebrow) { color: var(--muted-light); }
.tools-proof li { color: #2d4540; border-color: var(--line-light); }
.marquee { display: none; }
.tools-grid { margin-top: 56px; gap: 12px; }
.tool-card, .tool-card:nth-child(n) { min-height: 290px; color: var(--ink); border-color: var(--line-light); background: #eff3ec; }
.tool-visual, .tool-card:nth-child(n+3) .tool-visual { height: 100%; min-height: 290px; border: 0; background: #eff3ec; }

.bonuses-section { padding: clamp(72px,7vw,104px) 0 clamp(36px,4vw,56px); overflow: hidden; border-top: 1px solid var(--line-light); background: var(--paper); }
.bonuses-section .bonus-urgency { margin-bottom: clamp(34px,4vw,54px); }
.bonuses-showcase { max-width: 1180px; margin-inline: auto; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(340px,.72fr); gap: clamp(30px,4vw,56px); align-items: center; }
.bonuses-header { max-width: 700px; text-align: left; }
.bonuses-header h2 { max-width: 700px; margin: 0 0 24px; font-size: clamp(42px,4.6vw,64px); line-height: .97; letter-spacing: -.058em; }
.bonuses-header > p:last-child { max-width: 650px; margin: 0; color: var(--muted-light); font-size: clamp(16px,1.6vw,19px); line-height: 1.55; }
.bonuses-overview { min-width: 0; aspect-ratio: 1; margin: 0; overflow: hidden; border: 1px solid rgba(0,107,75,.22); border-radius: 18px; background: #031512; box-shadow: 0 24px 58px rgba(0,32,28,.16); }
.bonuses-overview img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.bonuses-overview:hover img { transform: scale(1.035); }
.bonuses-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); grid-auto-flow: dense; gap: 14px; }
.bonuses-grid article { min-width: 0; min-height: 500px; padding: 18px; display: flex; flex-direction: column; border: 1px solid rgba(0,107,75,.2); border-radius: 16px; background: var(--white); box-shadow: 0 16px 42px rgba(0,32,28,.06); }
.bonuses-grid article > span { color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.bonus-card-media { height: 250px; margin: 14px 0 22px; position: relative; overflow: hidden; border-radius: 12px; background: #eff4ec; }
.bonus-card-media img { width: calc(100% - 24px); height: calc(100% - 24px); position: absolute; inset: 12px; display: block; object-fit: contain; object-position: center; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.bonuses-grid article:hover .bonus-card-media img { transform: scale(1.04); }
.bonus-card-copy { min-height: 160px; padding: 0 10px 8px; display: flex; flex: 1; flex-direction: column; }
.bonuses-grid h3 { margin: 0 0 14px; font-size: clamp(24px,2.3vw,32px); line-height: 1.03; letter-spacing: -.045em; }
.bonuses-grid p { margin: auto 0 0; color: var(--muted-light); font-size: 14px; line-height: 1.5; }
.bonuses-grid .bonus-featured { color: var(--white); border-color: var(--green-dark); background: var(--green-dark); }
.bonus-featured > span, .bonus-featured p { color: #cce0d9; }
.bonus-featured .bonus-card-media { background: #061815; }
.bonuses-action { margin-top: 18px; padding: 22px 26px; display: flex; align-items: center; justify-content: center; gap: 30px; border: 1px solid var(--line-light); border-radius: 14px; background: var(--white); }
.bonuses-action .countdown b { color: var(--green-dark); }

.bonus-urgency { width: 100%; padding: 0; position: relative; z-index: 2; overflow: hidden; background: transparent; }
.bonus-urgency-inner { min-height: 132px; padding: 24px 30px; position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: auto minmax(0,1fr) auto; gap: 22px; align-items: center; border: 2px solid #ff8a8a; border-radius: 16px; color: var(--white); background: linear-gradient(125deg,#8f1029 0%,#c91f37 48%,#a70f28 100%); box-shadow: 0 18px 42px rgba(145,12,37,.22); animation: bonus-urgency-pulse 2.6s ease-in-out infinite; }
.bonus-urgency-inner::before { content: ""; width: 280px; height: 280px; position: absolute; z-index: -1; right: 16%; top: -190px; border: 48px solid rgba(255,255,255,.07); border-radius: 50%; }
.bonus-urgency-emoji { width: 62px; height: 62px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 15px; background: rgba(75,0,16,.28); box-shadow: inset 0 1px rgba(255,255,255,.2); font-size: 32px; }
.bonus-urgency-copy { min-width: 0; display: grid; gap: 5px; }
.bonus-urgency-copy > span { color: #ffd5d9; font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 700; line-height: 1.3; text-transform: uppercase; letter-spacing: .12em; }
.bonus-urgency-copy strong { max-width: 690px; font-size: clamp(20px,2.2vw,28px); line-height: 1.08; letter-spacing: -.025em; }
.bonus-urgency-copy small { color: #ffe7e9; font-size: 12px; line-height: 1.4; }
.bonus-countdown { padding: 14px 16px; gap: 12px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.34); border-radius: 13px; background: rgba(67,0,14,.35); box-shadow: inset 0 1px rgba(255,255,255,.12); }
.bonus-countdown > span { min-width: 50px; gap: 5px; }
.bonus-countdown > span:not(:last-child)::after { top: 6px; right: -9px; color: #ffb9c0; font-size: 21px; }
.bonus-countdown b { color: var(--white); font-size: 30px; font-weight: 700; }
.bonus-countdown small { color: #ffd5da; font-size: 7px; }
@keyframes bonus-urgency-pulse {
  0%,100% { box-shadow: 0 18px 42px rgba(145,12,37,.22), 0 0 0 0 rgba(220,38,38,0); }
  50% { box-shadow: 0 21px 50px rgba(145,12,37,.3), 0 0 0 5px rgba(220,38,38,.1); }
}

.classes { padding-block: clamp(72px,7vw,104px) clamp(64px,6vw,84px); background: var(--white); border-top: 1px solid var(--line-light); }
.classes-header { max-width: 900px; margin: 0 auto; text-align: center; }
.classes-header h2 { margin-bottom: 24px; font-size: clamp(44px,5.3vw,72px); line-height: .96; letter-spacing: -.06em; }
.classes-header > p:last-child { max-width: 760px; margin: 0 auto; color: var(--muted-light); font-size: clamp(17px,1.8vw,21px); line-height: 1.55; }
.program-calendar { margin-top: 52px; padding: clamp(28px,4vw,48px); position: relative; isolation: isolate; overflow: hidden; border-radius: 22px; color: var(--white); background: radial-gradient(circle at 85% 0%,rgba(23,211,145,.18),transparent 34%),linear-gradient(135deg,#001412 0%,#062522 100%); box-shadow: 0 26px 70px rgba(0,20,18,.14); }
.program-calendar::before { content: ""; width: 420px; height: 420px; position: absolute; z-index: -1; right: -220px; bottom: -300px; border: 1px solid rgba(117,242,108,.16); border-radius: 50%; box-shadow: 0 0 0 54px rgba(117,242,108,.035),0 0 0 108px rgba(117,242,108,.025); }
.program-calendar-header { margin-bottom: 28px; display: grid; grid-template-columns: minmax(0,1.35fr) minmax(260px,.65fr); gap: 36px; align-items: end; }
.program-calendar-header > div { display: grid; gap: 8px; }
.program-calendar-header span { color: var(--green); font-family: "IBM Plex Mono",monospace; font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.program-calendar-header h3 { max-width: 720px; margin: 0; font-size: clamp(34px,4vw,54px); line-height: .96; letter-spacing: -.055em; }
.program-calendar-header p { margin: 0; color: #b8cbc6; font-size: 15px; line-height: 1.5; }
.program-calendar-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); grid-auto-flow: dense; gap: 12px; }
.program-date-card { min-width: 0; min-height: 188px; padding: 24px; grid-column: span 2; display: flex; align-items: flex-start; flex-direction: column; border: 1px solid rgba(206,245,232,.17); border-radius: 15px; background: rgba(255,255,255,.075); backdrop-filter: blur(10px); transition: transform .35s var(--ease),border-color .35s,background .35s; }
.program-date-card:nth-child(4) { grid-column: 2 / span 2; }
.program-date-card:nth-child(5) { grid-column: 4 / span 2; }
.program-date-card:hover { transform: translateY(-5px); border-color: rgba(117,242,108,.52); background: rgba(255,255,255,.105); }
.program-date-card svg { width: 24px; height: 24px; margin-bottom: 20px; color: var(--green); stroke-width: 1.7; }
.program-date-card time { margin-bottom: 10px; color: var(--green); font-size: clamp(18px,2vw,23px); font-weight: 750; letter-spacing: -.02em; }
.program-date-card strong { margin-bottom: 8px; color: var(--white); font-size: 14px; line-height: 1.3; }
.program-date-card p { margin: 0; color: #b8cbc6; font-size: 13px; line-height: 1.48; }
.classes-summary { margin-top: 22px; padding: 22px; display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 24px; align-items: center; border: 1px solid var(--line-light); border-radius: 14px; background: var(--paper); }
.classes-date { min-width: 0; display: flex; align-items: center; gap: 13px; }
.classes-date > svg { width: 26px; height: 26px; flex: 0 0 26px; color: var(--green-dark); }
.classes-date span { display: grid; gap: 4px; color: var(--muted-light); font-size: 11px; }
.classes-date strong { color: var(--ink); font-size: 14px; line-height: 1.25; }
.schedule-inline { margin: 0; padding: 0 24px; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px 20px; border: 0; border-inline: 1px solid var(--line-light); border-radius: 0; background: transparent; }
.schedule-inline span { font-size: 9px; white-space: nowrap; }
.schedule-inline b { margin-right: 6px; }
.schedule-inline .country-flag { margin-right: 6px; font-size: 16px; line-height: 1; vertical-align: -2px; }
.classes-deadline { margin: 0; padding: 0; display: grid; gap: 10px; border: 0; background: transparent; }
.classes-deadline > strong { font-size: 11px; }
.classes-deadline .countdown { gap: 6px; }
.classes-deadline .countdown > span { min-width: 31px; }
.classes-deadline .countdown > span:not(:last-child)::after { right: -5px; }
.classes-deadline .countdown b { font-size: 18px; }
.classes-summary > .button { min-height: 48px; padding-inline: 20px; white-space: nowrap; }
.class-journey { margin-top: 30px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-flow: dense; gap: 12px; align-items: start; }
.class-card, .class-card:nth-child(2n), .class-card:nth-child(3n) { min-height: 0; padding: 0; position: relative; top: auto; display: grid; grid-template-columns: 92px minmax(0,1fr); grid-template-rows: auto auto; align-content: start; align-items: stretch; align-self: start; overflow: hidden; border: 1px solid var(--line-light); border-radius: 14px; background: var(--white); box-shadow: none; }
.class-day { padding: 22px 16px; grid-row: 1 / -1; display: flex; align-items: center; flex-direction: column; justify-content: center; border-right: 1px solid var(--line-light); background: var(--paper); }
.class-day span { order: 1; color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; }
.class-day b { order: 2; margin: 4px 0 0; font-family: "IBM Plex Mono", monospace; font-size: 18px; line-height: 1; letter-spacing: .04em; }
.class-day svg { width: 48px; height: 48px; margin-bottom: 18px; order: 0; color: var(--green-dark); stroke-width: 1.65; }
.class-content { min-width: 0; padding: 22px 26px 10px; }
.class-content > p { margin: 0 0 8px; color: var(--green-dark); font-family: "IBM Plex Mono", monospace; font-size: 9px; font-weight: 600; line-height: 1.4; text-transform: uppercase; letter-spacing: .1em; }
.class-card .class-content h3 { margin: 0 0 14px; font-size: clamp(22px,2.15vw,30px); line-height: 1.04; }
.class-card .class-content ul { margin: 0; padding-left: 18px; color: var(--muted-light); font-size: 14px; line-height: 1.55; }
.class-content > .class-topics { margin: -4px 0 12px; color: var(--muted-light); font-family: "Geist", Arial, sans-serif; font-size: 13px; font-weight: 400; line-height: 1.4; text-transform: none; letter-spacing: 0; }
.class-content > .class-duration { margin: 0; display: flex; align-items: center; gap: 7px; color: var(--green-dark); }
.class-duration svg { width: 15px; height: 15px; }
.class-takeaways { margin: 0 20px 18px; padding: 15px 22px 15px 42px; grid-column: 2; align-self: start; display: grid; gap: 8px; border: 1px solid rgba(0,107,75,.18); border-radius: 10px; color: #405752; background: #f1f7ee; font-size: 13px; line-height: 1.42; }
.class-takeaways li { padding-left: 3px; }
.class-takeaways li::marker { color: var(--green-dark); font-size: 1.15em; }
.classes-cta { margin-top: 22px; padding: 28px 30px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-radius: 14px; color: var(--white); background: var(--ink); }
.classes-cta > div:first-child { max-width: 690px; display: grid; gap: 6px; }
.classes-cta > div:first-child > span { color: var(--green); font-family: "IBM Plex Mono", monospace; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .13em; }
.classes-cta strong { font-size: clamp(20px,2.4vw,30px); line-height: 1.12; }
.classes-cta .cta-stack { flex: 0 0 auto; }

.cta-stack { min-width: 0; display: grid; gap: 11px; justify-items: start; }
.cta-assurances { margin-top: 12px; display: grid; gap: 7px; color: #526762; font-size: 10px; font-weight: 600; line-height: 1.35; }
.cta-assurances span { display: flex; align-items: center; gap: 7px; }
.cta-assurances svg { width: 15px; height: 15px; flex: 0 0 15px; color: var(--green-dark); stroke-width: 1.9; }
.cta-assurances.is-on-dark { color: #c8d7d3; }
.cta-assurances.is-on-dark svg { color: var(--green); }
.program-enroll-card .cta-assurances { margin: 12px 8px 2px; justify-items: center; text-align: center; }
.offer-assurances { margin-top: 12px; justify-items: center; text-align: center; }
.instructor-copy > .cta-assurances { margin-top: 14px; }
.closing .cta-assurances { margin-top: 17px; justify-items: center; }

.offer { min-height: calc(100svh - 112px); padding: clamp(18px,2.5vh,28px) 0 clamp(32px,4.5vh,54px); display: grid; align-items: center; background: var(--paper); }
.offer .container { width: 100%; }
.offer-stack { max-width: calc(1040px + (var(--gutter) * 2)); display: grid; gap: 22px; }
.offer-ambient { display: block; overflow: hidden; }
.offer-ambient svg { width: clamp(92px,10vw,150px); height: auto; position: absolute; color: var(--green-dark); opacity: .09; stroke-width: 1.25; animation: offer-float 8s ease-in-out infinite alternate; }
.offer-ambient svg:nth-child(1) { --r: -8deg; top: 8%; left: 3%; }
.offer-ambient svg:nth-child(2) { --r: 7deg; top: 23%; right: 2%; animation-delay: -2.6s; }
.offer-ambient svg:nth-child(3) { --r: -6deg; right: 5%; bottom: 9%; animation-delay: -4.2s; }
.offer-ambient svg:nth-child(4) { --r: 5deg; left: 2%; bottom: 18%; animation-delay: -1.4s; }
.offer-ambient svg:nth-child(5) { --r: -4deg; left: 8%; top: 48%; animation-delay: -5.4s; }
.offer-ambient svg:nth-child(6) { --r: 8deg; right: 8%; top: 48%; animation-delay: -3.5s; }
@keyframes offer-float {
  from { transform: translateY(8px) rotate(var(--r)); }
  to { transform: translateY(-14px) rotate(var(--r)); }
}
.offer-shell { width: 100%; max-width: none; border-color: rgba(0,107,75,.42); border-radius: 17px; box-shadow: 0 20px 56px rgba(0,32,28,.09); }
.offer-ribbon { min-height: 48px; padding: 11px 22px; font-size: 11px; }
.offer-ribbon svg { width: 16px; height: 16px; }
.offer-body { padding: 26px 42px 28px; }
.offer-logo { width: 194px; margin-bottom: 12px; }
.offer-title { max-width: 790px; margin-bottom: 14px; font-size: clamp(40px,3.8vw,50px); line-height: .97; }
.offer-subtitle { margin-bottom: 18px; font-size: 18px; }
.offer-benefits { gap: 10px; }
.offer-benefit { min-height: 72px; padding: 14px 17px; grid-template-columns: 27px minmax(0,1fr); gap: 12px; background: var(--paper); }
.offer-benefit > svg { width: 23px; height: 23px; }
.offer-benefit strong { margin-bottom: 4px; font-size: 15px; }
.offer-benefit span { font-size: 13px; line-height: 1.34; }
.offer-guarantee { margin-top: 16px; padding: 14px 19px; grid-template-columns: 24px 1fr; gap: 12px; }
.offer-guarantee svg { width: 23px; height: 23px; }
.offer-guarantee span { font-size: 14px; line-height: 1.4; }
.offer-price { margin: 18px auto 16px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.offer-price .old-price { font-size: 13px; }
.offer-price .price { margin: 0; gap: 8px; }
.offer-price .price span { font-size: clamp(68px,6.4vw,82px); }
.offer-price .price small { font-size: 16px; }
.offer-price .offer-savings { margin: 0; padding: 8px 15px; font-size: 11px; }
.offer-cta { width: min(100%,580px); min-height: 58px; margin-inline: auto; display: flex; font-size: 14px; animation: offer-cta-attention 2.4s ease-in-out infinite; }
@keyframes offer-cta-attention {
  0%, 100% { box-shadow: 0 12px 28px rgba(23,211,145,.18); }
  50% { box-shadow: 0 16px 44px rgba(23,211,145,.42), 0 0 0 7px rgba(117,242,108,.09); }
}
.offer-meta { margin-top: 16px; gap: 24px; font-size: 10px; }
.offer-meta svg { width: 14px; height: 14px; }

.instructor { background: var(--white); }
.instructor-grid { grid-template-columns: minmax(300px,.72fr) minmax(0,1.28fr); gap: clamp(42px,7vw,88px); }
.instructor-photo { min-height: 520px; max-height: 600px; border-radius: 16px; }
.instructor-copy h2 { font-size: clamp(42px,5vw,68px); }

.faq { background: var(--ink); }
.faq .section-heading h2 { font-size: clamp(42px,5vw,68px); }
.contact { background: var(--paper); }
.contact-card { padding: clamp(32px,5vw,58px); border-radius: 16px; background: var(--white); }
.contact-card h2 { font-size: clamp(38px,4.7vw,60px); }
.closing { padding-block: clamp(80px,9vw,120px); background: var(--ink); }
.closing::before { display: none; }
.closing h2 { max-width: 930px; font-size: clamp(44px,5.6vw,76px); }
.closing p { font-size: 18px; }

@media (min-width: 821px) {
  .class-journey { grid-auto-rows: 1fr; align-items: stretch; }
  .class-card, .class-card:nth-child(2n), .class-card:nth-child(3n) {
    height: 100%;
    grid-template-rows: auto minmax(0,1fr);
    align-content: stretch;
    align-self: stretch;
  }
  .class-content { min-height: 142px; }
  .class-takeaways { align-content: center; align-self: stretch; }
}

@media (max-width: 1000px) {
  .advantages-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .advantages-grid article { min-height: 220px; }
  .advantages-compare { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .advantages-compare .button { grid-column: 1 / -1; width: fit-content; }
  .bonuses-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .tools-intro { grid-template-columns: 1fr; }
  .tools-stage { min-height: 500px; order: 2; }
  .classes-summary { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .program-calendar-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .program-date-card, .program-date-card:nth-child(4) { grid-column: auto; }
  .program-date-card:nth-child(5) { width: calc(50% - 6px); grid-column: 1 / -1; justify-self: center; }
  .schedule-inline { grid-column: 1 / -1; grid-row: 2; padding: 16px 0; grid-template-columns: repeat(4,minmax(0,1fr)); border-inline: 0; border-block: 1px solid var(--line-light); }
  .class-card, .class-card:nth-child(2n), .class-card:nth-child(3n) { grid-template-columns: 82px minmax(0,1fr); }
  .class-takeaways { grid-column: 2; }
  .method-timeline { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 28px 16px; }
  .method-timeline::before { display: none; }
  .method-step-copy { min-height: 170px; }
}

@media (max-width: 820px) {
  :root { --urgency-height: 54px; }
  section[id] { scroll-margin-top: 124px; }
  .urgency-bar-inner { min-height: 54px; grid-template-columns: minmax(0,1fr) auto; gap: 12px; }
  .urgency-bar p > .urgency-context, .urgency-link { display: none; }
  .urgency-bar p { font-size: 11px; }
  .countdown-compact > span { min-width: 31px; }
  .countdown-compact b { font-size: 15px; }
  .urgency-bar .countdown-compact { gap: 5px; }
  .urgency-bar .countdown-compact > span { min-width: 45px; padding: 6px 5px 5px; border-radius: 7px; }
  .urgency-bar .countdown-compact b { font-size: 15px; }
  .site-header { min-height: 62px; padding-inline: 14px; }
  .nav-shell { min-height: 62px; padding: 0; border-radius: 0; }
  .brand img { width: 142px; }
  .menu-toggle { border-color: rgba(255,255,255,.18); background: var(--ink-2); }
  .menu-toggle span:not(.sr-only) { background: var(--green); }
  .nav-links { top: 57px; left: 0; right: 0; border-color: var(--line-dark); color: var(--white); background: rgba(0,20,18,.99); box-shadow: 0 20px 48px rgba(0,20,18,.24); }
  .nav-links a, .nav-links a:nth-child(4) { color: var(--white); }
  .hero { padding-top: 64px; }
  .hero-layout { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 720px; }
  .hero-media { width: min(100%,390px); height: 440px; margin: 0 auto; }
  .program-system-grid { grid-template-columns: 1fr; }
  .program-enroll-card { display: grid; grid-template-columns: 260px minmax(0,1fr); gap: 0 18px; }
  .program-enroll-card .program-portrait { min-height: 320px; grid-row: 1 / 6; }
  .program-enroll-card .button { align-self: end; }
  .program-shell-heading { grid-template-columns: 1fr; gap: 10px; }
  .program-outcomes { grid-template-columns: 1fr; gap: 10px; }
  .program-outcomes article { min-height: 0; padding: 18px; display: grid; grid-template-columns: 52px minmax(0,1fr); grid-template-areas: "icon step" "icon title" "icon copy"; gap: 5px 14px; align-items: start; }
  .program-outcomes .program-step { grid-area: step; }
  .program-outcomes svg { width: 38px; height: 38px; margin: 2px 0 0; grid-area: icon; }
  .program-outcomes h3 { margin: 0; grid-area: title; font-size: 22px; }
  .program-outcomes p { grid-area: copy; }
  .program-proof { grid-template-columns: 1fr; }
  .bonuses-grid { grid-template-columns: 1fr; }
  .bonuses-grid article { min-height: 0; }
  .bonus-card-copy { min-height: 0; flex: 0 0 auto; }
  .bonuses-grid h3 { margin-bottom: 0; }
  .bonuses-grid p { margin: 10px 0 0; }
  .bonuses-showcase { grid-template-columns: 1fr; }
  .bonuses-header { max-width: 820px; }
  .bonuses-overview { width: min(100%,560px); justify-self: center; }
  .bonuses-action { align-items: stretch; flex-direction: column; }
  .bonuses-action .countdown { justify-content: center; }
  .bonuses-action .button { width: 100%; }
  .method-proof-closing { align-items: flex-start; flex-direction: column; }
  .method-proof-closing .cta-stack, .method-proof-closing .button { width: 100%; }
  .classes-header h2 { font-size: clamp(42px,8vw,64px); }
  .program-calendar-header { grid-template-columns: 1fr; gap: 14px; }
  .class-journey { grid-template-columns: 1fr; }
  .instructor-grid { grid-template-columns: 1fr; }
  .instructor-photo { width: min(100%,500px); }
}

@media (max-width: 560px) {
  :root { --gutter: 20px; }
  .urgency-bar p svg { display: none; }
  .urgency-message { max-width: 98px; }
  .urgency-bar p strong { line-height: 1.12; }
  .urgency-message b { font-size: 7px; }
  .countdown-compact { gap: 5px; }
  .countdown-compact > span { min-width: 27px; }
  .countdown-compact > span:not(:last-child)::after { right: -4px; }
  .countdown-compact b { font-size: 14px; }
  .urgency-bar .countdown-compact { gap: 4px; }
  .urgency-bar .countdown-compact > span { min-width: 39px; padding: 6px 3px 5px; }
  .urgency-bar .countdown-compact b { font-size: 14px; }
  .urgency-bar .countdown-compact small { font-size: 5px; letter-spacing: .06em; }
  .site-header { top: var(--urgency-height); }
  .hero { padding: 52px 0 76px; }
  .hero h1 { max-width: 470px; font-size: clamp(38px,10.2vw,50px); line-height: .95; }
  .hero-lead { font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 9px; }
  .hero-actions .button { width: 100%; min-width: 0; padding-inline: 10px; font-size: 14px; white-space: nowrap; }
  .hero-deadline { padding: 18px 14px; display: grid; justify-content: center; justify-items: center; gap: 15px; text-align: center; }
  .hero-deadline > div:first-child { justify-items: center; }
  .hero-deadline .countdown { width: min(100%,300px); margin-inline: auto; place-self: center; justify-content: center; }
  .hero-deadline .countdown > span { min-width: 0; max-width: 62px; flex: 1 1 0; }
  .hero-media { width: min(88%,390px); height: 102vw; max-height: 430px; border-radius: 14px; }
  .hero-live-banner { min-height: 50px; padding: 9px 12px; top: 12px; left: 12px; right: 12px; }
  .hero-live-banner strong { font-size: 12px; }
  .hero-live-banner small { font-size: 7px; }
  .hero-media figcaption { inset: auto 12px 12px; }
  .advantages { padding-block: 72px; }
  .advantages-header h2 { font-size: 42px; }
  .advantages-grid { margin-top: 36px; grid-template-columns: 1fr; }
  .advantages-grid article { min-height: 0; padding: 22px; }
  .advantages-grid .advantage-top svg { margin: 0; }
  .advantages-grid h3 { margin-top: 16px; font-size: 21px; }
  .advantages-grid p { font-size: 13.5px; }
  .advantages-grid p { margin-top: 8px; }
  .advantages-compare { padding: 24px 20px; grid-template-columns: 1fr; }
  .advantages-compare > div + div { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .advantages-compare .button { width: 100%; }
  .program-section { padding-block: 72px; }
  .program-intro-heading { margin-top: 18px; gap: 14px; }
  .program-badge { font-size: 9px; line-height: 1.45; }
  .program-intro h2 { font-size: 42px; }
  .program-shell { padding: 24px 20px; }
  .program-shell-heading { margin-bottom: 12px; }
  .program-outcomes article { padding: 16px; grid-template-columns: 44px minmax(0,1fr); gap: 4px 11px; }
  .program-outcomes svg { width: 33px; height: 33px; }
  .program-outcomes h3 { font-size: 21px; }
  .program-outcomes p { font-size: 13px; line-height: 1.48; }
  .program-enroll-card { padding: 12px; display: flex; }
  .program-enroll-card .program-portrait { min-height: 320px; }
  .method-proof { padding-block: 72px; }
  .method-proof-header { text-align: left; }
  .method-proof-header h2 { font-size: 42px; }
  .method-proof-header > p:last-child { margin-left: 0; }
  .method-timeline { margin-top: 46px; grid-template-columns: 1fr; gap: 14px; }
  .method-step { display: grid; grid-template-columns: 68px minmax(0,1fr); gap: 14px; align-items: stretch; text-align: left; }
  .method-icon { width: 62px; height: 62px; margin: 0; align-self: start; }
  .method-icon svg { width: 27px; height: 27px; }
  .method-icon span { min-width: 22px; height: 22px; right: -2px; font-size: 8px; }
  .method-step-copy { min-height: 0; padding: 20px; }
  .method-step h3 { font-size: 22px; }
  .method-proof-closing { margin-top: 22px; padding: 24px 20px; }
  .bonuses-section { padding-block: 72px; }
  .bonuses-header { text-align: left; }
  .bonuses-header h2 { font-size: 40px; }
  .bonuses-header > p:last-child { margin-left: 0; }
  .bonuses-grid { margin-top: 34px; }
  .bonuses-grid article { padding: 16px; }
  .bonus-card-media { height: 220px; }
  .bonus-card-media img { width: calc(100% - 20px); height: calc(100% - 20px); inset: 10px; }
  .bonus-icon { width: 62px; height: 62px; margin: 22px 0 20px; }
  .bonus-icon svg { width: 32px; height: 32px; }
  .bonuses-action { padding: 20px 16px; gap: 18px; }
  .tools-stage { min-height: 390px; }
  .tools-grid {
    margin-top: 38px;
    grid-template-columns: repeat(2,minmax(0,1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 10px;
    overflow-x: visible;
    overscroll-behavior-inline: auto;
    scroll-snap-type: none;
  }
  .tools-grid .tool-card, .tools-grid .tool-card:nth-child(n) {
    min-height: 220px;
    grid-column: auto;
    scroll-snap-align: none;
  }
  .tools-grid .tool-card:nth-child(5) {
    width: calc(50% - 5px);
    grid-column: 1 / -1;
    justify-self: center;
  }
  .tools-grid .tool-visual, .tools-grid .tool-card:nth-child(n+3) .tool-visual {
    min-height: 220px;
    padding: 12px 8px 54px;
  }
  .tools-grid .tool-visual img { max-height: 150px; }
  .tools-grid .tool-card h3 {
    left: 12px;
    right: 12px;
    bottom: 14px;
    font-size: clamp(14px,4vw,16px);
  }
  .offer-stack { gap: 16px; }
  .bonus-urgency { padding-top: 0; }
  .bonus-urgency-inner { min-height: 0; padding: 22px 18px; grid-template-columns: 1fr; gap: 14px; justify-items: center; text-align: center; border-radius: 14px; }
  .bonus-urgency-inner::before { right: -130px; top: -170px; }
  .bonus-urgency-emoji { width: 54px; height: 54px; font-size: 28px; }
  .bonus-urgency-copy strong { font-size: 21px; line-height: 1.12; }
  .bonus-urgency-copy small { font-size: 11px; }
  .bonus-countdown { width: min(100%,290px); padding: 13px 12px; justify-content: center; }
  .bonus-countdown > span { min-width: 48px; }
  .bonus-countdown b { font-size: 27px; }
  .classes-header { text-align: left; }
  .classes { padding-block: 72px 64px; }
  .classes-header > p:last-child { margin-left: 0; }
  .program-calendar { margin-top: 36px; padding: 26px 18px; border-radius: 17px; }
  .program-calendar-header { margin-bottom: 20px; }
  .program-calendar-header h3 { font-size: 38px; }
  .program-calendar-grid { grid-template-columns: 1fr; gap: 9px; }
  .program-date-card, .program-date-card:nth-child(4), .program-date-card:nth-child(5) { width: 100%; min-height: 0; padding: 18px; grid-column: auto; display: grid; grid-template-columns: 38px minmax(0,1fr); grid-template-areas: "icon date" "icon title" "icon copy"; gap: 4px 12px; }
  .program-date-card svg { width: 28px; height: 28px; margin: 2px 0 0; grid-area: icon; }
  .program-date-card time { margin: 0; grid-area: date; font-size: 18px; }
  .program-date-card strong { margin: 0; grid-area: title; }
  .program-date-card p { grid-area: copy; }
  .classes-summary { margin-top: 36px; padding: 18px; grid-template-columns: 1fr; gap: 18px; }
  .schedule-inline { grid-column: auto; grid-row: auto; padding: 16px 0; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .classes-summary > .button { width: 100%; }
  .classes-deadline { padding-top: 0; }
  .classes-deadline .countdown { justify-content: space-between; }
  .class-journey { margin-top: 22px; }
  .class-card, .class-card:nth-child(2n), .class-card:nth-child(3n) { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; }
  .class-day { padding: 14px 18px; grid-row: auto; flex-direction: row; justify-content: flex-start; gap: 8px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .class-day svg { width: 38px; height: 38px; margin: 0 8px 0 0; }
  .class-day b { margin: 0; font-size: 16px; }
  .class-content { padding: 24px 20px; }
  .class-card .class-content h3 { font-size: 29px; }
  .class-takeaways { margin: 0 16px 16px; padding: 17px 18px 17px 36px; grid-column: auto; font-size: 14px; }
  .classes-cta { padding: 24px 20px; align-items: flex-start; flex-direction: column; }
  .classes-cta .cta-stack, .classes-cta .button { width: 100%; }
  .cta-assurances { font-size: 9px; }
  .offer-ambient svg { width: 86px; opacity: .06; }
  .offer-ambient svg:nth-child(2), .offer-ambient svg:nth-child(4), .offer-ambient svg:nth-child(6) { display: none; }
  .offer { min-height: 0; padding-block: 48px; }
  .offer-body { padding: 26px 20px 28px; }
  .offer-logo { width: 190px; margin-bottom: 18px; }
  .offer-title { margin-bottom: 14px; font-size: 34px; }
  .offer-subtitle { margin-bottom: 22px; }
  .offer-benefits { grid-template-columns: 1fr; }
  .offer-benefit { min-height: auto; padding: 15px; }
  .offer-guarantee { margin-top: 16px; padding: 15px; }
  .offer-price { margin: 28px auto 20px; display: flex; gap: 7px; }
  .offer-price .old-price, .offer-price .offer-savings { margin-inline: auto; }
  .offer-price .price { margin: 0; }
  .offer-cta { min-height: 58px; }
  .offer-meta { margin-top: 16px; }
  .instructor-photo { min-height: 112vw; max-height: 560px; }
}
