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

:root {
  /* Surfaces */
  --bg:        oklch(0.975 0.008 80);
  --bg-deep:   oklch(0.955 0.011 80);
  --surface:   #ffffff;

  /* Text */
  --ink:       oklch(0.22 0.015 80);
  --ink-soft:  oklch(0.36 0.012 80);
  --muted:     oklch(0.55 0.012 80);

  /* Lines */
  --line:      oklch(0.91 0.008 80);
  --line-soft: oklch(0.94 0.008 80);

  /* Semantic */
  --forest:    oklch(0.42 0.08 145);
  --forest-2:  oklch(0.55 0.08 145);
  --forest-bg: oklch(0.94 0.04 145);
  --clay:      oklch(0.62 0.12 50);
  --clay-bg:   oklch(0.95 0.05 70);
  --rust:      oklch(0.50 0.16 28);
  --rust-bg:   oklch(0.95 0.04 30);
  --cream:     oklch(0.96 0.04 85);

  /* Type */
  --serif: "Newsreader", Georgia, serif;
  --sans:  "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  /* Radius */
  --radius-sm: 2px;
  --radius:    4px;
  --radius-lg: 6px;
}

html, body { height: 100%; }

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden { display: none !important; }

/* ─── Header ─────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}

.brand__logo {
  width: 72px;
  height: 72px;
  display: block;
}

.site-nav {
  display: flex;
  gap: 24px;
}

.site-nav a {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s;
}

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

/* ─── Hero ───────────────────────────────── */
.hero {
  text-align: center;
  padding: 48px 32px 36px;
  background:
    radial-gradient(ellipse at 50% 0%, var(--cream) 0%, transparent 60%),
    var(--surface);
  border-bottom: 1px solid var(--line);
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 14ch;
  margin: 0 auto 16px;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.hero__lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 48ch;
  margin: 0 auto;
}

/* ─── Main / Analyzer card ───────────────── */
main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.analyzer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}

@media (max-width: 560px) {
  .analyzer    { padding: 24px 20px; }
  .hero        { padding: 40px 20px 32px; }
  .site-header { padding: 16px 20px; }
  .brand__logo { width: 56px; height: 56px; }
}

/* Card head: step label + example chips */
.analyzer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.analyzer__step {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.analyzer__examples {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background-color 0.15s;
}

.chip:hover {
  color: var(--forest);
  border-color: var(--forest);
  background: var(--forest-bg);
}

/* Textarea */
.analyzer__ta {
  width: 100%;
  min-height: 130px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  resize: vertical;
  transition: border-color 0.15s, background-color 0.15s, box-shadow 0.15s;
}

.analyzer__ta:focus {
  outline: none;
  background: var(--surface);
  border-color: var(--forest);
  box-shadow: 0 0 0 3px var(--forest-bg);
}

.analyzer__ta::placeholder {
  color: var(--muted);
}

/* Action row */
.analyzer__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.analyzer__count {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.analyzer__btns {
  display: flex;
  gap: 10px;
}

.btn {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: 1px solid;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s, opacity 0.15s;
}

.btn--ghost {
  color: var(--ink-soft);
  background: var(--surface);
  border-color: var(--line);
}

.btn--ghost:hover {
  background: var(--bg-deep);
}

.btn--primary {
  color: var(--bg);
  background: var(--ink);
  border-color: var(--ink);
}

.btn--primary:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ─── Error ──────────────────────────────── */
.alert {
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--rust-bg);
  color: var(--rust);
  border-radius: var(--radius);
  border-left: 2px solid var(--rust);
  font-size: 14px;
}

/* ─── Loading / skeletons ────────────────── */
.loading {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.skeleton {
  height: 14px;
  width: 100%;
  border-radius: var(--radius-sm);
  background: linear-gradient(90deg, var(--line-soft), var(--line), var(--line-soft));
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}

.skeleton--lg { height: 48px; width: 75%; }
.skeleton--sm { width: 50%; }

@keyframes shimmer {
  from { background-position: 100% 0; }
  to   { background-position: -100% 0; }
}

.loading__text {
  margin-top: 6px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--muted);
}

/* ─── Results ────────────────────────────── */
.results {
  margin-top: 28px;
}

/* Verdict badge */
.verdict {
  display: grid;
  grid-template-columns: 4px 1fr 88px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
}

.verdict__rail   { background: var(--clay); }
.verdict__mark   { background: var(--clay-bg); }

.verdict[data-tone="clean"]   .verdict__rail { background: var(--forest); }
.verdict[data-tone="clean"]   .verdict__mark { background: var(--forest-bg); }
.verdict[data-tone="caution"] .verdict__rail { background: var(--clay); }
.verdict[data-tone="caution"] .verdict__mark { background: var(--clay-bg); }
.verdict[data-tone="avoid"]   .verdict__rail { background: var(--rust); }
.verdict[data-tone="avoid"]   .verdict__mark { background: var(--rust-bg); }

.verdict__body {
  padding: 22px 24px;
}

.verdict__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 8px;
}

.verdict__label {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--clay);
  margin: 0 0 4px;
}

.verdict[data-tone="clean"]   .verdict__label { color: var(--forest); }
.verdict[data-tone="caution"] .verdict__label { color: var(--clay); }
.verdict[data-tone="avoid"]   .verdict__label { color: var(--rust); }

.verdict__sub {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-soft);
}

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.stat {
  padding: 18px 20px;
  background: var(--bg-deep);
  border-radius: var(--radius);
}

.stat__num {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 4px;
}

.stat__lbl {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink-soft);
}

/* Summary */
.summary {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 28px;
}

/* Flagged */
.flagged {
  margin-bottom: 28px;
}

.flagged__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}

.flagged__hint {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.flagged__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.row {
  display: grid;
  grid-template-columns: 32px 14px 1fr auto auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s, border-color 0.15s;
}

.row:hover {
  border-color: var(--forest);
}

.row.is-open {
  background: var(--bg-deep);
}

.row__num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}

.row__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay);
}

.row__dot--high   { background: var(--rust); }
.row__dot--medium { background: var(--clay); }
.row__dot--low    { background: var(--forest); }

.row__name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink);
}

.row__sev {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  background: var(--clay-bg);
  color: var(--clay);
}

.row__sev--high   { background: var(--rust-bg);   color: var(--rust); }
.row__sev--medium { background: var(--clay-bg);   color: var(--clay); }
.row__sev--low    { background: var(--forest-bg); color: var(--forest); }

.row__chev {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--muted);
  line-height: 1;
}

.row__reason {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.row__guide {
  grid-column: 1 / -1;
  display: inline-block;
  justify-self: start;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.15s;
}

.row__guide:hover {
  border-bottom-color: var(--forest);
}

/* Tip box */
.tip {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 28px;
}

.tip__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  margin-bottom: 8px;
}

.tip p {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
}

/* Recommendations */
.recs {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.recs__head {
  margin-bottom: 16px;
}

.recs__eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}

.recs__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.recs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}

.rec {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s;
}

.rec:hover {
  border-color: var(--forest);
}

.rec__swatch {
  height: 80px;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.18) 0 1px, transparent 1px 10px);
  background-color: var(--cream);
}

.rec__body {
  padding: 14px 16px;
}

.rec__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 8px;
}

.rec__list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.rec__list li {
  padding-left: 12px;
  position: relative;
  line-height: 1.55;
}

.rec__list li::before {
  content: "·";
  position: absolute;
  left: 2px;
  color: var(--muted);
}

.rec__cta {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest);
}

.recs__disc {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
}

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

/* ─── Footer ─────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 32px 24px 48px;
  font-size: 12.5px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

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

.site-footer a:hover {
  color: var(--forest);
}

/* ─── Recent scans history ───────────────── */
.history {
  max-width: 720px;
  margin: 0 auto 16px;
}

.history__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
}

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

.history__clear {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background-color 0.15s;
}

.history__clear:hover {
  color: var(--rust);
  background: var(--rust-bg);
}

.history__scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 2px 4px 8px;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}

.history__scroll::-webkit-scrollbar { height: 6px; }
.history__scroll::-webkit-scrollbar-track { background: transparent; }
.history__scroll::-webkit-scrollbar-thumb {
  background: var(--line);
  border-radius: 3px;
}

.hcard {
  display: grid;
  grid-template-columns: 3px 1fr;
  flex: 0 0 220px;
  min-height: 86px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  padding: 0;
  scroll-snap-align: start;
  transition: border-color 0.15s, transform 0.15s;
}

.hcard:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.hcard__rail   { background: var(--clay); }
.hcard--clean   .hcard__rail { background: var(--forest); }
.hcard--caution .hcard__rail { background: var(--clay); }
.hcard--avoid   .hcard__rail { background: var(--rust); }

.hcard__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  padding: 12px 14px;
  min-width: 0;
}

.hcard__verdict {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--clay);
}

.hcard--clean   .hcard__verdict { color: var(--forest); }
.hcard--caution .hcard__verdict { color: var(--clay); }
.hcard--avoid   .hcard__verdict { color: var(--rust); }

.hcard__preview {
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hcard__meta {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ─── Additive page ──────────────────────── */
.additive {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.additive__crumbs {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 24px;
}

.additive__crumbs a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.additive__crumbs a:hover {
  color: var(--forest);
}

.additive__crumbs span[aria-hidden] {
  margin: 0 8px;
  color: var(--line);
}

.additive__head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
  margin-bottom: 32px;
}

.additive__sev {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.additive__sev--high   { background: var(--rust-bg);   color: var(--rust); }
.additive__sev--medium { background: var(--clay-bg);   color: var(--clay); }
.additive__sev--low    { background: var(--forest-bg); color: var(--forest); }

.additive__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.additive__sub {
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 20px;
}

.additive__lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
}

.additive__section {
  margin-bottom: 32px;
}

.additive__section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.additive__section h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.additive__section p {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

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

.additive__list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.additive__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.additive__list li::before {
  content: "·";
  position: absolute;
  left: 6px;
  color: var(--muted);
  font-weight: 700;
}

.additive__list strong {
  color: var(--ink);
  font-weight: 500;
}

.additive__cta {
  margin-top: 40px;
  padding: 28px 28px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
}

.additive__cta-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--forest);
  margin-bottom: 8px;
}

.additive__cta-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}

.additive__cta-body {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 52ch;
}

.additive__cta-btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  padding: 11px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background-color 0.15s, border-color 0.15s;
}

.additive__cta-btn:hover {
  background: var(--forest);
  border-color: var(--forest);
}

/* ─── Additives index page ───────────────── */
.additives-index {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.additives-index__group {
  margin-bottom: 36px;
}

.additives-index__group-title {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.additives-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

.additive-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s;
}

.additive-card:hover {
  border-color: var(--forest);
}

.additive-card__sev {
  grid-row: 1 / 3;
  align-self: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
}

.additive-card__sev--high   { background: var(--rust-bg);   color: var(--rust); }
.additive-card__sev--medium { background: var(--clay-bg);   color: var(--clay); }
.additive-card__sev--low    { background: var(--forest-bg); color: var(--forest); }

.additive-card__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--ink);
  line-height: 1.2;
}

.additive-card__sub {
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.additives-index__hint {
  margin-top: 32px;
  padding: 16px 20px;
  background: var(--bg-deep);
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

.additives-index__hint a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Small screen tweaks ────────────────── */
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .verdict { grid-template-columns: 4px 1fr 56px; }
  .verdict__label { font-size: 30px; }
  .row { grid-template-columns: 26px 10px 1fr auto auto; padding: 12px 14px; gap: 10px; }
  .analyzer__actions { gap: 12px; }
  .analyzer__btns { width: 100%; }
  .btn { flex: 1; }

  .additive             { padding: 24px 20px 56px; }
  .additives-index      { padding: 24px 20px 56px; }
  .additive__cta        { padding: 22px 20px 26px; }
  .additive__section h2 { font-size: 21px; }
}
