/* ==========================================================================
   ZircoMedia
   Engineering-editorial. Hard grid, hairline rails, type as the hero image.
   Palette sampled from the 2018 logo; the sphere's silver meridian band is the
   source of the vertical rail motif that runs through every page.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/archivo-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('../fonts/instrumentsans-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('../fonts/jetbrainsmono-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-display: swap;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand, sampled from logo_ed466a315964c013d98e64e98f804034_2x.png */
  --zm-violet: #4924d4;
  --zm-violet-lt: #502bdb;
  --zm-violet-br: #6a4dff;
  /* 5.9:1 on --bg. --zm-violet-br is only 3.83:1, which clears AA for large
     display text but fails at the 11px mono sizes below. */
  --zm-violet-txt: #8f79ff;
  --zm-navy: #16144a;
  --zm-navy-deep: #100f36;
  --zm-ink: #1a1a1a;
  --zm-white: #fff;

  /* Canvas */
  --bg: #0a0920;
  --bg-2: #100f36;
  --bg-lift: #16144a;
  --paper: #f2f2f5;
  --paper-2: #e6e6ec;

  /* Type colour */
  --fg: #ecebf5;
  --fg-dim: #a5a2c4;
  /* 5.0:1 on --bg-2 and 5.3:1 on --bg. The previous #6f6c96 measured 3.97:1
     and failed WCAG AA at the small mono sizes this is used for. */
  --fg-mute: #8481ab;
  --fg-ink: #14132e;
  --fg-ink-dim: #4a4869;

  /* Rules */
  --rule: rgba(236, 235, 245, 0.14);
  --rule-soft: rgba(236, 235, 245, 0.07);
  --rule-ink: rgba(20, 19, 46, 0.16);
  --rule-ink-soft: rgba(20, 19, 46, 0.08);

  /* Families */
  --f-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Instrument Sans', 'Helvetica Neue', Arial, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  /* Measure and rhythm */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --maxw: 84rem;
  --sec-y: clamp(4.5rem, 10vw, 9rem);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  /* clip, not hidden: `hidden` would turn body into a scroll container, which
     breaks window scrolling and stops IntersectionObserver reveals firing. */
  overflow-x: clip;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* Grain. Inline SVG turbulence, so no external asset and no extra request. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .38;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* --- Layout --------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* The rail: a hairline grid echoing the logo's meridian band. Decorative, so
   it is hidden from assistive tech and dropped on small screens. */
.rails {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: none;
}
@media (min-width: 60rem) { .rails { display: grid; grid-template-columns: repeat(6, 1fr); } }
/* Violet at low alpha so the rails stay legible over both the navy canvas and
   the light "paper" sections, which a single grey tint cannot do. */
.rails span { border-left: 1px solid rgba(105, 77, 255, .13); }
.rails span:last-child { border-right: 1px solid rgba(105, 77, 255, .13); }

main { position: relative; z-index: 1; }

.section { padding-block: var(--sec-y); }
.section--paper { background: var(--paper); color: var(--fg-ink); }
.section--band {
  background:
    linear-gradient(180deg, rgba(73, 36, 212, .16), transparent 60%),
    var(--bg-2);
}

/* --- Type ----------------------------------------------------------------- */
.kicker {
  font-family: var(--f-mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.kicker::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.section--paper .kicker { color: var(--fg-ink-dim); }
.section--paper .kicker::after { background: var(--rule-ink); }
.kicker__n { color: var(--zm-violet-txt); }
.section--paper .kicker__n { color: var(--zm-violet); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  text-wrap: balance;
}
.h-display {
  font-size: clamp(2.75rem, 1.2rem + 7vw, 8rem);
  font-stretch: 108%;
  line-height: .9;
  letter-spacing: -.035em;
}
h2 { font-size: clamp(2rem, 1.1rem + 3.6vw, 4.25rem); font-stretch: 104%; }
h3 { font-size: clamp(1.25rem, 1.05rem + .9vw, 1.75rem); font-stretch: 100%; }

.lede {
  font-size: clamp(1.125rem, 1rem + .7vw, 1.5rem);
  line-height: 1.45;
  color: var(--fg-dim);
  max-width: 46ch;
  text-wrap: pretty;
}
.section--paper .lede { color: var(--fg-ink-dim); }
p { text-wrap: pretty; }
.measure { max-width: 62ch; }

/* Emphasis inside display type: the violet the wordmark uses. */
.hl { color: var(--zm-violet-br); }
.section--paper .hl { color: var(--zm-violet); }

/* --- Header --------------------------------------------------------------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
}
.hdr__logo { display: flex; align-items: center; flex-shrink: 0; }
.hdr__logo img { width: clamp(9.5rem, 22vw, 12.5rem); }
.nav { display: none; gap: clamp(1.25rem, 2.5vw, 2.5rem); align-items: center; }
@media (min-width: 56rem) { .nav { display: flex; } }
.nav a {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg-dim);
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav a:hover, .nav a:focus-visible { color: var(--fg); border-bottom-color: var(--zm-violet-br); }
.nav a[aria-current='page'] { color: var(--fg); border-bottom-color: var(--zm-violet-br); }

/* Mobile navigation. The desktop nav and header CTA both drop below 56rem, so
   this is the only way in on a phone. */
/* Specificity has to beat `.btn { display: inline-flex }`, which is declared
   later in this file. */
.hdr__in .hdr__cta { display: none; }
@media (min-width: 56rem) { .hdr__in .hdr__cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg);
  background: transparent;
  border: 1px solid var(--rule);
  padding: .6rem .85rem;
  cursor: pointer;
}
@media (min-width: 56rem) { .nav-toggle { display: none; } }
.nav-toggle__bars { display: grid; gap: 4px; width: 15px; }
.nav-toggle__bars i { display: block; height: 1.5px; background: currentColor; transition: transform .22s; }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars i:first-child { transform: translateY(2.75px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__bars i:last-child { transform: translateY(-2.75px) rotate(-45deg); }

.nav-panel { border-top: 1px solid var(--rule); background: var(--bg-2); }
.nav-panel[hidden] { display: none; }
.nav-panel .wrap { padding-block: 1.5rem 2rem; display: grid; gap: 1.5rem; }
.nav-panel nav { display: grid; }
.nav-panel nav a {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.02em;
  text-decoration: none;
  color: var(--fg);
  padding: .7rem 0;
  border-bottom: 1px solid var(--rule-soft);
}
.nav-panel nav a[aria-current='page'] { color: var(--zm-violet-br); }
.nav-panel .btn { justify-content: center; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-mono);
  font-size: .8125rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: .95rem 1.6rem;
  border: 1px solid var(--zm-violet-br);
  background: var(--zm-violet);
  color: #fff;
  transition: background .2s, transform .2s, border-color .2s;
}
.btn:hover, .btn:focus-visible { background: var(--zm-violet-br); transform: translateY(-2px); }
.btn--ghost { background: transparent; border-color: var(--rule); color: var(--fg); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: transparent; border-color: var(--zm-violet-br); }
.section--paper .btn--ghost { border-color: var(--rule-ink); color: var(--fg-ink); }
.btn__arrow { transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(3px); }

/* --- Focus ---------------------------------------------------------------- */
:focus-visible { outline: 2px solid var(--zm-violet-br); outline-offset: 3px; }
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--zm-violet);
  color: #fff;
  padding: .75rem 1.25rem;
  font-family: var(--f-mono);
  font-size: .8125rem;
}
.skip:focus { left: .5rem; top: .5rem; }

/* --- Hero ----------------------------------------------------------------- */
.hero { position: relative; padding-block: clamp(3.5rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6rem); }
.hero__grid { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 68rem) {
  .hero__grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: start; }
}
.hero h1 { margin-bottom: clamp(2rem, 3.5vw, 3rem); }
.hero__lede { margin: 0 0 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__fig { background: rgba(255, 255, 255, .015); }

/* --- Index table (services, work, capabilities) --------------------------- */
/* Editorial index rows rather than a grid of rounded cards. */
.index { border-top: 1px solid var(--rule); }
.section--paper .index { border-top-color: var(--rule-ink); }
.index__row {
  display: grid;
  gap: .5rem 2rem;
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.section--paper .index__row { border-bottom-color: var(--rule-ink); }
@media (min-width: 52rem) {
  .index__row { grid-template-columns: 4rem minmax(0, 15rem) minmax(0, 1fr); }
}
.index__n {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--fg-mute);
  letter-spacing: .08em;
}
.section--paper .index__n { color: var(--fg-ink-dim); }
.index__t { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.15rem, 1rem + .7vw, 1.6rem); letter-spacing: -.02em; margin: 0; }
.index__d { color: var(--fg-dim); margin: 0; max-width: 58ch; }
.index__d + .index__d { margin-top: 1em; }
.section--paper .index__d { color: var(--fg-ink-dim); }

/* Row link behaviour for the work index */
a.index__row { text-decoration: none; color: inherit; transition: background .2s, padding .2s; }
a.index__row:hover, a.index__row:focus-visible { background: rgba(73, 36, 212, .1); }
.section--paper a.index__row:hover, .section--paper a.index__row:focus-visible { background: rgba(73, 36, 212, .07); }

/* --- Capability chips ----------------------------------------------------- */
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 1rem 0 0; padding: 0; list-style: none; }
.tags li {
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fg-dim);
  border: 1px solid var(--rule);
  padding: .3rem .55rem;
}
.section--paper .tags li { color: var(--fg-ink-dim); border-color: var(--rule-ink); }

/* --- Two-column prose ----------------------------------------------------- */
.cols { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
@media (min-width: 56rem) { .cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.cols--sticky > :first-child { align-self: start; }
@media (min-width: 56rem) { .cols--sticky > :first-child { position: sticky; top: 7rem; } }

/* --- Figures / diagrams --------------------------------------------------- */
.figure { margin: 0; border: 1px solid var(--rule); background: rgba(255, 255, 255, .02); }
.section--paper .figure { border-color: var(--rule-ink); background: rgba(255, 255, 255, .6); }
.figure svg { width: 100%; height: auto; display: block; }
.figure figcaption {
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding: .85rem 1rem;
  border-top: 1px solid var(--rule);
}
.section--paper .figure figcaption { color: var(--fg-ink-dim); border-top-color: var(--rule-ink); }

/* --- Marquee -------------------------------------------------------------- */
.marquee {
  border-block: 1px solid var(--rule);
  overflow: hidden;
  padding-block: 1.1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; animation: slide 46s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding-inline: 1.75rem;
  white-space: nowrap;
}
.marquee__track span::before { content: '\2014'; color: var(--zm-violet-br); margin-right: 1.75rem; }
@keyframes slide { to { transform: translateX(-50%); } }

/* --- Reveal on scroll ----------------------------------------------------- */
/* Gated on .js so that without JavaScript every section is simply visible,
   rather than stuck at opacity 0 with nothing left to reveal it. */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }
/* Staggered reveal in CSS rather than per-element inline delays, which the
   Content-Security-Policy forbids. */
.js .reveal:nth-child(6n+2) { transition-delay: 55ms; }
.js .reveal:nth-child(6n+3) { transition-delay: 110ms; }
.js .reveal:nth-child(6n+4) { transition-delay: 165ms; }
.js .reveal:nth-child(6n+5) { transition-delay: 220ms; }
.js .reveal:nth-child(6n+0) { transition-delay: 275ms; }

/* --- Forms ---------------------------------------------------------------- */
.form { display: grid; gap: 1.5rem; max-width: 34rem; }
.field { display: grid; gap: .5rem; }
.field label {
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.field .opt { text-transform: none; letter-spacing: .04em; color: var(--fg-dim); }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--fg);
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--rule);
  padding: .85rem 1rem;
  width: 100%;
  border-radius: 0;
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 9rem; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--zm-violet-br);
  background: rgba(255, 255, 255, .05);
}
.field .hint { font-size: .8125rem; color: var(--fg-mute); margin: 0; }
/* Honeypot: off-screen rather than display:none, which some bots skip. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.card { border: 1px solid var(--rule); padding: clamp(1.5rem, 3vw, 2rem); }
.card h3 { font-size: 1.125rem; margin-bottom: .35em; }
.pending {
  font-family: var(--f-mono);
  font-size: .75rem;
  letter-spacing: .04em;
  color: #ffb454;
  border-left: 2px solid #ffb454;
  padding-left: .75rem;
  margin: 0;
}

.steps { list-style: none; margin: 1.25rem 0 0; padding: 0; display: grid; gap: 1.25rem; counter-reset: s; }
.steps li { display: grid; grid-template-columns: 2.5rem 1fr; gap: 1rem; color: var(--fg-dim); }
.steps span {
  font-family: var(--f-mono);
  font-size: .75rem;
  color: var(--zm-violet-txt);
  padding-top: .25rem;
}

/* --- Footer --------------------------------------------------------------- */
.ftr { border-top: 1px solid var(--rule); padding-block: clamp(3rem, 6vw, 5rem) 2rem; background: var(--bg-2); }
.ftr__grid { display: grid; gap: 2.5rem; }
@media (min-width: 56rem) { .ftr__grid { grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); } }
.ftr .ftr__h {
  font-family: var(--f-mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin: 0 0 1rem;
}
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.ftr a { color: var(--fg-dim); text-decoration: none; }
.ftr a:hover, .ftr a:focus-visible { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.ftr__logo { width: 11rem; margin-bottom: 1.25rem; }
.ftr__base {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  justify-content: space-between;
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--fg-mute);
}

/* Card headings sit directly under the page h1, so they are h2 for heading
   order but keep the visual weight of an h3. */
.card__h { font-size: clamp(1.125rem, 1rem + .4vw, 1.3rem); margin-bottom: .4em; }

/* --- Utilities ------------------------------------------------------------ */
/* These exist because the site's own CSP forbids inline style attributes. */
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mt-25 { margin-top: 2.5rem; }
.mt-3  { margin-top: 3rem; }
.mt-35 { margin-top: 3.5rem; }
.mb-15 { margin-bottom: 1.5rem; }
.fs-base { font-size: 1rem; }
.flush { margin-top: 0; border-top: 0; }

/* --- Interactive backdrop -------------------------------------------------- */
/* Canvas is inserted by backdrop.js, so nothing renders without JS. It sits
   behind main (which is z-index 1) and shows through the transparent sections. */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* --- Masthead hero --------------------------------------------------------- */
/* Deliberately not a billboard headline. A dense masthead carries the words at
   reading size and the live console carries the visual weight. */
.mast { display: grid; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
/* Grid children default to min-width:auto, so the console's wide table would
   otherwise force the whole column open and push the page sideways. */
.mast > * { min-width: 0; }
@media (min-width: 68rem) {
  .mast { grid-template-columns: minmax(0, 23.5rem) minmax(0, 1fr); gap: clamp(2.5rem, 4vw, 4rem); }
}
.mast__rule { border: 0; border-top: 1px solid var(--rule); margin: 1.25rem 0; }
.mast__def {
  font-family: var(--f-display);
  font-weight: 700;
  font-stretch: 104%;
  font-size: clamp(1.65rem, 1.25rem + 1.5vw, 2.4rem);
  line-height: 1.06;
  letter-spacing: -.025em;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.mast__body { color: var(--fg-dim); margin: 0 0 1.5rem; font-size: 1rem; line-height: 1.55; }
.mast__cta { display: flex; flex-wrap: wrap; gap: .6rem; }
.mast__meta { margin: 0; display: grid; gap: .42rem; }
.mast__meta div {
  display: flex;
  gap: .6rem;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: .6875rem;
  letter-spacing: .05em;
  color: var(--fg-dim);
}
.mast__meta dt {
  color: var(--fg-mute);
  min-width: 4.5rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .5625rem;
}
.mast__meta dd { margin: 0; }

/* Live status strip above the console */
.console__status {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--f-mono);
  font-size: .625rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fg-mute);
  margin-bottom: .6rem;
  flex-wrap: wrap;
}
.console__led {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5fd39a;
  box-shadow: 0 0 0 3px rgba(95, 211, 154, .18);
  animation: led 2.6s ease-in-out infinite;
}
@keyframes led { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .console__led { animation: none; } }
.console__sep { color: var(--rule); }
