:root {
  --black: #050505;
  --black-2: #0b0b0b;
  --surface: #101010;
  --surface-2: #151515;
  --white: #f7f5f0;
  --muted: #b8b4aa;
  --muted-2: #77736a;
  --gold: #d8a52a;
  --gold-light: #f0c85b;
  --gold-dark: #7d5b10;
  --line: rgba(216, 165, 42, .22);
  --line-soft: rgba(255,255,255,.09);
  --shadow: 0 24px 80px rgba(0,0,0,.42);
  --radius: 22px;
  --container: 1180px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--white);
  background:
    radial-gradient(circle at 10% 12%, rgba(216,165,42,.065), transparent 28%),
    radial-gradient(circle at 92% 45%, rgba(216,165,42,.04), transparent 24%),
    var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--gold); color: #000; }

.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: #fff; color: #000; padding: 12px 18px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(800px, calc(100% - 40px)); text-align: center; }
.section { position: relative; padding: 112px 0; }

.announcement { background: var(--gold); color: #111; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.announcement__inner { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 16px; }
.announcement__divider { width: 4px; height: 4px; border-radius: 50%; background: #111; opacity: .55; }

.site-header { position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(255,255,255,.06); background: rgba(5,5,5,.82); backdrop-filter: blur(18px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 230px; height: auto; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { font-size: 13px; color: #c9c6bd; text-decoration: none; transition: color .2s ease; }
.nav__links a:hover { color: var(--gold-light); }

.button { border: 1px solid transparent; border-radius: 11px; min-height: 48px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; font-weight: 800; text-decoration: none; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #090909; background: linear-gradient(135deg, #f2ca55, #c98f0d); box-shadow: 0 12px 34px rgba(216,165,42,.2); }
.button--primary:hover { box-shadow: 0 17px 42px rgba(216,165,42,.34); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.025); }
.button--ghost:hover { border-color: var(--gold); }
.button--large { min-height: 58px; padding: 16px 27px; }
.button--small { min-height: 43px; padding: 11px 18px; font-size: 13px; }

.eyebrow, .section-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-light); }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; }
.eyebrow span { width: 28px; height: 1px; background: var(--gold); }
.section-label { margin-bottom: 16px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); letter-spacing: -.035em; line-height: .99; }
h1 { font-size: clamp(54px, 6.3vw, 92px); margin: 22px 0 28px; font-weight: 600; }
h2 { font-size: clamp(42px, 4.5vw, 68px); margin-bottom: 24px; font-weight: 600; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
h3 { line-height: 1.25; }
.section-intro { color: var(--muted); font-size: 18px; margin: 0 auto 50px; }

.hero { min-height: calc(100vh - 114px); padding: 92px 0 84px; display: flex; align-items: center; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; }
.hero__lead { max-width: 690px; color: #c3bfb5; font-size: 19px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin: 34px 0 28px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 18px; color: #a8a49b; font-size: 12px; font-weight: 700; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row svg { width: 17px; height: 17px; fill: none; stroke: var(--gold); stroke-width: 1.7; }
.hero__verse { margin: 34px 0 0; padding-left: 18px; border-left: 2px solid var(--gold); color: #a9a49a; font-family: var(--serif); font-size: 19px; font-style: italic; }
.hero__verse span { white-space: nowrap; }
.hero__visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.product-card { position: relative; width: min(460px, 88%); border: 1px solid rgba(216,165,42,.32); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow), 0 0 100px rgba(216,165,42,.08); transform: rotate(1.5deg); z-index: 2; }
.product-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 30%); pointer-events: none; }
.product-orbit { position: absolute; border: 1px solid rgba(216,165,42,.16); border-radius: 50%; }
.product-orbit--one { width: 520px; height: 520px; }
.product-orbit--two { width: 690px; height: 690px; opacity: .35; }
.floating-chip { position: absolute; z-index: 3; background: rgba(10,10,10,.9); border: 1px solid var(--line); border-radius: 999px; padding: 11px 16px; font-size: 12px; font-weight: 800; color: var(--gold-light); box-shadow: 0 12px 30px rgba(0,0,0,.35); }
.floating-chip--top { top: 65px; right: 5px; }
.floating-chip--bottom { bottom: 68px; left: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.hero__glow--one { width: 280px; height: 280px; background: rgba(216,165,42,.09); top: 10%; left: -130px; }
.hero__glow--two { width: 360px; height: 360px; background: rgba(216,165,42,.07); bottom: -160px; right: -140px; }

.proof-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: rgba(255,255,255,.015); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-strip__grid div { min-height: 115px; padding: 26px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line-soft); }
.proof-strip__grid div:last-child { border-right: 0; }
.proof-strip strong { font-family: var(--serif); font-size: 27px; color: var(--gold-light); }
.proof-strip span { color: #969289; font-size: 12px; }

.pain { background: linear-gradient(180deg, #070707, #0b0a08 55%, #070707); }
.pain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card { position: relative; min-height: 310px; padding: 34px; border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.015)); border: 1px solid var(--line-soft); overflow: hidden; }
.pain-card::after { content: ""; position: absolute; width: 180px; height: 180px; border: 1px solid var(--line); border-radius: 50%; right: -90px; bottom: -90px; }
.pain-card__number { display: block; color: var(--gold); font-family: var(--serif); font-size: 44px; line-height: 1; margin-bottom: 60px; }
.pain-card h3 { font-family: var(--serif); font-size: 28px; margin-bottom: 12px; }
.pain-card p { color: var(--muted); margin-bottom: 0; }
.statement { margin-top: 70px; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 38px 20px; }
.statement p { color: var(--muted); margin-bottom: 7px; }
.statement strong { font-family: var(--serif); font-size: clamp(28px, 4vw, 48px); font-weight: 600; }

.method__heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 80px; margin-bottom: 58px; }
.method__heading h2 { margin: 0; }
.method__heading p { color: var(--muted); font-size: 18px; margin-bottom: 6px; }
.arde-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.arde-card { min-height: 300px; display: grid; grid-template-columns: 82px 1fr; gap: 24px; padding: 34px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: linear-gradient(145deg, rgba(216,165,42,.055), rgba(255,255,255,.018)); }
.arde-card__letter { width: 72px; height: 72px; border: 1px solid var(--line); border-radius: 18px; display: grid; place-items: center; color: var(--gold-light); font-family: var(--serif); font-size: 46px; font-weight: 700; background: rgba(216,165,42,.05); }
.arde-card span { color: var(--gold-light); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.arde-card h3 { font-family: var(--serif); font-size: 29px; margin: 10px 0 13px; }
.arde-card p { color: var(--muted); margin: 0; }
.path { margin-top: 58px; padding: 30px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 18px; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(216,165,42,.03); }
.path__step { text-align: center; }
.path__step span { display: block; font-family: var(--serif); font-size: 27px; color: var(--gold-light); }
.path__step small { color: var(--muted); }
.path__arrow { color: var(--gold); font-size: 25px; }
.centered-cta { text-align: center; margin-top: 45px; }
.centered-cta small { display: block; margin-top: 12px; color: var(--muted-2); }

.modules { background: #080808; }
.module-showcase { margin: 0 auto 75px; perspective: 1200px; }
.module-covers { min-height: 530px; display: flex; align-items: center; justify-content: center; gap: 0; padding: 30px 0; }
.module-covers img { width: 250px; border-radius: 10px; box-shadow: 0 25px 60px rgba(0,0,0,.65); border: 1px solid rgba(216,165,42,.18); transition: transform .25s ease; }
.module-covers img:nth-child(1) { transform: rotate(-8deg) translateX(80px) scale(.84); z-index: 1; }
.module-covers img:nth-child(2) { transform: rotate(-4deg) translateX(38px) scale(.93); z-index: 2; }
.module-covers img:nth-child(3) { z-index: 4; transform: translateY(-10px) scale(1.05); }
.module-covers img:nth-child(4) { transform: rotate(4deg) translateX(-38px) scale(.93); z-index: 2; }
.module-covers img:nth-child(5) { transform: rotate(8deg) translateX(-80px) scale(.84); z-index: 1; }
.module-covers img:hover { z-index: 6; transform: translateY(-18px) scale(1.06); }
.curriculum { border-top: 1px solid var(--line-soft); }
.curriculum__item { display: grid; grid-template-columns: 145px 1fr; gap: 34px; padding: 28px 10px; border-bottom: 1px solid var(--line-soft); }
.curriculum__item > span { color: var(--gold); text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 800; padding-top: 7px; }
.curriculum__item h3 { font-family: var(--serif); font-size: 30px; margin: 0 0 4px; }
.curriculum__item p { color: var(--muted); margin: 0; }

.inside__grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 80px; align-items: center; }
.inside__copy p { color: var(--muted); font-size: 18px; }
.check-list { list-style: none; padding: 0; margin: 25px 0 0; }
.check-list li { position: relative; padding-left: 31px; margin: 12px 0; color: #d1cec6; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold-light); font-weight: 900; }
.inside__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: center; }
.gallery-card { border: 1px solid var(--line); border-radius: 12px; padding: 0; overflow: hidden; background: #111; cursor: zoom-in; box-shadow: 0 20px 50px rgba(0,0,0,.5); transition: transform .25s ease; }
.gallery-card:hover { transform: translateY(-10px); }
.gallery-card--offset { transform: translateY(35px); }
.gallery-card--offset:hover { transform: translateY(24px); }

.case-study { padding-top: 25px; }
.case-study__box { display: grid; grid-template-columns: 320px 1fr; gap: 65px; padding: 55px; align-items: center; border-radius: 30px; border: 1px solid var(--line); background: linear-gradient(135deg, rgba(216,165,42,.08), rgba(255,255,255,.02)); overflow: hidden; }
.case-study__visual img { border-radius: 12px; box-shadow: 0 25px 65px rgba(0,0,0,.55); }
.case-study__copy p { color: var(--muted); font-size: 18px; }
.case-study__points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 26px; }
.case-study__points span { border: 1px solid var(--line-soft); border-radius: 11px; padding: 14px 16px; color: #c8c4ba; }
.case-study__points strong { color: var(--gold-light); margin-right: 7px; }

.audience { background: #090909; }
.audience__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.audience-card { padding: 48px; border-radius: var(--radius); border: 1px solid var(--line-soft); }
.audience-card--yes { background: linear-gradient(145deg, rgba(216,165,42,.09), rgba(255,255,255,.02)); border-color: var(--line); }
.audience-card--no { background: rgba(255,255,255,.02); }
.audience-card > span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; color: var(--gold-light); }
.audience-card h2 { font-size: clamp(34px, 3.4vw, 51px); margin: 18px 0 28px; }
.audience-card ul { list-style: none; padding: 0; margin: 0; }
.audience-card li { padding: 12px 0 12px 30px; border-top: 1px solid var(--line-soft); position: relative; color: var(--muted); }
.audience-card li::before { position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.audience-card--yes li::before { content: "✓"; }
.audience-card--no li::before { content: "×"; color: #8c877d; }

.author__grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: center; }
.author__image { position: relative; }
.author__image img { width: 100%; min-height: 590px; object-fit: cover; object-position: center; border-radius: 28px; border: 1px solid var(--line); filter: saturate(.8) contrast(1.05); }
.author__image::after { content: ""; position: absolute; inset: 0; border-radius: 28px; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.78)); pointer-events: none; }
.author__caption { position: absolute; z-index: 2; left: 28px; bottom: 26px; display: flex; flex-direction: column; }
.author__caption strong { font-family: var(--serif); font-size: 28px; }
.author__caption span { color: var(--gold-light); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.author__copy p { color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--gold-light); font-weight: 800; text-decoration: none; border-bottom: 1px solid var(--gold-dark); padding-bottom: 4px; }

.testimonials { background: linear-gradient(180deg, #070707, #0c0b08, #070707); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { display: flex; flex-direction: column; min-height: 380px; padding: 32px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(255,255,255,.025); }
.testimonial__quote { font-family: var(--serif); font-size: 26px; line-height: 1.36; flex: 1; }
.testimonial__person { display: flex; align-items: center; gap: 13px; margin-top: 30px; }
.testimonial__person > span { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; color: #090909; background: var(--gold); font-weight: 900; }
.testimonial__person div { display: flex; flex-direction: column; }
.testimonial__person small { color: var(--muted-2); }
.testimonial__proof { padding: 12px 0 0; margin-top: 15px; border: 0; border-top: 1px solid var(--line-soft); background: transparent; color: var(--gold-light); text-align: left; cursor: pointer; font-weight: 700; font-size: 12px; }
.results-note { color: var(--muted-2); font-size: 11px; margin-top: 22px; text-align: center; }

.offer { padding-bottom: 70px; }
.offer__box { border: 1px solid rgba(216,165,42,.4); border-radius: 30px; overflow: hidden; background: linear-gradient(145deg, #15130d, #0b0b0b 65%); box-shadow: 0 30px 100px rgba(0,0,0,.5), 0 0 70px rgba(216,165,42,.07); }
.offer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 46px 55px; border-bottom: 1px solid var(--line); }
.offer__top h2 { margin: 15px 0 12px; }
.offer__top p { color: var(--muted); margin: 0; }
.offer__top img { width: 260px; }
.offer__content { display: grid; grid-template-columns: 1.2fr .8fr; }
.offer__includes { padding: 48px 55px; border-right: 1px solid var(--line); }
.offer__includes h3 { font-family: var(--serif); font-size: 31px; }
.offer__buy { padding: 48px 55px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.offer__badge { display: inline-block; color: var(--gold-light); background: rgba(216,165,42,.08); border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; font-size: 11px; text-transform: uppercase; letter-spacing: .11em; font-weight: 800; }
.price { display: flex; align-items: baseline; justify-content: center; color: var(--gold-light); margin: 15px 0 0; }
.price strong { font-family: var(--serif); font-size: 100px; line-height: 1; }
.price small { font-size: 23px; font-weight: 800; }
.offer__buy p { color: var(--muted); margin-bottom: 24px; }
.offer__buy .button { width: 100%; }
.secure { display: flex; align-items: center; gap: 7px; margin-top: 16px; color: var(--muted-2); font-size: 11px; }
.secure svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.guarantee { padding-top: 40px; }
.guarantee__box { display: grid; grid-template-columns: 180px 1fr; gap: 50px; align-items: center; padding: 44px 52px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: rgba(255,255,255,.018); }
.guarantee__seal { width: 160px; height: 160px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px solid var(--gold); box-shadow: inset 0 0 0 8px #0b0b0b, inset 0 0 0 9px var(--line); color: var(--gold-light); }
.guarantee__seal strong { font-family: var(--serif); font-size: 65px; line-height: .75; }
.guarantee__seal span { font-size: 10px; text-transform: uppercase; letter-spacing: .1em; margin-top: 13px; }
.guarantee__box h2 { font-size: clamp(37px, 4vw, 58px); margin-bottom: 15px; }
.guarantee__box p { color: var(--muted); margin: 0; }

.faq__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 75px; align-items: start; }
.faq__heading { position: sticky; top: 120px; }
.faq__heading p { color: var(--muted); }
.faq__heading a { color: var(--gold-light); }
.accordion details { border-bottom: 1px solid var(--line-soft); }
.accordion summary { list-style: none; cursor: pointer; padding: 25px 46px 25px 0; font-family: var(--serif); font-size: 27px; position: relative; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 6px; top: 23px; color: var(--gold); font-family: var(--sans); font-size: 23px; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { color: var(--muted); padding: 0 35px 25px 0; margin: 0; }

.final-cta { padding-top: 70px; }
.final-cta__box { position: relative; text-align: center; padding: 90px 70px; border-radius: 30px; overflow: hidden; border: 1px solid var(--line); background: linear-gradient(rgba(5,5,5,.82), rgba(5,5,5,.9)), url('assets/fernando-pregando.webp') center/cover; }
.final-cta__box::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(216,165,42,.08), transparent 58%); pointer-events: none; }
.final-cta__box > * { position: relative; z-index: 1; }
.final-cta__kicker { color: var(--gold-light); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.final-cta h2 { max-width: 900px; margin: 24px auto; }
.final-cta p { max-width: 720px; margin: 0 auto 30px; color: #c3bfb6; font-size: 18px; }
.final-cta small { display: block; margin-top: 14px; color: #a49f94; }

.footer { padding: 50px 0 120px; border-top: 1px solid var(--line-soft); background: #030303; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 30px; }
.footer__top img { width: 250px; }
.footer__links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; }
.footer__links a { color: var(--muted); font-size: 12px; text-decoration: none; }
.footer__links a:hover { color: var(--gold-light); }
.footer__bottom { border-top: 1px solid var(--line-soft); padding-top: 25px; color: #6e6b64; font-size: 10px; display: flex; flex-direction: column; gap: 4px; }
.footer__bottom p { margin: 0; }

.mobile-cta { display: none; position: fixed; z-index: 900; bottom: 0; left: 0; right: 0; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(5,5,5,.94); border-top: 1px solid var(--line); backdrop-filter: blur(16px); align-items: center; justify-content: space-between; gap: 12px; }
.mobile-cta div { display: flex; flex-direction: column; }
.mobile-cta small { color: var(--muted-2); font-size: 9px; }
.mobile-cta strong { color: var(--gold-light); font-size: 19px; }
.mobile-cta .button { min-height: 45px; padding: 11px 16px; }

.modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 35px; background: rgba(0,0,0,.9); backdrop-filter: blur(10px); }
.modal[hidden] { display: none; }
.modal img { max-height: 90vh; max-width: min(900px, 92vw); border-radius: 12px; box-shadow: 0 25px 90px rgba(0,0,0,.7); }
.modal__close { position: fixed; top: 22px; right: 28px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.25); background: #111; cursor: pointer; font-size: 28px; }

.cookie-banner { position: fixed; z-index: 3000; left: 22px; right: 22px; bottom: 22px; max-width: 980px; margin: 0 auto; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: rgba(13,13,13,.97); box-shadow: 0 20px 80px rgba(0,0,0,.6); display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-family: var(--serif); font-size: 21px; }
.cookie-banner p { color: var(--muted); font-size: 12px; margin: 4px 0 0; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-banner .button { min-height: 42px; padding: 10px 15px; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal.is-visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; background: var(--black); }
.legal-header { border-bottom: 1px solid var(--line-soft); }
.legal-header .container { min-height: 82px; display: flex; align-items: center; justify-content: space-between; }
.legal-header img { width: 230px; }
.legal-header a { text-decoration: none; }
.legal-content { width: min(850px, calc(100% - 40px)); margin: 0 auto; padding: 85px 0 120px; }
.legal-content h1 { font-size: clamp(48px, 7vw, 74px); }
.legal-content h2 { font-family: var(--serif); font-size: 34px; margin: 45px 0 15px; }
.legal-content p, .legal-content li { color: #c1bdb3; }
.legal-content a { color: var(--gold-light); }
.legal-content .updated { color: var(--muted-2); font-size: 12px; margin-bottom: 42px; }
.legal-content .notice { border: 1px solid var(--line); background: rgba(216,165,42,.04); border-radius: 14px; padding: 18px; }

@media (max-width: 980px) {
  .nav__links { display: none; }
  .hero { min-height: auto; }
  .hero__grid, .inside__grid, .author__grid, .faq__grid { grid-template-columns: 1fr; }
  .hero__copy { text-align: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions, .trust-row { justify-content: center; }
  .hero__verse { text-align: left; max-width: 700px; margin-left: auto; margin-right: auto; }
  .hero__visual { min-height: 520px; }
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .proof-strip__grid div:nth-child(2) { border-right: 0; }
  .proof-strip__grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .pain__grid, .testimonial-grid { grid-template-columns: 1fr; }
  .pain-card { min-height: auto; }
  .pain-card__number { margin-bottom: 35px; }
  .method__heading { grid-template-columns: 1fr; gap: 20px; }
  .arde-grid, .audience__grid { grid-template-columns: 1fr; }
  .path { grid-template-columns: 1fr; }
  .path__arrow { transform: rotate(90deg); text-align: center; }
  .module-covers { min-height: 440px; transform: scale(.84); margin-left: -8%; margin-right: -8%; }
  .case-study__box { grid-template-columns: 250px 1fr; gap: 35px; padding: 38px; }
  .inside__gallery { max-width: 800px; margin: 20px auto 0; }
  .offer__content { grid-template-columns: 1fr; }
  .offer__includes { border-right: 0; border-bottom: 1px solid var(--line); }
  .faq__heading { position: static; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 28px, var(--container)); }
  .section { padding: 82px 0; }
  .announcement__inner { font-size: 9px; gap: 9px; }
  .nav { min-height: 68px; }
  .brand img { width: 180px; }
  .nav > .button { display: none; }
  h1 { font-size: clamp(46px, 13vw, 65px); }
  h2 { font-size: clamp(38px, 11vw, 52px); }
  .hero { padding: 70px 0 50px; }
  .hero__grid { gap: 20px; }
  .hero__lead { font-size: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .button { width: 100%; }
  .trust-row { gap: 11px 16px; }
  .hero__visual { min-height: 440px; }
  .product-card { width: 82%; }
  .product-orbit--one { width: 390px; height: 390px; }
  .product-orbit--two { width: 500px; height: 500px; }
  .floating-chip { font-size: 9px; padding: 9px 12px; }
  .floating-chip--top { top: 38px; right: 2px; }
  .floating-chip--bottom { bottom: 35px; }
  .proof-strip__grid div { min-height: 92px; padding: 18px; }
  .proof-strip strong { font-size: 22px; }
  .pain-card, .arde-card, .audience-card { padding: 28px; }
  .arde-card { grid-template-columns: 1fr; min-height: auto; }
  .arde-card__letter { width: 62px; height: 62px; font-size: 39px; }
  .module-showcase { overflow: hidden; margin-left: -14px; margin-right: -14px; }
  .module-covers { min-height: 340px; transform: scale(.62); margin: -65px -58%; }
  .curriculum__item { grid-template-columns: 1fr; gap: 7px; }
  .inside__gallery { grid-template-columns: repeat(3, 72%); overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 15px 38px; margin-left: -14px; margin-right: -14px; }
  .gallery-card { scroll-snap-align: center; }
  .gallery-card--offset { transform: none; }
  .case-study__box { grid-template-columns: 1fr; padding: 28px; }
  .case-study__visual { max-width: 260px; margin: 0 auto; }
  .case-study__points { grid-template-columns: 1fr; }
  .author__image img { min-height: 490px; }
  .testimonial { min-height: auto; }
  .offer__top { padding: 32px 26px; flex-direction: column; align-items: flex-start; }
  .offer__top img { width: 210px; }
  .offer__includes, .offer__buy { padding: 33px 26px; }
  .price strong { font-size: 86px; }
  .guarantee__box { grid-template-columns: 1fr; text-align: center; padding: 35px 26px; }
  .guarantee__seal { margin: 0 auto; }
  .accordion summary { font-size: 23px; }
  .final-cta__box { padding: 65px 25px; }
  .footer__top { align-items: flex-start; flex-direction: column; }
  .footer__links { justify-content: flex-start; }
  .mobile-cta { display: flex; }
  .cookie-banner { left: 10px; right: 10px; bottom: 88px; flex-direction: column; align-items: stretch; }
  .cookie-banner__actions { display: grid; grid-template-columns: 1fr 1fr; }
  .modal { padding: 15px; }
}

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