/*
 * styles.css — Gratiel Technologies
 * Dark engineer's studio at dusk: Bodoni Moda welded to the IBM Plex system,
 * a violet-to-cyan trace-seam running through it like a live circuit.
 * Design direction: 06-design-synthesis/design-direction.md
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #7C3AED;        /* Spark Violet — dominant saturated FIELD */
  --color-primary-dark: #4C1D95;   /* Deep Violet */
  --color-primary-light: #B79CF5;  /* Soft Violet */
  --color-secondary: #E6E8ED;      /* Prairie Gray — light field / body on dark */
  --color-accent: #00D4FF;         /* Signal Cyan — the trace/spark */
  --color-bg: #131922;             /* Deep Navy Canvas — dominant dark field */
  --color-surface: #1B2432;        /* Lifted Navy — insets, mounts */
  --color-text: #E6E8ED;
  --color-text-secondary: #97A1B2; /* Dimmed Steel */
  --color-on-primary: #FFFFFF;
  --color-border: #2A3444;         /* Trace Line */

  --font-primary: 'Bodoni Moda', Georgia, serif;      /* display */
  --font-secondary: 'IBM Plex Sans', system-ui, sans-serif; /* body / nav */
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;    /* spec-sheet register */
  --font-size-base: 16px;

  --spacing-base: 8px;
  --nav-h: 58px;
  --wrap: 1200px;

  --motion-duration: 280ms;
  --motion-duration-slow: 560ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 1);

  --seam: linear-gradient(180deg, var(--color-primary), var(--color-accent));
  --seam-h: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: var(--font-size-base, 16px);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--color-bg, #131922);
  color: var(--color-text, #E6E8ED);
  line-height: 1.65;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--color-accent, inherit); }

h1, h2, h3 { font-family: var(--font-primary); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; }

/* Focus states — WCAG AA required */
:focus-visible {
  outline: 3px solid var(--color-accent, #00D4FF);
  outline-offset: 3px;
}

/* Skip navigation link — WCAG 2.4.1 (managed by fix_ada_safe.py) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-surface, #1B2432);
  color: var(--color-accent, #00D4FF);
  font-family: var(--font-secondary);
  font-weight: 600; text-decoration: none;
  border: 2px solid var(--color-accent, #00D4FF);
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Utilities
   ============================================================ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; }
.rubric {
  font-family: var(--font-mono);
  font-size: 0.8125rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.rubric::before {
  content: ""; width: 1.6rem; height: 2px;
  background: var(--seam-h);
}
.lead {
  font-family: var(--font-secondary);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400; line-height: 1.5;
  color: var(--color-text);
  max-width: 60ch;
}
.muted { color: var(--color-text-secondary); }
.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;
}

/* Buttons — restrained, cyan-outlined; the design wins, not the button */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-secondary); font-weight: 600;
  font-size: 1rem; letter-spacing: 0.01em;
  padding: 0.9rem 1.7rem;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent); background: transparent;
  text-decoration: none; cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              gap var(--motion-duration) var(--motion-ease);
}
.btn:hover, .btn:focus-visible { background: var(--color-accent); color: var(--color-bg); gap: 0.9rem; }
.btn--on-violet { border-color: var(--color-accent); color: #fff; }
.btn--on-violet:hover, .btn--on-violet:focus-visible { background: var(--color-accent); color: var(--color-bg); }
.btn .ph, .btn i { font-size: 1.1em; }

.textlink {
  font-family: var(--font-secondary); font-weight: 600;
  color: var(--color-accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.textlink .ph, .textlink i { transition: transform var(--motion-duration) var(--motion-ease); }
.textlink:hover .ph, .textlink:hover i { transform: translateX(6px); }

/* ============================================================
   Reveal gating — content visible without JS (binding floor)
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
html.js .reveal[data-delay="1"] { transition-delay: 90ms; }
html.js .reveal[data-delay="2"] { transition-delay: 180ms; }
html.js .reveal[data-delay="3"] { transition-delay: 270ms; }
html.js .reveal[data-delay="4"] { transition-delay: 360ms; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   Navigation — logo-left breakout, menu-right, scroll-away
   ============================================================ */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; overflow: visible; }
.site-nav {
  height: var(--nav-h);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  overflow: visible;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.site-header.is-hidden .site-nav { transform: translateY(-120%); }

.site-nav__brand { position: relative; display: inline-flex; align-items: center; line-height: 0; }
.site-nav__brand img {
  height: 92px; width: auto; max-width: 140px;   /* breakout: 92 × 1.36 ≈ 125; cap clears it */
  margin-bottom: -42px;                            /* overhang past the 58px bar */
  position: relative; z-index: 101;
  filter: drop-shadow(0 0 18px rgba(0, 212, 255, 0.18)); /* the spark catches a faint cyan glow */
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--color-border);
  color: var(--color-text); width: 44px; height: 40px;
  align-items: center; justify-content: center; cursor: pointer;
  font-size: 1.35rem;
}

.site-nav__links { display: flex; align-items: center; gap: clamp(1.25rem, 3vw, 2.5rem); }
.site-nav__links a {
  position: relative;
  font-family: var(--font-secondary); font-weight: 500; font-size: 15px;
  color: var(--color-text); text-decoration: none; line-height: 1;
  padding: 0.35rem 0;
}
.site-nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  height: 2px; width: 100%; background: var(--color-accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.site-nav__links a:hover, .site-nav__links a[aria-current="page"] { color: var(--color-accent); }
.site-nav__links a:hover::after, .site-nav__links a[aria-current="page"]::after { transform: scaleX(1); }

/* ============================================================
   Section scaffolding + trace-seam stitch (site-wide motif)
   ============================================================ */
.section {
  position: relative;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 6rem);
}
/* The cyan wire stitches every section boundary: a short vertical trace tick
   centered at the top edge of connective sections. */
.section--stitch::before {
  content: ""; position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  width: 2px; height: clamp(28px, 5vw, 46px);
  background: var(--seam);
}

.section--dark    { background: var(--color-bg);    color: var(--color-text); }
.section--light   { background: var(--color-secondary); color: var(--color-bg); }
.section--color   { background: var(--color-primary);   color: #fff; }
.section--photo   { position: relative; color: #fff; }
.section--texture { position: relative; color: var(--color-text); }

.section--light .muted { color: #55606f; }
.section--light .rubric { color: var(--color-primary); }
.section--color .rubric { color: var(--color-accent); }
.section--color .rubric::before { background: var(--color-accent); }

/* ============================================================
   Home hero — the split signal
   ============================================================ */
.hero-split {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 52% 48%;
}
.hero-split__block {
  background: var(--color-primary);
  display: flex; align-items: flex-end;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  min-width: 0;
}
.hero-split__photo { position: relative; min-width: 0; }
.hero-split__photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 72% 55%;
}
.hero-split__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19,25,34,0) 45%, rgba(19,25,34,0.82) 100%);
}
.hero-split__photocopy {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  display: flex; align-items: flex-end; min-height: 100%;
}
.hero-line {
  font-family: var(--font-primary); color: #fff;
  font-size: clamp(2.6rem, 6.2vw, 6.5rem);
  font-weight: 600; line-height: 0.96; letter-spacing: -0.015em;
  text-wrap: balance;
}
.hero-split__block .hero-line { max-width: 12ch; }
.hero-split__photocopy .hero-line { max-width: 10ch; text-shadow: 0 2px 30px rgba(0,0,0,0.5); }

/* Vertical cyan trace up the seam — draws once on load */
.hero-seam {
  position: absolute; top: 0; bottom: 0; left: 52%;
  width: 3px; transform: translateX(-50%); z-index: 3; pointer-events: none;
}
.hero-seam::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, var(--color-accent), var(--color-primary));
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.55);
  transform-origin: bottom; transform: scaleY(1);
}
html.js .hero-seam::after { transform: scaleY(0); animation: trace-draw 1200ms var(--motion-ease) 180ms forwards; }
@keyframes trace-draw { to { transform: scaleY(1); } }
@media (prefers-reduced-motion: reduce) {
  html.js .hero-seam::after { animation: none; transform: scaleY(1); }
}
.hero-scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  z-index: 4; color: #fff; font-family: var(--font-mono);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; flex-direction: column; align-items: center; gap: 0.35rem; opacity: 0.85;
}
.hero-scroll .ph { font-size: 1.1rem; animation: nudge 1.8s var(--motion-ease) infinite; }
@keyframes nudge { 0%,100% { transform: translateY(0);} 50%{ transform: translateY(5px);} }
@media (prefers-reduced-motion: reduce) { .hero-scroll .ph { animation: none; } }

/* ============================================================
   Interior page hero — full-bleed photo, left-locked title
   ============================================================ */
.page-hero {
  position: relative; min-height: 78svh; display: flex; align-items: flex-end;
  padding: clamp(6rem, 12vw, 10rem) clamp(1.25rem, 5vw, 6rem) clamp(3rem, 6vw, 5rem);
  color: #fff;
}
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 85% 50%;
}
.page-hero--about .page-hero__img { object-position: center 40%; }
.page-hero--services .page-hero__img { object-position: center 55%; }
.page-hero--contact .page-hero__img { object-position: center 60%; }
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(19,25,34,0.85) 0%, rgba(19,25,34,0.4) 55%, rgba(19,25,34,0.15) 100%),
              linear-gradient(0deg, rgba(19,25,34,0.7) 0%, rgba(19,25,34,0) 55%);
}
.page-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin-inline: auto; }
.page-hero__inner .rubric { color: var(--color-accent); }
.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem); color: #fff; margin: 1rem 0 1rem;
  max-width: 16ch; line-height: 1.0;
}
.page-hero .lead { color: #E6E8ED; text-shadow: 0 1px 14px rgba(0,0,0,0.4); }
/* cyan trace entering top-left of interior heroes */
.page-hero__trace { position: absolute; top: 0; left: clamp(1.25rem, 5vw, 6rem); width: 2px; height: 0; z-index: 3;
  background: var(--seam); }
html.js .page-hero__trace { animation: trace-drop 900ms var(--motion-ease) 200ms forwards; }
@keyframes trace-drop { to { height: clamp(90px, 16vw, 200px); } }
@media (prefers-reduced-motion: reduce) { html.js .page-hero__trace { height: clamp(90px, 16vw, 200px); animation: none; } }

/* ============================================================
   Value band (home) — marginal spec-sheet stat
   ============================================================ */
.value {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: clamp(2rem, 6vw, 5rem);
  align-items: start; max-width: var(--wrap); margin-inline: auto;
}
.value__lead { max-width: 55ch; }
.value__lead h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 1.25rem; }
.value__lead p { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--color-text-secondary); }
.value__lead p strong { color: var(--color-text); font-weight: 600; }
.readout { text-align: right; border-top: 2px solid var(--color-accent); padding-top: 0.75rem; }
.readout__num {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(3rem, 8vw, 6rem); line-height: 0.9; color: var(--color-text);
  display: block; letter-spacing: -0.02em;
}
.readout__label {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-text-secondary); display: block; margin-top: 0.6rem;
}

/* ============================================================
   Tier index (home teaser + services full) — spec sheet, not a table
   ============================================================ */
.tiers-head { max-width: var(--wrap); margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.tiers-head h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 1rem 0 0; }

.tier-index {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--wrap); margin-inline: auto;
}
.tier {
  border-top: 1px solid rgba(19,25,34,0.18); padding-top: 1.25rem; min-width: 0;
}
.tier__idx {
  font-family: var(--font-mono); font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; color: var(--color-primary);
  display: block; letter-spacing: -0.02em;
}
.tier__name { font-family: var(--font-primary); font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 0.6rem 0 0.75rem; }
.tier__desc { font-family: var(--font-secondary); font-size: 1rem; color: #45505f; }

/* Services full tiers — cumulative inheritance */
.tier--full .tier__lead { font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--color-primary); margin: 0.75rem 0 0.5rem; }
.tier__list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-top: 0.5rem; }
.tier__list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.98rem; line-height: 1.45; }
.tier__list li .ph { color: var(--color-accent); margin-top: 0.15rem; flex: none; }
.tier__list--inherited li { color: #7a828e; }
.tier__list--inherited li .ph { color: #9aa2ad; }
.tier__plus {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-primary); margin: 1rem 0 0.25rem; display: block; font-weight: 600;
}

/* ============================================================
   Distributed credibility modules (never a stat band)
   ============================================================ */
.founder {
  display: grid; grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: center; max-width: var(--wrap); margin-inline: auto;
}
.founder__portrait { position: relative; justify-self: center; }
.founder__portrait img {
  width: clamp(200px, 26vw, 320px); height: clamp(200px, 26vw, 320px);
  border-radius: 50%; object-fit: cover; object-position: top center;
  border: 3px solid var(--color-surface); box-shadow: 0 0 0 1px var(--color-border), 0 26px 60px -20px rgba(0,0,0,0.7);
}
.founder__cap { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-secondary); text-align: center; margin-top: 1rem; }
.founder__cap span { color: var(--color-accent); }
.founder__body h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-bottom: 1.5rem; max-width: 18ch; }

.modules { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; margin-top: 1.75rem; }
.module {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  padding: 1.1rem 1.25rem; min-width: 0;
}
.module__num {
  font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--color-text); line-height: 1; letter-spacing: -0.01em;
}
.module__num .tick { color: var(--color-accent); }
.module__label {
  font-family: var(--font-secondary); font-size: 0.85rem; color: var(--color-text-secondary);
  margin-top: 0.45rem; line-height: 1.35;
}
.founder__detail { margin-top: 1.75rem; }
.founder__detail img { border: 1px solid var(--color-border); }
.founder__detail figcaption { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-text-secondary); margin-top: 0.6rem; }

/* ============================================================
   Process mosaic (home) — unequal scale on wood texture, trace in the gutter
   ============================================================ */
.section--texture .texture-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.section--texture .texture-scrim { position: absolute; inset: 0; background: rgba(15,18,24,0.8); z-index: 0; }
.section--texture > .wrap, .section--texture > .process, .section--texture > .cta-band, .section--texture > .region {
  position: relative; z-index: 1;
}
.process { max-width: var(--wrap); margin-inline: auto; position: relative; z-index: 1; }
.process__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.process__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); margin-top: 1rem; max-width: 20ch; }
.mosaic {
  display: grid; grid-template-columns: 1.6fr 1fr; grid-template-rows: repeat(2, auto);
  gap: 1px; background: var(--color-accent);
  border: 1px solid var(--color-border); position: relative;
}
.mosaic figure { position: relative; margin: 0; overflow: hidden; background: var(--color-bg); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/2; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.mosaic figure:first-child { grid-row: span 2; }
.mosaic figure:first-child img { aspect-ratio: auto; height: 100%; min-height: 320px; }
.mosaic figure:hover img { transform: scale(1.03); }
.mosaic figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #E6E8ED; background: linear-gradient(0deg, rgba(15,18,24,0.85), rgba(15,18,24,0));
}

/* ============================================================
   Regional band (home) — full-bleed prairie, locked line + human inset
   ============================================================ */
.region-photo { position: relative; min-height: 80svh; display: flex; align-items: flex-end;
  padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 5vw, 6rem); color: #fff; }
.region-photo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 55%; }
.region-photo::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(19,25,34,0.9) 8%, rgba(19,25,34,0.15) 65%),
              linear-gradient(90deg, rgba(19,25,34,0.55), rgba(19,25,34,0) 60%); }
.region-photo__inner { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin-inline: auto;
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 2rem; align-items: end; }
.region-photo h2 { font-size: clamp(2.2rem, 5vw, 4rem); color: #fff; max-width: 16ch; }
.region-photo p { font-family: var(--font-secondary); margin-top: 1rem; max-width: 42ch; color: #E6E8ED; }
.region-photo__inset { justify-self: end; }
.region-photo__inset img { width: clamp(140px, 20vw, 260px); border: 1px solid rgba(255,255,255,0.25); box-shadow: 0 20px 50px -18px rgba(0,0,0,0.8); }
.region-photo__inset figcaption { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: #cdd3dc; margin-top: 0.5rem; text-align: right; }

/* ============================================================
   CTA blocks — violet / texture, one restrained button; trace resolves here
   ============================================================ */
.cta-band { max-width: var(--wrap); margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.cta-band h2 { font-size: clamp(2.2rem, 5vw, 4rem); color: #fff; max-width: 18ch; }
.section--texture .cta-band h2 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.cta-band__trace { width: min(320px, 60vw); height: 2px; background: var(--seam-h); }

/* The signature trace band running beneath the home CTA */
.trace-band { position: relative; width: 100%; height: clamp(64px, 10vw, 110px); overflow: hidden; background: var(--color-bg); }
.trace-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Spark divider — the logo's spark unrolled as section punctuation (dark ground) */
.spark-divider { background: var(--color-bg); display: flex; justify-content: center; align-items: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem; }
.spark-divider img { width: clamp(44px, 8vw, 64px); height: auto; max-height: 64px; object-fit: contain; }

/* ============================================================
   Editorial / story blocks
   ============================================================ */
.editorial { max-width: 68ch; margin-inline: auto; }
.editorial h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1.5rem; }
.editorial p { font-size: clamp(1.05rem, 1.4vw, 1.18rem); margin-bottom: 1.3rem; color: var(--color-text); }
.editorial p.muted { color: var(--color-text-secondary); }
.editorial .dropcap::first-letter {
  font-family: var(--font-primary); float: left; font-size: clamp(4.5rem, 10vw, 7rem);
  line-height: 0.72; padding: 0.35rem 0.75rem 0 0; color: var(--color-primary-light); font-weight: 700;
}
.pull-rule { border: 0; border-top: 2px solid var(--color-accent); width: 64px; margin: 2rem 0; }

/* Credentials — violet spec rack */
.credrack { max-width: var(--wrap); margin-inline: auto; }
.credrack__head { max-width: 46ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.credrack__head h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-top: 1rem; }
.credrack__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.crednode {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.16);
  border-left: 3px solid var(--color-accent); padding: 1.25rem; min-width: 0;
}
.crednode__num { font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: #fff; line-height: 1; }
.crednode__claim { font-family: var(--font-secondary); font-size: 0.95rem; color: #EDE7FA; margin-top: 0.6rem; line-height: 1.4; }

/* Portrait band (about) */
.portrait-band { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0,1fr); gap: clamp(2rem, 5vw, 4rem);
  align-items: center; max-width: var(--wrap); margin-inline: auto; }
.portrait-band__figure { margin: 0; position: relative; }
.portrait-band__figure img { width: 100%; background: var(--color-surface); border: 1px solid var(--color-border);
  object-fit: cover; object-position: top center; }
.portrait-band__figure figcaption { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--color-text-secondary); margin-top: 0.75rem; padding-left: 0.75rem;
  border-left: 2px solid var(--color-accent); }
.portrait-band__body h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: 1.25rem; max-width: 16ch; }
.portrait-band__body p { color: var(--color-text-secondary); font-size: 1.08rem; margin-bottom: 1.2rem; }
.portrait-band__detail { margin-top: 1.5rem; }
.portrait-band__detail img { border: 1px solid var(--color-border); }
.portrait-band__detail figcaption { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--color-text-secondary); margin-top: 0.5rem; }

/* Approach (about) — light two-column */
.split2 { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.85fr); gap: clamp(2rem, 5vw, 4rem);
  align-items: center; max-width: var(--wrap); margin-inline: auto; }
.split2__body h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1.25rem; }
.split2__body p { color: #45505f; margin-bottom: 1.1rem; font-size: 1.05rem; }
.split2__body h3 { font-family: var(--font-secondary); font-size: 1.05rem; color: var(--color-primary);
  margin: 1.5rem 0 0.4rem; }
.subrubric { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-primary); display: block; margin-bottom: 0.3rem; }
.split2__figure img { width: 100%; border: 1px solid #cfd3da; }

/* ============================================================
   Core offerings (services) — unequal scale, design largest
   ============================================================ */
.offerings { max-width: var(--wrap); margin-inline: auto; display: flex; flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem); position: relative; z-index: 1; }
.offering { display: grid; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.offering__order { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-accent); }
.offering__title { font-family: var(--font-primary); margin: 0.6rem 0 0.9rem; color: #fff; }
.offering__body { color: var(--color-text-secondary); max-width: 54ch; }
.offering img { width: 100%; object-fit: cover; border: 1px solid var(--color-border); }
.offering--lead { grid-template-columns: minmax(0,1.05fr) minmax(0,1fr); }
.offering--lead .offering__title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); }
.offering--lead .offering__body { font-size: 1.12rem; color: var(--color-text); }
.offering--lead img { aspect-ratio: 4/3; }
.offering--mid { grid-template-columns: minmax(0,1fr) minmax(0,1.05fr); }
.offering--mid .offering__title { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.offering--mid img { aspect-ratio: 16/10; }
.offering--minor { grid-template-columns: 1fr; border-top: 1px solid var(--color-border); padding-top: 1.5rem; }
.offering--minor .offering__title { font-size: clamp(1.2rem, 2vw, 1.5rem); }

/* ============================================================
   Process steps (services) — mile markers along the highway band
   ============================================================ */
.steps-band { position: relative; }
.steps { max-width: var(--wrap); margin-inline: auto; position: relative; z-index: 1; }
.steps__head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.steps__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); color: #fff; margin-top: 1rem; max-width: 18ch; }
.steplist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.step { border-top: 2px solid var(--color-accent); padding-top: 1rem; min-width: 0; }
.step__no { font-family: var(--font-mono); font-weight: 600; font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; }
.step__name { font-family: var(--font-primary); font-size: 1.25rem; color: #fff; margin: 0.4rem 0 0.5rem; }
.step__desc { font-size: 0.95rem; color: #cdd3dc; }
.steps-band .life-inset { margin-top: clamp(2rem, 4vw, 3rem); max-width: 320px; }
.steps-band .life-inset img { border: 1px solid var(--color-border); }
.steps-band .life-inset figcaption { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.09em;
  text-transform: uppercase; color: #cdd3dc; margin-top: 0.5rem; }

/* Tiers intro relationship image (services) */
.tiers-intro-media { max-width: var(--wrap); margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0, 0.7fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.tiers-intro-media__body h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 1rem 0; }
.tiers-intro-media__body p { color: #45505f; max-width: 46ch; }
.tiers-intro-media figure { margin: 0; }
.tiers-intro-media img { width: 100%; border: 1px solid #cfd3da; object-fit: cover; aspect-ratio: 4/3; }

/* ============================================================
   Contact form + details
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.8fr); gap: clamp(2rem, 6vw, 5rem);
  max-width: var(--wrap); margin-inline: auto; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-form h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-secondary); }
.field .opt { color: var(--color-text-secondary); text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-text);
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  padding: 0.85rem 1rem; width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input::placeholder, .field textarea::placeholder { color: #6b7686; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--color-border); border-bottom-color: var(--color-accent);
  box-shadow: 0 2px 0 0 var(--color-accent);
}
.contact-form button[type="submit"] {
  align-self: flex-start; margin-top: 0.5rem;
  font-family: var(--font-secondary); font-weight: 600; font-size: 1rem;
  background: var(--color-primary); color: #fff; border: 1.5px solid var(--color-primary);
  padding: 0.95rem 2rem; cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.contact-form button[type="submit"]:hover, .contact-form button[type="submit"]:focus-visible {
  background: var(--color-primary-dark); border-color: var(--color-accent);
}
.contact-details { border-left: 2px solid var(--color-accent); padding-left: clamp(1.25rem, 2vw, 2rem); }
.contact-details h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 1.5rem; }
.detail { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.5rem; }
.detail .ph { color: var(--color-accent); font-size: 1.3rem; margin-top: 0.15rem; flex: none; }
.detail__label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-secondary); display: block; margin-bottom: 0.25rem; }
.detail a, .detail span { color: var(--color-text); text-decoration: none; font-size: 1.05rem; }
.detail a:hover { color: var(--color-accent); }

/* Reassurance (contact) */
.reassure { max-width: var(--wrap); margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.reassure h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); color: #fff; max-width: 18ch; }
.reassure p { color: #EDE7FA; max-width: 52ch; font-size: 1.1rem; }
.reassure__modules { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 0.5rem; }
.reassure__modules .crednode { background: rgba(255,255,255,0.08); }

/* Region dateline (contact) */
.region-line { max-width: var(--wrap); margin-inline: auto; position: relative; z-index: 1; }
.region-line .rubric { color: var(--color-accent); }
.region-line h2 { font-family: var(--font-primary); font-size: clamp(2rem, 5vw, 3.6rem); color: #fff; margin: 1rem 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.region-line p { color: #E6E8ED; max-width: 46ch; }
.region-line a { color: var(--color-accent); }

/* ============================================================
   Footer — three columns on dark, cyan trace cap
   ============================================================ */
.site-footer { position: relative; background: var(--color-bg); border-top: 1px solid var(--color-border);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 6rem) clamp(2rem, 4vw, 3rem); }
.site-footer::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 2px; background: var(--seam-h); }
.footer-grid { max-width: var(--wrap); margin-inline: auto; display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); }
.footer-brand img { height: 76px; width: auto; max-width: 120px; margin-bottom: 1rem; }
.footer-brand p { font-family: var(--font-primary); font-size: 1.05rem; color: var(--color-text-secondary); max-width: 30ch; }
.footer-col h3 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-text-secondary); font-weight: 500; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a { color: var(--color-text); text-decoration: none; font-size: 0.98rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--color-accent); }
.footer-col li > span { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-text); font-size: 0.98rem; }
.footer-col .ph { color: var(--color-accent); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--color-border); display: inline-flex;
  align-items: center; justify-content: center; color: var(--color-text); font-size: 1.15rem;
  transition: border-color var(--motion-duration) var(--motion-ease), color var(--motion-duration) var(--motion-ease); }
.footer-social a:hover { border-color: var(--color-accent); color: var(--color-accent); }
.footer-legal { max-width: var(--wrap); margin: clamp(2.5rem, 4vw, 3.5rem) auto 0; padding-top: 1.5rem;
  border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--color-text-secondary); }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 72svh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 1.5rem; padding: 8rem 1.5rem 4rem; }
.notfound__code { font-family: var(--font-mono); font-size: clamp(4rem, 14vw, 9rem); color: var(--color-primary); line-height: 1; }
.notfound h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.notfound p { color: var(--color-text-secondary); max-width: 44ch; }

/* ============================================================
   Lightbox chrome — restyled to the dark canvas (mechanism preserved)
   ============================================================ */
.lightbox-zoomable { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 320; display: none; align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem); }
.lightbox.is-open { display: flex; animation: lightbox-in var(--motion-duration) var(--motion-ease); }
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lightbox.is-open { animation: none; } }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(9, 12, 17, 0.92); }
.lightbox__frame { position: relative; z-index: 1; margin: 0; max-width: min(1200px, 92vw); max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.lightbox__img { max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain;
  border: 1px solid var(--color-border); box-shadow: 0 24px 80px -16px rgba(0,0,0,0.8); }
.lightbox__caption { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1.5; color: var(--color-text-secondary); text-align: center; max-width: 60ch; }
.lightbox__counter { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 1;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--color-text); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; z-index: 2; width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center; border: 1px solid var(--color-border); cursor: pointer;
  background: var(--color-surface); color: var(--color-text); font-size: 1.15rem; line-height: 1; }
.lightbox__close:hover, .lightbox__close:focus-visible, .lightbox__prev:hover, .lightbox__prev:focus-visible,
.lightbox__next:hover, .lightbox__next:focus-visible { color: var(--color-accent); border-color: var(--color-accent); }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__caption[hidden], .lightbox__counter[hidden], .lightbox__prev[hidden], .lightbox__next[hidden] { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .steplist { grid-template-columns: repeat(2, 1fr); }
  .credrack__grid { grid-template-columns: repeat(2, 1fr); }
  .portrait-band { grid-template-columns: 1fr; }
  .split2 { grid-template-columns: 1fr; }
  .offering--lead, .offering--mid { grid-template-columns: 1fr; }
  .tiers-intro-media { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Nav → hamburger; menu items never truncate */
  .nav-toggle { display: inline-flex; }
  .site-nav__links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--color-bg); border-bottom: 1px solid var(--color-border);
    padding: 2.75rem clamp(1rem, 4vw, 3rem) 1rem; /* top pad clears the overhanging breakout logo */
    display: none;
  }
  .site-nav__links.is-open { display: flex; }
  .site-nav__links a { width: 100%; padding: 0.85rem 0; font-size: 15px; border-bottom: 1px solid var(--color-border); }
  .site-nav__links a::after { display: none; }

  /* Hero seam FLIPS to horizontal — violet block stacks above the photo */
  .hero-split { grid-template-columns: 1fr; grid-template-rows: auto auto; min-height: 100svh; }
  .hero-split__block { min-height: 52svh; padding-top: calc(var(--nav-h) + 3.5rem); }
  .hero-split__photo { min-height: 48svh; }
  .hero-seam { top: auto; left: 0; right: 0; bottom: auto; width: auto; height: 3px; transform: none; }
  .hero-seam::after { background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform-origin: left; }
  html.js .hero-seam::after { transform: scaleX(0); animation: trace-draw-h 1200ms var(--motion-ease) 180ms forwards; }
  @keyframes trace-draw-h { to { transform: scaleX(1); } }
  .hero-line { font-size: clamp(2.4rem, 10vw, 4rem); }
  .hero-scroll { display: none; }

  /* trace re-routes to the left gutter */
  .section--stitch::before { left: clamp(1rem, 6vw, 2rem); transform: none; }

  .value { grid-template-columns: 1fr; }
  .readout { text-align: left; }
  .founder { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr 1fr; }
  .region-photo__inner { grid-template-columns: 1fr; }
  .region-photo__inset { justify-self: start; }
  .region-photo__inset figcaption { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-details { border-left: 0; border-top: 2px solid var(--color-accent); padding-left: 0; padding-top: 1.5rem; }
  .mosaic { grid-template-columns: 1fr; }
  .mosaic figure:first-child { grid-row: auto; }
  .mosaic figure:first-child img { min-height: 0; aspect-ratio: 3/2; }
}

@media (max-width: 560px) {
  .tier-index { grid-template-columns: 1fr; gap: 2rem; }
  .steplist { grid-template-columns: 1fr; }
  .credrack__grid { grid-template-columns: 1fr; }
  .modules { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { justify-content: flex-start; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* math */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTS7PxzY382XsXX63LUYJSPeNbcW3JNsapGZQ.woff2') format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTS7PxzY382XsXX63LUYJSPeMTcW3JNsapGZQ.woff2') format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* latin-ext */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTS7PxzY382XsXX63LUYJSPeKTcW3JNsapGZQ.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;
}
/* latin */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/aFTS7PxzY382XsXX63LUYJSPeKrcW3JNsao.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;
}
/* math */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJT2SKjWXFBPgas.woff2') format('woff2');
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0310, U+0312, U+0315, U+031A, U+0326-0327, U+032C, U+032F-0330, U+0332-0333, U+0338, U+033A, U+0346, U+034D, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2016-2017, U+2034-2038, U+203C, U+2040, U+2043, U+2047, U+2050, U+2057, U+205F, U+2070-2071, U+2074-208E, U+2090-209C, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2100-2112, U+2114-2115, U+2117-2121, U+2123-214F, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B7, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+3030, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
}
/* symbols */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJTkSKjWXFBPgas.woff2') format('woff2');
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8BB, U+1F8C0-1F8C1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA89, U+1FA8F-1FAC6, U+1FACE-1FADC, U+1FADF-1FAE9, U+1FAF0-1FAF8, U+1FB00-1FBFF;
}
/* latin-ext */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJSESKjWXFBPgas.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;
}
/* latin */
@font-face {
  font-family: 'Bodoni Moda';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('/fonts/aFTQ7PxzY382XsXX63LUYJSKSKjWXFBP.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iIq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1isq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iAq131nj-otFQ.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1iEq131nj-otFQ.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;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/-F63fjptAgt5VM-kVkqdyU8n1i8q131nj-o.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl1FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlRFgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl9FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwl5FgsAXHNlYzg.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;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3twJwlBFgsAXHNk.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl1FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3vAOwlRFgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl9FgsAXHNlYzg.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3vAOwl5FgsAXHNlYzg.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;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/-F6qfjptAgt5VM-kVkqdyU8n3vAOwlBFgsAXHNk.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.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;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.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;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.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;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.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;
}
/* cyrillic-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxTKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxaKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxdKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxRKYbSB4ZhRNU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxQKYbSB4ZhRNU.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;
}
/* latin */
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/zYXzKVElMYYaJe8bpLHnCwDKr932-G7dytD-Dmu1syxeKYbSB4Zh.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;
}
