/* Editorial tracker pages — distinct from the Anthropic parody homepage */

@font-face {
  font-family: "Anthropic Sans Text";
  src: url("../Anthropic%20Sans/AnthropicSans-Text-Regular-Static.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anthropic Sans Text";
  src: url("../Anthropic%20Sans/AnthropicSans-Text-Medium-Static.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anthropic Sans Text";
  src: url("../Anthropic%20Sans/AnthropicSans-Text-Semibold-Static.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anthropic Sans Text";
  src: url("../Anthropic%20Sans/AnthropicSans-Text-Bold-Static.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anthropic Serif";
  src: url("../fonts/AnthropicSerif-Roman.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Anthropic Serif";
  src: url("../fonts/AnthropicSerif-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #f7f6f2;
  --bg-soft: #efeee8;
  --ink: #1a1a18;
  --ink-soft: #5c5b56;
  --ink-medium: #3a3a37;
  --line: #d9d7ce;
  --accent: #1a1a18;
  --sans: "Anthropic Sans Text", "Helvetica Neue", Arial, sans-serif;
  --serif: "Anthropic Serif", Georgia, "Times New Roman", serif;
  --measure: 720px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: #d97757;
  color: #fff;
}

a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a:hover {
  color: #c05f3f;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.site-header-inner {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-brand {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-brand:hover {
  color: #c05f3f;
}

.site-nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
}

main {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 40px 20px 72px;
}

.meta-line {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 12px;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.lede {
  font-size: 1.05rem;
  color: var(--ink-medium);
  margin-bottom: 36px;
}

.lede p + p {
  margin-top: 14px;
}

h2 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 44px 0 14px;
  letter-spacing: -0.015em;
}

h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 28px 0 10px;
}

p {
  margin-bottom: 14px;
}

.section p:last-child {
  margin-bottom: 0;
}

.status-box {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 18px 20px;
  margin: 28px 0;
}

.status-box dl {
  display: grid;
  grid-template-columns: minmax(120px, 180px) 1fr;
  gap: 10px 16px;
}

.status-box dt {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status-box dd {
  font-size: 15px;
  color: var(--ink);
}

.table-wrap {
  overflow-x: auto;
  margin: 18px 0 28px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: #fff;
}

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

th {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: var(--bg-soft);
}

tr:last-child td {
  border-bottom: none;
}

.confidence-high { font-weight: 600; }
.confidence-medium { color: var(--ink-medium); }
.confidence-low { color: var(--ink-soft); }
.confidence-none { color: var(--ink-soft); font-style: italic; }

.timeline {
  list-style: none;
  margin: 18px 0 28px;
  border-left: 2px solid var(--line);
  padding-left: 0;
}

.timeline li {
  position: relative;
  padding: 0 0 22px 22px;
}

.timeline li:last-child {
  padding-bottom: 0;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--bg);
}

.timeline time {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}

.timeline .tl-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline p {
  font-size: 15px;
  color: var(--ink-medium);
  margin: 0;
}

.sources {
  list-style: none;
  margin: 12px 0 28px;
}

.sources li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.sources li:last-child {
  border-bottom: none;
}

.faq-item {
  margin-bottom: 28px;
}

.faq-item h3 {
  margin-top: 0;
}

.callout {
  margin: 40px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-size: 15px;
}

.callout p + p {
  margin-top: 10px;
  margin-bottom: 0;
}

.updates-list {
  list-style: none;
  margin: 28px 0 0;
}

.updates-list article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.updates-list article:first-child {
  border-top: 1px solid var(--line);
}

.updates-list time {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.updates-list h2 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}

.updates-list p {
  margin: 0;
  color: var(--ink-medium);
  font-size: 15px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 2px 7px;
  margin-left: 8px;
  vertical-align: middle;
}

.site-footer {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 20px 48px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.site-footer a {
  color: var(--ink-soft);
}

@media (max-width: 520px) {
  .status-box dl {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .status-box dd {
    margin-bottom: 10px;
  }

  .status-box dd:last-child {
    margin-bottom: 0;
  }

  body {
    font-size: 16px;
  }
}
