/*
 * landing-showcase.css
 * MEO Dashboard deep-dive — premium long-form storytelling layout.
 * Designed for retention: tight reading width, slow rhythm, cinematic crisis section.
 */

:root {
  --bg:            #FDFCF8;
  --bg-soft:       #F5F4EF;
  --bg-card: #FFFFFF;
  --ink:           #111111;
  --ink-soft:      #444444;
  --ink-muted:     #666666;
  --gold:          #C59A63;
  --gold-deep:     #A67E4E;
  --rule: rgba(26, 26, 26, 0.10);
  --rule-soft: rgba(26, 26, 26, 0.06);

  --font-serif:    var(--font-sans);
  --font-sans: "Inter", "Inter Fallback", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --shadow-sm:     0 2px 8px rgba(0,0,0,0.03), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md:     0 10px 30px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.02);
    --shadow-lg:     0 20px 40px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.03);

  --maxw: 1180px;
  --readw: 68ch;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:          #141414;
    --bg-soft:     #1C1C1C;
    --bg-card:     #222222;
    --ink:         #F8F8F8;
    --ink-soft:    #CCCCCC;
    --ink-muted:   #999999;
    --gold-deep: #E0B687;
    --rule: rgba(240, 240, 240, 0.10);
    --rule-soft: rgba(240, 240, 240, 0.05);
  }
}

:root[data-theme="dark"] {
  --bg:          #141414;
  --bg-soft:     #1C1C1C;
  --bg-card:     #222222;
  --ink:         #F8F8F8;
  --ink-soft:    #CCCCCC;
  --ink-muted:   #999999;
  --gold-deep: #E0B687;
  --rule: rgba(240, 240, 240, 0.10);
  --rule-soft: rgba(240, 240, 240, 0.05);
}

/* ============ BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-wrap: balance;
  margin: 0;
}
p { margin: 0; text-wrap: pretty; }
em { font-style: italic; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.read { max-width: var(--readw); margin: 0 auto; padding: 0 28px; }

/* ============ TOPBAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { font-weight: 600; font-size: 18px; letter-spacing: -0.02em; display: inline-flex; align-items: center; gap: 8px; color: var(--ink); }
.top-nav { display: flex; gap: 28px; align-items: center; font-size: 14px; color: var(--ink-soft); font-weight: 500; }
.top-nav a.active { color: var(--ink); font-weight: 600; }
.top-cta { padding: 9px 16px; font-size: 14px; font-weight: 500; border: 1px solid var(--ink); color: var(--ink); border-radius: 999px; }
.lang-dd { position: relative; display: flex; align-items: center; }
.lang-dd-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--rule);
  border-radius: 999px; padding: 0 12px; height: 38px;
  cursor: pointer; color: var(--ink-soft);
}
.lang-dd-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--bg-card); border: 1px solid var(--rule);
  border-radius: 12px; padding: 6px; min-width: 160px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.lang-dd-menu.show { display: block; }
.lang-dd-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px; font-size: 14px; color: var(--ink-soft);
}
.lang-dd-item:hover { background: var(--bg-soft); color: var(--ink); }
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--rule); background: transparent; color: var(--ink-soft);
  display: inline-grid; place-items: center; cursor: pointer; padding: 0; position: relative;
}
.theme-toggle svg { width: 15px; height: 15px; position: absolute; }
.theme-toggle .i-sun { opacity: 0; }
.theme-toggle .i-moon { opacity: 1; }
:root[data-theme="dark"] .theme-toggle .i-sun { opacity: 1; }
:root[data-theme="dark"] .theme-toggle .i-moon { opacity: 0; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle .i-sun { opacity: 1; }
  :root:not([data-theme="light"]) .theme-toggle .i-moon { opacity: 0; }
}

/* ============ READING PROGRESS BAR ============ */
.read-progress {
  position: fixed; top: 64px; left: 0;
  height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-deep));
  z-index: 60; transition: width 0.1s linear;
  pointer-events: none;
}

/* ============ HERO ============ */
.hero {
  padding: clamp(72px, 11vw, 140px) 0 clamp(48px, 7vw, 80px);
  position: relative;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 28px;
}.hero h1 {
  font-size: clamp(40px, 6.2vw, 76px);
  margin-bottom: 32px;
  max-width: 22ch;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic; font-weight: 400; color: var(--gold-deep);
}
.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
  margin-bottom: 40px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-meta {
  font-size: 13px; color: var(--ink-muted); letter-spacing: 0.04em;
  padding-top: 24px; border-top: 1px solid var(--rule-soft);
  display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: center;
}
.hero-meta span { white-space: nowrap; }
.hero-meta .dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); display: inline-block;
}

/* ============ SUMMARY TABLE ============ */
.summary {
  padding: 0 0 clamp(56px, 8vw, 96px);
}
.summary-wrap {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 12px 40px -16px rgba(0,0,0,0.06);
}
.summary-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 24px;
}
.summary-rows { display: grid; gap: 0; }
.summary-row {
  display: grid;
  grid-template-columns: 1.1fr auto 1fr;
  gap: 20px; align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--rule-soft);
}
.summary-row:first-child { border-top: 0; }
.summary-label {
  font-size: 13px; color: var(--ink-muted);
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500;
}
.summary-from { color: var(--ink-muted); font-size: 16px; }
.summary-arrow { color: var(--gold-deep); font-weight: 600; }
.summary-to {
  color: var(--ink); font-weight: 600; font-size: 17px;
  font-feature-settings: "tnum";
}
@media (max-width: 720px) {
  .summary-row {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
  .summary-arrow { display: none; }
}

/* ============ SECTION BASE ============ */
.section {
  padding: clamp(56px, 9vw, 120px) 0;
  position: relative;
}
.section + .section { border-top: 1px solid var(--rule-soft); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 24px;
}
.section-eyebrow .num {
  font-feature-settings: "tnum";
  color: var(--ink-muted);
  font-weight: 500;
}
.section h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  max-width: 24ch;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.section h2 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.prose p {
  font-size: clamp(17px, 1.2vw, 18.5px);
  color: var(--ink-soft);
  line-height: 1.78;
  margin-bottom: 1.1em;
  max-width: var(--readw);
}
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--ink); font-weight: 600; }
.prose ul {
  max-width: var(--readw);
  margin: 0 0 1.4em;
  padding: 0;
  list-style: none;
}
.prose ul li {
  font-size: clamp(17px, 1.2vw, 18.5px);
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 8px 0 8px 28px;
  position: relative;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 19px;
  width: 14px; height: 1px; background: var(--gold);
}
.prose ul li strong { color: var(--ink); font-weight: 600; }

/* ============ DECISIONS LOG ============ */
.decisions {
  background: var(--bg-soft);
  padding: clamp(72px, 11vw, 140px) 0;
}
.decisions-intro {
  max-width: var(--readw);
  margin: 0 auto clamp(48px, 6vw, 72px);
  padding: 0 28px;
  text-align: center;
}
.decisions-intro .section-eyebrow { justify-content: center; }
.decisions-intro h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  margin: 0 auto 20px;
  text-align: center;
}
.decisions-intro p {
  font-size: clamp(17px, 1.3vw, 19px);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 56ch;
  margin: 0 auto;
}

.decision {
  max-width: 920px;
  margin: 0 auto clamp(56px, 8vw, 88px);
  padding: 0 28px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: start;
}
.decision:last-child { margin-bottom: 0; }
.decision-num {
  position: sticky; top: 90px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 200;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.decision-num::after {
  content: ""; display: block;
  width: 32px; height: 1px;
  background: var(--gold-deep); margin-top: 18px;
}
.decision-body h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  line-height: 1.25;
  max-width: 24ch;
}
.decision-body h3 em { font-style: italic; color: var(--gold-deep); font-weight: 400; }

.dec-block { margin-bottom: 24px; }
.dec-block:last-child { margin-bottom: 0; }
.dec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-muted);
  margin-bottom: 8px;
  display: inline-block;
}
.dec-block.dec-hindsight .dec-label { color: var(--gold-deep); }
.dec-block p {
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.72;
  margin-bottom: 0.8em;
}
.dec-block p:last-child { margin-bottom: 0; }
.dec-block p strong { color: var(--ink); font-weight: 600; }
.dec-block ol {
  font-size: 16.5px; color: var(--ink-soft); line-height: 1.72;
  margin: 0; padding-left: 22px;
}
.dec-block ol li { padding: 4px 0; }
.dec-block ol li strong { color: var(--ink); }

.dec-block.dec-hindsight {
  background: rgba(212, 165, 116, 0.08);
  border-left: 2px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
}

@media (max-width: 720px) {
  .decision { grid-template-columns: 1fr; gap: 12px; }
  .decision-num { position: static; font-size: 56px; }
  .decision-num::after { display: none; }
}

/* ============ CRISIS SECTION (cinematic, dark) ============ */
.crisis {
  background: #0F1419;
  color: #F0F0F0;
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
}
.crisis::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(212, 165, 116, 0.08), transparent 60%);
  pointer-events: none;
}
.crisis-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.crisis .section-eyebrow { color: var(--gold); }
.crisis .section-eyebrow .num { color: rgba(240,240,240,0.5); }
.crisis h2 {
  color: #F0F0F0;
  font-size: clamp(32px, 4.6vw, 52px);
  letter-spacing: -0.025em;
  margin-bottom: 56px;
  line-height: 1.1;
}
.crisis h2 em { color: var(--gold); font-style: italic; font-weight: 400; }

.crisis-paragraph {
  font-size: clamp(19px, 1.7vw, 23px);
  color: #E8E8E8;
  line-height: 1.55;
  margin: 0 0 1.4em;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.crisis-paragraph.lead {
  font-size: clamp(22px, 2vw, 28px);
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.6em;
}
.crisis-paragraph.beat {
  font-size: clamp(18px, 1.5vw, 21px);
  color: #C8C8C8;
  margin-bottom: 0.7em;
}
.crisis-paragraph strong { color: #FFFFFF; font-weight: 600; }

.crisis-divider {
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 40px 0;
}
.crisis-pullquote {
  font-size: clamp(24px, 2.8vw, 36px);
  color: #FFFFFF;
  font-weight: 500;
  line-height: 1.35;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
  margin: 40px 0;
  font-style: italic;
  letter-spacing: -0.015em;
}
.crisis-aside {
  font-size: 15px;
  color: rgba(240, 240, 240, 0.55);
  font-style: italic;
  margin-top: 24px;
}
.crisis-lesson {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(240, 240, 240, 0.12);
}
.crisis-lesson-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.crisis-lesson p {
  font-size: clamp(18px, 1.5vw, 22px);
  color: #E8E8E8;
  line-height: 1.55;
  margin-bottom: 0.6em;
}
.crisis-lesson p em { color: var(--gold); font-style: italic; }

/* ============ MISTAKE SECTION (intimate, narrow) ============ */
.mistake .section-inner {
  max-width: 720px; margin: 0 auto; padding: 0 28px;
}
.mistake h2 { margin-bottom: 32px; }
.mistake .lessons {
  margin-top: 32px;
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 28px 32px;
}
.mistake .lessons-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 14px;
}
.mistake .lessons ol {
  margin: 0; padding-left: 22px;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.mistake .lessons ol li { padding: 5px 0; }
.mistake .lessons ol li strong { color: var(--ink); }

/* ============ TRUST SECTION (why renew 4 years) ============ */
.trust { background: var(--bg-soft); }
.trust .section-inner {
  max-width: 820px; margin: 0 auto; padding: 0 28px;
}
.trust h2 { margin-bottom: 28px; max-width: 28ch; }
.trust .lead {
  font-size: clamp(18px, 1.4vw, 20px);
  color: var(--ink-soft);
  margin-bottom: 36px;
  line-height: 1.7;
}
.trust-reasons { display: grid; gap: 20px; margin-bottom: 36px; }
.trust-reason {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px; align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 24px 28px;
}
.trust-reason-num {
  font-size: 34px; font-weight: 200; color: var(--gold-deep);
  line-height: 1; font-feature-settings: "tnum";
}
.trust-reason h3 {
  font-size: 19px; font-weight: 600; margin-bottom: 8px;
  line-height: 1.35; letter-spacing: -0.02em;
}
.trust-reason p {
  font-size: 16px; color: var(--ink-soft); line-height: 1.65;
  margin: 0; font-style: italic;
}
.trust-conclusion {
  text-align: center;
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.4;
  padding: 28px 0 0;
  letter-spacing: -0.02em;
}
.trust-conclusion em { color: var(--gold-deep); font-style: italic; font-weight: 500; }

/* ============ NUMBERS TABLE ============ */
.numbers .section-inner {
  max-width: 920px; margin: 0 auto; padding: 0 28px;
}
.numbers-table {
  width: 100%; border-collapse: collapse;
  margin-top: 32px;
  font-feature-settings: "tnum";
}
.numbers-table thead th {
  text-align: left; font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 14px 16px; border-bottom: 1px solid var(--rule);
}
.numbers-table tbody td {
  padding: 18px 16px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  vertical-align: top;
}
.numbers-table tbody tr:last-child td { border-bottom: 0; }
.numbers-table tbody td:first-child { color: var(--ink); font-weight: 500; width: 40%; }
.numbers-table tbody td:last-child { color: var(--ink); font-weight: 600; }
.numbers-table tbody td.metric-up { color: var(--gold-deep); font-weight: 700; }
.numbers-footnote {
  margin-top: 28px;
  font-size: 14px;
  color: var(--ink-muted);
  font-style: italic;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .numbers-table thead { display: none; }
  .numbers-table tbody tr {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 6px 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--rule-soft);
  }
  .numbers-table tbody td { padding: 2px 0; border: 0; font-size: 15.5px; }
  .numbers-table tbody td:first-child { grid-column: 1 / -1; width: auto; font-size: 13px; color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.1em; }
}

/* ============ CLOSING ============ */
.closing {
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.closing::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 56px; background: var(--gold);
}
.closing-eyebrow {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--gold-deep);
  margin-bottom: 24px; margin-top: 16px;
}
.closing h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px; max-width: 22ch;
  margin-left: auto; margin-right: auto;
}
.closing-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.closing-ctas {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.closing-note {
  margin-top: 36px;
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.closing-note span { color: var(--ink); font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; font-family: var(--font-sans);
  font-size: 15px; font-weight: 500;
  text-decoration: none; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; line-height: 1;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: var(--gold); color: #1A1A1A; border-color: var(--gold);
  box-shadow: 0 6px 20px -8px rgba(181, 133, 79, 0.5);
}
.btn-gold:hover { box-shadow: 0 10px 28px -10px rgba(181, 133, 79, 0.7); }
.btn-outline {
  background: transparent; color: var(--ink); border-color: var(--ink);
}
:root[data-theme="dark"] .btn-outline,
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .btn-outline { border-color: var(--ink); }
}
.btn-arrow { width: 14px; height: 14px; }

/* ============ FOOTER ============ */
footer {
  border-top: 1px solid var(--rule-soft);
  padding: 32px 0 56px;
  font-size: 14px;
  color: var(--ink-muted);
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: space-between;
}
.footer-disclaimer {
  max-width: var(--readw);
  margin: 0 auto 32px;
  padding: 24px 28px;
  font-size: 13.5px;
  color: var(--ink-muted);
  line-height: 1.65;
  text-align: center;
  border-top: 1px solid var(--rule-soft);
  font-style: italic;
}

/* ============ FADE-IN ============ */
.fade { opacity: 0; transform: translateY(14px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade.in { opacity: 1; transform: none; }
.hero .fade { opacity: 1; transform: none; transition: none; }
@media (prefers-reduced-motion: reduce) {
  .fade { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .top-nav .nav-link { display: none; }
  .top-cta { display: none; }
  .brand span[data-key="navHome"] { display: none; }
  .hero { padding-top: 56px; }
}

/* ============ PRINT ============ */
@media print {
  .topbar, .closing-cta-row, .read-progress, .lang-dd, .theme-toggle { display: none !important; }
  .hero, .section, .decisions, .crisis, .trust, .numbers, .closing { padding: 24px 0; page-break-inside: avoid; }
  .crisis { background: #fff; color: #000; }
  .crisis h2, .crisis-paragraph, .crisis-lesson p { color: #000; }
  .decision-num { position: static; }
  .fade { opacity: 0; transform: translateY(14px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
}

.dust-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: -1;
  pointer-events: none;
}
