/* ==========================================================================
   One-Me · ONE-OMICS, S.L. — Sistema de diseño
   Sitio estático autocontenido. Sin fuentes externas, sin CDNs, sin cookies.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  color-scheme: light dark;

  /* Paleta — modo claro */
  --bg: #fbfbfd;
  --bg-raised: #ffffff;
  --bg-subtle: #f3f4f8;
  --bg-tint: #eef0fb;
  --ink: #15171e;
  --ink-2: #3c4150;
  --muted: #5b6172;
  --border: #e5e7ee;
  --border-strong: #d4d7e1;
  --accent: #4f46e5;
  --accent-strong: #4338ca;
  --accent-ink: #3730a3;
  --accent-soft: #e4e6fb;
  --on-accent: #ffffff;
  --ok: #15803d;

  /* Hero SVG */
  --hero-chaos: #a3a8bb;
  --hero-flow: #8a90f0;
  --hero-grid-line: #d8dbe8;
  --hero-node: #4f46e5;
  --hero-node-soft: #c3c8f5;
  --hero-chip-bg: #ffffff;
  --hero-chip-text: #3c4150;

  /* Sombras en capas */
  --shadow-1: 0 1px 2px rgba(21, 23, 30, .05);
  --shadow-2: 0 1px 2px rgba(21, 23, 30, .05), 0 4px 12px rgba(21, 23, 30, .06);
  --shadow-3: 0 2px 4px rgba(21, 23, 30, .05), 0 12px 32px rgba(21, 23, 30, .10);
  --shadow-accent: 0 4px 14px rgba(79, 70, 229, .28);

  /* Espaciado */
  --sp-1: .25rem; --sp-2: .5rem; --sp-3: .75rem; --sp-4: 1rem;
  --sp-5: 1.5rem; --sp-6: 2rem; --sp-7: 3rem; --sp-8: 4.5rem; --sp-9: 7rem;

  /* Radios */
  --r-s: 8px; --r-m: 12px; --r-l: 18px; --r-xl: 26px; --r-pill: 999px;

  /* Tipografía — escala fluida */
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-xs: clamp(.72rem, .69rem + .12vw, .78rem);
  --fs-s: clamp(.84rem, .81rem + .14vw, .92rem);
  --fs-base: clamp(1rem, .96rem + .18vw, 1.09rem);
  --fs-m: clamp(1.12rem, 1.06rem + .3vw, 1.3rem);
  --fs-l: clamp(1.4rem, 1.25rem + .7vw, 1.85rem);
  --fs-xl: clamp(1.85rem, 1.55rem + 1.5vw, 2.8rem);
  --fs-hero: clamp(2.5rem, 1.9rem + 3vw, 4.35rem);

  --header-h: 64px;
  --container: 1140px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0c0e14;
    --bg-raised: #14161f;
    --bg-subtle: #171a24;
    --bg-tint: #181b2c;
    --ink: #eceef6;
    --ink-2: #c2c7d6;
    --muted: #969db2;
    --border: #242838;
    --border-strong: #323750;
    --accent: #818cf8;
    --accent-strong: #a5b4fc;
    --accent-ink: #c7d2fe;
    --accent-soft: #232856;
    --on-accent: #ffffff;
    --ok: #4ade80;

    --hero-chaos: #565d75;
    --hero-flow: #6d77e8;
    --hero-grid-line: #2b3046;
    --hero-node: #8d97f9;
    --hero-node-soft: #3c4280;
    --hero-chip-bg: #1b1e2e;
    --hero-chip-text: #c2c7d6;

    --shadow-1: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-2: 0 1px 2px rgba(0, 0, 0, .4), 0 4px 14px rgba(0, 0, 0, .45);
    --shadow-3: 0 2px 4px rgba(0, 0, 0, .4), 0 14px 36px rgba(0, 0, 0, .55);
    --shadow-accent: 0 4px 16px rgba(99, 102, 241, .35);
  }
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.15; letter-spacing: -.022em; font-weight: 650; color: var(--ink); text-wrap: balance; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
strong { font-weight: 650; color: var(--ink); }
svg { display: block; }
[id] { scroll-margin-top: calc(var(--header-h) + 24px); }

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

::selection { background: var(--accent); color: var(--on-accent); }

.skip-link {
  position: absolute;
  left: var(--sp-4); top: -100px;
  z-index: 200;
  padding: var(--sp-3) var(--sp-5);
  background: var(--accent);
  color: var(--on-accent);
  border-radius: var(--r-m);
  font-weight: 600;
  box-shadow: var(--shadow-3);
  transition: top .15s ease;
}
.skip-link:focus { top: var(--sp-4); text-decoration: none; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, 780px); margin-inline: auto; }

/* ---------- 3. Cabecera ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background-color .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: color-mix(in srgb, var(--bg) 85%, transparent);
}
@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .site-header { background: var(--bg); }
}

.header-inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5);
}

.brand {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: 1.06rem; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink);
}
.brand:hover { text-decoration: none; }
.brand-mark { width: 26px; height: 26px; flex: none; }
.brand-mark .bm-bg { fill: var(--accent); }
.brand-mark .bm-fg { stroke: var(--on-accent); fill: none; stroke-width: 5; stroke-linecap: round; }
.brand-mark .bm-dot { fill: var(--on-accent); }

.site-nav ul { display: flex; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: inline-block;
  padding: .42rem .8rem;
  border-radius: var(--r-pill);
  color: var(--ink-2);
  font-size: var(--fs-s);
  font-weight: 530;
  transition: color .18s ease, background-color .18s ease;
}
.site-nav a:hover { color: var(--ink); background: var(--bg-subtle); text-decoration: none; }
.site-nav a[aria-current] { color: var(--accent-ink); background: var(--accent-soft); }

@media (max-width: 900px) { .site-nav { display: none; } }

/* ---------- 4. Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.4rem;
  border-radius: var(--r-pill);
  font-size: var(--fs-s); font-weight: 600; letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-accent); }
.btn-primary:hover { background: var(--accent-strong); }
@media (prefers-color-scheme: dark) {
  .btn-primary { background: #4f46e5; }
  .btn-primary:hover { background: #6366f1; }
}
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); }
.btn-s { padding: .5rem 1.05rem; }

/* Selector de idioma ES / EN */
.header-actions { display: inline-flex; align-items: center; gap: var(--sp-4); }
.lang-switch { display: inline-flex; align-items: center; gap: 2px; }
.lang-switch a {
  padding: .26rem .5rem;
  border-radius: var(--r-pill);
  color: var(--muted);
  font-size: var(--fs-xs); font-weight: 650; letter-spacing: .04em;
  transition: color .18s ease, background-color .18s ease;
}
.lang-switch a:hover { color: var(--ink); background: var(--bg-subtle); text-decoration: none; }
.lang-switch a[aria-current] { color: var(--accent-ink); background: var(--accent-soft); }
@media (prefers-reduced-motion: no-preference) {
  .btn:hover { transform: translateY(-1px); }
  .btn:active { transform: translateY(0); }
}

/* ---------- 5. Secciones y utilidades ---------- */
.section { padding-block: var(--sp-9); }
.section-tight { padding-block: var(--sp-8); }
.section-alt { background: var(--bg-subtle); border-block: 1px solid var(--border); }

.eyebrow {
  display: inline-block;
  margin-bottom: var(--sp-4);
  font-size: var(--fs-xs); font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent-ink);
}
.section-head { max-width: 700px; margin-bottom: var(--sp-7); }
.section-head h2 { font-size: var(--fs-xl); }
.lead { font-size: var(--fs-m); color: var(--muted); line-height: 1.55; text-wrap: pretty; }
.note { font-size: var(--fs-s); color: var(--muted); }

.grid { display: grid; gap: var(--sp-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- 6. Hero ---------- */
.hero { padding-block: var(--sp-8) var(--sp-9); overflow: clip; }
.hero-inner {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: center; gap: var(--sp-7);
}
@media (max-width: 980px) { .hero-inner { grid-template-columns: 1fr; gap: var(--sp-6); } }

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.04;
  margin-bottom: var(--sp-5);
}
.hero .lead { margin-bottom: var(--sp-6); max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero-art { min-width: 0; }
.hero-art svg { width: 100%; height: auto; }

/* Pieza SVG: del caos al dato */
.chaos-dot { fill: var(--hero-chaos); opacity: .55; }
.chaos-stroke { stroke: var(--hero-chaos); fill: none; stroke-width: 1.6; stroke-linecap: round; opacity: .45; }
.flow-line { stroke: var(--hero-flow); fill: none; stroke-width: 1.5; opacity: .65; }
.grid-line { stroke: var(--hero-grid-line); stroke-width: 1; }
.grid-node { fill: var(--hero-node); }
.grid-node-soft { fill: var(--hero-node-soft); }
.chip-box { fill: var(--hero-chip-bg); stroke: var(--border-strong); rx: 8; }
.chip-text { fill: var(--hero-chip-text); font-family: var(--font); font-size: 10.5px; font-weight: 600; letter-spacing: .02em; }
.chip-dot { fill: var(--hero-node); }

@media (prefers-reduced-motion: no-preference) {
  .chaos-dot { animation: drift 9s ease-in-out infinite alternate; }
  .chaos-dot:nth-of-type(2n) { animation-duration: 12s; animation-delay: -3s; }
  .chaos-dot:nth-of-type(3n) { animation-duration: 10s; animation-delay: -6s; }
  .chaos-stroke { animation: breathe 8s ease-in-out infinite alternate; }
  .chaos-stroke:nth-of-type(2n) { animation-delay: -4s; }
  .flow-line { stroke-dasharray: 5 9; animation: flow 9s linear infinite; }
  .flow-line:nth-of-type(2n) { animation-duration: 12s; }
  .flow-line:nth-of-type(3n) { animation-duration: 15s; }
  .grid-node { animation: pulse 7s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .grid-node:nth-of-type(2n) { animation-delay: -2.4s; }
  .grid-node:nth-of-type(3n) { animation-delay: -4.8s; }
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(7px, -9px); }
}
@keyframes breathe {
  from { opacity: .2; }
  to { opacity: .55; }
}
@keyframes flow {
  to { stroke-dashoffset: -140; }
}
@keyframes pulse {
  0%, 100% { opacity: .75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

/* ---------- 7. Tarjetas ---------- */
.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: var(--sp-6);
  box-shadow: var(--shadow-1);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.card h3 { font-size: var(--fs-m); margin-bottom: .35em; }
.card p { margin: 0; color: var(--muted); font-size: var(--fs-s); line-height: 1.6; }
@media (prefers-reduced-motion: no-preference) {
  .card:hover { transform: translateY(-3px); }
}
.card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-2); }

.card-icon {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-m);
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.card-icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Pilares IECC: 5 en una fila ancha */
.pillars { display: grid; gap: var(--sp-4); grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .pillars { grid-template-columns: 1fr; } }
.pillars .card { padding: var(--sp-5); }
.pillars .card h3 { font-size: 1.04rem; }

/* ---------- 8. Pipeline: cómo funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: var(--sp-6);
  box-shadow: var(--shadow-1);
}
.step-num {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-pill);
  background: var(--accent); color: var(--on-accent);
  font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-accent);
}
.step h3 { font-size: var(--fs-m); }
.step p { color: var(--muted); font-size: var(--fs-s); margin-bottom: 0; }
.step .chips { margin-top: var(--sp-4); }

.chips { display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; margin: 0; list-style: none; }
.chip {
  display: inline-flex; align-items: center; gap: .38rem;
  padding: .28rem .72rem;
  border-radius: var(--r-pill);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .02em;
}
.chip::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex: none;
}

/* ---------- 9. Cifras ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); text-align: center; }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }
.stat-value {
  display: block;
  font-size: clamp(2.2rem, 1.7rem + 2.4vw, 3.6rem);
  font-weight: 720; letter-spacing: -.04em; line-height: 1.05;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.stat-label { display: block; margin-top: var(--sp-2); color: var(--muted); font-size: var(--fs-s); text-wrap: balance; }
.stats-note { margin-top: var(--sp-6); text-align: center; }

/* ---------- 10. Seguridad ---------- */
.security-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--sp-7); align-items: start; }
@media (max-width: 900px) { .security-grid { grid-template-columns: 1fr; } }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.checklist li {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: var(--sp-4) var(--sp-5);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  font-size: var(--fs-s);
  color: var(--ink-2);
}
.checklist svg { width: 19px; height: 19px; flex: none; margin-top: .12em; stroke: var(--ok); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.checklist strong { display: block; }

.ens-banner {
  position: sticky; top: calc(var(--header-h) + 24px);
  padding: var(--sp-6);
  border-radius: var(--r-l);
  background: var(--bg-tint);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--border));
  box-shadow: var(--shadow-1);
}
.ens-banner .card-icon { background: var(--accent); color: var(--on-accent); }
.ens-banner h3 { font-size: var(--fs-m); }
.ens-banner p { color: var(--muted); font-size: var(--fs-s); margin: 0; }

/* ---------- 11. Contacto ---------- */
.contact-panel {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(2.2rem, 5vw, 4.2rem);
  background: linear-gradient(135deg, #312e81 0%, #4338ca 55%, #4f46e5 100%);
  color: #eef0ff;
  box-shadow: var(--shadow-3);
  overflow: clip;
}
.contact-panel::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(640px 320px at 85% -10%, rgba(165, 180, 252, .35), transparent 70%);
  pointer-events: none;
}
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h2 { color: #ffffff; font-size: var(--fs-xl); }
.contact-panel .lead { color: #d6daff; max-width: 36rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.contact-actions .btn-light { background: #ffffff; color: #312e81; }
.contact-actions .btn-light:hover { background: #eef0ff; }
.contact-actions .btn-outline { background: transparent; color: #ffffff; border-color: rgba(255, 255, 255, .55); }
.contact-actions .btn-outline:hover { border-color: #ffffff; }
.contact-claim { margin: var(--sp-5) 0 0; font-size: var(--fs-s); color: #c3c9ff; }
.contact-panel :focus-visible { outline-color: #ffffff; }

/* ---------- 12. Pie ---------- */
.site-footer {
  margin-top: var(--sp-8);
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
  padding-block: var(--sp-7) var(--sp-6);
  font-size: var(--fs-s);
  color: var(--muted);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: var(--sp-6); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 { font-size: var(--fs-xs); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); margin-bottom: var(--sp-4); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer a { color: var(--ink-2); }
.site-footer a:hover { color: var(--accent-ink); }
.footer-brand p { margin-bottom: .4em; }
.footer-legalline {
  margin-top: var(--sp-6); padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  justify-content: space-between;
  font-size: var(--fs-xs);
}

/* ---------- 13. Animaciones de aparición ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s cubic-bezier(.22, .61, .36, 1), transform .65s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--rd, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- 14. Páginas legales ---------- */
.legal { padding-block: var(--sp-7) var(--sp-8); }
.legal-meta {
  display: inline-flex; flex-wrap: wrap; gap: .4rem 1rem;
  margin-bottom: var(--sp-5);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .04em;
  color: var(--muted);
  padding: .4rem .9rem;
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--bg-subtle);
}
.legal h1 { font-size: var(--fs-xl); margin-bottom: var(--sp-5); }
.legal h2 { font-size: var(--fs-l); margin-top: var(--sp-7); }
.legal p, .legal li { color: var(--ink-2); }
.legal .intro { font-size: var(--fs-m); color: var(--muted); }

.table-wrap { overflow-x: auto; margin: var(--sp-5) 0; border: 1px solid var(--border); border-radius: var(--r-m); background: var(--bg-raised); }
.legal table { width: 100%; border-collapse: collapse; font-size: var(--fs-s); }
.legal caption { text-align: left; padding: var(--sp-4) var(--sp-5) 0; font-weight: 650; color: var(--ink); }
.legal th, .legal td { text-align: left; padding: .8rem var(--sp-5); border-top: 1px solid var(--border); vertical-align: top; }
.legal thead th { border-top: none; font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); background: var(--bg-subtle); }
.legal tr > th[scope="row"] { font-weight: 600; color: var(--ink); white-space: nowrap; }
.legal tbody tr:first-child td, .legal tbody tr:first-child th { border-top: none; }
.legal thead + tbody tr:first-child td, .legal thead + tbody tr:first-child th { border-top: 1px solid var(--border); }

.legal-nav-foot { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-7); }

/* ---------- 15. Impresión (páginas legales) ---------- */
@media print {
  :root { --bg: #ffffff; --ink: #000000; --ink-2: #111111; --muted: #333333; --border: #999999; }
  .site-header, .skip-link, .site-footer nav, .legal-nav-foot, .btn { display: none !important; }
  body { background: #ffffff; color: #000000; font-size: 11pt; }
  .legal { padding: 0; }
  .legal h1 { font-size: 20pt; }
  .legal h2 { font-size: 14pt; page-break-after: avoid; }
  .table-wrap { border: none; overflow: visible; }
  .legal table, .legal th, .legal td { border: 1px solid #777777; }
  .legal a { color: #000000; text-decoration: none; }
  .site-footer { background: none; border-top: 1px solid #777777; margin-top: 24pt; }
  .footer-grid { display: block; }
}
