@charset "UTF-8";
/* ==========================================================================
   ZOI Grupo — Sistema de diseño
   Manual Maestro de Marca v2.0, sección 5.1 (identidad) y tabla 8 (UI).

   Norma: fondos blancos, tarjetas limpias, títulos negros, CTA naranja,
   mucha jerarquía y espacio. El naranja es acento, nunca fondo dominante.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tipografía autoalojada (Inter Variable)
   Self-hosted a propósito: sin llamadas a CDN de terceros = sin transferencia
   de IP a Google Fonts. Relevante para el punto 21 (RGPD/consentimiento).
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7,
                 U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F,
                 U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
                 U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Marca. --zoi-orange es PROVISIONAL: muestreado del logo actual.
     Cuando llegue el hex oficial se cambia aquí y solo aquí. */
  --zoi-orange:      #EA7D32;
  --zoi-orange-600:  #CF6417;
  --zoi-orange-700:  #A94F11;
  --zoi-orange-50:   #FEF5EE;
  --zoi-orange-100:  #FBE4D2;

  /* Neutros */
  --ink-950: #0E1013;
  --ink-900: #16191F;
  --ink-800: #21262E;
  --ink-700: #333B45;
  --ink-600: #4C5661;
  --ink-500: #6B7684;
  --ink-400: #929CA9;
  --ink-300: #C2C9D2;
  --line:    #E3E8ED;
  --line-soft:#EEF1F5;
  --surface: #F7F9FB;
  --surface-2:#F1F4F8;
  --white:   #FFFFFF;

  /* Semánticos */
  --ok:   #1A7F5A;
  --warn: #B4690E;
  --risk: #B42318;

  /* Tipografía fluida */
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fs-display: clamp(2.25rem, 1.5rem + 2.6vw, 3.5rem);
  --fs-h1:      clamp(2.1rem, 1.5rem + 2.4vw, 3.25rem);
  --fs-h2:      clamp(1.65rem, 1.3rem + 1.4vw, 2.35rem);
  --fs-h3:      clamp(1.2rem, 1.08rem + 0.5vw, 1.45rem);
  --fs-lead:    clamp(1.06rem, 1rem + 0.35vw, 1.28rem);
  --fs-body:    1rem;
  --fs-sm:      0.9375rem;
  --fs-xs:      0.8125rem;

  /* Espaciado */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem;    --sp-7: 3rem;    --sp-8: 4rem;
  --sp-9: 6rem;   --sp-10: 8rem;

  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 2px rgba(14,16,19,.05);
  --shadow:    0 4px 16px -4px rgba(14,16,19,.08), 0 1px 3px rgba(14,16,19,.04);
  --shadow-lg: 0 24px 48px -16px rgba(14,16,19,.16), 0 2px 8px rgba(14,16,19,.05);

  --wrap: 1200px;
  --wrap-narrow: 760px;
  --header-h: 76px;
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'cv05' 1, 'ss03' 1;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  color: var(--ink-950);
  line-height: 1.14;
  letter-spacing: -0.022em;
  font-weight: 650;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); letter-spacing: -0.014em; line-height: 1.3; }
p  { text-wrap: pretty; }

a { color: var(--ink-950); text-decoration-color: var(--ink-300); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--zoi-orange); }

:focus-visible {
  outline: 2px solid var(--zoi-orange-600);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--zoi-orange-100); color: var(--ink-950); }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.5rem, var(--wrap-narrow)); margin-inline: auto; }

.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--soft { background: var(--surface); }
.section--ink { background: var(--ink-950); color: var(--ink-300); }
.section--ink h2, .section--ink h3 { color: var(--white); }

.grid { display: grid; gap: var(--sp-5); }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.stack > * + * { margin-top: var(--sp-4); }
.stack-lg > * + * { margin-top: var(--sp-6); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink-950); color: var(--white);
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   5. Tipografía de apoyo
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: var(--fs-xs); font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--zoi-orange-700);
}
.eyebrow::before {
  content: ''; width: 18px; height: 2px;
  background: var(--zoi-orange); border-radius: 2px;
}
.section--ink .eyebrow { color: var(--zoi-orange); }

.lead { font-size: var(--fs-lead); color: var(--ink-600); line-height: 1.6; }
.section--ink .lead { color: var(--ink-300); }
.muted { color: var(--ink-500); }
.small { font-size: var(--fs-sm); }
.xs { font-size: var(--fs-xs); }

.section-head { max-width: 62ch; margin-bottom: var(--sp-7); }
.section-head > * + * { margin-top: var(--sp-4); }

/* --------------------------------------------------------------------------
   6. Botones
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem;
  font-size: var(--fs-sm); font-weight: 600; letter-spacing: -0.005em;
  border-radius: var(--radius); border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease,
              color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }

/* Texto casi negro sobre naranja, no blanco.
   Blanco sobre #EA7D32 da 3,0:1 y no alcanza el mínimo AA de 4,5:1.
   Con --ink-950 sube a 6,2:1 y el naranja de marca se conserva intacto. */
.btn--primary { background: var(--zoi-orange); color: var(--ink-950); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--zoi-orange-600); color: var(--ink-950); }

.btn--ink { background: var(--ink-950); color: #fff; }
.btn--ink:hover { background: var(--ink-800); color: #fff; }

.btn--ghost { background: transparent; color: var(--ink-950); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-400); background: var(--surface); }

.section--ink .btn--ghost { color: #fff; border-color: rgba(255,255,255,.24); }
.section--ink .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }

.btn--lg { padding: 1rem 1.9rem; font-size: var(--fs-body); }
.btn--sm { padding: .55rem 1rem; font-size: var(--fs-xs); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; font-size: var(--fs-sm);
  color: var(--ink-950); text-decoration: none;
}
.link-arrow::after {
  content: '→'; transition: transform .18s ease; color: var(--zoi-orange);
}
.link-arrow:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   7. Cabecera
   -------------------------------------------------------------------------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--line-soft);
}
.header__inner {
  display: flex; align-items: center; gap: var(--sp-6);
  height: var(--header-h);
}
.header__logo { color: var(--ink-950); flex-shrink: 0; }
.header__logo svg { height: 30px; width: auto; }

.header__nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: var(--sp-1); list-style: none; padding: 0; }
.nav-link {
  display: block; padding: .5rem .8rem;
  font-size: var(--fs-sm); font-weight: 500; color: var(--ink-700);
  text-decoration: none; border-radius: 8px;
  transition: background-color .15s ease, color .15s ease;
}
.nav-link:hover, .nav-link[aria-current] { background: var(--surface-2); color: var(--ink-950); }

/* Megamenú */
.has-menu { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: .35rem;
  background: none; border: 0; cursor: pointer;
  padding: .5rem .8rem; border-radius: 8px;
  font-size: var(--fs-sm); font-weight: 500; color: var(--ink-700);
}
.nav-trigger:hover, .nav-trigger[aria-expanded="true"] { background: var(--surface-2); color: var(--ink-950); }
.nav-trigger svg { width: 12px; transition: transform .2s ease; }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }

.megamenu {
  position: absolute; top: calc(100% + 10px); right: 0;
  width: min(92vw, 640px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-4);
  display: none;
}
.megamenu[data-open="true"] { display: block; }
.megamenu__grid { display: grid; gap: 2px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .megamenu__grid { grid-template-columns: 1fr 1fr; } }
.megamenu__item {
  display: flex; gap: .85rem; align-items: flex-start;
  padding: .8rem; border-radius: var(--radius); text-decoration: none;
  transition: background-color .15s ease;
}
.megamenu__item:hover { background: var(--surface); }
.megamenu__item .icon { color: var(--zoi-orange); flex-shrink: 0; margin-top: 2px; }
.megamenu__title { font-weight: 600; color: var(--ink-950); font-size: var(--fs-sm); display: block; }
.megamenu__desc { font-size: var(--fs-xs); color: var(--ink-500); }

.header__cta { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.header__burger { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }

@media (max-width: 1023px) {
  .header__nav, .header__cta .btn--ghost { display: none; }
  .header__burger { display: block; margin-left: auto; }
  .header__inner { gap: var(--sp-4); }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--white); }
.hero__inner {
  display: grid; gap: var(--sp-8); align-items: center;
  padding-block: clamp(3rem, 2rem + 6vw, 6.5rem);
}
@media (min-width: 1000px) { .hero__inner { grid-template-columns: 1.02fr .98fr; } }

.hero h1 { font-size: var(--fs-display); font-weight: 680; }
.hero__copy > * + * { margin-top: var(--sp-5); }

/* Malla técnica de fondo — sustituye a la foto de stock */
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, var(--line-soft) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 70% at 70% 30%, #000 20%, transparent 75%);
}
.hero > * { position: relative; z-index: 1; }

.trustbar {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-5);
  padding-top: var(--sp-5); border-top: 1px solid var(--line);
}
.trustbar__item { display: flex; align-items: center; gap: .5rem; font-size: var(--fs-sm); color: var(--ink-600); }
.trustbar__item svg { color: var(--zoi-orange); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   9. Tarjetas
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card--link:hover { border-color: var(--ink-300); box-shadow: var(--shadow); transform: translateY(-2px); }
.card__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; margin-bottom: var(--sp-4);
  border-radius: 11px;
  background: var(--zoi-orange-50); color: var(--zoi-orange-700);
  border: 1px solid var(--zoi-orange-100);
}
.card h3 { margin-bottom: var(--sp-2); }
.card p { font-size: var(--fs-sm); color: var(--ink-600); }
.card__link::after { content: ''; position: absolute; inset: 0; }

.card--ink { background: var(--ink-900); border-color: var(--ink-800); }
.card--ink h3 { color: var(--white); }
.card--ink p { color: var(--ink-400); }

.tag-list { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: var(--sp-4); list-style: none; padding: 0; }
.tag {
  font-size: var(--fs-xs); color: var(--ink-600);
  padding: .25rem .6rem; border-radius: 6px;
  background: var(--surface-2);
}

/* Lista de checks */
.checks { list-style: none; padding: 0; display: grid; gap: .7rem; }
.checks li { display: flex; gap: .65rem; align-items: flex-start; font-size: var(--fs-sm); }
.checks li::before {
  content: ''; flex-shrink: 0; margin-top: .45rem;
  width: 7px; height: 7px; border-radius: 2px; background: var(--zoi-orange);
}

/* --------------------------------------------------------------------------
   10. Selector Empresas / Particulares
   -------------------------------------------------------------------------- */
.split { display: grid; gap: var(--sp-4); }
@media (min-width: 800px) { .split { grid-template-columns: 1fr 1fr; } }
.split__card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: clamp(1.75rem, 1rem + 2.5vw, 2.75rem);
  border-radius: var(--radius-xl); border: 1px solid var(--line);
  background: var(--white); text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.split__card:hover { border-color: var(--ink-300); box-shadow: var(--shadow); }
.split__card--ink { background: var(--ink-950); border-color: var(--ink-800); }
.split__card--ink h3, .split__card--ink .split__num { color: var(--white); }
.split__card--ink p { color: var(--ink-400); }
.split__num { font-size: var(--fs-xs); font-weight: 600; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-500); }

/* --------------------------------------------------------------------------
   11. Tablas y comparativas
   -------------------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); }
table { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
thead th {
  text-align: left; font-weight: 600; color: var(--ink-950);
  background: var(--surface); padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--line); white-space: nowrap;
}
tbody td { padding: .9rem 1.1rem; border-bottom: 1px solid var(--line-soft); vertical-align: top; }
tbody tr:last-child td { border-bottom: 0; }

/* --------------------------------------------------------------------------
   12. Planes
   -------------------------------------------------------------------------- */
.plan { display: flex; flex-direction: column; }
.plan__price { display: flex; align-items: baseline; gap: .3rem; margin: var(--sp-4) 0; }
.plan__amount { font-size: 2.5rem; font-weight: 680; color: var(--ink-950); letter-spacing: -.03em; }
.plan__period { font-size: var(--fs-sm); color: var(--ink-500); }
.plan .btn { margin-top: auto; }
.plan--featured { border-color: var(--ink-950); box-shadow: var(--shadow); }
.badge {
  position: absolute; top: -11px; left: var(--sp-5);
  font-size: var(--fs-xs); font-weight: 600;
  padding: .2rem .65rem; border-radius: 99px;
  background: var(--ink-950); color: #fff;
}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; gap: var(--sp-4); align-items: center;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-weight: 600; color: var(--ink-950); font-size: var(--fs-body);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--zoi-orange);
  flex-shrink: 0; line-height: 1;
}
.faq details[open] summary::after { content: '−'; }
.faq details > div { padding-bottom: 1.35rem; color: var(--ink-600); font-size: var(--fs-sm); max-width: 72ch; }

/* --------------------------------------------------------------------------
   14. Cross-sell (sección 10) — módulo discreto, máximo 2 servicios
   -------------------------------------------------------------------------- */
.crosssell {
  border: 1px solid var(--line); border-left: 3px solid var(--zoi-orange);
  border-radius: var(--radius); background: var(--surface);
  padding: var(--sp-5);
}
.crosssell h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-4); }
.crosssell__items { display: grid; gap: var(--sp-3); }
@media (min-width: 700px) { .crosssell__items { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   15. Formularios
   -------------------------------------------------------------------------- */
.field { display: grid; gap: .4rem; margin-bottom: var(--sp-4); }
.field label { font-size: var(--fs-sm); font-weight: 550; color: var(--ink-800); }
.field .hint { font-size: var(--fs-xs); color: var(--ink-500); }
.input, .select, .textarea {
  width: 100%; padding: .75rem .9rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); font-size: var(--fs-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none; border-color: var(--zoi-orange);
  box-shadow: 0 0 0 3px var(--zoi-orange-50);
}
.textarea { min-height: 130px; resize: vertical; }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: var(--fs-xs); color: var(--ink-600); }
.consent input { margin-top: .25rem; flex-shrink: 0; width: 16px; height: 16px; accent-color: var(--zoi-orange); }
.form-error { color: var(--risk); font-size: var(--fs-xs); }
.alert { padding: var(--sp-4); border-radius: var(--radius); font-size: var(--fs-sm); }
.alert--ok { background: #ECFDF3; color: #05603A; border: 1px solid #ABEFC6; }
.alert--err { background: #FEF3F2; color: #912018; border: 1px solid #FECDCA; }

/* --------------------------------------------------------------------------
   16. Pie
   -------------------------------------------------------------------------- */
.footer { background: var(--ink-950); color: var(--ink-400); padding-block: var(--sp-8) var(--sp-6); font-size: var(--fs-sm); }
.footer a { color: var(--ink-300); text-decoration: none; }
.footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer__grid { display: grid; gap: var(--sp-6); }
@media (min-width: 700px)  { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer h4 { color: var(--white); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .09em; margin-bottom: var(--sp-4); font-weight: 600; }
.footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer__logo { color: var(--white); }
.footer__logo svg { height: 28px; width: auto; }
.footer__legal {
  margin-top: var(--sp-7); padding-top: var(--sp-5);
  border-top: 1px solid var(--ink-800);
  /* ink-500 sobre ink-950 da 3,8:1: insuficiente para texto pequeño. */
  font-size: var(--fs-xs); color: var(--ink-400);
  display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: space-between;
}
.footer__legal p { max-width: 70ch; }
.social { display: flex; gap: var(--sp-3); }
.social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--ink-800); }
.social a:hover { background: var(--ink-900); border-color: var(--ink-700); }

/* --------------------------------------------------------------------------
   17. Utilidades
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-6 { margin-top: var(--sp-6); }
.mt-7 { margin-top: var(--sp-7); }

.breadcrumb { font-size: var(--fs-xs); color: var(--ink-500); padding-top: var(--sp-5); }
.breadcrumb ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.breadcrumb li:not(:last-child)::after { content: '/'; margin-left: .4rem; color: var(--ink-300); }
.breadcrumb a { color: var(--ink-500); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink-950); }

.env-banner {
  background: var(--warn); color: #fff; text-align: center;
  padding: .4rem 1rem; font-size: var(--fs-xs); font-weight: 600;
}
