@font-face {
  font-family: 'Oxanium';
  src: url('/assets/fonts/Oxanium-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --fuschia: #FF00CC;
  --fuschia-deep: #CC0077;
  --fuschia-dim: rgba(255,0,204,0.07);
  --fuschia-border: rgba(255,0,204,0.22);
  --oss-accent: #FF00CC;
  --oss-accent-dim: rgba(255,0,204,0.055);
  --oss-accent-border: rgba(255,0,204,0.28);
  --commercial-accent: #007A70;
  --commercial-accent-dim: rgba(0,158,142,0.055);
  --commercial-accent-border: rgba(0,158,142,0.28);
  --ink: #0D0008;
  --ink-mid: #4A2040;
  --ink-light: #8A6080;
  --white: #ffffff;
  --mist: #fdf5fc;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* The reset above makes a link inside running text indistinguishable from
   the text around it. Prose links get a colour and an underline back; any
   component that styles its own links (nav, buttons, cards, references)
   does so with a class rule, which outranks this one. */
main p a,
main li a {
  color: var(--fuschia-deep);
  text-decoration: underline;
  text-decoration-color: var(--fuschia-border);
  text-underline-offset: 3px;
}

main p a:hover,
main li a:hover {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--fuschia);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── Header ─────────────────────────────────────────────────── */

/* Site nav only. Page content sets its own <header> elements, and a bare
   element selector here would lay those out as flex rows too. */
body > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 56px;
  border-bottom: 1px solid var(--fuschia-border);
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.logo-text sup {
  font-size: 11px;
  color: var(--fuschia);
  font-weight: 700;
  margin-left: 1px;
}

nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  color: var(--ink-mid);
  align-items: center;
}

nav a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--fuschia);
  color: var(--white) !important;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 500;
}

.nav-cta:hover {
  background: var(--fuschia-deep) !important;
}

/* One primary action in the nav; Contact is the quieter second. */
.nav-cta--outline {
  background: transparent;
  color: var(--fuschia) !important;
  border: 1.5px solid var(--fuschia-border);
}

.nav-cta--outline:hover {
  background: transparent !important;
  border-color: var(--fuschia);
}

/* ─── Hero ────────────────────────────────────────────────────── */

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px 100px;
}

.hero-split {
  display: flex;
  align-items: center;
  gap: 72px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  flex: 1;
}

.hero-centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}

.hero h1 em {
  color: var(--fuschia);
  font-style: normal;
}

.hero p {
  font-size: 18px;
  color: var(--ink-mid);
  max-width: 500px;
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-centered p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Atom canvas ─────────────────────────────────────────────── */

#atom-canvas {
  width: 380px;
  height: 340px;
  display: block;
}

/* ─── Buttons ─────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--fuschia);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--fuschia-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--ink-mid);
  border: 1.5px solid var(--fuschia-border);
}

.btn-secondary:hover {
  border-color: var(--fuschia);
  color: var(--fuschia);
}

/* ─── Divider ─────────────────────────────────────────────────── */

.rule {
  height: 1px;
  background: var(--fuschia-border);
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── Section shared ──────────────────────────────────────────── */

.section-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fuschia);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ─── Products / Services cards ───────────────────────────────── */

.products {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px;
}

.products h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  padding: 32px;
  border: 1.5px solid var(--fuschia-border);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.product-card:hover {
  border-color: var(--fuschia);
  box-shadow: 0 4px 16px var(--fuschia-dim);
}

.product-card h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 3px;
  background: var(--fuschia-dim);
  color: var(--fuschia);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--fuschia-border);
}

.product-card p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--fuschia);
}

.card-link:hover {
  color: var(--fuschia-deep);
}

.section-closing {
  max-width: 760px;
  margin-top: 28px;
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.7;
}

/* ─── Open source preview strip ──────────────────────────────── */

.oss-strip {
  background: var(--fuschia-dim);
  border-top: 1px solid var(--fuschia-border);
  border-bottom: 1px solid var(--fuschia-border);
  padding: 80px 56px;
}

.oss-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.oss-strip h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  color: var(--ink);
}

.oss-strip p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.pledge-list {
  list-style: none;
}

.pledge-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--fuschia-border);
  font-size: 14px;
  color: var(--ink-mid);
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.pledge-list li::before {
  content: '→';
  color: var(--fuschia);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── Funded projects pills ───────────────────────────────────── */

.funded-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fuschia);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.funded-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.funded-pill {
  padding: 5px 14px;
  border: 1.5px solid var(--fuschia-border);
  border-radius: 20px;
  font-size: 13px;
  color: var(--ink-mid);
}

/* ─── Email CTA ───────────────────────────────────────────────── */

.email-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 56px;
  text-align: center;
}

.email-cta h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  color: var(--ink);
}

.email-cta p {
  font-size: 18px;
  color: var(--ink-mid);
  margin-bottom: 32px;
}

.email-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--fuschia);
  border-bottom: 2px solid var(--fuschia);
  padding-bottom: 2px;
}

.email-link:hover {
  color: var(--fuschia-deep);
  border-color: var(--fuschia-deep);
}

/* ─── Services page ───────────────────────────────────────────── */

.service-detail {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 56px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
  border-bottom: 1px solid var(--fuschia-border);
}

.service-detail:last-of-type {
  border-bottom: none;
}

.service-meta {
  position: sticky;
  top: 32px;
}

.service-name {
  font-family: 'Oxanium', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fuschia);
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.service-body h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.service-body p {
  font-size: 16px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 600px;
}

.service-features {
  list-style: none;
  margin-bottom: 32px;
}

.service-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--fuschia-border);
  font-size: 15px;
  color: var(--ink-mid);
  display: flex;
  gap: 10px;
}

.service-features li::before {
  content: '→';
  color: var(--fuschia);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px 80px;
}

.pricing-section h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--ink);
}

.pricing-section > p {
  max-width: 760px;
  margin-bottom: 40px;
  color: var(--ink-mid);
  font-size: 16px;
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  border: 1.5px solid var(--fuschia-border);
  border-radius: 8px;
  padding: 24px 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--fuschia);
  background: var(--mist);
  box-shadow: 0 4px 16px var(--fuschia-dim);
}

/* The tier's action sits on the card's bottom edge, level across all three. */
.pricing-card .card-link {
  margin-top: auto;
  padding-top: 16px;
}

/* What the tier includes. Words in grey, figures in ink; fuschia is kept
   for the markers so the card carries one accent, not two shades of it. */
.pricing-specs {
  list-style: none;
  margin: 0 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--fuschia-border);
  display: grid;
  gap: 8px;
}

.pricing-specs li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.45;
}

.pricing-specs li::before {
  content: '';
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--fuschia);
}

.pricing-specs b {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.pricing-note {
  max-width: 760px;
  margin-top: 28px;
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.7;
}

/* The tier's name: the card's only fuschia text. */
.pricing-card > span {
  display: block;
  color: var(--fuschia);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pricing-card > strong {
  display: block;
  color: var(--ink);
  font-family: 'Oxanium', sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 18px;
}

.pricing-card .per {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-light);
  margin-left: 2px;
}

.pricing-card p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.service-body p code,
.service-body li code {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
  background: var(--fuschia-dim);
  border: 1px solid var(--fuschia-border);
  padding: 0 5px;
  border-radius: 3px;
  color: var(--fuschia-deep);
  white-space: nowrap;
}

/* ─── Open source page ────────────────────────────────────────── */

.oss-tools {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px;
}

.oss-tools h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
  color: var(--ink);
}

.oss-pledge {
  background: var(--fuschia-dim);
  border-top: 1px solid var(--fuschia-border);
  border-bottom: 1px solid var(--fuschia-border);
  padding: 72px 56px;
  text-align: center;
}

.oss-pledge-inner {
  max-width: 700px;
  margin: 0 auto;
}

.oss-pledge h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--ink);
}

.oss-pledge p {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.8;
}

.funded-projects {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px;
}

.funded-projects h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
  color: var(--ink);
}

.funded-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.funded-card {
  padding: 24px 28px;
  border: 1.5px solid var(--fuschia-border);
  border-radius: 8px;
  transition: border-color 0.15s;
}

.funded-card:hover {
  border-color: var(--fuschia);
}

.funded-card h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.funded-card p {
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.5;
}

.funded-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fuschia);
}

/* ─── Supply-chain attack compendium ─────────────────────────── */

:root {
  --cnd-oss: var(--fuschia);
  --cnd-com: #007A70;
  --cnd-com-dim: rgba(0,122,112,0.08);
  --cnd-hairline: rgba(13,0,8,0.08);
}

.compendium-hero {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 56px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: end;
}

.compendium-hero__copy h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: 18px;
}

.compendium-hero__copy p {
  color: var(--ink-mid);
  font-size: 17px;
  line-height: 1.65;
  max-width: 680px;
}

.rss-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 7px 14px 7px 12px;
  border: 1px solid var(--fuschia-border);
  border-radius: 999px;
  background: var(--fuschia-dim);
  color: var(--fuschia-deep);
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.rss-link:hover {
  background: var(--fuschia-deep);
  border-color: var(--fuschia-deep);
  color: var(--white);
}

.compendium-source {
  display: grid;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-light);
  border-left: 1px solid var(--cnd-hairline);
  padding-left: 28px;
}

.compendium-source div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cnd-hairline);
}

.compendium-source div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.compendium-source strong {
  font-family: 'Oxanium', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

/* Dashboard cards */

.compendium-dashboard {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 56px 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.dash-card {
  border: 1px solid var(--cnd-hairline);
  border-radius: 12px;
  padding: 20px 22px;
  background: var(--white);
}

.dash-card--wide {
  grid-column: 1 / -1;
  padding-right: calc(22px + 1em);
}

.dash-card h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.dash-card h3 small {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0;
  text-transform: none;
}

.trend-svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}

.trend-axis {
  stroke: var(--cnd-hairline);
  stroke-width: 1;
}

.trend-line {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trend-line--oss {
  stroke: var(--cnd-oss);
}

.trend-line--com {
  stroke: var(--cnd-com);
}

.trend-dot--oss {
  fill: var(--cnd-oss);
  stroke: var(--cnd-oss);
}

.trend-dot--com {
  fill: var(--cnd-com);
  stroke: var(--cnd-com);
}

.trend-tick {
  fill: var(--ink-light);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px;
  text-anchor: start;
}

.trend-end {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  text-anchor: start;
}

.trend-end--oss {
  fill: var(--cnd-oss);
}

.trend-end--commercial {
  fill: var(--cnd-com);
}

.dash-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  font-size: 12px;
  color: var(--ink-mid);
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.legend-dot--oss {
  background: var(--cnd-oss);
}

.legend-dot--com {
  background: var(--cnd-com);
}

.pie-wrap {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.pie-svg {
  width: 130px;
  height: 130px;
  overflow: visible;
}

.pie-base {
  fill: rgba(13, 0, 8, 0.025);
  stroke: var(--cnd-hairline);
  stroke-width: 1;
}

.pie-slice {
  stroke: var(--white);
  stroke-width: 1;
}

.pie-legend {
  list-style: none;
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-mid);
}

.pie-legend li {
  display: grid;
  grid-template-columns: 9px minmax(0, 1fr) auto 40px;
  gap: 8px;
  align-items: center;
}

.pie-legend i {
  width: 9px;
  height: 9px;
  border-radius: 2px;
}

.pie-legend strong {
  color: var(--ink);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.pie-legend em {
  font-style: normal;
  color: var(--ink-light);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Sticky filter bar */

.compendium-controls {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--cnd-hairline);
  border-bottom: 1px solid var(--cnd-hairline);
}

.compendium-controls__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cseg {
  display: inline-flex;
  padding: 3px;
  background: rgba(13, 0, 8, 0.05);
  border-radius: 9px;
  gap: 2px;
}

.cseg button {
  font: inherit;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-mid);
  border: 0;
  background: transparent;
  padding: 7px 16px;
  border-radius: 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cseg button:hover:not([aria-pressed="true"]) {
  color: var(--ink);
}

.cseg button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 0 0 0.5px rgba(13, 0, 8, 0.06), 0 1px 2px rgba(13, 0, 8, 0.08);
}

.cseg__ct {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-light);
  font-variant-numeric: tabular-nums;
}

.cseg button[aria-pressed="true"] .cseg__ct {
  color: var(--ink);
}

.cseg__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.cseg__dot--oss {
  background: var(--cnd-oss);
}

.cseg__dot--com {
  background: var(--cnd-com);
}

.csub {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.csub label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--ink-light);
}

.csub select {
  font: inherit;
  font-size: 13px;
  color: var(--ink);
  background: var(--white) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="6" viewBox="0 0 10 6"><path d="M1 1l4 4 4-4" stroke="%238A6080" stroke-width="1.5" fill="none"/></svg>') no-repeat right 9px center;
  border: 1px solid var(--cnd-hairline);
  border-radius: 7px;
  padding: 6px 26px 6px 10px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.csub select:hover {
  border-color: var(--ink-mid);
}

.csub select:focus {
  outline: none;
  border-color: var(--fuschia);
  box-shadow: 0 0 0 3px var(--fuschia-dim);
}

.csub select.active {
  border-color: var(--fuschia);
  color: var(--fuschia-deep);
}

.csub__reset {
  font: inherit;
  font-size: 12px;
  color: var(--fuschia-deep);
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 6px;
}

.csub__reset:hover {
  color: var(--ink);
  text-decoration: underline;
}

.csub__reset[hidden] {
  display: none;
}

.compendium-controls__meta {
  margin-left: auto;
  font-size: 13px;
  color: var(--ink-light);
  font-variant-numeric: tabular-nums;
}

.compendium-controls__meta strong {
  color: var(--ink);
  font-weight: 600;
}

/* Year rail */

.compendium-year-rail {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px 4px;
  border-top: 1px solid var(--cnd-hairline);
}

.compendium-year-rail button {
  font: inherit;
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--ink-light);
  background: transparent;
  border: 0;
  padding: 6px 11px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.12s, background 0.12s;
}

.compendium-year-rail button:hover {
  color: var(--ink);
  background: var(--mist);
}

.compendium-year-rail button.current {
  color: var(--ink);
  background: var(--mist);
}

/* Stream */

.compendium-stream {
  max-width: 1080px;
  margin: 0 auto;
  padding: 8px 56px 72px;
}

.compendium-year-block {
  padding: 36px 0 12px;
  border-bottom: 1px solid var(--cnd-hairline);
  scroll-margin-top: 130px;
}

.compendium-year-block[hidden] {
  display: none;
}

.compendium-year-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
}

.compendium-year-head h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
}

.compendium-year-head__meta {
  font-size: 13px;
  color: var(--ink-light);
  font-variant-numeric: tabular-nums;
}

.compendium-entry {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--cnd-hairline);
  align-items: start;
  position: relative;
  transition: background 0.15s ease;
  color: var(--ink);
}

.compendium-year-block .compendium-entry:nth-of-type(2) {
  border-top: none;
}

.compendium-entry[hidden] {
  display: none;
}

.compendium-entry:hover {
  background: linear-gradient(90deg, transparent, var(--mist) 40%, transparent);
}

.compendium-entry::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 2px;
  border-radius: 1px;
  background: transparent;
  transition: background 0.15s ease;
}

.compendium-entry[data-cat="oss"]::before {
  background: var(--cnd-oss);
  opacity: 0.7;
}

.compendium-entry[data-cat="commercial"]::before {
  background: var(--cnd-com);
  opacity: 0.75;
}

.compendium-entry__date {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  color: var(--ink-light);
  padding-top: 4px;
  padding-left: 14px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.3px;
}

.compendium-entry__body h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.25;
  margin-bottom: 6px;
  transition: color 0.15s;
}

.compendium-entry:hover .compendium-entry__body h3 {
  color: var(--cnd-oss);
}

.compendium-entry[data-cat="commercial"]:hover .compendium-entry__body h3 {
  color: var(--cnd-com);
}

.compendium-entry__body p {
  font-size: 14.5px;
  color: var(--ink-mid);
  line-height: 1.55;
  max-width: 62ch;
}

.compendium-entry__tags {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.ctag {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--ink-light);
  padding: 2px 7px;
  border: 1px solid var(--cnd-hairline);
  border-radius: 4px;
}

.ctag--campaign {
  color: var(--fuschia-deep);
  border-color: var(--fuschia-border);
  background: var(--fuschia-dim);
}

.compendium-entry__arrow {
  color: var(--ink-light);
  font-size: 18px;
  padding-top: 6px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.compendium-entry:hover .compendium-entry__arrow {
  color: var(--cnd-oss);
  transform: translateX(4px);
}

.compendium-entry[data-cat="commercial"]:hover .compendium-entry__arrow {
  color: var(--cnd-com);
}

.compendium-credit {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 56px 56px;
  border-top: 1px solid var(--cnd-hairline);
  color: var(--ink-light);
  font-size: 13px;
}

.compendium-credit a {
  color: var(--fuschia-deep);
  text-decoration: underline;
  text-decoration-color: var(--fuschia-border);
  text-underline-offset: 3px;
}

.compendium-credit a:hover {
  color: var(--ink);
}

.timeline-log {
  border: 1.5px solid var(--fuschia-border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.timeline-year-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  padding: 16px 20px;
  scroll-margin-top: 24px;
}

.timeline-year-band:not(:first-child) {
  border-top: 1.5px solid var(--fuschia-border);
}

.timeline-year-band h3 {
  color: var(--white);
  font-family: 'Oxanium', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.timeline-year-band__content {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.timeline-year-band__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline-year-band__labels span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  background: rgba(255, 0, 204, 0.13);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.25;
  padding: 5px 7px;
}

.timeline-year-band__labels strong {
  color: var(--white);
  font-weight: 700;
}

.timeline-year-band__totals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.timeline-year-band__totals span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 8px;
}

.timeline-month-group {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  border-top: 1px solid var(--fuschia-border);
}

.timeline-month-label {
  background: var(--mist);
  border-right: 1px solid var(--fuschia-border);
  color: var(--fuschia-deep);
  padding: 18px;
  scroll-margin-top: 24px;
}

.timeline-month-label span {
  display: block;
  font-family: 'Oxanium', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}

.timeline-month-label small {
  display: block;
  color: var(--ink-light);
  font-size: 12px;
  font-weight: 700;
  margin-top: 7px;
}

.timeline-entry-list {
  display: grid;
}

.timeline-entry {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 17px 18px;
}

.timeline-entry + .timeline-entry {
  border-top: 1px solid var(--fuschia-border);
}

.timeline-entry__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: flex-start;
}

.timeline-tag {
  display: inline-flex;
  border: 1px solid var(--fuschia-border);
  border-radius: 4px;
  color: var(--ink-mid);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 8px;
}

.timeline-tag--oss {
  background: var(--oss-accent-dim);
  border-color: var(--oss-accent-border);
  color: var(--fuschia-deep);
}

.timeline-tag--commercial {
  background: var(--commercial-accent-dim);
  border-color: var(--commercial-accent-border);
  color: var(--commercial-accent);
}

.timeline-tag--campaign {
  background: rgba(214, 90, 31, 0.08);
  border-color: rgba(214, 90, 31, 0.24);
  color: #d65a1f;
}

.timeline-tag--meta {
  background: var(--white);
  color: var(--ink-light);
}

.timeline-entry__day {
  flex-basis: 100%;
  font-family: 'Oxanium', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fuschia-deep);
  line-height: 1;
  margin-bottom: 2px;
}

.timeline-entry__day--continuation {
  color: var(--ink-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  opacity: 0.45;
}

.timeline-entry__body {
  min-width: 0;
}

.timeline-entry__title {
  color: var(--ink);
  display: inline;
  font-family: 'Oxanium', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: underline;
  text-decoration-color: var(--fuschia);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
}

.timeline-entry__title:hover {
  color: var(--fuschia-deep);
}

.timeline-entry__body p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  margin-top: 8px;
  max-width: 760px;
}

.timeline-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin-top: 10px;
}

.timeline-chip {
  display: inline-flex;
  align-items: baseline;
  max-width: 100%;
  gap: 6px;
  border: 1px solid var(--fuschia-border);
  border-radius: 4px;
  color: var(--ink-mid);
  font-size: 12px;
  line-height: 1.2;
  padding: 5px 7px;
}

.timeline-chip strong {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.timeline-chip span {
  color: var(--ink-light);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.timeline-chip--version-only strong {
  color: var(--fuschia-deep);
}

.timeline-chip--more {
  background: var(--fuschia-dim);
  color: var(--fuschia-deep);
  font-weight: 700;
}

.compendium-credit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px 80px;
  color: var(--ink-light);
  font-size: 13px;
}

.compendium-credit a {
  color: var(--fuschia);
}


.campaign-package-list {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.8;
  max-width: 860px;
  overflow-wrap: anywhere;
}

.campaign-package-list a {
  color: var(--fuschia);
}

/* ─── Footer ──────────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--fuschia-border);
  padding: 40px 56px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: var(--ink-light);
}

.footer-links a:hover {
  color: var(--fuschia);
}

.copyright {
  font-size: 13px;
  color: var(--ink-light);
}

/* ─── Responsive ──────────────────────────────────────────────── */

@media (max-width: 900px) {
  header {
    padding: 20px 24px;
  }

  .hero {
    padding: 48px 24px 64px;
  }

  .hero-split {
    flex-direction: column;
    gap: 48px;
  }

  .hero-content {
    text-align: center;
  }

  .hero p {
    max-width: 100%;
  }

  .cta-group {
    justify-content: center;
  }

  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  #atom-canvas {
    width: 280px;
    height: 250px;
  }

  .products {
    padding: 48px 24px;
  }

  .product-grid,
  .product-grid--three {
    grid-template-columns: 1fr;
  }

  .oss-strip {
    padding: 56px 24px;
  }

  .oss-strip-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .email-cta {
    padding: 64px 24px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 24px;
  }

  .service-meta {
    position: static;
  }

  .oss-tools,
  .funded-projects,
  .compendium-hero,
  .compendium-dashboard,
  .compendium-stream,
  .compendium-credit {
    padding-left: 24px;
    padding-right: 24px;
  }

  .compendium-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 24px;
  }

  .compendium-source {
    border-left: none;
    border-top: 1px solid var(--cnd-hairline);
    padding-left: 0;
    padding-top: 20px;
  }

  .compendium-hero__copy h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }

  .compendium-dashboard {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* Three cards in two columns leave one alone; the featured tier takes
     the full row rather than sitting orphaned bottom-left. */
  .pricing-card--featured {
    grid-column: 1 / -1;
  }

  .pricing-section {
    padding: 0 24px 64px;
  }

  .pie-wrap {
    grid-template-columns: 110px 1fr;
    gap: 14px;
  }

  .compendium-controls__inner {
    padding-left: 24px;
    padding-right: 24px;
    gap: 10px;
  }

  .csub {
    flex-wrap: wrap;
  }

  .compendium-controls__meta {
    margin-left: 0;
  }

  .compendium-year-rail {
    padding-left: 24px;
    padding-right: 24px;
  }

  .compendium-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .compendium-entry__date {
    padding-left: 0;
  }

  .compendium-entry::before {
    left: -12px;
  }

  /* Campaign page still uses .timeline-* via includes */
  .timeline-year-band,
  .timeline-month-group,
  .timeline-entry {
    grid-template-columns: 1fr;
  }

  .timeline-year-band__totals {
    justify-content: flex-start;
  }

  .timeline-month-label {
    border-right: none;
    border-bottom: 1px solid var(--fuschia-border);
  }

  .funded-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .oss-pledge {
    padding: 48px 24px;
  }

  footer {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  header {
    flex-direction: column;
    gap: 16px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .funded-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Attack entry (v2 — inked plate + sticky rail) ──────────── */

.attack-article {
  --ae-ink-light: #7A4E70;
  --ae-grey: #f5f4f6;
  --ae-grey-border: #e2e0e5;
  --ae-plate-mute: #d8b8d0;
  --ae-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
}

.attack-plate {
  background: var(--ink);
  color: var(--white);
  border-bottom: 4px solid var(--fuschia-deep);
}
.attack-plate__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px;
}
.attack-plate .attack-crumbs {
  font-family: var(--ae-mono);
  font-size: 12.5px;
  color: var(--ae-plate-mute);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.attack-plate .attack-crumbs a {
  color: var(--white);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}
.attack-plate .attack-crumbs a:hover {
  color: var(--fuschia);
  border-bottom-color: var(--fuschia);
}
.attack-plate__meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.attack-plate__meta .tag {
  background: var(--fuschia-deep);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 700;
}
.attack-plate__meta .tag--commercial {
  background: var(--commercial-accent);
}
.attack-plate__meta .line {
  color: var(--ae-plate-mute);
  font-weight: 600;
}
.attack-plate h1 {
  font-family: 'Oxanium', sans-serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.1;
  max-width: 940px;
}
.attack-plate__campaign {
  margin-top: 14px;
  font-size: 14px;
  color: var(--ae-plate-mute);
}
.attack-plate__campaign a {
  color: var(--white);
  border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
}
.attack-plate__campaign a:hover {
  color: var(--fuschia);
  border-bottom-color: var(--fuschia);
}

.attack-entry {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 56px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: start;
}

.attack-entry__lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 40px;
  padding-left: 18px;
  border-left: 3px solid var(--fuschia-deep);
}

.attack-entry .sec {
  margin-bottom: 48px;
}
.attack-entry .sec:last-child {
  margin-bottom: 0;
}
.attack-entry .sec__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fuschia-border);
  margin-bottom: 22px;
}
.attack-entry .sec__num {
  font-family: 'Oxanium', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--fuschia-deep);
  letter-spacing: 1.5px;
}
.attack-entry .sec__head h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
}
.attack-entry .sec p {
  margin-bottom: 14px;
  color: var(--ink);
  max-width: 70ch;
}
.attack-entry .sec p:last-child {
  margin-bottom: 0;
}

.attack-entry code,
.attack-entry .mono {
  font-family: var(--ae-mono);
  font-size: 0.92em;
  color: var(--ink);
}
.attack-entry p code,
.attack-entry li code,
.attack-entry dd code {
  background: var(--fuschia-dim);
  border: 1px solid var(--fuschia-border);
  padding: 0 5px;
  border-radius: 3px;
  color: var(--fuschia-deep);
}

.attack-entry .artifact-list {
  display: grid;
  gap: 14px;
}
.attack-entry .artifact {
  border: 1px solid var(--fuschia-border);
  border-radius: 6px;
  padding: 22px 24px;
  background: var(--white);
}
.attack-entry .artifact__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--fuschia-border);
  flex-wrap: wrap;
}
.attack-entry .artifact__head h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 17px;
}
.attack-entry .artifact__head h3 a {
  color: var(--fuschia-deep);
}
.attack-entry .artifact__head h3 a:hover {
  color: var(--ink);
}
.attack-entry .artifact__meta {
  font-size: 13px;
  color: var(--ae-ink-light);
}
.attack-entry .artifact__meta a {
  color: var(--fuschia-deep);
}
.attack-entry .artifact__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px 28px;
}
.attack-entry .artifact__facts dt {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fuschia-deep);
  margin-bottom: 4px;
  font-weight: 600;
}
.attack-entry .artifact__facts dd {
  font-size: 14px;
  color: var(--ink);
}
.attack-entry .artifact__notes {
  list-style: none;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--fuschia-border);
}
.attack-entry .artifact__notes li {
  font-size: 13.5px;
  color: var(--ink);
  padding: 4px 0;
}
.attack-entry .chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.attack-entry .chip {
  display: inline-block;
  background: var(--fuschia-dim);
  border: 1px solid var(--fuschia-border);
  padding: 2px 8px;
  border-radius: 3px;
  font-family: var(--ae-mono);
  font-size: 12.5px;
  color: var(--ink);
  text-decoration: none;
}
.attack-entry .chip--more {
  color: var(--ae-ink-light);
  font-style: italic;
}

.attack-entry .context-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 4px 32px;
}
.attack-entry .context-grid > div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ae-grey-border);
}
.attack-entry .context-grid dt {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ae-ink-light);
  font-weight: 600;
  padding-top: 2px;
}
.attack-entry .context-grid dd {
  font-size: 14px;
  color: var(--ink);
}

.attack-entry .iocs {
  list-style: none;
  background: var(--ae-grey);
  border: 1px solid var(--ae-grey-border);
  border-radius: 6px;
  padding: 6px 18px;
}
.attack-entry .iocs li {
  padding: 8px 0;
  border-bottom: 1px solid var(--ae-grey-border);
  font-family: var(--ae-mono);
  font-size: 13px;
  color: var(--ink);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.attack-entry .iocs li:last-child {
  border-bottom: none;
}
.attack-entry .iocs__kind {
  min-width: 78px;
  font-family: 'Oxanium', sans-serif;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fuschia-deep);
  font-weight: 700;
  flex-shrink: 0;
}
.attack-entry .iocs__val {
  word-break: break-all;
}
.attack-entry .iocs__val a {
  color: var(--fuschia-deep);
}
.attack-entry .iocs__val a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.attack-entry .notes {
  list-style: none;
}
.attack-entry .notes li {
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid var(--ae-grey-border);
  position: relative;
  color: var(--ink);
  font-size: 14.5px;
}
.attack-entry .notes li:last-child {
  border-bottom: none;
}
.attack-entry .notes li::before {
  content: "§";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--fuschia-deep);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
}

.attack-entry .refs {
  list-style: none;
}
.attack-entry .refs li {
  padding: 12px 0;
  border-bottom: 1px solid var(--ae-grey-border);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}
.attack-entry .refs li:last-child {
  border-bottom: none;
}
.attack-entry .refs a {
  color: var(--fuschia-deep);
  font-size: 15px;
}
.attack-entry .refs a:hover {
  color: var(--ink);
  text-decoration: underline;
}
.attack-entry .refs .dom {
  font-size: 12px;
  color: var(--ae-ink-light);
  font-family: var(--ae-mono);
  white-space: nowrap;
}

.attack-entry .source {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--ae-grey-border);
  font-size: 13px;
  color: var(--ae-ink-light);
}
.attack-entry .source a {
  color: var(--fuschia-deep);
  font-family: var(--ae-mono);
}
.attack-entry .source a:hover {
  text-decoration: underline;
}

.attack-entry .adjacent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--fuschia-border);
}
.attack-entry .adjacent a {
  padding: 16px 18px;
  border: 1px solid var(--fuschia-border);
  border-radius: 6px;
  background: var(--white);
  transition: background 0.15s;
  display: block;
}
.attack-entry .adjacent a:hover {
  background: var(--mist);
}
.attack-entry .adjacent span {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--fuschia-deep);
  display: block;
  margin-bottom: 4px;
}
.attack-entry .adjacent strong {
  font-size: 15px;
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
}
.attack-entry .adjacent small {
  color: var(--ae-ink-light);
  font-size: 12px;
}
.attack-entry .adjacent a:last-child {
  text-align: right;
}

.attack-entry .rail {
  position: sticky;
  top: 24px;
  background: var(--mist);
  border: 1px solid var(--fuschia-border);
  border-radius: 6px;
  padding: 24px;
}
.attack-entry .rail__title {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fuschia-deep);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fuschia-border);
  font-weight: 700;
}
.attack-entry .rail dl > div {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 0, 204, 0.13);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
}
.attack-entry .rail dl > div:last-child {
  border-bottom: none;
}
.attack-entry .rail dt {
  font-size: 11px;
  font-family: 'Oxanium', sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ae-ink-light);
  font-weight: 600;
}
.attack-entry .rail dd {
  font-size: 14px;
  color: var(--ink);
}
.attack-entry .rail .duration {
  display: block;
  font-size: 12px;
  color: var(--ae-ink-light);
  margin-top: 2px;
}
.attack-entry .rail__toc {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--fuschia-border);
}
.attack-entry .rail__toc h2 {
  font-family: 'Oxanium', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fuschia-deep);
  margin-bottom: 12px;
  font-weight: 700;
}
.attack-entry .rail__toc ol {
  list-style: none;
  counter-reset: tocnum;
}
.attack-entry .rail__toc li {
  counter-increment: tocnum;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-mid);
}
.attack-entry .rail__toc li::before {
  content: "§" counter(tocnum) "  ";
  color: var(--fuschia-deep);
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 11px;
}
.attack-entry .rail__toc a {
  color: var(--ink-mid);
}
.attack-entry .rail__toc a:hover {
  color: var(--fuschia-deep);
}

@media (max-width: 900px) {
  .attack-plate__inner {
    padding: 8px;
  }
  .attack-plate h1 {
    font-size: 26px;
    letter-spacing: -0.8px;
  }
  .attack-plate__meta {
    margin-bottom: 12px;
    gap: 8px;
  }
  .attack-plate .attack-crumbs {
    margin-bottom: 12px;
  }
  .attack-entry {
    grid-template-columns: 1fr;
    padding: 24px 16px 48px;
    gap: 28px;
  }
}

@media (max-width: 560px) {
  .attack-entry .adjacent {
    grid-template-columns: 1fr;
  }
  .attack-entry .adjacent a:last-child {
    text-align: left;
  }
}

/* ─── Compendium entry (v3 — monograph) ──────────────────────── */

.entry {
  --en-ink-light: #7A4E70;
  --en-rule: #e2e0e5;
  --en-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px 72px;
}

.entry code,
.entry .ref {
  font-family: var(--en-mono);
  font-size: 0.86em;
  font-weight: 500;
  background: var(--mist);
  border: 1px solid var(--en-rule);
  border-radius: 3px;
  padding: 1px 5px;
  overflow-wrap: anywhere;
}

.entry__head {
  padding: 56px 0 0;
}
.entry__crumbs {
  font-family: var(--en-mono);
  font-size: 12.5px;
  color: var(--en-ink-light);
  margin-bottom: 22px;
}
.entry__crumbs a {
  color: var(--ink-mid);
  border-bottom: 1px solid var(--fuschia-border);
}
.entry__crumbs a:hover {
  color: var(--fuschia-deep);
}
.entry__eyebrow {
  font-family: var(--en-mono);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--fuschia-deep);
  margin-bottom: 16px;
}
.entry__head h1 {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 4.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  text-wrap: balance;
}
.entry__lede {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-mid);
}
.entry__campaign {
  margin-top: 16px;
  font-size: 14px;
  color: var(--en-ink-light);
}
.entry__campaign a {
  color: var(--fuschia-deep);
  border-bottom: 1px solid var(--fuschia-border);
}
.entry__campaign a:hover {
  color: var(--ink);
}
.entry__head::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--fuschia);
  margin-top: 34px;
}

.entry__story {
  padding-top: 34px;
}
.entry__story p {
  font-size: 17.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}
.entry__story p:last-child {
  margin-bottom: 0;
}
.entry__story > p:first-child::first-letter {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 3.1em;
  line-height: 0.85;
  float: left;
  padding: 6px 10px 0 0;
  color: var(--fuschia-deep);
}

/* end-matter */
.endmatter {
  margin-top: 46px;
  border-top: 1px solid var(--fuschia-border);
}
.entry .em {
  padding: 30px 0 0;
}
.entry .em__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.entry .em__head h2 {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.entry .em__mark {
  color: var(--fuschia);
  margin-right: 8px;
}

.entry .em-notes {
  list-style: none;
}
.entry .em-notes li {
  position: relative;
  padding-left: 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.entry .em-notes li::before {
  content: "·";
  position: absolute;
  left: 3px;
  color: var(--fuschia);
  font-weight: 700;
}

/* appendix */
.entry .appx {
  background: var(--mist);
  border: 1px solid var(--en-rule);
  border-radius: 8px;
  padding: 4px 22px;
}
.entry .pkgrow {
  padding: 15px 0;
  border-bottom: 1px solid var(--en-rule);
  scroll-margin-top: 20px;
}
.entry .pkgrow:last-child {
  border-bottom: none;
}
.entry .pkghead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.entry .pkgname {
  font-family: var(--en-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  word-break: break-all;
}
.entry .pkgname a {
  border-bottom: 1px solid var(--fuschia-border);
}
.entry .pkgname a:hover {
  color: var(--fuschia-deep);
}
.entry .pkgeco {
  font-family: var(--en-mono);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--en-ink-light);
  margin-left: 9px;
  white-space: nowrap;
}
.entry .fixed {
  font-family: var(--en-mono);
  font-size: 12px;
  color: var(--fuschia-deep);
}
.entry .fixed .arr {
  color: var(--en-ink-light);
}
.entry .fixed a {
  border-bottom: 1px solid var(--fuschia-border);
}

.entry .vrow {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 5px 14px;
  padding: 4px 0;
}
.entry .vnum {
  font-family: var(--en-mono);
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--fuschia-border);
  min-width: 52px;
}
.entry .vnum:hover {
  color: var(--fuschia-deep);
  border-bottom-color: var(--fuschia);
}
.entry .vnum--plain {
  color: var(--ink-mid);
  border-bottom-color: transparent;
}
.entry .vnum--plain:hover {
  border-bottom-color: var(--fuschia-border);
}
.entry .vhash {
  font-family: var(--en-mono);
  font-size: 11.5px;
  color: var(--en-ink-light);
  border-bottom: 1px solid transparent;
}
.entry .vhash .h {
  color: var(--ink-mid);
}
.entry .vhash:hover,
.entry .vhash:hover .h {
  color: var(--fuschia-deep);
  border-bottom-color: var(--fuschia-border);
}
.entry .dl {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--en-mono);
  font-size: 10.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--fuschia-deep);
  border: 1px solid var(--fuschia-border);
  border-radius: 4px;
  padding: 2px 8px;
  margin-left: auto;
}
.entry .dl:hover {
  background: rgba(255, 0, 204, 0.06);
  border-color: var(--fuschia);
}
.entry .dl svg {
  width: 10px;
  height: 10px;
  display: block;
}
.entry .nosample {
  font-family: var(--en-mono);
  font-size: 10.5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--en-ink-light);
  margin-left: auto;
}
.entry .vmore {
  margin-top: 2px;
}
.entry .vmore summary {
  font-family: var(--en-mono);
  font-size: 11.5px;
  color: var(--fuschia-deep);
  cursor: pointer;
  padding: 4px 0;
  list-style: none;
}
.entry .vmore summary::-webkit-details-marker {
  display: none;
}
.entry .vmore summary::before {
  content: "▸ ";
}
.entry .vmore[open] summary::before {
  content: "▾ ";
}
.entry .vmore summary:hover {
  color: var(--ink);
}
.entry .pkgnotes {
  list-style: none;
  margin-top: 9px;
}
.entry .pkgnotes li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--en-ink-light);
  margin-bottom: 5px;
}
.entry .pkgnotes li::before {
  content: "·";
  position: absolute;
  left: 2px;
}
.entry .appx-cap {
  margin-top: 12px;
  font-family: var(--en-mono);
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--en-ink-light);
}
.entry .copy {
  font-family: var(--en-mono);
  font-size: 11px;
  color: var(--ink-mid);
  background: var(--white);
  border: 1px solid var(--en-rule);
  border-radius: 4px;
  padding: 3px 10px;
  cursor: pointer;
  white-space: nowrap;
}
.entry .copy:hover {
  border-color: var(--fuschia);
  color: var(--fuschia-deep);
}

/* indicators */
.entry .iocs {
  list-style: none;
  border: 1px solid var(--en-rule);
  border-radius: 8px;
  overflow: hidden;
}
.entry .iocs li {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--en-rule);
  font-family: var(--en-mono);
  font-size: 12.5px;
}
.entry .iocs li:last-child {
  border-bottom: none;
}
.entry .iocs__kind {
  color: var(--fuschia-deep);
  letter-spacing: 0.4px;
}
.entry .iocs__val {
  color: var(--ink);
  word-break: break-all;
}
.entry .iocs__val a {
  border-bottom: 1px solid var(--fuschia-border);
}

/* references */
.entry .em-refs {
  list-style: none;
  counter-reset: ref;
}
.entry .em-refs li {
  counter-increment: ref;
  position: relative;
  padding: 0 0 12px 34px;
  font-size: 14.5px;
  line-height: 1.55;
}
.entry .em-refs li::before {
  content: counter(ref);
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--fuschia);
  border: 1px solid var(--fuschia-border);
  border-radius: 99px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.entry .em-refs a {
  border-bottom: 1px solid var(--fuschia-border);
}
.entry .em-refs a:hover {
  color: var(--fuschia-deep);
}
.entry .em-refs .dom {
  font-family: var(--en-mono);
  font-size: 11.5px;
  color: var(--en-ink-light);
  margin-left: 8px;
  white-space: nowrap;
}

.entry__source {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--en-rule);
  font-family: var(--en-mono);
  font-size: 11.5px;
  color: var(--en-ink-light);
}
.entry__source a {
  color: var(--ink-mid);
  border-bottom: 1px solid var(--en-rule);
}
.entry__source a:hover {
  color: var(--fuschia-deep);
}

.entry .adjacent {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--fuschia-border);
  font-size: 13px;
}
.entry .adjacent a {
  color: var(--ink-mid);
}
.entry .adjacent a:hover {
  color: var(--ink);
}
.entry .adjacent .lbl {
  display: block;
  font-family: var(--en-mono);
  font-size: 10.5px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--en-ink-light);
  margin-bottom: 2px;
}
.entry .adjacent strong {
  font-weight: 600;
}
.entry .adjacent small {
  color: var(--en-ink-light);
  margin-left: 6px;
}
.entry .adjacent__next {
  text-align: right;
  margin-left: auto;
}

@media (max-width: 620px) {
  .entry {
    padding: 0 20px 56px;
  }
  .entry__story p {
    font-size: 16.5px;
  }
  .entry .appx {
    padding: 4px 16px;
  }
  .entry .iocs li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .entry .adjacent__next {
    text-align: left;
  }
}

.entry .linked {
  list-style: none;
  counter-reset: none;
}
.entry .linked li {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid var(--en-rule);
  align-items: baseline;
}
.entry .linked li:last-child {
  border-bottom: none;
}
.entry .linked time {
  font-family: var(--en-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--en-ink-light);
}
.entry .linked a {
  font-size: 15px;
  line-height: 1.45;
  border-bottom: 1px solid var(--fuschia-border);
}
.entry .linked a:hover {
  color: var(--fuschia-deep);
  border-bottom-color: var(--fuschia);
}
.entry .vmore.pkgrow {
  padding-top: 10px;
}
.entry .vmore .pkgrow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

@media (max-width: 620px) {
  .entry .linked li {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.entry .pull {
  margin: 34px 0;
  padding: 2px 0 2px 26px;
  border-left: 3px solid var(--fuschia);
}
.entry .pull p {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 0;
}
.entry .pull cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--en-mono);
  font-size: 12px;
  color: var(--en-ink-light);
}

@media (max-width: 620px) {
  .entry .pull p {
    font-size: 18.5px;
  }
}

/* ─── Home: proof card, fit cards, shipping checklist ─────────── */

.hero p.hero-lede {
  max-width: 560px;
}

.proof {
  width: 400px;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--white);
}

.proof-scores {
  display: flex;
  gap: 36px;
}

.proof .kpi {
  font-family: 'Oxanium', sans-serif;
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -2px;
  line-height: 0.9;
  color: var(--fuschia);
}

.proof .kpi--fp {
  color: var(--white);
}

.proof .kpi-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d9c2d3;
  margin-top: 10px;
}

.proof p {
  font-size: 13px;
  line-height: 1.6;
  color: #d9c2d3;
  border-top: 1px solid rgba(255,0,204,0.35);
  padding-top: 16px;
  max-width: none;
  margin: 0;
}

.proof a {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 12px;
  color: var(--fuschia);
}

.proof a:hover {
  color: var(--white);
}

.section-intro {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.75;
  max-width: 720px;
  margin: -32px 0 36px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.fit-grid .product-card {
  padding: 28px;
}

.fit-grid .product-card h3 {
  font-size: 18px;
}

.fit-grid .product-card p {
  margin-bottom: 0;
}

.ship-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.ship-grid h3 {
  font-family: 'Oxanium', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}

.ship-grid p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
  margin: 0;
}

.oss-strip .ship-grid p {
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero-split { flex-direction: column; align-items: stretch; }
  .proof { width: auto; }
  .fit-grid, .ship-grid { grid-template-columns: 1fr; }
}
