:root {
  --ink: #132721;
  --green: #163b35;
  --green-2: #214b43;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --lime: #d8ff74;
  --coral: #ff765f;
  --line: rgba(19, 39, 33, .2);
  --radius: 24px;
  --container: 1240px;
  --display: "Unbounded", sans-serif;
  --body: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
p, h1, h2, h3 { margin-top: 0; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--lime);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 116px 0; }
.section-dark { color: var(--white); background: var(--green); }
.section-paper { background: var(--paper); }
.section-coral { background: var(--coral); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.header-inner { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; letter-spacing: .08em; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; color: var(--green); background: var(--lime); border-radius: 50%; font-size: 17px; }
.brand-name { font-size: 19px; }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; }
.desktop-nav a { opacity: .75; transition: opacity .2s; }
.desktop-nav a:hover { opacity: 1; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  place-items: center;
  gap: 6px;
  flex-direction: column;
}
.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.75px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: absolute;
  inset: 72px 16px auto;
  z-index: 25;
  padding: 22px;
  flex-direction: column;
  gap: 8px;
  background: var(--green-2);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.mobile-nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0 8px;
  font-weight: 600;
}
.mobile-nav .button { margin-top: 8px; justify-content: center; }
.author-name { margin: 0 0 18px; font-family: var(--display); font-size: 18px; letter-spacing: -.02em; }
.author-highlights {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
  max-width: 540px;
}
.author-highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.45;
}
.author-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
#author-closing { max-width: 540px; margin-top: 22px; font-size: 18px; }
.author-photo {
  width: 100%;
  min-height: 590px;
  object-fit: cover;
  border-radius: 240px 240px 24px 24px;
}
.legal-lead { margin-bottom: 28px; color: rgba(19,39,33,.72); }
.legal-meta { margin-bottom: 18px; color: rgba(19,39,33,.55); font-size: 14px; }

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 26px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding-inline: 19px; font-size: 13px; }
.button-large { min-height: 64px; padding-inline: 34px; }
.button-dark { color: var(--white); background: var(--ink); }
.button-accent { color: var(--ink); background: var(--lime); }
.button-outline { border-color: var(--ink); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 10px 4px; border-bottom: 1px solid currentColor; font-weight: 600; }
.text-link-light { color: var(--white); }

.hero { position: relative; min-height: 820px; padding: 180px 0 90px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-glow { position: absolute; width: 650px; height: 650px; right: -160px; top: -180px; border-radius: 50%; background: rgba(216,255,116,.12); filter: blur(1px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.03fr .97fr; gap: 70px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; text-transform: uppercase; letter-spacing: .11em; font-size: 12px; font-weight: 700; }
.eyebrow > span:first-child { width: 40px; height: 1px; background: currentColor; }
.eyebrow-light { color: rgba(255,255,255,.7); }
.hero h1 { margin-bottom: 30px; font-family: var(--display); font-size: clamp(58px, 6vw, 91px); line-height: .95; letter-spacing: -.06em; font-weight: 600; }
.hero h1 span, .hero h1 em { display: block; }
h1 em, h2 em { color: var(--lime); font-style: normal; }
.hero-lead { max-width: 690px; margin-bottom: 36px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 30px; margin-bottom: 58px; }
.hero-meta { display: flex; gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.hero-meta > div { flex: 1; padding: 22px 26px 0 0; border-right: 1px solid rgba(255,255,255,.16); }
.hero-meta > div + div { padding-left: 26px; }
.hero-meta > div:last-child { border-right: 0; }
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { font-family: var(--display); font-size: 16px; }
.hero-meta span { margin-top: 5px; color: rgba(255,255,255,.5); font-size: 12px; }

.hero-visual { position: relative; min-height: 510px; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.orbit-one { inset: 5% 1% 1% 3%; transform: rotate(-8deg); }
.orbit-two { inset: 13% 9% 6% 9%; transform: rotate(16deg); }
.hero-card { position: absolute; border-radius: 28px; }
.hero-card-main { inset: 60px 58px 58px; padding: 32px; color: var(--ink); background: var(--coral); box-shadow: 0 32px 70px rgba(0,0,0,.18); transform: rotate(-5deg); }
.hero-card-main .card-index { display: block; margin-bottom: 70px; font-family: var(--display); font-size: 12px; }
.hero-card-main p { margin: 0; font-family: var(--display); font-size: 26px; }
.hero-card-main strong { font-family: var(--display); font-size: 48px; line-height: 1; }
.hero-card-main svg { position: absolute; right: 23px; bottom: 18px; width: 67%; height: 43%; }
.hero-card-main circle { fill: var(--coral); stroke: currentColor; stroke-width: 3; }
.hero-card-float { z-index: 2; width: 195px; min-height: 128px; padding: 22px; box-shadow: 0 18px 50px rgba(0,0,0,.18); }
.hero-card-float span, .hero-card-float small, .hero-card-float strong { display: block; }
.hero-card-float span { margin-bottom: 14px; text-transform: uppercase; letter-spacing: .12em; font-size: 9px; }
.hero-card-float strong { font-family: var(--display); font-size: 18px; }
.hero-card-float small { margin-top: 8px; opacity: .65; }
.card-lime { top: 0; right: 2px; color: var(--ink); background: var(--lime); transform: rotate(8deg); }
.card-paper { bottom: 0; left: 0; color: var(--ink); background: var(--paper); transform: rotate(5deg); }
.hero-stamp { position: absolute; right: 15px; bottom: 27px; display: grid; width: 84px; height: 84px; place-items: center; text-align: center; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; font-family: var(--display); font-size: 10px; line-height: 1.4; letter-spacing: .1em; transform: rotate(-12deg); }

.ticker { overflow: hidden; color: var(--ink); background: var(--lime); border-block: 1px solid var(--ink); }
.ticker-track { display: flex; width: max-content; padding: 17px 0; align-items: center; gap: 28px; white-space: nowrap; animation: ticker 30s linear infinite; font-family: var(--display); font-size: 12px; }
.ticker-track i { font-style: normal; font-size: 16px; }
@keyframes ticker { to { transform: translateX(-45%); } }

.section-heading { margin-bottom: 64px; }
.split-heading { display: grid; grid-template-columns: 1.18fr .82fr; gap: 80px; align-items: end; }
.section-heading h2, .author-copy h2, .faq-heading h2, .final-cta h2, .format-intro h2 { margin-bottom: 0; font-family: var(--display); font-size: clamp(38px, 4.3vw, 62px); line-height: 1.1; letter-spacing: -.05em; font-weight: 600; }
.section-heading h2 em, .author-copy h2 em, .faq-heading h2 em, .format-intro h2 em { color: var(--green); font-style: normal; }
.section-heading > p { max-width: 480px; margin: 0; font-size: 17px; color: rgba(19,39,33,.68); }
.section-number { display: block; margin-bottom: 24px; color: rgba(19,39,33,.62); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.section-number-light { color: rgba(255,255,255,.55); }
.text-on-dark { color: rgba(255,255,255,.66) !important; }

.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.audience-card { position: relative; min-height: 360px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-card > span { font-family: var(--display); font-size: 11px; color: rgba(19,39,33,.5); }
.audience-card h3 { margin: 88px 0 18px; font-family: var(--display); font-size: 20px; line-height: 1.25; }
.audience-card p { margin: 0; color: rgba(19,39,33,.62); font-size: 14px; }
.audience-card i { position: absolute; right: 22px; bottom: 18px; font-style: normal; font-size: 20px; }
.audience-card:hover { background: var(--white); }

.section-coral .section-number { color: rgba(19,39,33,.65); }
.results-grid { display: grid; grid-template-columns: repeat(12, 1fr); border-top: 1px solid rgba(19,39,33,.35); }
.result-card { grid-column: span 4; min-height: 275px; padding: 30px 30px 20px 0; border-bottom: 1px solid rgba(19,39,33,.35); }
.result-card:nth-child(4), .result-card:nth-child(5) { grid-column: span 6; }
.result-card span { font-family: var(--display); font-size: 11px; }
.result-card h3 { margin: 58px 0 14px; font-family: var(--display); font-size: 22px; }
.result-card p { max-width: 330px; margin: 0; }

.program-section { background: var(--green); }
.program-section .section-heading h2 em { color: var(--coral); }
.program-list { border-top: 1px solid rgba(255,255,255,.2); }
.program-item { border-bottom: 1px solid rgba(255,255,255,.2); }
.program-bonus .program-number { color: var(--lime); }
.program-bonus h3 { color: var(--lime); }
.program-item summary { display: grid; grid-template-columns: 72px 1fr 44px; gap: 20px; padding: 27px 0; align-items: center; cursor: pointer; list-style: none; }
.program-item summary::-webkit-details-marker { display: none; }
.program-number { color: rgba(255,255,255,.4); font-family: var(--display); font-size: 11px; }
.program-item h3 { margin: 0; font-family: var(--display); font-size: clamp(18px, 2vw, 28px); font-weight: 500; }
.program-toggle { position: relative; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.program-toggle::before, .program-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 1px; background: var(--white); transform: translate(-50%, -50%); transition: transform .2s; }
.program-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.program-item[open] .program-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.program-body { display: grid; grid-template-columns: 92px 1fr; }
.program-body p { grid-column: 2; max-width: 690px; margin: 0 0 30px; color: rgba(255,255,255,.63); }

.format-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: repeat(2, minmax(260px, auto)); gap: 16px; }
.format-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); }
.format-intro { grid-row: 1 / 3; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--green); }
.format-intro .section-number { margin-bottom: auto; color: rgba(255,255,255,.52); }
.format-intro h2 em { color: var(--lime); }
.format-intro p { max-width: 480px; margin: 32px 0 0; color: rgba(255,255,255,.65); }
.format-feature { display: flex; flex-direction: column; justify-content: flex-end; background: var(--white); }
.format-feature strong { font-family: var(--display); font-size: 20px; }
.format-feature p { margin: 14px 0 0; color: rgba(19,39,33,.62); font-size: 14px; }
.format-icon { margin-bottom: auto; font-family: var(--display); font-size: 32px; }
.lime-card { color: var(--ink); background: var(--lime); }

.reviews-section { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review-card { display: flex; min-height: 330px; padding: 30px; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.review-quote { color: var(--coral); font-family: Georgia, serif; font-size: 68px; line-height: .8; }
.review-card > p { margin: 30px 0; font-size: 16px; }
.review-card > div { display: flex; margin-top: auto; flex-direction: column; }
.review-card > div span { margin-top: 4px; color: rgba(19,39,33,.55); font-size: 12px; }

.author-section { color: var(--ink); background: var(--coral); }
.author-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8%; align-items: center; }
.author-placeholder { position: relative; display: grid; min-height: 590px; padding: 30px; place-items: center; overflow: hidden; color: var(--white); background: var(--green); border-radius: 240px 240px 24px 24px; }
.author-placeholder::before { content: ""; position: absolute; width: 340px; height: 340px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.author-placeholder::after { content: ""; position: absolute; width: 220px; height: 220px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; }
.author-monogram { font-family: var(--display); font-size: 130px; font-weight: 600; color: var(--lime); }
.author-placeholder > span { position: absolute; bottom: 28px; letter-spacing: .11em; text-transform: uppercase; font-size: 10px; opacity: .5; }
.author-copy h2 { margin-bottom: 34px; }
.author-copy > p { max-width: 540px; font-size: 18px; }
.author-note { margin-top: 38px; padding: 18px 22px; border: 1px solid rgba(19,39,33,.3); font-size: 13px; }
.author-note code { font-family: monospace; }

.tariffs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.tariff-card { position: relative; display: flex; min-height: 600px; padding: 30px; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.tariff-featured { color: var(--white); background: var(--green); transform: translateY(-14px); }
.tariff-badge { position: absolute; top: 22px; right: 22px; padding: 7px 10px; color: var(--ink); background: var(--lime); border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.tariff-head > span { display: block; margin-bottom: 10px; opacity: .6; font-size: 12px; }
.tariff-head h3 { font-family: var(--display); font-size: 29px; }
.tariff-price { min-height: 90px; margin: 30px 0; }
.tariff-price s { display: block; opacity: .45; font-size: 13px; }
.tariff-price strong { display: block; margin-top: 5px; font-family: var(--display); font-size: 34px; }
.tariff-card ul { display: grid; margin: 24px 0 0; padding: 24px 0 0; gap: 15px; border-top: 1px solid currentColor; list-style: none; opacity: .75; }
.tariff-card li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; font-size: 14px; }
.tariff-card li span { color: var(--coral); font-weight: 800; }
.tariff-featured li span { color: var(--lime); }
.tariff-card li.feature-excluded { opacity: .48; text-decoration: line-through; }
.tariff-card li.feature-excluded span { color: currentColor; opacity: .7; }
.tariff-widget { width: 100%; margin: 8px 0 0; min-height: 56px; }
.tariff-widget iframe { width: 100% !important; border-radius: 16px; background: #fff; }
.tariff-featured .button-accent { color: var(--ink); }
.tariffs-note { max-width: 690px; margin: 34px auto 0; text-align: center; color: rgba(19,39,33,.57); font-size: 13px; }

.faq-section { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 9%; }
.faq-heading { position: sticky; top: 30px; align-self: start; }
.faq-heading h2 { margin-bottom: 28px; }
.faq-heading p { max-width: 320px; margin-bottom: 30px; color: rgba(19,39,33,.6); }
.accordion { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { display: grid; grid-template-columns: 1fr 34px; gap: 20px; padding: 26px 0; align-items: center; cursor: pointer; list-style: none; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 50%; }
.faq-item summary i::before, .faq-item summary i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 12px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); }
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%); }
.faq-item p { max-width: 620px; margin: -4px 55px 26px 0; color: rgba(19,39,33,.63); }

.final-cta { position: relative; padding: 126px 0; overflow: hidden; text-align: center; }
.final-cta::before { content: "ELFI"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.06); font-family: var(--display); font-size: 25vw; font-weight: 700; }
.final-cta-inner { position: relative; }
.final-cta h2 { max-width: 900px; margin: 0 auto 26px; }
.final-cta h2 em { color: var(--coral); font-style: normal; }
.final-cta p { max-width: 600px; margin: 0 auto 34px; color: rgba(255,255,255,.65); }

.footer { padding: 70px 0 26px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 50px; padding-bottom: 60px; }
.brand-footer { margin-bottom: 25px; }
.footer-grid p { color: rgba(255,255,255,.5); font-size: 13px; }
.footer-column { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer-column > span { margin-bottom: 10px; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .1em; font-size: 10px; }
.footer-column a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; color: rgba(255,255,255,.35); border-top: 1px solid rgba(255,255,255,.11); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }

.reveal { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; background: var(--paper); }
.legal-header { color: var(--white); background: var(--green); }
.legal-header .header-inner { height: 78px; }
.legal-main { width: min(calc(100% - 48px), 860px); margin: 0 auto; padding: 90px 0 120px; }
.legal-main h1 { margin-bottom: 24px; font-family: var(--display); font-size: clamp(38px, 6vw, 66px); line-height: 1.08; letter-spacing: -.05em; }
.legal-main h2 { margin: 54px 0 18px; font-family: var(--display); font-size: 22px; }
.legal-main p, .legal-main li { color: rgba(19,39,33,.72); }
.legal-main a { text-decoration: underline; text-underline-offset: 3px; }
.legal-alert { margin: 40px 0; padding: 26px; background: var(--white); border: 1px solid var(--line); border-left: 5px solid var(--coral); border-radius: 14px; }
.legal-alert strong { display: block; margin-bottom: 8px; }

@media (max-width: 1050px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(100%, 620px); margin: 0 auto; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card, .result-card:nth-child(4), .result-card:nth-child(5) { grid-column: auto; }
  .result-card:last-child { grid-column: 1 / 3; }
  .format-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .format-intro { grid-row: auto; min-height: 520px; }
  .tariffs-grid { grid-template-columns: 1fr; max-width: 720px; margin-inline: auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .tariff-card { min-height: 0; }
  .tariff-featured { transform: none; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: grid; }
  .mobile-nav:not([hidden]) { display: flex; }
  .header-inner { height: 72px; }
  .hero { padding: 130px 0 72px; }
  .hero h1 { font-size: clamp(43px, 13vw, 68px); overflow-wrap: anywhere; }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-meta { display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-meta > div, .hero-meta > div + div { padding: 18px 10px 0; }
  .hero-meta > div:first-child { padding-left: 0; }
  .hero-meta strong { font-size: 11px; }
  .hero-meta span { font-size: 9px; }
  .hero-visual { min-height: 390px; }
  .hero-card-main { inset: 55px 30px 45px; padding: 24px; }
  .hero-card-main .card-index { margin-bottom: 38px; }
  .hero-card-main p { font-size: 20px; }
  .hero-card-main strong { font-size: 36px; }
  .hero-card-float { width: 150px; min-height: 104px; padding: 16px; }
  .hero-card-float strong { font-size: 14px; }
  .hero-card-float small { font-size: 9px; }
  .hero-stamp { display: none; }
  .split-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading { margin-bottom: 44px; }
  .section-heading h2, .author-copy h2, .faq-heading h2, .final-cta h2, .format-intro h2 { font-size: clamp(34px, 10vw, 50px); }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 280px; }
  .audience-card h3 { margin-top: 55px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card, .result-card:nth-child(4), .result-card:nth-child(5), .result-card:last-child { grid-column: auto; min-height: 230px; }
  .result-card h3 { margin-top: 42px; }
  .program-item summary { grid-template-columns: 40px 1fr 36px; gap: 12px; }
  .program-toggle { width: 34px; height: 34px; }
  .program-body { grid-template-columns: 52px 1fr; }
  .format-grid { grid-template-columns: 1fr; }
  .format-intro { min-height: 490px; }
  .format-feature { min-height: 250px; }
  .author-grid { grid-template-columns: 1fr; gap: 50px; }
  .author-placeholder { min-height: 470px; }
  .tariff-card { padding: 24px; }
  .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-heading { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

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