/* =========================================================================
   GuiaArg — hoja de estilos principal
   Paleta: medianoche del Río de la Plata + celeste + sol de mayo.
   Tipografía: Bricolage Grotesque (display) / Inter (texto).
   ========================================================================= */

:root {
  /* Superficies */
  --ink-900: #060B16;
  --ink-800: #0A1220;
  --ink-700: #101B2E;
  --ink-600: #18263D;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  /* Papel */
  --paper: #FFFFFF;
  --paper-soft: #F2F6FB;
  --paper-line: #E2E9F2;

  /* Texto */
  --on-dark: #EEF3FA;
  --on-dark-muted: #97A7C1;
  --on-paper: #0E1726;
  --on-paper-muted: #55637A;

  /* Acentos */
  --celeste: #5BB8EE;
  --celeste-deep: #2C7FBB;
  --sol: #E9B44C;
  --sol-deep: #C9902A;
  --verify: #2FB37A;
  --pending: #D79A3A;

  /* Métrica */
  --wrap: 1180px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --gap: 24px;
  --shadow-card: 0 24px 60px -32px rgba(3, 8, 20, 0.75);
  --shadow-paper: 0 18px 40px -24px rgba(6, 12, 26, 0.55);

  --font-display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--on-dark);
  background: var(--ink-800);
  background-image:
    radial-gradient(900px 520px at 82% -8%, rgba(91, 184, 238, 0.16), transparent 62%),
    radial-gradient(700px 480px at 6% 4%, rgba(233, 180, 76, 0.10), transparent 60%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--celeste); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: #8ed2f7; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.3rem + 3.2vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.6vw, 2.35rem); }
h3 { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.15em; }
li { margin-bottom: 0.4em; }

:focus-visible {
  outline: 3px solid var(--sol);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--sol); color: #1A1204; font-weight: 600;
  padding: 10px 16px; border-radius: 0 0 10px 10px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; color: #1A1204; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + 40px);
  margin-left: auto; margin-right: auto;
  padding-left: 20px; padding-right: 20px;
}

/* --------------------------------------------------------------- topbar */
.topbar {
  background: var(--ink-900);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
}
.topbar__inner {
  display: flex; align-items: center; gap: 12px;
  min-height: 38px; padding-block: 6px;
}
.topbar__age {
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: #1A1204; background: var(--sol);
  border-radius: 999px; padding: 2px 9px;
  flex: none;
}
.topbar__text { margin: 0; color: var(--on-dark-muted); }

/* --------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 18, 32, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; min-height: 72px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand__mark {
  display: grid; place-items: center;
  width: 40px; height: 40px; flex: none;
  border-radius: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  color: #08121F;
  background: linear-gradient(140deg, var(--celeste) 0%, #9BD8F7 55%, var(--sol) 100%);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; letter-spacing: -0.02em; }
.brand__sub { font-size: 0.72rem; color: var(--on-dark-muted); letter-spacing: 0.03em; }

/* ----------------------------------------------------------- navegación */
.nav { display: flex; align-items: center; gap: 22px; }
.nav__list { display: flex; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0; }
.nav__list li { margin: 0; }
.nav__link {
  color: var(--on-dark); text-decoration: none;
  font-size: 0.92rem; font-weight: 500;
  padding: 6px 0; position: relative; display: inline-block;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--celeste);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.18s ease;
}
.nav__link:hover::after, .nav__link.is-current::after { transform: scaleX(1); }
.nav__link.is-current { color: var(--celeste); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 12px; cursor: pointer;
  padding: 0;
  flex-direction: column; align-items: center; justify-content: center;
}
.nav-toggle__bar {
  display: block; width: 20px; height: 2px; margin: 2.5px 0; background: var(--on-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------- botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 13px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  text-decoration: none; text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--accent, a.btn--accent {
  background: linear-gradient(140deg, var(--sol) 0%, var(--sol-deep) 100%);
  color: #1A1204;
  box-shadow: 0 12px 28px -16px rgba(233, 180, 76, 0.9);
}
.btn--accent:hover { color: #1A1204; box-shadow: 0 16px 34px -14px rgba(233, 180, 76, 0.95); }

.btn--ghost, a.btn--ghost { background: rgba(255, 255, 255, 0.06); color: var(--on-dark); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: var(--on-dark); }

.btn--outline, a.btn--outline { background: transparent; border-color: var(--celeste-deep); color: var(--celeste); }
.btn--outline:hover { background: rgba(91, 184, 238, 0.12); color: var(--celeste); }

.btn--block { display: flex; width: 100%; }
.btn--sm { padding: 9px 16px; font-size: 0.85rem; }

/* --------------------------------------------------------------- chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 4px 11px; border-radius: 999px; white-space: nowrap;
}
.chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor;
}
.chip--sm { font-size: 0.66rem; padding: 3px 9px; }
.chip--verified { color: #0C6B47; background: rgba(47, 179, 122, 0.16); }
.chip--pending { color: #7A5310; background: rgba(215, 154, 58, 0.18); }
.chip--dark.chip--verified { color: #74E4B4; background: rgba(47, 179, 122, 0.16); }
.chip--dark.chip--pending { color: #F0C273; background: rgba(215, 154, 58, 0.16); }

/* ------------------------------------------------------------ secciones */
.section { padding-block: clamp(56px, 7vw, 96px); }
.section--paper { background: var(--paper-soft); color: var(--on-paper); }
.section--paper h1, .section--paper h2, .section--paper h3 { color: var(--on-paper); }
.section--paper a { color: var(--celeste-deep); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--celeste); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section--paper .eyebrow { color: var(--celeste-deep); }

.section__intro { max-width: 62ch; color: var(--on-dark-muted); font-size: 1.03rem; }
.section--paper .section__intro { color: var(--on-paper-muted); }

/* ----------------------------------------------------------------- hero */
.hero { padding-block: clamp(48px, 6vw, 88px) clamp(40px, 5vw, 72px); }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 56px); align-items: start;
}
.hero__lead { font-size: clamp(1.02rem, 0.97rem + 0.3vw, 1.18rem); color: var(--on-dark-muted); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin-top: 24px; font-size: 0.85rem; color: var(--on-dark-muted);
}
.hero__meta strong { color: var(--on-dark); }

/* Panel de verificación — elemento distintivo del sitio */
.verify-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
}
.verify-panel__title {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin: 0 0 4px;
}
.verify-panel__sub { font-size: 0.82rem; color: var(--on-dark-muted); margin: 0 0 18px; }
.verify-list { list-style: none; margin: 0; padding: 0; }
.verify-list li {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 12px 0; border-top: 1px solid var(--line);
  font-size: 0.9rem;
}
.verify-list li:first-child { border-top: 0; }
.verify-panel__foot {
  margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 0.78rem; color: var(--on-dark-muted);
}

/* ---------------------------------------------------------------- cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }

.card {
  display: flex; flex-direction: column;
  background: var(--paper); color: var(--on-paper);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--celeste);
}
.card:nth-child(2) { border-top-color: var(--sol); }
.card:nth-child(3) { border-top-color: #9BD8F7; }

.card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.card__rank {
  display: grid; place-items: center;
  width: 34px; height: 34px; flex: none;
  border-radius: 10px; background: var(--paper-soft);
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
  color: var(--on-paper);
}
.card__id { margin-right: auto; }
.card__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin: 0; letter-spacing: -0.02em; }
.card__product { margin: 0; font-size: 0.82rem; color: var(--on-paper-muted); }
.card__summary { font-size: 0.92rem; color: var(--on-paper-muted); }

.card__offer {
  background: var(--paper-soft);
  border: 1px solid var(--paper-line);
  border-radius: var(--radius);
  padding: 16px 18px; margin-bottom: 18px;
}
.card__offer-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--on-paper-muted); margin: 0 0 4px;
}
.card__offer-value {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.15rem; margin: 0 0 4px; letter-spacing: -0.01em;
}
.card__offer-note { font-size: 0.78rem; color: var(--on-paper-muted); margin: 0; }

.card__features { list-style: none; margin: 0 0 22px; padding: 0; font-size: 0.9rem; }
.card__features li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.card__features li::before {
  content: ""; position: absolute; left: 4px; top: 0.55em;
  width: 9px; height: 9px; border-radius: 3px;
  background: var(--celeste); opacity: 0.75;
}

.card__foot { margin-top: auto; padding-top: 16px; }
.card__terms { font-size: 0.74rem; color: var(--on-paper-muted); margin: 12px 0 6px; }
.card__checked { font-size: 0.72rem; color: var(--on-paper-muted); margin: 0; opacity: 0.8; }

/* ---------------------------------------------------------------- tabla */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-paper);
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%; border-collapse: collapse;
  color: var(--on-paper); font-size: 0.9rem;
  min-width: 720px;
}
.table th, .table td {
  padding: 15px 18px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--paper-line);
}
.table thead th {
  font-family: var(--font-display); font-size: 0.95rem;
  background: var(--ink-800); color: var(--on-dark);
  border-bottom: 0; white-space: nowrap;
}
.table tbody th { font-weight: 600; background: var(--paper-soft); white-space: nowrap; }
.table tbody tr:last-child th, .table tbody tr:last-child td { border-bottom: 0; }
.cell { display: block; margin-bottom: 6px; }
.table-hint { font-size: 0.78rem; color: var(--on-dark-muted); margin-top: 10px; }
.section--paper .table-hint { color: var(--on-paper-muted); }

/* --------------------------------------------------------------- prosa */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose ul li::marker { color: var(--celeste); }
.section--paper .prose ul li::marker { color: var(--celeste-deep); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.feature {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.feature h3 { font-size: 1.08rem; margin-bottom: 8px; }
.feature p { margin: 0; font-size: 0.92rem; color: var(--on-dark-muted); }
.section--paper .feature { background: var(--paper); border-color: var(--paper-line); box-shadow: var(--shadow-paper); }
.section--paper .feature p { color: var(--on-paper-muted); }

.note {
  border-left: 3px solid var(--sol);
  background: rgba(233, 180, 76, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px; margin: 26px 0;
  font-size: 0.93rem;
}
.note p:last-child { margin-bottom: 0; }
.section--paper .note { background: rgba(233, 180, 76, 0.14); }

/* ---------------------------------------------------------- acordeón */
.accordion {
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.section--paper .accordion { background: var(--paper); border-color: var(--paper-line); }
.accordion__item + .accordion__item { border-top: 1px solid var(--line); }
.section--paper .accordion__item + .accordion__item { border-top-color: var(--paper-line); }
.accordion__heading { margin: 0; font-size: 1rem; }
.accordion__trigger {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; padding: 18px 22px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: inherit; text-align: left; line-height: 1.35;
}
.accordion__trigger:hover { background: rgba(255, 255, 255, 0.04); }
.section--paper .accordion__trigger:hover { background: var(--paper-soft); }
.accordion__icon {
  position: relative; flex: none; width: 16px; height: 16px;
}
.accordion__icon::before, .accordion__icon::after {
  content: ""; position: absolute; background: var(--celeste);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.accordion__icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.accordion__icon::after { left: 7px; top: 0; width: 2px; height: 16px; }
.accordion__trigger[aria-expanded="true"] .accordion__icon::after { transform: scaleY(0); }
.accordion__panel { padding: 0 22px 20px; font-size: 0.94rem; color: var(--on-dark-muted); max-width: 74ch; }
.section--paper .accordion__panel { color: var(--on-paper-muted); }
.accordion__panel p { margin: 0; }

/* ------------------------------------------------------------ operador */
.operator {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 28px; align-items: center;
  background: var(--paper); color: var(--on-paper);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-paper);
}
.operator + .operator { margin-top: 20px; }
.operator__meta { list-style: none; margin: 14px 0 0; padding: 0; font-size: 0.88rem; }
.operator__meta li { display: flex; gap: 10px; padding: 8px 0; border-top: 1px solid var(--paper-line); }
.operator__meta span:first-child { color: var(--on-paper-muted); min-width: 130px; }
.operator__side { text-align: left; }
.empty-slot {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 28px; margin-top: 20px;
  color: var(--on-dark-muted); font-size: 0.92rem;
}

/* ------------------------------------------------------------ formularios */
.form { max-width: 560px; }
.form__row { margin-bottom: 18px; }
.form label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 6px; }
.form .hint { font-weight: 400; color: var(--on-dark-muted); font-size: 0.8rem; }
.section--paper .form .hint { color: var(--on-paper-muted); }
.form input[type="text"], .form input[type="email"], .form textarea, .form select {
  width: 100%; padding: 13px 15px;
  font-family: inherit; font-size: 0.95rem;
  color: var(--on-paper); background: var(--paper);
  border: 1px solid var(--paper-line); border-radius: var(--radius-sm);
}
.form input:focus, .form textarea:focus { outline: 3px solid var(--sol); outline-offset: 1px; }
.form textarea { min-height: 160px; resize: vertical; }
.form .error { color: #FF9A8B; font-size: 0.82rem; margin-top: 6px; display: block; }
.section--paper .form .error { color: #B42318; }
.form input[aria-invalid="true"], .form textarea[aria-invalid="true"] { border-color: #B42318; }

.alert { border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px; font-size: 0.93rem; }
.alert--ok { background: rgba(47, 179, 122, 0.14); border: 1px solid rgba(47, 179, 122, 0.4); }
.alert--error { background: rgba(180, 35, 24, 0.12); border: 1px solid rgba(180, 35, 24, 0.4); }
.alert p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------- footer */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--line);
  padding-block: 56px 32px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px; padding-bottom: 36px; border-bottom: 1px solid var(--line);
}
.footer-brand__text { color: var(--on-dark-muted); margin: 14px 0 8px; max-width: 34ch; }
.footer-review { font-size: 0.78rem; color: var(--on-dark-muted); margin: 0; opacity: 0.8; }
.footer-nav__title {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--on-dark); margin-bottom: 14px; font-family: var(--font-display);
}
.footer-nav ul { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 9px; }
.footer-nav a { color: var(--on-dark-muted); text-decoration: none; }
.footer-nav a:hover { color: var(--celeste); text-decoration: underline; }
.footer-help { color: var(--on-dark-muted); }

.disclaimer {
  display: flex; gap: 20px; align-items: flex-start;
  padding-block: 28px;
  border-bottom: 1px solid var(--line);
}
.disclaimer__age {
  font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: #1A1204; background: var(--sol);
  border-radius: 999px; padding: 4px 12px; margin: 4px 0 0; flex: none;
}
.disclaimer__text { font-size: 0.82rem; color: var(--on-dark-muted); max-width: 92ch; }
.disclaimer__text strong { color: var(--on-dark); }
.copyright { margin: 24px 0 0; font-size: 0.8rem; color: var(--on-dark-muted); }

/* --------------------------------------------------------------- cookies */
.cookie {
  position: fixed; inset: auto 16px 16px; z-index: 150;
  max-width: 940px; margin-inline: auto;
  background: var(--ink-700);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, 0.9);
}
.cookie[hidden] { display: none; }
.cookie__inner { display: flex; gap: 22px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cookie__title { font-size: 1rem; margin: 0 0 4px; }
.cookie__text { margin: 0; font-size: 0.86rem; color: var(--on-dark-muted); max-width: 62ch; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__prefs { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.cookie__prefs[hidden] { display: none; }
.cookie__prefs fieldset { border: 0; margin: 0 0 16px; padding: 0; }
.cookie__opt { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; margin-bottom: 10px; color: var(--on-dark-muted); }
.cookie__opt strong { color: var(--on-dark); }
.cookie__opt input { margin-top: 4px; accent-color: var(--celeste); }

/* ------------------------------------------------------------ utilidades */
.stack-lg > * + * { margin-top: 32px; }
.text-muted { color: var(--on-dark-muted); }
.section--paper .text-muted { color: var(--on-paper-muted); }
.lead { font-size: 1.08rem; }
.page-head { padding-block: clamp(40px, 5vw, 72px) 8px; }
.breadcrumbs { font-size: 0.8rem; color: var(--on-dark-muted); margin-bottom: 14px; }
.breadcrumbs a { color: var(--on-dark-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--celeste); text-decoration: underline; }
.updated { font-size: 0.8rem; color: var(--on-dark-muted); }
.section--paper .updated { color: var(--on-paper-muted); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
