/* ============================================================
   ANAGRAN · Reishi Lab · Антиоксидантный протокол #sunskin
   Промо-лендинг, май 2026
============================================================ */

/* ===== FONTS ===== */
@font-face {
  font-family: 'Canela';
  src: url('anagran fonts/Canela-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oksana Sans';
  src: url('anagran fonts/OksanaSans.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oksana Sans';
  src: url('anagran fonts/OksanaSansDemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oksana Sans';
  src: url('anagran fonts/OksanaSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oksana Sans Compressed';
  src: url('anagran fonts/OksanaSansCompressedDemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Oksana Sans Fat';
  src: url('anagran fonts/oksanasansfat.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Myriad Pro';
  src: url('anagran fonts/MyriadPro-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Myriad Pro';
  src: url('anagran fonts/MyriadPro-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== TOKENS ===== */
:root {
  /* palette — warm beige / coffee */
  --bg:           #F4ECDE;
  --bg-soft:      #F8F2E6;
  --bg-card:      #EFE5D2;
  --bg-card-deep: #E8DBC2;
  --bg-accent:    #E0D0B3;

  --ink:          #3B2F1E;
  --ink-soft:     #5A4732;
  --ink-muted:    #8A7558;
  --ink-faint:    #B8A788;

  --gold:         #A8845A;
  --gold-soft:    #C9A87B;
  --orange:       #D85F2C;
  --orange-soft:  #E89B6B;

  --border:       #D9C9AC;
  --border-soft:  #E5D8BE;

  /* type */
  --f-display:    'Canela', Georgia, 'Times New Roman', serif;
  --f-headline:   'Oksana Sans Compressed', 'Oksana Sans', Impact, sans-serif;
  --f-num:        'Oksana Sans Fat', 'Oksana Sans', Impact, sans-serif;
  --f-accent:     'Oksana Sans', system-ui, sans-serif;
  --f-body:       'Myriad Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* layout */
  --maxw:         1240px;
  --radius:       18px;
  --radius-lg:    28px;
  --pad-sec:      120px;
  --ease:         cubic-bezier(.4, 0, .2, 1);
  --tr:           .35s var(--ease);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ===== TYPOGRAPHY PRIMITIVES ===== */
.eyebrow {
  font-family: var(--f-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.h-display {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
}

.h-headline {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.05;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
}

.h-section {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--ink);
}

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 620px;
}

p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; }
strong, b { font-family: var(--f-body); font-weight: 600; color: var(--ink); }
em { font-style: normal; color: var(--ink); }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
section { padding: var(--pad-sec) 0; position: relative; }
.sec-narrow { padding: 80px 0; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(244, 236, 222, .88);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.nav__brand {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink);
}
.nav__brand small {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.nav__logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  height: 100%;
}
.nav__logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav__inner { position: relative; }
.eyebrow__promo {
  color: var(--orange);
  letter-spacing: 2px;
  padding: 2px 8px;
  border: 1px solid var(--orange);
  border-radius: 6px;
  margin: 0 4px;
  font-family: var(--f-accent);
  font-weight: 700;
}
.hero__discount-code {
  color: var(--orange);
  letter-spacing: 1.5px;
  font-weight: 700;
}
.nav__cta {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  transition: var(--tr);
}
.nav__cta:hover {
  background: var(--ink);
  color: var(--bg);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 999px;
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--tr);
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(216, 95, 44, .26);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--lg { padding: 22px 44px; font-size: 15px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy { position: relative; z-index: 2; }
.hero__eyebrow { margin-bottom: 28px; display: flex; align-items: center; gap: 14px; }
.hero__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(216, 95, 44, .18);
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(216, 95, 44, .18); }
  50% { box-shadow: 0 0 0 10px rgba(216, 95, 44, 0); }
}
.hero__title { margin-bottom: 22px; }
.hero__title em { color: var(--gold); font-style: normal; }
.hero__sub {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__discount {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--bg-soft);
}
.hero__discount-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -1px;
}
.hero__discount-txt {
  font-family: var(--f-accent);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero__discount-txt b { color: var(--ink); }

.hero__image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
}
.hero__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== SECTION HEADER ===== */
.sec-head { margin-bottom: 64px; max-width: 920px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head__eyebrow { margin-bottom: 18px; }
.sec-head__title { margin-bottom: 20px; }

/* ===== BLOCK 2: MIRROR / IMPERFECTIONS ===== */
.mirror { background: var(--bg-soft); }
.mirror__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.mirror__card {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--tr);
}
.mirror__card:hover {
  background: var(--bg-card);
  border-color: var(--border);
  transform: translateY(-3px);
}
.mirror__card-mark {
  font-family: var(--f-num);
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 10px;
  line-height: 1;
}
.mirror__card-title {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .3px;
  color: var(--ink);
  margin-bottom: 6px;
}
.mirror__card-desc {
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.mirror__bottom {
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--ink);
  line-height: 1.4;
}
.mirror__bottom em { color: var(--orange); }

/* ===== BLOCK 3: SCIENCE / OXIDATIVE STRESS ===== */
.science__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}
.science__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.science__list li {
  padding: 14px 0 14px 32px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 16px;
  color: var(--ink-soft);
  position: relative;
}
.science__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 22px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}
.science__list li:last-child { border-bottom: 0; }

.science__quote {
  background: var(--bg-card);
  border-left: 3px solid var(--orange);
  padding: 32px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 36px;
}

.science__diagram {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-card-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.science__diagram-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.science__diagram-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 26px;
  background: rgba(28, 26, 23, .82);
  backdrop-filter: blur(12px) saturate(1.4);
  border-radius: var(--radius);
  border: 1px solid rgba(244, 236, 222, .12);
  display: flex;
  align-items: center;
  gap: 22px;
}
.science__diagram-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(120px, 14vw, 200px);
  line-height: 1;
  color: var(--orange);
  letter-spacing: -4px;
}
.science__diagram-pct {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1;
  color: var(--orange-soft);
  letter-spacing: -1.5px;
  flex-shrink: 0;
}
.science__diagram-pct sup {
  font-size: .45em;
  vertical-align: top;
  margin-left: 2px;
}
.science__diagram-label {
  font-family: var(--f-accent);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244, 236, 222, .88);
  line-height: 1.45;
}

/* ===== BLOCK 4: 80% STAT ===== */
.stat {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 0;
}
.stat__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.stat__num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(180px, 22vw, 340px);
  line-height: .9;
  color: var(--orange);
  letter-spacing: -6px;
}
.stat__num sup {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: .4em;
  vertical-align: top;
  margin-left: 6px;
}
.stat__title {
  color: var(--bg);
  margin-bottom: 24px;
}
.stat__title em { color: var(--orange-soft); font-style: normal; }
.stat__text {
  color: rgba(244, 236, 222, .82);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.stat__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 0;
}
.stat__bullets li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: rgba(244, 236, 222, .9);
}
.stat__bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange-soft);
}
.stat__pull {
  margin-top: 36px;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.4;
  color: var(--bg);
  padding-left: 24px;
  border-left: 3px solid var(--orange);
}

/* ===== PROMO STRIP ===== */
.promo-strip {
  background: var(--orange);
  color: var(--bg);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.promo-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.12) 0%, transparent 50%);
  pointer-events: none;
}
.promo-strip__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 36px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.promo-strip__eyebrow {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(244, 236, 222, .75);
  margin-bottom: 6px;
}
.promo-strip__title {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: .3px;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--bg);
}
.promo-strip__code-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.promo-strip__code {
  font-family: var(--f-accent);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: 4px;
  color: var(--ink);
  background: var(--bg);
  padding: 12px 28px;
  border-radius: 10px;
  border: 2px dashed var(--ink);
  line-height: 1;
}
.promo-strip__hint {
  font-family: var(--f-accent);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244, 236, 222, .75);
  margin-top: 8px;
}
.promo-strip__cta {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--bg);
  padding: 16px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: var(--tr);
}
.promo-strip__cta:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-2px);
}

/* Final promo block */
.final__promo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0 auto 48px;
  padding: 28px 44px;
  background: rgba(244, 236, 222, .08);
  border: 1.5px dashed var(--orange-soft);
  border-radius: 18px;
}
.final__promo-label {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-soft);
}
.final__promo-code {
  font-family: var(--f-accent);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 6px;
  color: var(--bg);
  line-height: 1;
}
.final__promo-hint {
  font-family: var(--f-accent);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244, 236, 222, .55);
}

/* ===== BLOCK 5: 3 STEPS ===== */
.steps__intro { margin-bottom: 56px; }
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  overflow: hidden;
  transition: var(--tr);
}
.step:hover {
  background: var(--bg-card);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(59, 47, 30, .08);
}
.step__num {
  position: absolute;
  top: -10px; right: 20px;
  font-family: var(--f-num);
  font-size: 180px;
  line-height: 1;
  color: var(--border);
  z-index: 0;
  pointer-events: none;
}
.step__inner { position: relative; z-index: 1; }
.step__label {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.step__title {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
}
.step__product {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.step__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.step__list li {
  padding: 9px 0;
  padding-left: 18px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  border-bottom: 1px solid var(--border-soft);
}
.step__list li:last-child { border-bottom: 0; }
.step__list li::before {
  content: '·';
  position: absolute;
  left: 0; top: 6px;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
}
.step__list li strong { color: var(--ink); font-weight: 600; }
.step__why {
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin-top: 14px;
  padding-top: 18px;
  border-top: 2px solid var(--gold);
}
.steps__synergy {
  margin-top: 48px;
  text-align: center;
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.steps__synergy em { color: var(--gold); }
.steps__synergy-lead {
  display: block;
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}
.steps__synergy-body { display: block; }
.steps__synergy b {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
  padding: 0 1px;
}

/* ===== BLOCK 6: PROTOCOL 24/7 ===== */
.protocol { background: var(--bg-soft); }
.protocol__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.protocol__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.protocol__visual img { width: 100%; height: 100%; object-fit: cover; }

.protocol__steps { display: flex; flex-direction: column; gap: 22px; }
.proto-step {
  background: var(--bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
}
.proto-step__time {
  font-family: var(--f-num);
  font-size: 38px;
  line-height: 1;
  color: var(--orange);
}
.proto-step__title {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
}
.proto-step ol {
  list-style: none;
  padding: 0;
  counter-reset: pstep;
}
.proto-step ol li {
  counter-increment: pstep;
  padding: 5px 0 5px 28px;
  position: relative;
  font-size: 15px;
  color: var(--ink-soft);
}
.proto-step ol li::before {
  content: counter(pstep);
  position: absolute;
  left: 0;
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 12px;
  color: var(--gold);
  width: 20px;
  height: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 6px;
}
.proto-step--cross {
  background: var(--ink);
  color: var(--bg);
}
.proto-step--cross .proto-step__title { color: var(--bg); }
.proto-step--cross .proto-step__time { color: var(--orange-soft); }
.proto-step--cross p {
  font-size: 15px;
  color: rgba(244, 236, 222, .82);
  line-height: 1.6;
}

/* ===== BLOCK 7: INGREDIENT MAPS ===== */
.maps__product {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}
.maps__product:last-child { margin-bottom: 0; }
.maps__product--reverse { grid-template-columns: 1.3fr 1fr; }
.maps__product--reverse .maps__visual { order: 2; }
.maps__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  position: sticky;
  top: 100px;
}
.maps__visual img { width: 100%; height: 100%; object-fit: cover; }
.maps__product-num {
  font-family: var(--f-num);
  font-size: 64px;
  line-height: 1;
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.maps__product-eyebrow {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.maps__product-title {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: clamp(26px, 2.6vw, 36px);
  letter-spacing: .3px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.1;
}
.maps__product-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.maps__table {
  width: 100%;
  border-collapse: collapse;
}
.maps__table th,
.maps__table td {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  font-size: 14.5px;
  line-height: 1.55;
}
.maps__table th {
  font-family: var(--f-accent);
  font-weight: 600;
  color: var(--ink);
  width: 38%;
  padding-right: 18px;
}
.maps__table td { color: var(--ink-soft); }
.maps__price {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -.5px;
  color: var(--ink);
}
.maps__price small {
  font-family: var(--f-accent);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-left: 12px;
}
.maps__price-old {
  font-size: 22px;
  color: var(--ink-muted);
  font-weight: 400;
  margin-right: 14px;
  text-decoration: line-through;
}
.maps__price-new { color: var(--orange); }
.maps__price-note {
  display: block;
  margin-top: 10px;
  font-family: var(--f-accent);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.maps__price-note b {
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 2.5px;
}

.maps__footnote {
  margin-top: 60px;
  font-size: 13px;
  color: var(--ink-muted);
}
.maps__footnote a { color: var(--gold); text-decoration: underline; }

/* ===== BLOCK 8: REISHI HERO ===== */
.reishi {
  background: var(--bg-card-deep);
  position: relative;
  overflow: hidden;
}
.reishi__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.reishi__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}
.reishi__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reishi__visual-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px 26px;
  background: rgba(28, 26, 23, .82);
  backdrop-filter: blur(12px) saturate(1.4);
  border-radius: var(--radius);
  border: 1px solid rgba(244, 236, 222, .12);
  display: flex;
  align-items: center;
  gap: 22px;
}
.reishi__visual-badge-num {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 1;
  color: var(--orange-soft);
  letter-spacing: -1.5px;
  flex-shrink: 0;
}
.reishi__visual-badge-label {
  font-family: var(--f-accent);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(244, 236, 222, .88);
  line-height: 1.45;
}
.reishi__visual-badge-label b {
  font-family: var(--f-accent);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.reishi__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.reishi__compare-col {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 22px;
}
.reishi__compare-col--hl {
  background: var(--ink);
  color: var(--bg);
}
.reishi__compare-label {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--ink-muted);
}
.reishi__compare-col--hl .reishi__compare-label { color: var(--orange-soft); }
.reishi__compare ul { list-style: none; padding: 0; }
.reishi__compare li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--ink-soft);
  line-height: 1.5;
}
.reishi__compare-col--hl li { color: rgba(244, 236, 222, .92); }

.reishi__bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  padding: 0;
  margin-top: 28px;
}
.reishi__bullets li {
  padding-left: 28px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.reishi__bullets li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
  top: 4px;
}

/* ===== BLOCK 9: NUTRA PARALLEL ===== */
.parallel__table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.parallel__row {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  border-top: 1px solid var(--border-soft);
}
.parallel__row:first-child { border-top: 0; background: var(--ink); color: var(--bg); }
.parallel__row:first-child .parallel__cell { color: var(--bg); font-family: var(--f-headline); font-weight: 600; text-transform: uppercase; font-size: 13px; letter-spacing: 1.5px; }
.parallel__cell {
  padding: 20px 28px;
  font-size: 15px;
  color: var(--ink-soft);
  background: var(--bg-soft);
}
.parallel__cell--center {
  padding: 20px 0;
  text-align: center;
  background: var(--bg-card);
  font-family: var(--f-num);
  font-size: 22px;
  color: var(--gold);
}
.parallel__final {
  margin-top: 48px;
  text-align: center;
  font-family: var(--f-display);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.parallel__final em { color: var(--orange); }

/* ===== BLOCK 10: FAQ ===== */
.faq { background: var(--bg-soft); }
.faq__list { max-width: 880px; margin: 0 auto; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 28px 0;
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  text-transform: uppercase;
  letter-spacing: .3px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: var(--tr);
}
.faq__q:hover { color: var(--orange); }
.faq__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  position: relative;
  transition: var(--tr);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: var(--ink);
  transition: var(--tr);
}
.faq__icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.faq__icon::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.faq__item.open .faq__icon { background: var(--ink); }
.faq__item.open .faq__icon::before,
.faq__item.open .faq__icon::after { background: var(--bg); }
.faq__item.open .faq__icon::after { height: 0; }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__item.open .faq__a { max-height: 600px; }
.faq__a-inner {
  padding-bottom: 28px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 720px;
}

/* ===== BLOCK 11: FINAL CTA ===== */
.final {
  background: var(--ink);
  color: var(--bg);
  padding: 120px 0;
  text-align: center;
}
.final__eyebrow {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 22px;
}
.final__title {
  font-family: var(--f-headline);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--bg);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.final__sub {
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--orange-soft);
  margin-bottom: 56px;
}
.final__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 880px;
  margin: 0 auto 48px;
}
.final__product {
  background: rgba(244, 236, 222, .06);
  border: 1px solid rgba(244, 236, 222, .12);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: left;
}
.final__product-label {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 8px;
}
.final__product-name {
  font-size: 14px;
  color: var(--bg);
  margin-bottom: 12px;
  line-height: 1.4;
}
.final__product-price {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.3px;
  color: var(--bg);
}
.final__product-price s {
  font-size: 16px;
  color: rgba(244, 236, 222, .4);
  margin-right: 8px;
  font-weight: 400;
}
.final__total {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(32px, 3.6vw, 48px);
  letter-spacing: -.5px;
  color: var(--bg);
  margin-bottom: 12px;
}
.final__total s { color: rgba(244, 236, 222, .4); font-weight: 400; margin-right: 14px; font-size: .7em; }
.final__total b { color: var(--orange-soft); font-weight: 500; }
.final__save {
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 40px;
}
.final__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  color: var(--bg);
  padding: 24px 56px;
  border-radius: 999px;
  font-family: var(--f-accent);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: var(--tr);
}
.final__cta:hover {
  background: var(--bg);
  color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(216, 95, 44, .4);
}
.final__legal {
  margin-top: 32px;
  font-size: 12px;
  color: rgba(244, 236, 222, .5);
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.foot {
  background: var(--bg-card-deep);
  padding: 40px 0;
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
}
.foot a { color: var(--ink); text-decoration: underline; }

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1080px) {
  :root { --pad-sec: 80px; }
  .hero__inner,
  .science__grid,
  .stat__grid,
  .protocol__grid,
  .reishi__grid { grid-template-columns: 1fr; gap: 48px; }
  .maps__product,
  .maps__product--reverse { grid-template-columns: 1fr; gap: 36px; }
  .maps__product--reverse .maps__visual { order: 0; }
  .maps__visual { position: static; aspect-ratio: 16/10; }
  .reishi__visual,
  .protocol__visual,
  .hero__image { aspect-ratio: 16/11; }
  .steps__grid { grid-template-columns: 1fr; }
  .stat__bullets { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  :root { --pad-sec: 64px; }
  .container { padding: 0 20px; }
  .nav__inner { height: 56px; }
  .nav__brand { font-size: 14px; }
  .nav__cta { padding: 8px 16px; font-size: 11px; }
  .nav__logo img { height: 32px; }
  .promo-strip__inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .promo-strip__cta { justify-self: center; }
  .final__promo { padding: 22px 28px; }
  .hero { padding-top: 110px; }
  .mirror__grid { grid-template-columns: 1fr 1fr; }
  .final__products { grid-template-columns: 1fr; }
  .reishi__compare,
  .reishi__bullets { grid-template-columns: 1fr; }
  .proto-step { grid-template-columns: 1fr; gap: 12px; }
  .parallel__row { grid-template-columns: 1fr; }
  .parallel__cell--center { display: none; }
  .parallel__cell { padding: 14px 20px; }
  .parallel__row:first-child .parallel__cell { font-size: 11px; padding: 14px 20px; }

  .science__diagram-badge,
  .reishi__visual-badge {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px 18px;
    gap: 14px;
  }
  .science__diagram-pct,
  .reishi__visual-badge-num { font-size: 42px; letter-spacing: -1px; }
  .science__diagram-label,
  .reishi__visual-badge-label { font-size: 10.5px; letter-spacing: 1px; line-height: 1.35; }
  .reishi__visual-badge-label b { letter-spacing: 1px; }
}
