:root {
  --root-deep: #0F2A1D;
  --forest: #1F4D2B;
  --sprout: #5FBE3E;
  --sprout-soft: #8FD56E;
  --sky: #A8D8F0;
  --sky-soft: #D5EAF5;
  --mist: #E8F4F8;
  --paper: #FBFEFF;
  --amber: #E8A547;
  --amber-deep: #8B4A1F;
  --line: rgba(31, 77, 43, 0.12);
  --shadow: 0 1px 2px rgba(15, 42, 29, 0.04), 0 8px 24px rgba(15, 42, 29, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 42, 29, 0.1), 0 16px 40px rgba(15, 42, 29, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.78;
  color: var(--root-deep);
  background: #020204;
  background-image:
    radial-gradient(ellipse at 20% 15%, rgba(10, 30, 8, 0.65) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 85%, rgba(5, 15, 35, 0.50) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 40%, rgba(15, 40, 12, 0.25) 0%, transparent 50%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.script-mode {
  background: var(--paper);
  background-image: none;
  font-size: 22px;
  line-height: 1.95;
}

body.script-mode .meta-bar,
body.script-mode .tags,
body.script-mode .season-banner,
body.script-mode .blueprint,
body.script-mode .technique-card,
body.script-mode .systems,
body.script-mode .verdict,
body.script-mode .post-pager,
body.script-mode .personal-anchor {
  display: none;
}

body.script-mode article {
  max-width: 720px;
  padding: 60px 40px 80px;
  background: var(--paper);
  color: var(--root-deep);
}

body.script-mode .mode-toggle { background: var(--sprout); color: var(--paper); border-color: var(--sprout); }

article {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 32px 100px;
  background: #1d5a35;
  color: #000000;
  position: relative;
  z-index: 1;
}

article h1, article h2, article h3, article h4, article h5, article h6 {
  color: #000000;
  font-weight: 700;
}

/* Mode toggle */
.mode-toggle {
  position: fixed; top: 24px; right: 24px; z-index: 200;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; padding: 10px 16px;
  background: var(--paper); color: var(--forest);
  border: 1px solid rgba(95, 190, 62, 0.35); border-radius: 100px;
  cursor: pointer; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 12px rgba(95, 190, 62, 0.15);
}
.mode-toggle:hover { border-color: var(--sprout); color: var(--sprout); background: rgba(95, 190, 62, 0.06); }
.mode-toggle svg { width: 14px; height: 14px; }

/* Meta bar */
.meta-bar {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: #000000;
  margin-bottom: 28px; flex-wrap: wrap;
}
.series-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(95, 190, 62, 0.18);
  border: 1px solid rgba(95, 190, 62, 0.45);
  border-radius: 100px; color: #000000;
  font-family: var(--mono); font-weight: 600;
}
.series-tag .meta-dot { background: #000000; box-shadow: none; }
.meta-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sprout);
  animation: blink 1.6s infinite;
  box-shadow: 0 0 8px var(--sprout);
}
.difficulty-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 4px;
}

@keyframes blink { 0%, 49%, 100% { opacity: 1; } 50%, 99% { opacity: 0.3; } }

/* Season 2 banner */
.season-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 28px;
  margin-bottom: 40px;
  background: linear-gradient(135deg, var(--root-deep) 0%, #0b3318 50%, var(--forest) 100%);
  border-radius: 14px;
  border: 1px solid rgba(95, 190, 62, 0.25);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 42, 29, 0.4), 0 0 0 1px rgba(95, 190, 62, 0.08);
}

.season-banner::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(95, 190, 62, 0.35), transparent 70%);
  border-radius: 50%;
}

.season-banner::after {
  content: '';
  position: absolute; bottom: -30px; left: -30px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(168, 216, 240, 0.2), transparent 70%);
  border-radius: 50%;
}

.season-banner-left { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }

.season-icon {
  font-family: var(--serif);
  font-size: 32px; font-style: italic; font-weight: 500;
  color: var(--sprout); line-height: 1;
  padding: 10px 16px;
  background: rgba(95, 190, 62, 0.15);
  border: 1px solid rgba(95, 190, 62, 0.35);
  border-radius: 10px; letter-spacing: -0.01em;
  box-shadow: 0 0 20px rgba(95, 190, 62, 0.15);
}

.season-content { display: flex; flex-direction: column; gap: 3px; }

.season-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--sprout); font-weight: 600;
}

.season-text {
  font-family: var(--serif); font-size: 17px; color: var(--paper);
  font-style: italic; line-height: 1.3;
}

.season-blink {
  width: 10px; height: 10px; background: var(--sprout); border-radius: 50%;
  animation: pulse-glow 1.8s infinite;
  box-shadow: 0 0 16px var(--sprout), 0 0 32px rgba(95, 190, 62, 0.4);
  position: relative; z-index: 1;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

/* Headline */
h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(48px, 8vw, 86px); line-height: 0.98;
  letter-spacing: -0.03em; color: #000000; margin-bottom: 28px;
}
h1 em { font-style: italic; color: #000000; font-weight: 400; }

.deck {
  font-family: var(--serif); font-style: italic;
  font-size: 24px; font-weight: 400; color: #000000;
  line-height: 1.45; margin-bottom: 32px; max-width: 600px;
}

.tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 52px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
}
.tag {
  padding: 5px 12px;
  background: rgba(251, 254, 255, 0.12);
  border: 1px solid rgba(95, 190, 62, 0.25);
  border-radius: 4px; color: #000000; font-weight: 500;
}

/* Prose */
article p {
  margin-bottom: 22px;
  font-size: 17px;
  color: rgba(0, 0, 0, 0.88);
  line-height: 1.75;
}
article p strong { color: var(--root-deep); font-weight: 600; }
article p em { color: var(--root-deep); font-style: italic; }
article p:last-child { margin-bottom: 0; }

article code {
  font-family: var(--mono); font-size: 0.86em;
  padding: 2px 6px; background: var(--root-deep); color: var(--sprout-soft);
  border-radius: 4px;
}

/* Section */
.section { margin: 72px 0; scroll-margin-top: 40px; }

.section-num {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em;
  color: var(--sprout); font-weight: 500; margin-bottom: 8px; display: block;
}

.section h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 4.5vw, 44px); line-height: 1.12;
  letter-spacing: -0.018em; color: #000000; margin-bottom: 26px;
  position: relative;
}

.section h2::before {
  content: '';
  position: absolute; left: -18px; top: 14px;
  width: 8px; height: 8px;
  background: var(--sprout); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(95,190,62,0.2);
}

.section h2 em { font-style: italic; color: #000000; }

h3 {
  font-family: var(--serif); font-weight: 500; font-size: 26px;
  line-height: 1.2; letter-spacing: -0.01em; color: #000000;
  margin: 36px 0 16px;
}
h3 em { font-style: italic; color: var(--forest); }

/* ── Programme Blueprint ── */
.blueprint {
  margin: 32px 0 48px;
  background: var(--root-deep);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.blueprint::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(95,190,62,0.2), transparent 70%);
  border-radius: 50%;
}

.blueprint-header {
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(95, 190, 62, 0.2);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sprout-soft); font-weight: 600;
  position: relative; z-index: 1;
}
.blueprint-header::before { content: '▸'; color: var(--sprout); }

.blueprint-body { padding: 28px 26px; position: relative; z-index: 1; }

.blueprint-subtitle {
  font-family: var(--serif); font-size: 22px; font-weight: 500; font-style: italic;
  color: rgba(255, 255, 255, 0.9); margin-bottom: 22px; line-height: 1.2;
}

.bp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }

.bp-cell {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(95, 190, 62, 0.15);
  border-radius: 8px;
}
.bp-cell-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sprout); font-weight: 600; margin-bottom: 6px;
}
.bp-cell-value {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  color: #fff; letter-spacing: -0.01em; line-height: 1.1;
}
.bp-cell-note { font-family: var(--mono); font-size: 11px; color: rgba(255, 255, 255, 0.4); margin-top: 4px; }

.bp-lift-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: rgba(95, 190, 62, 0.08);
  border: 1px solid rgba(95, 190, 62, 0.2);
  border-radius: 8px; margin-bottom: 8px;
}
.bp-lift-row:last-of-type { margin-bottom: 0; }
.bp-lift-name { font-family: var(--serif); font-size: 18px; font-weight: 500; color: rgba(255, 255, 255, 0.95); }
.bp-lift-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sprout-soft); font-weight: 600; text-align: right;
}
.bp-removed { opacity: 0.4; }
.bp-removed .bp-lift-name { text-decoration: line-through; color: rgba(255, 255, 255, 0.6); }
.bp-removed .bp-lift-tag { color: rgba(255, 255, 255, 0.35); }

.bp-accessories {
  margin-top: 16px; padding-top: 14px;
  border-top: 1px solid rgba(95, 190, 62, 0.1);
  font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, 0.55); line-height: 1.85;
}
.bp-accessories strong { color: var(--sprout-soft); font-weight: 600; }

/* ── Technique card ── */
.technique-card {
  margin: 36px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden; position: relative;
}
.technique-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(to right, var(--forest), var(--sprout), var(--sprout-soft));
}
.tc-header { padding: 22px 26px 10px; }
.tc-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sprout); font-weight: 600; margin-bottom: 4px;
}
.tc-title {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--root-deep); letter-spacing: -0.01em;
}
.tc-title em { font-style: italic; color: var(--forest); }
.tc-steps { padding: 0 26px 22px; }
.tc-step {
  display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.tc-step:last-child { border-bottom: none; }
.tc-step-num {
  width: 28px; height: 28px;
  background: var(--forest); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px; font-weight: 600;
  color: var(--sprout-soft); flex-shrink: 0; margin-top: 2px;
}
.tc-step-title {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  color: var(--root-deep); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 5px;
}
.tc-step-desc { font-size: 15px; line-height: 1.65; color: rgba(15, 42, 29, 0.88); }
.tc-step-desc strong { color: var(--root-deep); font-weight: 600; }
.tc-why {
  margin: 0 26px 24px;
  padding: 14px 18px;
  background: rgba(95, 190, 62, 0.08);
  border-left: 3px solid var(--sprout);
  border-radius: 0 8px 8px 0;
  font-size: 14.5px; line-height: 1.65; color: rgba(15, 42, 29, 0.88);
}
.tc-why strong { color: var(--root-deep); font-weight: 600; }

/* Define box */
.define {
  margin: 32px 0;
  padding: 22px 26px;
  background: rgba(168, 216, 240, 0.18);
  border-left: 3px solid #5BA8C7;
  border-radius: 0 12px 12px 0;
}
.define-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: #2C7A99; font-weight: 600; margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.define-label::before { content: 'ⓘ'; font-size: 14px; }
.define-term { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--root-deep); margin-bottom: 8px; }
.define p { font-size: 15.5px; line-height: 1.65; margin-bottom: 0; }
.define strong { color: var(--root-deep); font-weight: 600; }

/* Pullquote */
.pullquote {
  margin: 52px 0;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(168, 216, 240, 0.22), rgba(168, 216, 240, 0.08));
  border-left: 4px solid var(--sprout);
  border-radius: 0 10px 10px 0;
  font-family: var(--serif); font-style: italic;
  font-size: 22px; line-height: 1.5; color: var(--root-deep);
  position: relative;
}
.pullquote::before {
  content: '"';
  position: absolute; top: 6px; left: 20px;
  font-size: 70px; color: var(--sprout); opacity: 0.28;
  font-family: var(--serif); line-height: 1;
}

/* Callout */
.callout {
  margin: 36px 0; padding: 26px 30px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow);
  position: relative; overflow: hidden;
}
.callout::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 5px; height: 100%;
  background: linear-gradient(to bottom, var(--sprout), var(--forest));
}
.callout-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sprout); font-weight: 600; margin-bottom: 8px;
}
.callout p { font-size: 16px; line-height: 1.72; color: rgba(15,42,29,0.88); }
.callout strong { color: var(--root-deep); font-weight: 600; }

/* Personal anchor */
.personal-anchor {
  margin: 44px 0;
  padding: 32px 34px;
  background: linear-gradient(135deg, rgba(168, 216, 240, 0.22), rgba(95, 190, 62, 0.07));
  border-left: 5px solid var(--sprout);
  border-radius: 0 16px 16px 0;
  box-shadow: inset 0 0 0 1px rgba(95, 190, 62, 0.06);
}
.personal-anchor-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sprout); font-weight: 600; margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.personal-anchor-label::before { content: '◆'; font-size: 14px; }
.personal-anchor p { font-size: 16px; line-height: 1.8; color: rgba(15, 42, 29, 0.9); margin-bottom: 0; }
.personal-anchor strong { color: var(--root-deep); font-weight: 600; }
.personal-anchor a {
  color: var(--forest); font-weight: 600; text-decoration: none;
  border-bottom: 1px dashed rgba(31, 77, 43, 0.4);
}
.personal-anchor a:hover { border-bottom-style: solid; }

/* Systems block (dark) */
.systems {
  margin: 48px 0;
  padding: 40px 36px;
  background: linear-gradient(135deg, var(--root-deep) 0%, var(--forest) 100%);
  border-radius: 16px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 12px rgba(15,42,29,.15), 0 20px 50px rgba(15,42,29,.18);
}
.systems::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(95,190,62,0.25), transparent 70%);
  border-radius: 50%;
}
.systems-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--sprout-soft); font-weight: 600; margin-bottom: 16px; position: relative; z-index: 1;
}
.systems-title {
  font-family: var(--serif); font-size: clamp(24px, 4vw, 32px); font-weight: 500;
  color: #fff; line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 18px;
  position: relative; z-index: 1;
}
.systems-title em { font-style: italic; color: var(--sprout-soft); }
.systems p { font-size: 16px; line-height: 1.72; color: rgba(255,255,255,0.88); margin-bottom: 14px; position: relative; z-index: 1; }
.systems p:last-child { margin-bottom: 0; }
.systems strong { color: #fff; font-weight: 600; }

/* Verdict */
.verdict {
  margin: 64px 0 32px; padding: 44px 40px;
  background: linear-gradient(135deg, var(--paper) 0%, var(--mist) 100%);
  border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); text-align: center;
  position: relative; overflow: hidden;
}
.verdict::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(95, 190, 62, 0.12), transparent 70%);
  border-radius: 50%;
}
.verdict-label {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sprout); font-weight: 500; margin-bottom: 18px; position: relative; z-index: 1;
}
.verdict-final {
  font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.45;
  color: var(--root-deep); max-width: 560px; margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.verdict-final em { color: var(--forest); }
.verdict-kicker {
  font-family: var(--serif); font-style: italic; font-size: 22px; font-weight: 500;
  color: var(--sprout); margin-top: 10px; position: relative; z-index: 1;
}

/* Sign-off */
.signoff {
  margin: 60px 0 0; text-align: center;
  font-family: var(--serif); font-style: italic;
  font-size: 28px; color: var(--forest);
}
.signoff-name {
  display: block; margin-top: 8px;
  font-style: normal; font-weight: 500; font-size: 22px;
  color: var(--root-deep); letter-spacing: 0.02em;
}

/* ── Post pager ── */
.post-pager {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid rgba(95, 190, 62, 0.2);
}
.post-pager-item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 22px 24px;
  background: linear-gradient(150deg, rgba(95,190,62,0.08) 0%, rgba(255,255,255,0.55) 60%, rgba(95,190,62,0.04) 100%);
  border: 1px solid rgba(95, 190, 62, 0.22);
  border-radius: 14px; text-decoration: none; color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
a.post-pager-item:hover {
  transform: translateY(-2px);
  border-color: var(--sprout);
  background: linear-gradient(150deg, rgba(95,190,62,0.14) 0%, rgba(255,255,255,0.6) 60%, rgba(95,190,62,0.07) 100%);
  box-shadow: 0 8px 24px rgba(31,77,43,0.18), 0 0 28px rgba(95,190,62,0.14);
}
.post-pager-item.is-pending { opacity: 0.62; cursor: default; }
.post-pager-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sprout); font-weight: 500;
}
.post-pager-title {
  font-family: var(--serif); font-size: 24px; line-height: 1.18;
  font-weight: 500; color: var(--root-deep);
}
.post-pager-desc { font-size: 14.5px; line-height: 1.55; color: var(--forest); }

/* Footer */
footer {
  width: 100%; max-width: none;
  background: var(--root-deep);
  border-top: 1px solid var(--line);
  padding: 2.5rem 3rem 2rem;
  text-align: center;
}
.footer-logo-img { width: 44px; height: auto; margin: 0 auto 0.6rem; display: block; opacity: 0.8; filter: drop-shadow(0 0 6px rgba(95,190,62,0.2)); }
.footer-logo { font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700; color: var(--paper); margin-bottom: 0.4rem; }
.footer-logo span { color: var(--sprout); }
.footer-tagline { font-size: 0.78rem; color: var(--sprout-soft); font-style: italic; margin-bottom: 1.5rem; opacity: 0.75; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.footer-links a { color: var(--sprout-soft); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.3s ease; opacity: 0.75; }
.footer-links a:hover { color: var(--sprout); opacity: 1; }
.footer-coffee-link { color: #f4b400 !important; opacity: 1 !important; }
.footer-coffee-link:hover { color: var(--sprout) !important; }
.footer-bottom { font-size: 0.7rem; color: var(--sprout-soft); border-top: 1px solid var(--line); padding-top: 1.2rem; opacity: 0.6; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
article > * { animation: fadeUp 0.6s ease-out backwards; }
article > *:nth-child(1) { animation-delay: 0.05s; }
article > *:nth-child(2) { animation-delay: 0.12s; }
article > *:nth-child(3) { animation-delay: 0.19s; }
article > *:nth-child(4) { animation-delay: 0.26s; }
article > *:nth-child(5) { animation-delay: 0.33s; }

/* Responsive */
@media (max-width: 640px) {
  article { padding: 24px 22px 80px; }
  body { font-size: 17px; }
  h1 { font-size: 42px; }
  .deck { font-size: 21px; }
  .section h2::before { display: none; }
  .season-banner { flex-direction: column; align-items: flex-start; padding: 20px 22px; }
  .pullquote { font-size: 19px; padding: 24px 24px 24px 30px; }
  .bp-grid { grid-template-columns: 1fr; }
  .bp-lift-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .bp-lift-tag { text-align: left; }
  .systems { padding: 28px 24px; }
  .verdict { padding: 28px 24px; }
  .verdict-final { font-size: 18px; }
  #modeToggle { top: auto; bottom: 20px; right: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  article > * { animation: none; }
  .season-blink { animation: none; }
  .meta-dot { animation: none; }
}

/* ── SIDE DOCK ── */
.side-dock { position: fixed; right: 1.25rem; top: 50%; transform: translateY(-50%); z-index: 1000; display: flex; flex-direction: column; gap: 0.4rem; background: rgba(4,6,14,0.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(26,127,168,0.22); border-radius: 18px; padding: 0.65rem 0.5rem; box-shadow: 0 8px 32px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.04), 0 0 28px rgba(0,200,150,0.05); }
.dock-item { position: relative; display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; text-decoration: none; color: rgba(139,160,180,0.65); transform-origin: right center; transition: color 0.22s ease, background 0.22s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease; outline: none; }
.dock-item::before { content: ''; position: absolute; inset: 0; border-radius: 12px; background: radial-gradient(ellipse at center, rgba(0,200,150,0.26) 0%, transparent 72%); opacity: 0; transition: opacity 0.25s ease; }
.dock-item:hover::before, .dock-item.active::before { opacity: 1; }
.dock-item:hover { color: #00c896; background: rgba(0,200,150,0.1); transform: scale(1.18); box-shadow: 0 0 22px rgba(0,200,150,0.48), 0 0 9px rgba(0,200,150,0.3), 0 4px 14px rgba(0,0,0,0.32); }
.dock-item:focus-visible { outline: 2px solid #00c896; outline-offset: 2px; }
.dock-item.active { color: #00c896; background: rgba(0,200,150,0.08); box-shadow: 0 0 12px rgba(0,200,150,0.22); }
.dock-item.active::after { content: ''; position: absolute; left: 50%; bottom: 3px; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: #00c896; box-shadow: 0 0 7px rgba(0,200,150,0.9); }
.dock-icon { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.dock-label { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(8px); background: rgba(4,6,14,0.94); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: #dde6f4; font-family: 'Inter', system-ui, sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.26rem 0.62rem; border-radius: 6px; border: 1px solid rgba(26,127,168,0.28); white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.18s ease, transform 0.18s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.38); }
.dock-item:hover .dock-label { opacity: 1; transform: translateY(-50%) translateX(0); }
@media (max-width: 768px) {
  .side-dock { right: 0.55rem; padding: 0.5rem 0.35rem; gap: 0.3rem; border-radius: 14px; }
  .dock-item { width: 36px; height: 36px; border-radius: 10px; }
  .dock-item:hover { transform: scale(1.1); }
  .dock-icon { width: 17px; height: 17px; }
  .dock-label { display: none; }
  .dock-item.active::after { width: 3px; height: 3px; bottom: 2px; }
}
@media (hover: none) and (pointer: coarse) {
  .dock-item:hover { transform: none; box-shadow: none; background: none; }
  .dock-item:hover::before { opacity: 0; }
}

#canopy-glass {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  width: min(calc(100vw - 40px), 1160px); height: 100%;
  background: linear-gradient(90deg, rgba(10,4,8,0) 0%, rgba(95,190,62,.045) 20%, rgba(168,216,240,.09) 50%, rgba(95,190,62,.045) 80%, rgba(10,4,8,0) 100%);
  border-left: 1px solid rgba(95,190,62,.07); border-right: 1px solid rgba(95,190,62,.07);
  pointer-events: none; z-index: 0;
}
@media (max-width: 768px) { #canopy-glass { display: none; } }
