:root {
  --ink: #1f1719;
  --ink-soft: #5c4f52;
  --dark: #100b0d;
  --dark-2: #1a1115;
  --wine: #6e1f35;
  --wine-2: #8c2945;
  --wine-deep: #451020;
  --gold: #d8b66a;
  --gold-light: #f4dfaa;
  --cream: #f6f0e6;
  --paper: #fffdf9;
  --line: rgba(31, 23, 25, .12);
  --white-line: rgba(255, 255, 255, .13);
  --success: #2d7654;
  --danger: #9b3445;
  --price-red: #ff5461;
  --price-green: #3ddc84;
  --shadow: 0 28px 70px rgba(35, 14, 21, .18);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

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

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-dark { background: var(--dark); color: #fff; }
.section-light { background: var(--paper); }
.section-cream { background: var(--cream); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(46px, 5.4vw, 76px); font-weight: 500; margin-bottom: 24px; }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(38px, 4vw, 58px); font-weight: 500; margin-bottom: 22px; }
h3 { font-size: 25px; margin-bottom: 14px; }
em { color: var(--gold); font-style: italic; }

.topbar { background: #070506; color: #ece3d5; border-bottom: 1px solid rgba(255,255,255,.08); }
.topbar__inner { min-height: 40px; display: flex; justify-content: center; align-items: center; gap: 17px; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-align: center; }
.topbar i { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

.site-header { position: absolute; z-index: 20; width: 100%; top: 40px; left: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.site-header__inner { height: 82px; display: flex; align-items: center; justify-content: space-between; }
.brand { text-decoration: none; display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 45px; height: 45px; display: grid; place-items: center; border: 1px solid rgba(216,182,106,.65); color: var(--gold-light); font-family: Georgia, serif; border-radius: 50%; font-size: 15px; letter-spacing: .06em; }
.brand__text { display: grid; gap: 1px; }
.brand__text strong { font-size: 13px; letter-spacing: .12em; color: #fff; }
.brand__text small { font-size: 12px; color: rgba(255,255,255,.55); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 10px;
  padding: 0 25px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .035em;
  text-align: center;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--wine-2), var(--wine-deep)); box-shadow: 0 12px 30px rgba(123, 29, 55, .38), inset 0 1px rgba(255,255,255,.22); }
.button--primary:hover { box-shadow: 0 18px 38px rgba(123, 29, 55, .52), inset 0 1px rgba(255,255,255,.22); }
.button--outline { color: #fff; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.25); }
.button--outline:hover { background: rgba(255,255,255,.1); }
.button--small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button--large { min-height: 66px; padding: 0 30px; font-size: 15px; }
.button--full { width: 100%; }

.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--gold-light); font-size: 12px; font-weight: 800; letter-spacing: .16em; margin-bottom: 19px; }
.eyebrow span { width: 33px; height: 1px; background: var(--gold); }
.eyebrow--dark { color: var(--wine); }
.eyebrow--dark span { background: var(--wine); }
.eyebrow--urgent { color: #fff; }
.eyebrow__pulse { width: 9px; height: 9px; flex: 0 0 auto; border-radius: 50%; background: var(--wine-2); animation: eyebrowPulse 1.8s ease-in-out infinite; }
@keyframes eyebrowPulse {
  0% { box-shadow: 0 0 0 0 rgba(140,41,69,.6); }
  70% { box-shadow: 0 0 0 9px rgba(140,41,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(140,41,69,0); }
}

.hero { min-height: 920px; overflow: hidden; padding: 165px 0 95px; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(16,11,13,.97) 0%, rgba(16,11,13,.9) 45%, rgba(16,11,13,.72) 100%); }
.hero::after { content: ''; position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to right, transparent 0, #000 45%, #000 100%); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .22; pointer-events: none; }
.hero__glow--one { width: 520px; height: 520px; right: -90px; top: 120px; background: radial-gradient(circle, #8d2847 0, transparent 68%); }
.hero__glow--two { width: 350px; height: 350px; left: 35%; bottom: -160px; background: radial-gradient(circle, #d8b66a 0, transparent 70%); opacity: .08; }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.04fr .96fr; gap: 58px; align-items: center; }
.hero__copy { max-width: 670px; }
.hero__lead { font-size: 24px; line-height: 1.45; color: #fff; margin-bottom: 18px; max-width: 650px; }
.hero__text { color: rgba(255,255,255,.72); max-width: 640px; margin-bottom: 25px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 29px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--wine-2); font-weight: 900; }
.check-list--hero { margin-bottom: 29px; color: rgba(255,255,255,.86); gap: 9px; }
.check-list--hero li::before { color: var(--gold); }
.hero__price-card { display: inline-flex; align-items: center; gap: 26px; padding: 12px 17px; margin: 0 0 18px; border: 1px solid rgba(255,255,255,.14); border-radius: 14px; background: rgba(255,255,255,.055); backdrop-filter: blur(12px); }
.hero__price-card > div:first-child { display: grid; gap: 1px; padding-right: 25px; border-right: 1px solid rgba(255,255,255,.14); }
.price-label { color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .06em; }
.old-price { color: rgba(255,255,255,.8); text-decoration: line-through; font-size: 18px; }
.hero__price-main { display: grid; grid-template-columns: auto auto; align-items: baseline; column-gap: 11px; }
.hero__price-main > span { color: var(--gold-light); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.hero__price-main strong { grid-row: 1 / span 2; grid-column: 2; font-size: 39px; line-height: 1; color: #fff; }
.hero__price-main strong small { font-size: 16px; }
.hero__price-main > small { color: rgba(255,255,255,.55); font-size: 11px; }
.microcopy { margin: 12px 0 0; color: rgba(255,255,255,.55); font-size: 12px; }

.hero__visual { min-height: 660px; position: relative; display: grid; place-items: center; }
.seal-72 { position: absolute; z-index: 8; top: 35px; right: 8px; width: 115px; height: 115px; border-radius: 50%; display: grid; place-content: center; text-align: center; color: #20160e; background: radial-gradient(circle at 35% 30%, #fff0bb, var(--gold)); border: 5px double rgba(70,42,13,.45); box-shadow: 0 18px 40px rgba(0,0,0,.32); transform: rotate(8deg); }
.seal-72::after { content: ''; position: absolute; inset: 9px; border: 1px dashed rgba(54,35,12,.45); border-radius: 50%; }
.seal-72 strong { font-family: Georgia, serif; font-size: 44px; line-height: .85; }
.seal-72 span { font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.product-stage { width: 100%; height: 585px; position: relative; }
.book { position: absolute; border-radius: 5px 13px 13px 5px; overflow: hidden; box-shadow: 0 30px 55px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.09); animation: bookFloat 6.5s ease-in-out infinite; will-change: transform; }
.book img { width: 100%; height: 100%; object-fit: cover; display: block; }
.book:hover { animation-play-state: paused; }
.book--main { width: 300px; height: 375px; left: 30%; top: 45px; z-index: 5; --book-rot: -2deg; animation-delay: 0s; }
.book--bonus { width: 205px; height: 256px; top: 265px; z-index: 4; }
.book--bonus-one { left: 0; --book-rot: -9deg; animation-delay: .9s; }
.book--bonus-two { right: 0; --book-rot: 9deg; animation-delay: 1.8s; }

@keyframes bookFloat {
  0%, 100% { transform: translateY(0) rotate(var(--book-rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--book-rot, 0deg)); }
}
.device { position: absolute; z-index: 2; background: #171719; border: 2px solid #413b3e; box-shadow: 0 18px 35px rgba(0,0,0,.44); }
.device__screen { height: 100%; background: linear-gradient(145deg, #f7f1e8, #e4d9ca); color: #2a1e21; padding: 16px; overflow: hidden; }
.device__screen span { display: block; font-size: 7px; letter-spacing: .12em; color: var(--wine); margin-bottom: 12px; font-weight: 900; }
.device__screen b { display: block; font-size: 9px; margin: 7px 0 2px; }
.device__screen i { display: block; height: 3px; border-radius: 3px; background: rgba(31,23,25,.18); margin-bottom: 5px; }
.device--tablet { width: 220px; height: 160px; left: 24%; bottom: 3px; transform: rotate(-4deg); padding: 7px; border-radius: 10px; }
.device--tablet .device__screen { border-radius: 4px; }
.device--phone { width: 83px; height: 168px; right: 17%; bottom: 0; padding: 5px; border-radius: 14px; transform: rotate(5deg); }
.device--phone .device__screen { border-radius: 9px; padding: 12px 8px; }
.device--phone .device__screen i { height: 19px; margin-bottom: 7px; border: 1px solid rgba(31,23,25,.14); background: rgba(255,255,255,.45); }
.visual-trust { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 10px; position: relative; z-index: 10; }
.visual-trust span { font-size: 10px; color: rgba(255,255,255,.66); padding: 5px 9px; border: 1px solid rgba(255,255,255,.12); border-radius: 100px; background: rgba(255,255,255,.045); }
.visual-trust b { color: var(--gold); }

.gallery-trigger { display: flex; align-items: center; justify-content: center; gap: 8px; width: max-content; max-width: 100%; margin: 10px auto 0; padding: 0 18px; min-height: 38px; position: relative; z-index: 10; border: 1px solid rgba(255,255,255,.2); border-radius: 100px; background: rgba(255,255,255,.045); color: rgba(255,255,255,.82); font-size: 11px; font-weight: 800; letter-spacing: .04em; cursor: pointer; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.gallery-trigger:hover { background: rgba(255,255,255,.1); border-color: rgba(216,182,106,.55); transform: translateY(-1px); }
.gallery-trigger span { color: var(--gold); font-size: 12px; }

.trust-strip { background: #f8f4ed; border-bottom: 1px solid var(--line); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { min-height: 113px; padding: 21px 24px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.trust-item:first-child { border-left: 1px solid var(--line); }
.trust-item__icon { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(110,31,53,.28); border-radius: 50%; color: var(--wine); font-weight: 900; }
.trust-item strong { display: block; font-size: 15px; line-height: 1.3; }
.trust-item span { display: block; color: var(--ink-soft); font-size: 12px; line-height: 1.45; margin-top: 4px; }

.section-heading { max-width: 740px; margin-bottom: 55px; }
.section-heading--center { text-align: center; margin-inline: auto; }
.section-heading--center .eyebrow { justify-content: center; }
.section-heading p { color: var(--ink-soft); font-size: 19px; }
.section-dark .section-heading p { color: rgba(255,255,255,.65); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain-card { padding: 34px 31px 31px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 15px 45px rgba(43,28,33,.06); transition: transform .3s ease, box-shadow .3s ease; cursor: default; }
.pain-card:hover { transform: scale(1.07); box-shadow: 0 26px 60px rgba(43,28,33,.16); }
.pain-card__number { display: inline-block; color: var(--wine); font-size: 12px; font-weight: 900; letter-spacing: .13em; border-bottom: 2px solid rgba(110,31,53,.3); margin-bottom: 35px; }
.pain-card p { color: var(--ink-soft); margin-bottom: 0; }
.quote-panel { max-width: 940px; margin: 46px auto 0; padding: 32px 65px; position: relative; border-left: 4px solid var(--wine); background: linear-gradient(90deg, rgba(110,31,53,.08), transparent); }
.quote-panel > span { position: absolute; left: 20px; top: 13px; font-family: Georgia, serif; font-size: 60px; color: rgba(110,31,53,.25); }
.quote-panel p { font-family: Georgia, serif; font-size: 24px; line-height: 1.5; margin-bottom: 0; }

.mechanism { overflow: hidden; }
.mechanism::before { content: ''; position: absolute; width: 650px; height: 650px; top: -230px; right: -220px; border: 1px solid rgba(216,182,106,.15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(216,182,106,.025), 0 0 0 140px rgba(216,182,106,.018); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; z-index: 2; }
.pillar { min-height: 420px; padding: 31px; border: 1px solid var(--white-line); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.pillar--featured { border-color: rgba(216,182,106,.45); background: linear-gradient(180deg, rgba(216,182,106,.1), rgba(255,255,255,.025)); transform: translateY(-12px); }
.pillar__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; }
.pillar__top > span { color: rgba(255,255,255,.38); font-size: 13px; letter-spacing: .13em; }
.pillar__icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--gold); border: 1px solid rgba(216,182,106,.35); font-size: 25px; }
.pillar h3 { font-family: Georgia, serif; color: var(--gold-light); letter-spacing: .05em; }
.pillar p { color: rgba(255,255,255,.68); }
.pillar ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 8px; color: rgba(255,255,255,.78); font-size: 15px; }
.pillar li { padding-left: 17px; position: relative; }
.pillar li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; position: absolute; left: 0; top: 10px; }
.formula { margin-top: 35px; padding: 28px; border-radius: 17px; border: 1px solid rgba(216,182,106,.28); background: rgba(0,0,0,.18); display: flex; align-items: center; justify-content: center; gap: 19px; flex-wrap: wrap; text-align: center; }
.formula > span { color: var(--gold-light); font-size: 15px; letter-spacing: .12em; font-weight: 900; }
.formula > b { color: rgba(255,255,255,.3); }
.formula p { width: 100%; margin: 5px 0 0; color: rgba(255,255,255,.59); font-size: 14px; }

.timeline-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.timeline-copy { position: sticky; top: 50px; }
.timeline-copy p { color: var(--ink-soft); }
.ethical-note { margin-top: 30px; padding: 23px; border: 1px solid rgba(110,31,53,.2); border-radius: 14px; background: rgba(255,255,255,.5); }
.ethical-note strong, .ethical-note span { display: block; }
.ethical-note strong { color: var(--wine); margin-bottom: 5px; }
.ethical-note span { font-size: 15px; color: var(--ink-soft); }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 42px; top: 54px; bottom: 54px; width: 1px; background: linear-gradient(var(--wine), rgba(110,31,53,.15)); }
.timeline__item { position: relative; display: grid; grid-template-columns: 86px 1fr; gap: 24px; padding: 0 0 42px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker { position: relative; z-index: 2; width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid rgba(110,31,53,.28); border-radius: 50%; background: var(--cream); color: var(--wine); font-family: Georgia, serif; font-weight: 700; font-size: 23px; box-shadow: 0 0 0 9px var(--cream); }
.timeline__item > div:last-child { padding: 17px 0 0; }
.timeline__item small { color: var(--wine); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.timeline__item h3 { font-family: Georgia, serif; font-size: 30px; margin: 5px 0 9px; }
.timeline__item p { color: var(--ink-soft); margin-bottom: 0; }
.timeline__item--final .timeline__marker { color: #fff; background: var(--wine); border-color: var(--wine); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.audience-card { padding: 35px 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.audience-card--featured { background: var(--dark); color: #fff; border-color: var(--dark); transform: translateY(-12px); box-shadow: var(--shadow); }
.audience-card__icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: rgba(110,31,53,.09); color: var(--wine); font-size: 28px; margin-bottom: 25px; }
.audience-card--featured .audience-card__icon { color: var(--gold); background: rgba(216,182,106,.1); }
.audience-card h3 { font-family: Georgia, serif; font-size: 27px; min-height: 60px; }
.audience-card .check-list { font-size: 16px; color: var(--ink-soft); }
.audience-card--featured .check-list { color: rgba(255,255,255,.7); }
.audience-card--featured .check-list li::before { color: var(--gold); }
.responsibility-note { margin: 40px auto 0; max-width: 900px; text-align: center; font-size: 14px; color: var(--ink-soft); padding: 17px 23px; border-radius: 12px; background: #f5eee9; }

.products { overflow: hidden; }
.products::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 20% 25%, rgba(122,31,56,.16), transparent 25%), radial-gradient(circle at 80% 80%, rgba(216,182,106,.08), transparent 28%); }
.products .container { position: relative; z-index: 2; }
.product-row { display: grid; grid-template-columns: 190px 1fr 170px; gap: 35px; align-items: center; padding: 34px; border: 1px solid var(--white-line); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.product-row__visual { display: grid; place-items: center; }
.mini-cover { position: relative; overflow: hidden; border-radius: 3px 10px 10px 3px; border: 1px solid rgba(216,182,106,.35); box-shadow: 0 20px 35px rgba(0,0,0,.35); background: #0b0708; }
.mini-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mini-cover--main { width: 145px; height: 181px; }
.mini-cover--bonus-one, .mini-cover--bonus-two { width: 100px; height: 125px; flex: 0 0 auto; }
.product-tag { display: inline-block; color: var(--gold); font-size: 11px; font-weight: 900; letter-spacing: .14em; margin-bottom: 10px; }
.product-row__content h3 { font-family: Georgia, serif; font-size: 35px; color: #fff; }
.product-row__content > p { color: rgba(255,255,255,.65); }
.feature-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 22px; }
.feature-columns .check-list { color: rgba(255,255,255,.76); font-size: 14px; gap: 7px; }
.feature-columns .check-list li::before { color: var(--gold); }
.product-row__price { text-align: right; border-left: 1px solid var(--white-line); padding-left: 28px; }
.product-row__price span { display: block; color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .1em; }
.product-row__price strong { display: block; color: var(--price-red); font-size: 27px; margin: 5px 0 14px; text-decoration: line-through; text-decoration-thickness: 2px; }
.product-row__price b { display: inline-block; background: rgba(216,182,106,.12); border: 1px solid rgba(216,182,106,.28); color: var(--gold-light); padding: 5px 9px; border-radius: 100px; font-size: 10px; letter-spacing: .08em; }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
.bonus-card { padding: 29px; border: 1px solid var(--white-line); border-radius: var(--radius); background: rgba(255,255,255,.035); }
.bonus-card__head { display: flex; align-items: center; gap: 22px; margin-bottom: 23px; }
.bonus-card h3 { font-family: Georgia, serif; color: #fff; font-size: 30px; }
.bonus-card > p { color: rgba(255,255,255,.65); }
.bonus-card .check-list { color: rgba(255,255,255,.74); font-size: 14px; }
.bonus-card .check-list li::before { color: var(--gold); }
.bonus-card__price { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-top: 22px; margin-top: 23px; border-top: 1px solid var(--white-line); }
.bonus-card__price span { color: rgba(255,255,255,.5); font-size: 13px; }
.bonus-card__price span s { color: var(--price-red); font-weight: 800; text-decoration-thickness: 2px; }
.bonus-card__price strong { color: var(--price-green); font-size: 15px; }

.offer-section { background: linear-gradient(180deg, #f8f4ed, #fff); }
.offer-box { display: grid; grid-template-columns: 1fr 390px; border: 1px solid rgba(110,31,53,.17); border-radius: 28px; background: #fff; box-shadow: var(--shadow); overflow: hidden; }
.offer-box__content { padding: 58px 58px 50px; }
.offer-box__content h2 { font-size: 44px; }
.offer-items { display: grid; gap: 10px; margin-top: 29px; }
.offer-items > div { display: flex; align-items: center; gap: 15px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 11px; }
.offer-items > div > span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(45,118,84,.1); color: var(--success); font-weight: 900; }
.offer-items p { margin-bottom: 0; line-height: 1.35; }
.offer-items strong, .offer-items small { display: block; }
.offer-items strong { font-size: 15px; }
.offer-items small { color: var(--ink-soft); margin-top: 3px; }
.offer-box__checkout { display: flex; flex-direction: column; justify-content: center; padding: 45px 35px; color: #fff; background: radial-gradient(circle at 50% 0, rgba(216,182,106,.15), transparent 35%), linear-gradient(155deg, #2a1119, #100b0d 70%); text-align: center; }
.offer-box__label { color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .15em; font-weight: 900; }
.offer-sum { display: flex; align-items: baseline; justify-content: center; flex-wrap: wrap; gap: 5px 7px; margin: 6px 0 18px; }
.offer-sum s { color: var(--price-red); font-size: 17px; font-weight: 800; text-decoration-thickness: 2px; }
.offer-sum b { color: rgba(255,255,255,.32); font-weight: 700; font-size: 15px; }
.offer-sum s.offer-sum__total { font-size: 23px; }
.offer-box__today { color: var(--gold-light); font-size: 11px; letter-spacing: .13em; font-weight: 900; }
.offer-price { display: flex; justify-content: center; align-items: flex-start; line-height: 1; margin: 8px 0 13px; }
.offer-price small, .offer-price strong, .offer-price sup { color: var(--price-green); animation: priceBlink 1.7s ease-in-out infinite; }
.offer-price small { font-size: 20px; margin: 14px 5px 0 0; animation-delay: 0s; }
.offer-price strong { font-family: Georgia, serif; font-size: 88px; letter-spacing: -.07em; animation-delay: .35s; }
.offer-price sup { font-size: 31px; margin-top: 11px; animation-delay: .7s; }

@keyframes priceBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}
.payment-note { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .08em; margin-bottom: 22px; }
.checkout-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 13px; margin-top: 14px; color: rgba(255,255,255,.55); font-size: 10px; }

.guarantee__grid { display: grid; grid-template-columns: 310px 1fr; gap: 80px; align-items: center; }
.guarantee__seal { width: 255px; height: 255px; display: grid; place-content: center; justify-items: center; border-radius: 50%; color: var(--wine-deep); border: 4px double var(--wine); background: radial-gradient(circle, #fff 0, #f2e8d6 70%); box-shadow: 0 0 0 12px rgba(110,31,53,.07), 0 25px 50px rgba(50,31,35,.15); transform: rotate(-5deg); }
.guarantee__seal span { font-size: 12px; letter-spacing: .16em; font-weight: 900; }
.guarantee__seal strong { font-family: Georgia, serif; font-size: 84px; line-height: .88; }
.guarantee__seal b { font-size: 18px; letter-spacing: .15em; }
.guarantee__seal small { margin-top: 9px; padding-top: 7px; border-top: 1px solid rgba(110,31,53,.25); font-size: 9px; letter-spacing: .12em; }
.guarantee__content { max-width: 690px; }
.guarantee__content p { color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 13px; color: var(--wine); font-weight: 900; font-size: 13px; letter-spacing: .05em; text-decoration: none; border-bottom: 1px solid rgba(110,31,53,.3); padding-bottom: 4px; }

.ethics__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.ethics__copy p { color: var(--ink-soft); font-size: 20px; }
.ethics__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.ethics-card { padding: 29px; border-radius: var(--radius); border: 1px solid var(--line); }
.ethics-card h3 { font-family: Georgia, serif; font-size: 26px; }
.ethics-card ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.ethics-card li { padding-left: 25px; position: relative; font-size: 15px; color: var(--ink-soft); }
.ethics-card li::before { position: absolute; left: 0; font-weight: 900; }
.ethics-card--no { background: #fbf2f2; }
.ethics-card--no h3 { color: var(--danger); }
.ethics-card--no li::before { content: '×'; color: var(--danger); }
.ethics-card--yes { background: #f1f8f4; }
.ethics-card--yes h3 { color: var(--success); }
.ethics-card--yes li::before { content: '✓'; color: var(--success); }

.faq__grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.faq__intro { position: sticky; top: 50px; }
.faq__intro p { color: rgba(255,255,255,.6); }
.accordion { border-top: 1px solid var(--white-line); }
.accordion__item { border-bottom: 1px solid var(--white-line); }
.accordion__trigger { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 0; color: #fff; background: transparent; border: 0; text-align: left; font-weight: 700; cursor: pointer; }
.accordion__trigger span { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(216,182,106,.33); border-radius: 50%; color: var(--gold); transition: transform .25s ease; }
.accordion__trigger[aria-expanded="true"] span { transform: rotate(45deg); }
.accordion__content { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.accordion__content > p { min-height: 0; overflow: hidden; color: rgba(255,255,255,.63); margin: 0; padding-right: 45px; }
.accordion__item.is-open .accordion__content { grid-template-rows: 1fr; }
.accordion__item.is-open .accordion__content > p { padding-bottom: 25px; }

.final-cta { position: relative; overflow: hidden; padding: 110px 0; text-align: center; }
.final-cta__glow { position: absolute; width: 800px; height: 500px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 50%; background: radial-gradient(circle, rgba(127,32,58,.3), transparent 68%); }
.final-cta__inner { position: relative; z-index: 2; max-width: 850px; }
.final-cta .eyebrow { justify-content: center; }
.final-cta p { color: rgba(255,255,255,.66); font-size: 21px; }
.final-cta__offer { display: flex; justify-content: center; align-items: center; gap: 30px; margin: 30px 0 22px; }
.final-cta__offer > div { display: grid; }
.final-cta__offer > div + div { padding-left: 30px; border-left: 1px solid var(--white-line); }
.final-cta__offer span { color: rgba(255,255,255,.45); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.final-cta__offer s { color: rgba(255,255,255,.55); font-size: 21px; }
.final-cta__offer strong { color: var(--gold-light); font-size: 42px; line-height: 1.1; }
.final-cta .microcopy { font-size: 12px; }

.footer { padding: 55px 0 100px; background: #080607; color: rgba(255,255,255,.55); font-size: 13px; }
.footer__grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 45px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.brand--footer { margin-bottom: 17px; }
.footer__grid p { max-width: 420px; margin-bottom: 0; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: flex-end; }
.footer__links a { text-decoration: none; }
.footer__links a:hover { color: #fff; }
.footer__legal { padding-top: 28px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.footer__legal p { margin-bottom: 0; }
.footer__legal p:first-child { max-width: 760px; }

.mobile-buybar { display: none; }
.toast { position: fixed; z-index: 999; right: 20px; bottom: 20px; max-width: 390px; padding: 17px 20px; border-radius: 12px; background: #fff; color: var(--ink); box-shadow: 0 20px 55px rgba(0,0,0,.25); border-left: 4px solid var(--wine); transform: translateY(150%); opacity: 0; transition: transform .3s ease, opacity .3s ease; }
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast strong, .toast span { display: block; }
.toast span { color: var(--ink-soft); font-size: 13px; margin-top: 3px; }
.toast code { color: var(--wine); }

.cover-gallery { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.cover-gallery.is-open { display: flex; }
.cover-gallery__backdrop { position: absolute; inset: 0; background: rgba(8,5,6,.88); backdrop-filter: blur(6px); }
.cover-gallery__box { position: relative; z-index: 2; width: min(100%, 420px); max-height: calc(100vh - 48px); overflow-y: auto; display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 34px 26px 26px; border-radius: 24px; border: 1px solid rgba(216,182,106,.25); background: linear-gradient(165deg, #1a1115, #0b0708); box-shadow: 0 40px 90px rgba(0,0,0,.55); }
.cover-gallery__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.05); color: #fff; font-size: 14px; cursor: pointer; }
.cover-gallery__close:hover { background: rgba(255,255,255,.12); }
.cover-gallery__nav { position: absolute; top: 130px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); background: rgba(20,14,16,.75); color: #fff; font-size: 22px; line-height: 1; cursor: pointer; z-index: 3; }
.cover-gallery__nav:hover { background: rgba(216,182,106,.25); border-color: rgba(216,182,106,.5); }
.cover-gallery__nav--prev { left: 4px; }
.cover-gallery__nav--next { right: 4px; }
.cover-gallery__stage { width: 100%; max-width: 260px; aspect-ratio: 1122 / 1402; border-radius: 6px 14px 14px 6px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,.5); }
.cover-gallery__stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-gallery__caption { text-align: center; }
.cover-gallery__caption strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 20px; }
.cover-gallery__caption span { display: block; margin-top: 4px; color: var(--gold); font-size: 11px; letter-spacing: .14em; font-weight: 800; }
.cover-gallery__thumbs { display: flex; gap: 10px; }
.cover-gallery__thumb { width: 50px; height: 62px; padding: 0; border-radius: 3px 8px 8px 3px; border: 1px solid rgba(255,255,255,.18); overflow: hidden; cursor: pointer; opacity: .55; background: none; transition: opacity .2s ease, border-color .2s ease; }
.cover-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-gallery__thumb.is-active, .cover-gallery__thumb:hover { opacity: 1; border-color: var(--gold); }

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

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

@media (max-width: 1050px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 780px; }
  .hero__visual { min-height: 620px; }
  .product-stage { max-width: 670px; margin-inline: auto; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(3) { border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
  .trust-item:nth-child(4) { border-top: 1px solid var(--line); }
  .timeline-grid, .ethics__grid, .faq__grid { grid-template-columns: 1fr; gap: 50px; }
  .timeline-copy, .faq__intro { position: static; }
  .product-row { grid-template-columns: 155px 1fr; }
  .product-row__price { grid-column: 1 / -1; text-align: left; border-left: 0; border-top: 1px solid var(--white-line); padding: 20px 0 0; display: flex; align-items: center; gap: 14px; }
  .product-row__price strong { margin: 0; }
  .offer-box { grid-template-columns: 1fr; }
  .offer-box__checkout { padding: 45px; }
}

@media (max-width: 820px) {
  body { font-size: 17px; }
  .section { padding: 82px 0; }
  .topbar__inner { gap: 9px; font-size: 9px; }
  .site-header { top: 40px; }
  .site-header .button { display: none; }
  .hero { padding-top: 150px; }
  .hero__visual { min-height: 565px; }
  .product-stage { transform: scale(.9); transform-origin: center top; margin-bottom: -20px; }
  .pain-grid, .pillars, .audience-grid, .bonus-grid { grid-template-columns: 1fr; }
  .pillar--featured, .audience-card--featured { transform: none; }
  .timeline-grid { gap: 45px; }
  .guarantee__grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
  .guarantee__seal { margin-inline: auto; }
  .guarantee__content .eyebrow { justify-content: center; }
  .ethics__cards { grid-template-columns: 1fr; }
  .footer__grid { display: grid; }
  .footer__links { justify-content: flex-start; }
  .footer__legal { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 640px) {
  :root { --radius: 17px; }
  body { font-size: 16px; padding-bottom: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  h1 { font-size: clamp(42px, 13vw, 57px); }
  h2 { font-size: clamp(34px, 10vw, 44px); }
  .section { padding: 70px 0; }
  .topbar { overflow: hidden; }
  .topbar__inner { min-height: 38px; width: max-content; font-size: 8px; padding-inline: 12px; }
  .topbar__inner span:nth-of-type(2), .topbar__inner i:nth-of-type(2) { display: none; }
  .site-header { top: 38px; }
  .site-header__inner { height: 72px; }
  .brand__text strong { font-size: 11px; }
  .brand__text small { font-size: 10px; }
  .brand__mark { width: 40px; height: 40px; }
  .hero { min-height: auto; padding: 133px 0 60px; }
  .hero__grid { gap: 30px; }
  .hero__lead { font-size: 21px; }
  .hero__text { font-size: 16px; }
  .hero__price-card { width: 100%; justify-content: space-between; gap: 12px; }
  .hero__price-card > div:first-child { padding-right: 12px; }
  .hero__price-main strong { font-size: 34px; }
  .hero .button--large { width: 100%; }
  .hero__visual { min-height: 430px; margin-top: 15px; }
  .product-stage { width: 650px; left: 50%; transform: translateX(-50%) scale(.63); transform-origin: center top; margin-bottom: -150px; }
  .seal-72 { top: 10px; right: 0; width: 90px; height: 90px; }
  .seal-72 strong { font-size: 34px; }
  .visual-trust { margin-top: 0; }
  .trust-strip__grid { grid-template-columns: 1fr; }
  .trust-item, .trust-item:first-child, .trust-item:nth-child(3) { border-left: 0; border-right: 0; border-top: 1px solid var(--line); min-height: 92px; padding: 16px 5px; }
  .trust-item:first-child { border-top: 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading p { font-size: 17px; }
  .pain-card { padding: 27px 24px; }
  .quote-panel { padding: 27px 24px 27px 48px; }
  .quote-panel > span { left: 12px; }
  .quote-panel p { font-size: 20px; }
  .pillar { min-height: auto; padding: 26px 23px; }
  .pillar__top { margin-bottom: 38px; }
  .formula { gap: 10px; }
  .formula > span { font-size: 11px; }
  .timeline::before { left: 30px; }
  .timeline__item { grid-template-columns: 62px 1fr; gap: 17px; padding-bottom: 35px; }
  .timeline__marker { width: 62px; height: 62px; font-size: 18px; box-shadow: 0 0 0 7px var(--cream); }
  .timeline__item > div:last-child { padding-top: 7px; }
  .timeline__item h3 { font-size: 26px; }
  .audience-card h3 { min-height: auto; }
  .product-row { grid-template-columns: 1fr; text-align: left; padding: 25px; }
  .product-row__content h3 { font-size: 30px; }
  .feature-columns { grid-template-columns: 1fr; gap: 8px; }
  .product-row__price { grid-column: auto; flex-wrap: wrap; }
  .bonus-card { padding: 23px; }
  .bonus-card__head { align-items: flex-start; }
  .bonus-card h3 { font-size: 26px; }
  .bonus-card__price { align-items: flex-start; flex-direction: column; }
  .offer-box__content { padding: 36px 23px; }
  .offer-box__content h2 { font-size: 36px; }
  .offer-box__checkout { padding: 36px 23px; }
  .offer-price strong { font-size: 78px; }
  .guarantee__seal { width: 220px; height: 220px; }
  .ethics-card { padding: 24px; }
  .accordion__trigger { font-size: 15px; }
  .final-cta { padding: 78px 0; }
  .final-cta__offer { gap: 20px; }
  .final-cta__offer > div + div { padding-left: 20px; }
  .final-cta__offer strong { font-size: 34px; }
  .final-cta .button { width: 100%; }
  .footer { padding-bottom: 50px; }
  .mobile-buybar { position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 14px; background: rgba(11,7,8,.96); border-top: 1px solid rgba(255,255,255,.13); backdrop-filter: blur(12px); }
  .mobile-buybar > div { display: grid; line-height: 1.1; }
  .mobile-buybar s { color: rgba(255,255,255,.45); font-size: 11px; }
  .mobile-buybar strong { color: var(--gold-light); font-size: 21px; }
  .mobile-buybar .button { min-height: 49px; padding-inline: 16px; font-size: 11px; }
  .toast { left: 14px; right: 14px; bottom: 90px; }
}
