:root {
  --bg: #07111f;
  --bg-2: #0a192a;
  --panel: #0d1b2a;
  --panel-2: #11253b;
  --line: #1b3854;
  --text: #edf4ff;
  --muted: #99b4d1;
  --cyan: #49b7ff;
  --yellow: #ffd166;
  --green: #7ae582;
  --coral: #ef8354;
  --purple: #b79cff;
  --paper: #f3f7fc;
  --ink: #091525;
  --max: 1420px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 84% 8%, rgba(73, 183, 255, .11), transparent 26rem),
    radial-gradient(circle at 12% 34%, rgba(183, 156, 255, .06), transparent 32rem),
    var(--bg);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: var(--cyan); text-decoration-thickness: 1px; text-underline-offset: .2em; }
button { font: inherit; }
code { font-family: "Cascadia Code", "SFMono-Regular", Consolas, monospace; color: var(--yellow); }

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255,255,255,.04);
}
.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--yellow), var(--coral));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 76px;
  padding: 14px clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(153,180,209,.13);
  background: rgba(7,17,31,.82);
  backdrop-filter: blur(18px) saturate(1.4);
}
.brand { display: flex; align-items: center; gap: 13px; color: var(--text); text-decoration: none; margin-right: auto; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: inset 0 0 22px rgba(73,183,255,.12), 0 0 24px rgba(73,183,255,.08);
}
.brand-copy { font-weight: 700; letter-spacing: -.01em; }
.site-header nav { display: flex; gap: 25px; }
.site-header nav a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 700; }
.site-header nav a:hover { color: var(--text); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(255,209,102,.55);
  border-radius: 999px;
  color: var(--bg);
  background: var(--yellow);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(255,209,102,.12);
  transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,209,102,.2); }
.button-small { min-height: 42px; padding-inline: 19px; }
.text-link { font-size: 14px; font-weight: 700; }

main { overflow: hidden; }
.hero,
.report-section {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(72px, 10vh, 125px) clamp(20px, 4vw, 62px) 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, .95fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  column-gap: 60px;
  border-inline: 1px solid rgba(153,180,209,.09);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 35px 0 16px;
  z-index: -2;
  border-radius: 42px;
  background:
    linear-gradient(130deg, rgba(17,37,59,.52), rgba(7,17,31,.2) 45%, rgba(73,183,255,.06)),
    var(--bg);
  border: 1px solid rgba(153,180,209,.12);
  box-shadow: 0 40px 100px rgba(0,0,0,.25);
}
.hero-noise {
  position: absolute;
  inset: 35px 0 16px;
  z-index: -1;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
  border-radius: 42px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .15em;
  line-height: 1.35;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.station-layout h2,
.two-column-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: .98;
  letter-spacing: -.045em;
}
.hero h1 { max-width: 760px; font-size: clamp(74px, 8.1vw, 132px); }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 690px; margin: 34px 0 0; color: #c8d9ec; font-size: clamp(20px, 2vw, 28px); line-height: 1.42; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; }
.hero-meta { margin: 54px 0 0; display: flex; flex-wrap: wrap; gap: 0; }
.hero-meta div { padding: 0 34px; border-left: 1px solid var(--line); }
.hero-meta div:first-child { padding-left: 0; border-left: 0; }
.hero-meta dt { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-meta dd { margin: 3px 0 0; font-size: 15px; font-weight: 700; }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center; }
.eclipse-orbit { position: relative; width: min(470px, 35vw); aspect-ratio: 1; }
.sun,
.moon,
.orbit { position: absolute; border-radius: 50%; }
.sun {
  inset: 22%;
  background: var(--yellow);
  box-shadow: 0 0 30px rgba(255,209,102,.45), 0 0 110px rgba(255,209,102,.22), 0 0 220px rgba(255,209,102,.08);
}
.moon { inset: 20.5% 25% 23.5% 17%; background: #06101c; box-shadow: inset -8px 0 20px rgba(255,255,255,.025); }
.orbit { inset: 4%; border: 1px solid rgba(73,183,255,.16); }
.orbit-two { inset: -8%; border-color: rgba(183,156,255,.08); }
.orbit::before { content: ""; position: absolute; width: 7px; height: 7px; top: 13%; right: 13%; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 16px var(--cyan); }
.hero-result {
  position: absolute;
  right: 0;
  bottom: 16%;
  width: min(330px, 90%);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(153,180,209,.22);
  border-radius: 20px;
  background: rgba(13,27,42,.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.hero-result-label { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-result strong { color: var(--text); font-family: var(--serif); font-size: 66px; line-height: 1.1; letter-spacing: -.05em; }
.hero-result strong small { color: var(--coral); font-family: var(--sans); font-size: 22px; letter-spacing: 0; text-transform: uppercase; }
.hero-result > span:last-child { color: var(--muted); font-size: 13px; }

.hero-strip {
  grid-column: 1 / -1;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero-strip article { padding: 24px 26px 4px; border-left: 1px solid var(--line); }
.hero-strip article:first-child { padding-left: 0; border-left: 0; }
.hero-strip strong { display: block; color: var(--yellow); font-size: clamp(22px, 2vw, 31px); line-height: 1.2; }
.hero-strip span { color: var(--muted); font-size: 13px; }

.report-section { padding: clamp(96px, 11vw, 170px) clamp(12px, 3vw, 44px); border-bottom: 1px solid rgba(153,180,209,.11); }
.section-label { margin-bottom: 56px; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.section-label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }
.section-label span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 50%; color: var(--cyan); }
.section-heading { max-width: 1040px; margin-bottom: 56px; }
.section-heading h2,
.station-layout h2,
.two-column-copy h2 { font-size: clamp(48px, 5.4vw, 82px); }
.split-heading { max-width: none; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 80px; align-items: end; }
.split-heading > p { margin: 0; color: var(--muted); font-size: 18px; }

.abstract-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; }
.abstract-statement { padding: 10px 0; color: #d6e3f1; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 36px); line-height: 1.42; }
.abstract-statement p { margin: 0 0 28px; }
.claim-card { padding: clamp(30px, 4vw, 58px); border: 1px solid rgba(255,209,102,.28); border-radius: 30px; background: linear-gradient(145deg, rgba(255,209,102,.08), rgba(17,37,59,.68)); }
.claim-tag { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: rgba(255,209,102,.12); color: var(--yellow); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.claim-card blockquote { margin: 34px 0 0; font-family: var(--serif); font-size: clamp(26px, 2.8vw, 42px); line-height: 1.28; }
.confidence-row { margin-top: 70px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.confidence-row article { position: relative; padding: 25px 24px 22px 42px; border: 1px solid var(--line); border-radius: 18px; background: rgba(13,27,42,.58); }
.confidence-row strong { display: block; font-size: 16px; }
.confidence-row p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }
.confidence { position: absolute; top: 29px; left: 20px; width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 12px currentColor; }
.confidence.high { color: var(--green); background: currentColor; }
.confidence.medium { color: var(--yellow); background: currentColor; }
.confidence.low { color: var(--coral); background: currentColor; }

.archive-grid,
.film-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.archive-card,
.film-card {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--text);
  background: linear-gradient(155deg, rgba(17,37,59,.88), rgba(7,17,31,.92));
  text-decoration: none;
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.archive-card:hover,
.film-card:hover {
  border-color: rgba(73,183,255,.35);
}

.archive-card span,
.film-card span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.archive-card strong,
.film-card strong {
  margin: 16px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}

.archive-card p,
.film-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.archive-card-primary {
  grid-column: span 2;
  background:
    radial-gradient(circle at 88% 12%, rgba(255,209,102,.17), transparent 18rem),
    linear-gradient(155deg, rgba(17,37,59,.95), rgba(7,17,31,.92));
}

.film-grid {
  grid-template-columns: 1.1fr repeat(5, .78fr);
  align-items: stretch;
}

.film-poster {
  padding: 0;
  overflow: hidden;
}

.film-poster img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.film-poster span {
  padding: 20px 24px 24px;
}

.film-poster strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--text);
  font-size: 22px;
  letter-spacing: normal;
  text-transform: none;
}

.event-timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.event-timeline::before { content: ""; position: absolute; top: 15px; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, var(--purple), var(--coral), var(--purple)); }
.event-timeline article { position: relative; padding: 50px 32px 32px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel); }
.event-timeline article.timeline-maximum { border-color: rgba(239,131,84,.55); box-shadow: inset 0 0 50px rgba(239,131,84,.045); }
.timeline-dot { position: absolute; top: 8px; left: 50%; width: 14px; height: 14px; transform: translateX(-50%); border: 3px solid var(--bg); border-radius: 50%; background: var(--purple); box-shadow: 0 0 0 1px var(--purple), 0 0 16px var(--purple); }
.timeline-maximum .timeline-dot { background: var(--coral); box-shadow: 0 0 0 1px var(--coral), 0 0 18px var(--coral); }
.event-timeline strong { display: block; margin: 5px 0 7px; font-family: var(--serif); font-size: clamp(34px, 3vw, 50px); letter-spacing: -.03em; }
.event-timeline article > span:last-child { color: var(--muted); font-size: 14px; }
.source-note { margin: 28px 0 0; color: var(--muted); font-size: 13px; }

.chart-frame {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 34px 100px rgba(0,0,0,.28);
  cursor: zoom-in;
}
.chart-frame img { width: 100%; }
.chart-frame > span { position: absolute; right: 20px; bottom: 18px; padding: 7px 12px; border-radius: 999px; color: var(--text); background: rgba(7,17,31,.72); font-size: 12px; font-weight: 700; backdrop-filter: blur(10px); }
.evidence-cards { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.evidence-cards article { padding: 25px; border: 1px solid var(--line); border-radius: 20px; background: rgba(13,27,42,.7); }
.evidence-cards span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.evidence-cards strong { display: block; margin: 8px 0; color: var(--yellow); font-size: 28px; }
.evidence-cards p { margin: 0; color: var(--muted); font-size: 14px; }

.comparison-banner { margin-top: 28px; padding: 26px 38px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--panel-2); text-align: center; }
.comparison-banner div:not(.versus) { display: flex; flex-direction: column; }
.comparison-banner span { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.comparison-banner strong { color: var(--yellow); font-size: clamp(36px, 4vw, 62px); line-height: 1.1; }
.comparison-banner div:last-child strong { color: var(--cyan); }
.comparison-banner small { color: var(--muted); }
.versus { color: var(--muted); font-family: var(--serif); font-size: 25px; font-style: italic; }
.body-copy { max-width: 990px; margin: 42px auto 0; color: #c7d8e9; font-size: 20px; line-height: 1.75; }

.sensor-findings { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sensor-findings article { padding: 25px 23px; border: 1px solid var(--line); border-radius: 20px; background: rgba(13,27,42,.72); }
.finding-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 26px; border: 1px solid currentColor; border-radius: 50%; font-size: 12px; font-weight: 900; }
.temperature-icon { color: var(--coral); }
.humidity-icon { color: var(--cyan); }
.dew-icon { color: var(--green); }
.pressure-icon { color: var(--purple); }
.sensor-findings h3 { margin: 0; font-size: 17px; }
.sensor-findings strong { display: block; margin: 7px 0 12px; font-size: 29px; }
.sensor-findings p { margin: 0; color: var(--muted); font-size: 13px; }

.snapshot-controls { display: flex; gap: 10px; margin-bottom: 20px; }
.snapshot-controls button { padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font-weight: 700; }
.snapshot-controls button.active { color: var(--bg); border-color: var(--yellow); background: var(--yellow); }
.snapshot-panel { padding: clamp(28px, 5vw, 64px); display: grid; grid-template-columns: .7fr 1.3fr; gap: 55px; border: 1px solid rgba(255,209,102,.28); border-radius: 30px; background: linear-gradient(130deg, rgba(255,209,102,.08), rgba(13,27,42,.82) 45%); }
.snapshot-time { display: flex; flex-direction: column; justify-content: center; }
.snapshot-time > span { color: var(--yellow); font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.snapshot-time strong { margin: 8px 0; font-family: var(--serif); font-size: clamp(54px, 6vw, 88px); line-height: 1; letter-spacing: -.05em; }
.snapshot-time small { color: var(--muted); font-weight: 800; }
.snapshot-values { margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); }
.snapshot-values div { padding: 20px 22px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.snapshot-values div:nth-last-child(-n+2) { border-bottom: 0; }
.snapshot-values dt { color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.snapshot-values dd { margin: 4px 0 0; font-size: 24px; font-weight: 800; }

.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.method-grid article { min-height: 220px; padding: 27px; border: 1px solid var(--line); border-radius: 22px; background: rgba(13,27,42,.62); }
.method-grid article > span { color: var(--cyan); font-size: 12px; font-weight: 900; }
.method-grid h3 { margin: 30px 0 8px; font-size: 19px; }
.method-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.quality-card { margin-top: 28px; padding: 34px 44px; display: flex; align-items: center; justify-content: space-between; gap: 40px; border-radius: 24px; color: var(--ink); background: var(--paper); }
.quality-card .eyebrow { color: #1f6b98; }
.quality-card strong { font-family: var(--serif); font-size: clamp(30px, 3vw, 46px); }
.quality-card p:last-child { margin-bottom: 0; color: #52677c; }
.quality-ring { display: grid; place-items: center; flex: 0 0 128px; width: 128px; height: 128px; border: 10px solid #d7e3ef; border-top-color: #168bd1; border-right-color: #168bd1; border-bottom-color: #168bd1; border-radius: 50%; transform: rotate(45deg); }
.quality-ring span { transform: rotate(-45deg); color: var(--ink); font-size: 31px; font-weight: 900; }
.quality-ring small { font-size: 16px; }

.station-layout { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(40px, 7vw, 100px); }
.station-layout figure { margin: 0; }
.station-layout figure img { border-radius: 30px; box-shadow: 0 35px 90px rgba(0,0,0,.35); }
.station-layout figcaption { margin-top: 14px; color: var(--muted); font-size: 12px; }
.station-layout > div > p:not(.eyebrow) { color: var(--muted); font-size: 18px; }
.instrument-list { margin: 34px 0 0; padding: 0; list-style: none; }
.instrument-list li { padding: 14px 0; border-bottom: 1px solid var(--line); }
.instrument-list span { display: inline-block; width: 42px; color: var(--cyan); font-size: 12px; font-weight: 900; }

.verdict-grid { display: grid; grid-template-columns: 1.15fr .925fr .925fr; gap: 18px; }
.verdict-card { min-height: 360px; padding: 30px; border: 1px solid var(--line); border-radius: 25px; background: var(--panel); }
.verdict-card.verdict-primary { background: linear-gradient(145deg, rgba(255,209,102,.15), var(--panel)); border-color: rgba(255,209,102,.36); }
.verdict-card > span { color: var(--cyan); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.verdict-primary > span { color: var(--yellow); }
.verdict-card h3 { margin: 85px 0 18px; font-family: var(--serif); font-size: 31px; line-height: 1.25; }
.verdict-card p { margin: 0; color: var(--muted); font-size: 15px; }
.opinion-card { margin-top: 24px; padding: clamp(35px, 5vw, 70px); border-left: 4px solid var(--yellow); background: rgba(17,37,59,.62); }
.opinion-card p:last-child { max-width: 1100px; margin: 0; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 37px); line-height: 1.45; }

.two-column-copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; }
.two-column-copy article:first-child { padding-right: 60px; border-right: 1px solid var(--line); }
.check-list, .number-list { margin: 38px 0 0; padding: 0; list-style: none; }
.check-list li, .number-list li { position: relative; padding: 15px 0 15px 38px; border-bottom: 1px solid var(--line); color: #c7d8e9; }
.check-list li::before { content: "×"; position: absolute; left: 4px; color: var(--coral); font-weight: 900; }
.number-list { counter-reset: next; }
.number-list li { counter-increment: next; }
.number-list li::before { content: counter(next, decimal-leading-zero); position: absolute; left: 0; color: var(--cyan); font-size: 12px; font-weight: 900; }

.asset-gallery { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: repeat(2, auto); gap: 18px; }
.gallery-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 24px; color: var(--text); background: var(--panel); text-align: left; cursor: zoom-in; }
.gallery-card.wide { grid-row: 1 / 3; }
.gallery-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: top; }
.gallery-card:not(.wide) img { aspect-ratio: 16 / 7; }
.gallery-card span { padding: 18px 20px; color: var(--muted); font-size: 13px; }
.gallery-card strong { display: block; color: var(--text); font-size: 16px; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 20px; }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 16px 20px; border-bottom: 1px solid var(--line); text-align: right; font-variant-numeric: tabular-nums; }
th:first-child, td:first-child { text-align: left; }
th { color: var(--muted); background: var(--panel-2); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
td { font-size: 14px; }
tbody tr:last-child td { border-bottom: 0; }
.minimum-row { color: var(--yellow); background: rgba(255,209,102,.08); font-weight: 800; }
.download-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.download-grid a { padding: 22px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; color: var(--text); background: var(--panel); text-decoration: none; }
.download-grid a > span { color: var(--cyan); font-size: 11px; font-weight: 900; }
.download-grid strong { margin: 18px 0 3px; }
.download-grid small { color: var(--muted); }

.references-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 80px; }
.references h2 { font-family: var(--serif); font-size: 42px; }
.references li, .references p { color: var(--muted); }
.closing-mark { margin-top: 100px; padding-top: 45px; display: flex; align-items: flex-end; justify-content: space-between; border-top: 1px solid var(--line); }
.closing-mark > span { color: var(--cyan); font-size: 92px; font-weight: 900; line-height: .8; letter-spacing: -.08em; }
.closing-mark p { margin: 0; text-align: right; }

footer { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 35px 42px 55px; display: flex; justify-content: space-between; color: var(--muted); font-size: 13px; }

dialog {
  width: min(96vw, 1650px);
  max-height: 94vh;
  padding: 0;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--bg);
  box-shadow: 0 40px 140px #000;
}
dialog::backdrop { background: rgba(2,7,14,.86); backdrop-filter: blur(12px); }
dialog img { width: 100%; max-height: 92vh; object-fit: contain; border-radius: 22px; }
#closeDialog { position: absolute; z-index: 2; top: -16px; right: -16px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; color: var(--text); background: var(--panel-2); font-size: 24px; cursor: pointer; }

@media (max-width: 1050px) {
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 90px; }
  .hero-visual { min-height: 470px; }
  .eclipse-orbit { width: min(440px, 75vw); }
  .hero-result { right: 8%; bottom: 8%; }
  .abstract-grid, .station-layout, .two-column-copy, .split-heading, .archive-grid, .film-grid { grid-template-columns: 1fr; gap: 40px; }
  .two-column-copy article:first-child { padding-right: 0; border-right: 0; }
  .sensor-findings { grid-template-columns: repeat(2, 1fr); }
  .verdict-grid { grid-template-columns: 1fr; }
  .verdict-card { min-height: 0; }
  .verdict-card h3 { margin-top: 35px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .site-header { width: 100%; max-width: 100vw; min-height: 66px; padding: 10px 18px; justify-content: space-between; gap: 12px; }
  .brand { margin-right: 0; }
  .brand-copy { display: none; }
  .site-header .button { flex: 0 0 auto; margin-left: 0; padding-inline: 15px; }
  .button-small { font-size: 12px; }
  .hero, .report-section, footer { width: min(calc(100% - 24px), var(--max)); }
  .hero { max-width: calc(100vw - 24px); padding-inline: 18px; }
  .hero > * { min-width: 0; }
  .hero::before, .hero-noise { border-radius: 24px; }
  .hero h1 { max-width: 100%; font-size: clamp(46px, 13.2vw, 62px); }
  .hero h1 em { display: block; overflow-wrap: anywhere; }
  .hero .eyebrow { max-width: 100%; overflow-wrap: anywhere; }
  .hero-lead { font-size: 20px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-meta { gap: 18px; }
  .hero-meta div { padding: 0 18px; }
  .hero-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-strip article:nth-child(3) { padding-left: 0; border-left: 0; }
  .report-section { padding: 85px 8px; }
  .section-label { margin-bottom: 42px; }
  .section-heading h2, .station-layout h2, .two-column-copy h2 { font-size: 48px; }
  .confidence-row, .event-timeline, .evidence-cards, .method-grid, .download-grid, .references-grid, .archive-grid, .film-grid { grid-template-columns: 1fr; }
  .event-timeline::before { display: none; }
  .timeline-dot { left: 32px; }
  .comparison-banner { padding: 24px 15px; grid-template-columns: 1fr; }
  .sensor-findings { grid-template-columns: 1fr; }
  .snapshot-panel { grid-template-columns: 1fr; }
  .snapshot-values { grid-template-columns: 1fr; }
  .snapshot-values div { border-left: 0; }
  .snapshot-controls { overflow-x: auto; }
  .snapshot-controls button { white-space: nowrap; }
  .asset-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-card.wide { grid-row: auto; }
  .archive-card-primary { grid-column: auto; }
  footer { flex-direction: column; gap: 10px; }
}

@page { size: A4; margin: 12mm 12mm 14mm; }

@media print {
  * { -webkit-print-color-adjust: exact !important; print-color-adjust: exact !important; }
  html { scroll-padding-top: 0; }
  body { background: var(--bg) !important; font-size: 10.5pt; }
  .progress, .site-header, footer, dialog, .chart-frame > span, .snapshot-controls, .hero-actions { display: none !important; }
  .hero, .report-section { width: 100%; margin: 0; border: 0; }
  .hero {
    min-height: 0;
    height: 268mm;
    padding: 20mm 11mm 10mm;
    grid-template-columns: 1.05fr .95fr;
    grid-template-rows: 1fr auto;
    page-break-after: always;
    overflow: hidden;
  }
  .hero::before, .hero-noise { inset: 2mm; }
  .hero h1 { font-size: 64pt; }
  .hero-lead { font-size: 16pt; }
  .hero-visual { min-height: 110mm; }
  .eclipse-orbit { width: 100mm; }
  .hero-result { bottom: 12%; }
  .hero-strip article { padding-top: 13px; }
  .report-section { padding: 15mm 7mm 10mm; break-before: page; }
  .report-section.intro { break-before: auto; }
  .section-label { margin-bottom: 9mm; }
  .section-heading { margin-bottom: 10mm; }
  .section-heading h2, .station-layout h2, .two-column-copy h2 { font-size: 35pt; }
  .split-heading { grid-template-columns: minmax(0, 1.35fr) minmax(55mm, .65fr); gap: 12mm; }
  .abstract-statement { font-size: 17pt; }
  .claim-card blockquote { font-size: 19pt; }
  .chart-frame { border-radius: 12px; box-shadow: none; cursor: default; }
  .chart-frame img { max-height: 158mm; object-fit: contain; }
  .evidence-cards article, .sensor-findings article, .method-grid article, .verdict-card { break-inside: avoid; }
  #controls .section-heading, #environment .section-heading { margin-bottom: 6mm; }
  #controls .chart-frame img, #environment .chart-frame img { max-height: 118mm; }
  #controls .comparison-banner { margin-top: 5mm; padding: 5mm 7mm; }
  #controls .body-copy { margin-top: 5mm; font-size: 10.5pt; line-height: 1.5; }
  .sensor-findings { margin-top: 5mm; grid-template-columns: repeat(4, 1fr); gap: 3mm; }
  .sensor-findings article { padding: 4mm; }
  .sensor-findings .finding-icon { width: 9mm; height: 9mm; margin-bottom: 4mm; }
  .sensor-findings strong { margin: 1mm 0 2mm; font-size: 17pt; }
  .sensor-findings p { font-size: 8.5pt; line-height: 1.4; }
  .method-grid { grid-template-columns: repeat(3, 1fr); }
  .method-grid article { min-height: 47mm; padding: 5mm; }
  .snapshot-panel { padding: 8mm; }
  .snapshot-time strong { font-size: 46pt; }
  .station-layout { grid-template-columns: 1fr 1fr; }
  .station-layout figure img { max-height: 150mm; object-fit: cover; }
  .conclusion-section { padding-top: 10mm; padding-bottom: 7mm; }
  .conclusion-section .section-label { margin-bottom: 6mm; }
  .conclusion-section .section-heading { margin-bottom: 7mm; }
  .verdict-grid { grid-template-columns: 1.15fr .925fr .925fr; gap: 4mm; }
  .verdict-card { min-height: 66mm; padding: 5mm; }
  .verdict-card h3 { margin-top: 12mm; font-size: 17pt; }
  .opinion-card { margin-top: 6mm; padding: 8mm; }
  .opinion-card p:last-child { font-size: 16.5pt; line-height: 1.35; }
  .asset-gallery { grid-template-columns: 1.2fr .8fr; }
  .gallery-card { cursor: default; }
  .gallery-card img { max-height: 120mm; object-fit: contain; }
  .gallery-card span { padding: 3mm; }
  .download-grid { display: none; }
  .references { min-height: 260mm; }
  a { color: var(--cyan); }
}
