@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap");

:root {
  --bg: #080808;
  --s1: #0f0f0f;
  --s2: #141414;
  --s3: #1c1c1c;
  --b1: rgba(200, 200, 200, 0.06);
  --b2: rgba(200, 200, 200, 0.12);
  --b3: rgba(200, 200, 200, 0.2);
  --txt: #f0f0f0;
  --dim: #888;
  --dimmer: #555;
  --w: #f8f8f8;
  --sl: #e8e8e8;
  --sm: #a8a8a8;
  --sd: #686868;
  --sdp: #3a3a3a;
  --grad: linear-gradient(135deg, #fff 0%, #a0a0a0 35%, #d8d8d8 60%, #787878 100%);
  --grad2: linear-gradient(135deg, #c8c8c8 0%, #787878 40%, #b0b0b0 65%, #505050 100%);
  --heritage: #3f8f5b;
  --dodds-green: #1e4d2b;
  --dodds-gold: #c7a248;
  --cream: #f2ead3;
  --accent: #00f0ff;
  --mono: "DM Mono", ui-monospace, monospace;
  --sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --display: "Bebas Neue", sans-serif;
  --sidebar-w: 280px;
  --notes-w: 340px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--txt);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
  font-weight: 300;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 200, 200, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 200, 200, 0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
a { color: var(--sm); }
a:hover { color: var(--w); }
::selection {
  background: var(--accent);
  color: var(--bg);
}
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--grad); color: #080808; padding: 8px 12px; z-index: 100;
  font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.skip:focus { left: 12px; top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.silver-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}
.layout.notes-open {
  grid-template-columns: var(--sidebar-w) 1fr var(--notes-w);
}

.sidebar {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(12px);
  color: var(--txt);
  padding: 22px 14px 32px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: auto;
  border-right: 1px solid var(--b1);
}
.brand {
  display: flex; gap: 12px; align-items: center;
  text-decoration: none; color: var(--txt);
  padding: 4px 8px 18px; border-bottom: 1px solid var(--b1);
  margin-bottom: 14px;
}
.brand .lhex {
  width: 36px; height: 36px; flex: 0 0 auto;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--grad);
  box-shadow: 0 0 16px rgba(200, 200, 200, 0.14);
  display: grid; place-items: center;
}
.brand .lhex span {
  font-family: var(--display); font-size: 15px; color: #080808;
  letter-spacing: 1px; -webkit-text-fill-color: #080808;
}
.brand strong {
  display: block; font-family: var(--display); font-size: 1.15rem;
  letter-spacing: 0.18em; background: var(--grad);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.brand small {
  display: block; font-family: var(--mono); opacity: 0.7;
  font-size: 0.62rem; margin-top: 3px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sd); -webkit-text-fill-color: var(--sd);
}
.nav-label {
  margin: 18px 8px 8px; font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sdp); font-weight: 500;
}
.nav-link {
  display: block; color: var(--dim); text-decoration: none;
  padding: 7px 10px; font-size: 0.84rem; margin: 1px 0; font-weight: 400;
  border-left: 2px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: var(--w); background: rgba(200, 200, 200, 0.03);
  border-left-color: var(--sm);
}

.main-col { min-width: 0; display: flex; flex-direction: column; }
.topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 22px; background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--b1);
  position: sticky; top: 0; z-index: 5;
}
.crumbs {
  flex: 1; font-family: var(--mono); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--dimmer); min-width: 0;
}
.crumbs a { text-decoration: none; color: var(--sm); font-weight: 500; }
.top-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.icon-btn {
  border: 1px solid var(--b2); background: var(--s1); color: var(--sm);
  width: 38px; height: 38px; cursor: pointer; font-size: 1.05rem;
}
#menu-toggle { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px; font-size: 0.68rem; font-weight: 500;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  font-family: var(--mono); letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap; transition: all 0.3s;
}
.btn.primary {
  background: var(--grad); color: #080808 !important;
  box-shadow: 0 0 14px rgba(200, 200, 200, 0.1);
}
.btn.primary:hover {
  box-shadow: 0 0 26px rgba(200, 200, 200, 0.24);
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent; color: var(--sm) !important; border-color: var(--b2);
}
.btn.ghost:hover {
  border-color: var(--sd); background: rgba(200, 200, 200, 0.03); color: var(--w) !important;
}

.content { padding: 28px 28px 48px; max-width: 960px; width: 100%; margin: 0 auto; }

.page-hero {
  position: relative; overflow: hidden;
  background: var(--s1); border: 1px solid var(--b1);
  padding: 48px 36px 40px; margin-bottom: 28px;
}
.page-hero::before {
  content: ""; position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(170, 170, 170, 0.09) 0%, transparent 62%);
  pointer-events: none; animation: breathe 7s ease-in-out infinite;
}
.page-hero::after {
  content: ""; position: absolute; bottom: -80px; left: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(63, 143, 91, 0.08) 0%, transparent 62%);
  pointer-events: none;
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}
.page-hero .eyebrow {
  position: relative; z-index: 2; margin: 0 0 18px;
  font-family: var(--mono); letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 0.7rem; color: var(--sd); display: flex; align-items: center; gap: 12px;
}
.page-hero .eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--sdp); display: block;
}
.page-hero h1 {
  position: relative; z-index: 2;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.6rem); margin: 0 0 16px;
  line-height: 0.95; letter-spacing: 0.04em; color: var(--w);
}
.page-hero h1 em {
  font-style: normal; display: block;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .lede {
  position: relative; z-index: 2; margin: 0 0 28px; max-width: 34rem;
  font-size: 1.02rem; color: var(--dim); line-height: 1.75; font-weight: 300;
}
.hero-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stats {
  position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 36px;
  margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--b1);
}
.hero-stats .stn {
  font-family: var(--display); font-size: 1.8rem; letter-spacing: 0.06em;
  background: var(--grad2); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-stats .stl {
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: 0.18em;
  color: var(--dimmer); text-transform: uppercase; margin-top: 4px;
}

.panel, .unit {
  background: var(--s1); border: 1px solid var(--b1);
  padding: 26px 28px; margin-bottom: 14px; position: relative; overflow: hidden;
}
.panel::before, .unit::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s;
}
.panel:hover::before, .unit:hover::before { transform: scaleX(1); }
.panel h2, .unit h2 {
  margin: 0 0 8px; font-family: var(--display); font-weight: 400;
  font-size: 1.7rem; letter-spacing: 0.08em; color: var(--w);
}
.muted { color: var(--dim); margin: 0 0 14px; font-weight: 300; }
.howto, .guide-list { margin: 8px 0 0; padding-left: 1.15rem; color: var(--sm); }
.howto li, .guide-list li { margin: 10px 0; }
.howto strong { color: var(--sl); font-weight: 500; }
.guide-list a { color: var(--sm); text-decoration: none; border-bottom: 1px solid var(--b2); }
.guide-list a:hover { color: var(--w); border-bottom-color: var(--sm); }

.week-list { list-style: none; margin: 0; padding: 0; }
.week-list li { border-top: 1px solid var(--b1); }
.week-list a {
  display: flex; gap: 14px; align-items: baseline; text-decoration: none;
  color: var(--sm); padding: 12px 2px; font-weight: 400;
}
.week-list a:hover { color: var(--w); }
.week-list .wk {
  flex: 0 0 72px; color: var(--sd); font-family: var(--mono);
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
}

.doc {
  background: var(--s1); border: 1px solid var(--b1);
  padding: 28px 30px; font-size: 1.02rem; line-height: 1.7; font-weight: 300;
}
.doc h1, .doc h2, .doc h3, .doc h4 {
  font-family: var(--display); font-weight: 400; color: var(--w); line-height: 1.1;
  letter-spacing: 0.04em;
}
.doc h1 { font-size: 2.4rem; margin-top: 0; }
.doc h2 {
  font-size: 1.55rem; margin-top: 1.7em; padding-bottom: 8px;
  border-bottom: 1px solid var(--b2);
}
.doc h3 { font-size: 1.2rem; color: var(--sl); margin-top: 1.35em; }
.doc p { margin: 0.75em 0; color: var(--sm); }
.doc strong { color: var(--sl); font-weight: 500; }
.doc em { color: var(--cream); }
.doc ul, .doc ol { padding-left: 1.25rem; color: var(--sm); }
.doc li { margin: 0.4em 0; }
.doc hr { border: 0; border-top: 1px solid var(--b1); margin: 1.7em 0; }
.doc blockquote {
  margin: 1em 0; padding: 14px 18px; background: rgba(200, 200, 200, 0.03);
  border-left: 2px solid var(--heritage); color: var(--sm);
}
.doc code {
  font-family: var(--mono); font-size: 0.86em;
  background: rgba(200, 200, 200, 0.06); padding: 0.12em 0.4em; color: var(--cream);
}
.doc pre {
  background: #050505; color: #e8e8e8; padding: 16px 18px;
  overflow: auto; border: 1px solid var(--b1);
}
.doc pre code { background: transparent; color: inherit; padding: 0; }
.table-wrap { overflow-x: auto; margin: 14px 0; }
.doc table {
  border-collapse: collapse; width: 100%; font-size: 0.9rem; font-family: var(--sans);
}
.doc th, .doc td {
  border: 1px solid var(--b2); padding: 9px 11px; text-align: left; vertical-align: top;
}
.doc th {
  background: #111; color: var(--w); font-family: var(--mono);
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}
.doc tr:nth-child(even) td { background: rgba(255, 255, 255, 0.015); }
.doc td { color: var(--sm); }

.week-turn {
  display: flex; justify-content: space-between; gap: 12px;
  margin: 16px 0 0; padding: 8px 0;
}

.ticker {
  background: var(--grad); padding: 12px 0; overflow: hidden;
  margin: 0 0 22px; border: 1px solid var(--b1);
}
.ticker-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 32s linear infinite; width: max-content;
}
.ticker-track span {
  font-family: var(--display); font-size: 1rem; letter-spacing: 0.18em;
  color: #080808; padding: 0 28px; border-right: 1px solid rgba(0,0,0,.12);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.artifact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px; margin-bottom: 18px;
}
.artifact {
  background: var(--s1); border: 1px solid var(--b1);
  padding: 26px 24px; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 10px; min-height: 280px;
}
.artifact::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: var(--grad); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s;
}
.artifact:hover::before { transform: scaleX(1); }
.artifact .ptag {
  margin: 0; font-family: var(--mono); font-size: 0.62rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sd);
}
.artifact h3 {
  margin: 0; font-family: var(--display); font-weight: 400;
  font-size: 1.85rem; letter-spacing: 0.06em; color: var(--w); line-height: 1;
}
.artifact p { margin: 0; color: var(--dim); font-weight: 300; line-height: 1.65; flex: 1; }
.artifact-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.page-hero .lede strong { color: var(--sm); font-weight: 500; }


.notes-panel {
  background: var(--s1); border-left: 1px solid var(--b1);
  padding: 18px; position: sticky; top: 0; height: 100vh;
  display: flex; flex-direction: column; gap: 10px; z-index: 6;
}
.notes-panel[hidden] { display: none !important; }
.notes-head { display: flex; align-items: center; justify-content: space-between; }
.notes-head h2 {
  margin: 0; font-family: var(--display); font-size: 1.4rem;
  letter-spacing: 0.1em; color: var(--w); font-weight: 400;
}
.notes-hint { margin: 0; font-size: 0.78rem; color: var(--dimmer); font-weight: 300; }
#notes-area {
  flex: 1; min-height: 220px; resize: none; width: 100%;
  border: 1px solid var(--b2); background: var(--bg); color: var(--txt);
  padding: 14px; font-family: var(--sans); font-size: 0.95rem; line-height: 1.55;
  font-weight: 300;
}
#notes-area:focus {
  outline: none; border-color: var(--sd);
  box-shadow: 0 0 0 1px rgba(200, 200, 200, 0.12);
}
#notes-area::placeholder { color: var(--sdp); }
.notes-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.notes-meta {
  margin: 0; font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.08em; color: var(--dimmer); min-height: 1.2em; text-transform: uppercase;
}

.site-footer {
  margin-top: auto; padding: 24px 28px 40px; text-align: center;
  color: var(--dimmer); font-size: 0.78rem; border-top: 1px solid var(--b1);
  font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase;
}
.site-footer strong {
  color: var(--sm); font-weight: 500;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 980px) {
  .layout, .layout.notes-open { grid-template-columns: 1fr; }
  .sidebar {
    position: fixed; inset: 0 auto 0 0; width: min(86vw, 300px);
    transform: translateX(-105%); transition: transform 0.2s ease; z-index: 20;
  }
  body.menu-open .sidebar { transform: translateX(0); }
  body.menu-open::before {
    content: ""; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); z-index: 15;
  }
  #menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .notes-panel {
    position: fixed; top: 0; right: 0; width: min(92vw, 360px); z-index: 25;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.45);
  }
  .top-actions .btn.ghost:nth-child(n+3) { display: none; }
  .content { padding: 20px 14px 40px; }
  .page-hero { padding: 32px 20px; }
  .doc { padding: 20px 16px; }
}

/* —— The Dodds Edition · RHS 2026 —— */
body[data-note-key="ms-dodds"] .content {
  max-width: none;
  padding: 0;
  width: 100%;
}
body[data-note-key="ms-dodds"] .main-col {
  background:
    radial-gradient(1200px 520px at 12% -10%, rgba(30, 77, 43, 0.28), transparent 55%),
    radial-gradient(900px 420px at 92% 8%, rgba(199, 162, 72, 0.1), transparent 50%),
    var(--bg);
}

.dodds-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(199, 162, 72, 0.22);
  padding: 0;
}
.dodds-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.72) 55%, rgba(8, 8, 8, 0.96) 100%),
    radial-gradient(ellipse 80% 60% at 70% 35%, rgba(63, 143, 91, 0.22), transparent 65%),
    linear-gradient(135deg, #0a1610 0%, #080808 45%, #12100a 100%);
}
.dodds-wave {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 42%;
  opacity: 0.35;
  background:
    radial-gradient(ellipse at center, rgba(63, 143, 91, 0.35) 0%, transparent 70%);
  filter: blur(2px);
  animation: dodds-drift 14s ease-in-out infinite;
}
.dodds-wave-a { bottom: 8%; animation-delay: 0s; }
.dodds-wave-b {
  bottom: -4%;
  opacity: 0.22;
  background: radial-gradient(ellipse at center, rgba(199, 162, 72, 0.28) 0%, transparent 70%);
  animation-delay: -5s;
  animation-duration: 18s;
}
@keyframes dodds-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scaleX(1); }
  50% { transform: translate3d(2.5%, -3%, 0) scaleX(1.04); }
}
.dodds-mark {
  position: absolute;
  right: clamp(16px, 8vw, 72px);
  top: clamp(24px, 10vh, 80px);
  width: clamp(120px, 22vw, 220px);
  height: auto;
  color: rgba(63, 143, 91, 0.55);
  animation: dodds-mark-in 1.1s ease-out both;
}
@keyframes dodds-mark-in {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.dodds-hero-inner {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding: clamp(40px, 8vh, 72px) clamp(20px, 5vw, 48px) clamp(36px, 6vh, 56px);
  animation: dodds-rise 0.9s ease-out both;
}
@keyframes dodds-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.dodds-brand {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  letter-spacing: 0.06em;
  line-height: 0.92;
  color: var(--w);
  text-shadow: 0 0 40px rgba(63, 143, 91, 0.25);
}
.dodds-school {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dodds-gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.dodds-school::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--dodds-gold);
  display: block;
  animation: dodds-rule 1.2s ease-out both;
}
@keyframes dodds-rule {
  from { transform: scaleX(0); transform-origin: left; opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
.dodds-hero h1 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  color: var(--sl);
  max-width: 18ch;
}
.dodds-hero .lede {
  margin: 0 0 28px;
  max-width: 34rem;
  font-size: 1.02rem;
  color: var(--dim);
  line-height: 1.75;
  font-weight: 300;
}
.dodds-hero .hero-actions .btn.primary {
  background: linear-gradient(135deg, #5aa872 0%, #1e4d2b 45%, #c7a248 100%);
  color: #f8f8f8 !important;
  box-shadow: 0 0 18px rgba(63, 143, 91, 0.22);
}
.dodds-hero .hero-actions .btn.primary:hover {
  box-shadow: 0 0 28px rgba(199, 162, 72, 0.28);
}
.dodds-hero .hero-actions .btn.ghost {
  border-color: rgba(199, 162, 72, 0.35);
  color: var(--cream) !important;
}
.dodds-hero .hero-actions .btn.ghost:hover {
  border-color: var(--dodds-gold);
  background: rgba(199, 162, 72, 0.08);
}

.dodds-wrap {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: 36px clamp(16px, 4vw, 28px) 56px;
}
.dodds-section {
  padding: 28px 0 8px;
  border-top: 1px solid rgba(200, 200, 200, 0.08);
  animation: dodds-rise 0.8s ease-out both;
}
.dodds-section:nth-of-type(1) { animation-delay: 0.08s; }
.dodds-section:nth-of-type(2) { animation-delay: 0.16s; }
.dodds-section:nth-of-type(3) { animation-delay: 0.24s; }
.dodds-section:nth-of-type(4) { animation-delay: 0.32s; }
.dodds-kicker {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dodds-gold);
}
.dodds-section h2 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  color: var(--w);
}
.dodds-units {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  counter-reset: dodds-unit;
}
.dodds-units li {
  counter-increment: dodds-unit;
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--b1);
  color: var(--sm);
  font-weight: 300;
}
.dodds-units li::before {
  content: counter(dodds-unit, decimal-leading-zero);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--heritage);
}
.dodds-units strong {
  color: var(--sl);
  font-weight: 500;
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
body[data-note-key="ms-dodds"] .site-footer {
  border-top-color: rgba(199, 162, 72, 0.18);
}

@media (max-width: 980px) {
  .dodds-hero { min-height: min(72vh, 640px); }
  .dodds-mark { opacity: 0.7; }
}

@media print {
  body { background: #fff; color: #111; }
  body::after, .sidebar, .topbar, .notes-panel, .site-footer { display: none !important; }
  .layout { display: block; }
  .content { max-width: none; padding: 0; }
  .doc { border: 0; padding: 0; background: #fff; }
  .doc h1, .doc h2, .doc h3, .doc p, .doc li, .doc td { color: #111; -webkit-text-fill-color: #111; }
  .dodds-hero-bg, .dodds-wave, .dodds-mark { display: none !important; }
  .dodds-brand, .dodds-hero h1, .dodds-section h2 { color: #111; text-shadow: none; }
}
