:root {
  --paper: #fbfbfa;
  --paper-2: #f1f2ef;
  --ink: #1a1714;
  --ink-2: #2c2622;
  --mut-1: #6e6962;
  --mut-2: #a8a298;
  --mut-3: #c9c2b5;
  --line: #dfdfdc;
  --accent: #a84f2b;
  --agent: #a84f2b;
  --human: #1a1714;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --sans: Roboto, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

.atlas-bar {
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: flex;
  font-family: var(--mono);
  font-size: 12px;
  height: 56px;
  letter-spacing: 0.04em;
  padding: 0 28px;
}

.sig {
  align-items: center;
  display: flex;
  gap: 10px;
  text-decoration: none;
}

.sig b {
  font-weight: 800;
}

.sig b span,
.suffix {
  color: var(--mut-2);
}

.mark {
  color: var(--accent);
  font-size: 15px;
}

.suffix {
  margin-left: 6px;
}

.atlas-bar nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.atlas-bar nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  text-decoration: none;
}

.atlas-bar nav a:hover {
  border-color: var(--ink);
}

.hero,
.install-strip,
.research,
.actions-grid {
  margin: 0 auto;
  max-width: 1180px;
}

.hero {
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.95fr) minmax(470px, 0.9fr);
  min-height: calc(92svh - 56px);
  padding: 82px 28px 44px;
}

.hero-copy {
  align-self: center;
}

.kicker {
  color: var(--mut-1);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display {
  font-family: var(--sans);
  font-size: clamp(50px, 5.8vw, 84px);
  font-weight: 880;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
  max-width: 690px;
}

.lede {
  color: var(--ink-2);
  font-size: 25px;
  line-height: 1.38;
  margin: 36px 0 0;
  max-width: 570px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  min-height: 42px;
  padding: 12px 16px;
  text-decoration: none;
}

.btn.solid,
.btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.snapshot,
.terminal {
  align-self: center;
  position: relative;
}

.snapshot {
  background: #fffdf8;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.snapshot-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 14px 16px;
  text-transform: uppercase;
}

.metric-table {
  margin: 0;
}

.metric-table div {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1fr);
  padding: 18px 20px;
}

.metric-table dt,
.metric-table dd {
  margin: 0;
}

.metric-table dt {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.metric-table dd {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.35;
}

.snapshot p {
  color: var(--mut-1);
  font-size: 15px;
  line-height: 1.55;
  padding: 20px;
}

.terminal {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--paper);
}

.term-head {
  align-items: center;
  border-bottom: 1px solid var(--ink-2);
  color: var(--mut-3);
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: 0.08em;
  padding: 13px 16px;
  text-transform: uppercase;
}

.terminal pre {
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.72;
  margin: 0;
  overflow-x: auto;
  padding: 28px;
}

.ticked::before,
.ticked::after {
  border-color: var(--accent);
  border-style: solid;
  content: "";
  height: 26px;
  position: absolute;
  width: 26px;
}

.ticked::before {
  border-width: 1px 0 0 1px;
  left: -10px;
  top: -10px;
}

.ticked::after {
  border-width: 0 1px 1px 0;
  bottom: -10px;
  right: -10px;
}

.install-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 86px;
}

.research-preview {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1180px;
  padding: 26px 28px 28px;
}

.research-preview h2 {
  font-size: 26px;
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1;
}

.research-preview p {
  color: var(--mut-1);
  font-size: 16px;
  line-height: 1.55;
  margin-top: 10px;
  max-width: 760px;
}

.install-strip > div {
  border-right: 1px solid var(--line);
  min-width: 0;
  padding: 22px 24px;
}

.install-strip > div:last-child {
  border-right: 0;
}

code {
  font-family: var(--mono);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.install-strip code {
  display: block;
  margin-top: 12px;
}

.research {
  padding: 0 28px 72px;
}

.section-head {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.76fr 1fr;
}

h2,
h3,
p {
  margin: 0;
}

.section-head h2 {
  font-size: clamp(54px, 9vw, 116px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.section-head p {
  color: var(--mut-1);
  font-size: 20px;
  line-height: 1.48;
  max-width: 630px;
}

.featured-post {
  border: 1px solid var(--ink);
  display: grid;
  gap: 24px;
  grid-template-columns: 3px 1fr auto;
  margin-top: 38px;
  padding: 28px;
}

.author-rail {
  background: var(--ink);
  min-height: 100%;
}

.author-rail.agent {
  background: linear-gradient(180deg, var(--agent), var(--ink));
}

.featured-post h3,
.ledger h3,
.actions-grid h2 {
  font-size: 31px;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 11px;
}

.featured-post p,
.ledger p,
.actions-grid p {
  color: var(--mut-1);
  font-size: 16px;
  line-height: 1.58;
  margin-top: 14px;
}

.read-link {
  align-self: start;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.ledger {
  border-top: 1px solid var(--line);
  margin-top: 28px;
}

.ledger-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 44px 1fr 210px;
  padding: 22px 0;
}

.num,
.meta {
  color: var(--mut-1);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.actions-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 28px 84px;
}

.actions-grid article {
  border-right: 1px solid var(--line);
  padding: 28px 24px 0 0;
}

.actions-grid article + article {
  padding-left: 24px;
}

.actions-grid article:last-child {
  border-right: 0;
}

.report-page {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px 84px;
}

.report-hero {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  padding: 76px 0 54px;
}

.report-hero .display {
  font-size: clamp(56px, 7.4vw, 104px);
  margin-top: 18px;
}

.report-hero .lede {
  align-self: end;
  font-size: 21px;
  margin: 0;
}

.verdict-band {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  padding: 34px 0;
}

.verdict-band.bottom {
  border-top: 1px solid var(--line);
  margin-top: 44px;
}

.verdict-band h2 {
  font-size: clamp(34px, 4.7vw, 62px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin-top: 10px;
}

.verdict-band p {
  color: var(--mut-1);
  font-size: 18px;
  line-height: 1.55;
}

.section-head.compact h2 {
  font-size: clamp(46px, 6.4vw, 78px);
}

.evidence-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.evidence-grid article {
  border-right: 1px solid var(--line);
  padding: 24px 24px 0 0;
}

.evidence-grid article + article {
  padding-left: 24px;
}

.evidence-grid article:last-child {
  border-right: 0;
}

.evidence-grid h3 {
  font-size: 29px;
  font-weight: 850;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 11px;
}

.evidence-grid p {
  color: var(--mut-1);
  font-size: 16px;
  line-height: 1.58;
  margin-top: 14px;
}

.report-table-section {
  border-top: 1px solid var(--line);
  padding: 30px 0 8px;
}

.section-label {
  color: var(--mut-1);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.report-table {
  border-collapse: collapse;
  font-size: 15px;
  width: 100%;
}

.report-table th,
.report-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 12px;
  text-align: left;
  vertical-align: top;
}

.report-table th {
  color: var(--mut-1);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-table td:first-child {
  font-weight: 750;
}

.atlas-foot {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--mut-1);
  display: flex;
  font-family: var(--mono);
  font-size: 11px;
  justify-content: space-between;
  letter-spacing: 0.04em;
  padding: 14px 28px;
}

@media (max-width: 900px) {
  .atlas-bar {
    align-items: flex-start;
    flex-direction: column;
    height: auto;
    padding: 16px 20px;
  }

  .suffix {
    margin: 4px 0 0 25px;
  }

  .atlas-bar nav {
    flex-wrap: wrap;
    gap: 14px;
    margin: 16px 0 0;
  }

  .hero,
  .report-hero,
  .verdict-band,
  .section-head,
  .featured-post,
  .evidence-grid,
  .ledger-row,
  .actions-grid,
  .install-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding: 58px 20px 54px;
  }

  .display {
    font-size: clamp(92px, 34vw, 154px);
  }

  .lede {
    font-size: 20px;
  }

  .terminal pre {
    font-size: 12px;
    padding: 20px;
  }

  .report-page {
    padding: 0 20px 56px;
  }

  .report-hero {
    padding: 56px 0 42px;
  }

  .report-hero .display {
    font-size: clamp(58px, 20vw, 116px);
  }

  .report-hero .lede,
  .verdict-band p {
    font-size: 18px;
  }

  .snapshot {
    align-self: stretch;
  }

  .snapshot-head,
  .metric-table div,
  .research-preview {
    grid-template-columns: 1fr;
  }

  .metric-table div {
    gap: 8px;
  }

  .install-strip {
    margin-left: 20px;
    margin-right: 20px;
  }

  .install-strip > div,
  .actions-grid article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .install-strip > div:last-child,
  .actions-grid article:last-child {
    border-bottom: 0;
  }

  .research,
  .actions-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-head h2 {
    font-size: clamp(56px, 18vw, 84px);
  }

  .featured-post {
    padding: 22px;
  }

  .read-link {
    justify-self: start;
  }

  .ledger-row {
    gap: 12px;
  }

  .actions-grid article,
  .actions-grid article + article {
    padding: 24px 0;
  }

  .evidence-grid article,
  .evidence-grid article + article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 22px 0;
  }

  .evidence-grid article:last-child {
    border-bottom: 0;
  }

  .report-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .atlas-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
