/*
 * styles.css — Blue Point LLC
 * Editorial system: navy load-in floor + one cyan survey line that signs off each section.
 * Display: Archivo (expanded). Body: IBM Plex Sans. Spec/mono: IBM Plex Mono.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #184890;   /* Structural Indigo */
  --color-secondary: #186090; /* Steel Blue */
  --color-accent: #0090D8;    /* Signal Cyan */
  --color-bg: #001830;        /* Deep navy hall */
  --color-surface: #003048;   /* Raised navy panel */
  --color-text: #EDF1F4;      /* Spec white */
  --color-text-secondary: #9DB2C4;
  --color-border: #21486A;

  /* Light-chrome scope (nav / footer / intake) */
  --color-light: #EDF1F4;
  --color-on-light: #001830;
  --color-on-light-2: #3A5570;
  --color-light-border: #C9D6E0;

  --font-primary: 'Archivo', 'Arial Narrow', system-ui, sans-serif;
  --font-secondary: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --font-size-base: 16px;
  --spacing-base: 8px;
  --nav-h: 72px;
  --wrap: 1240px;

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

/* ============================================================
   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);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: none; }

ul { list-style: none; }

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

/* Skip navigation link — WCAG 2.4.1 (do not remove) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--color-light); color: var(--color-primary);
  font-family: var(--font-mono); font-weight: 600; text-decoration: none;
  border: 2px solid var(--color-accent); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography helpers
   ============================================================ */
.exp { font-variation-settings: 'wdth' 125; }

.display, h1, h2, h3 { font-family: var(--font-primary); font-variation-settings: 'wdth' 125; }

.display {
  font-weight: 800; font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.94; letter-spacing: -0.01em; text-transform: uppercase;
}
h1, .h1 {
  font-family: var(--font-primary); font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 4.5rem); line-height: 0.98;
  letter-spacing: -0.005em; text-transform: uppercase;
}
h2, .h2 {
  font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.05; text-transform: uppercase;
}
h3, .h3 {
  font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.7rem); line-height: 1.1;
}
.h4 { font-family: var(--font-secondary); font-weight: 600; font-size: 1.1rem; line-height: 1.2; letter-spacing: 0.01em; }

.lead {
  font-family: var(--font-secondary); font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.5;
}
.body { font-size: 1rem; line-height: 1.6; }
.small { font-size: 0.85rem; line-height: 1.5; }

/* Mono dimension rubric — |— LABEL —| */
.rubric {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-secondary);
  display: inline-flex; align-items: center; gap: 0.6em;
}
.rubric::before, .rubric::after {
  content: ""; display: inline-block; width: 22px; height: 0;
  border-top: 1.5px solid var(--color-accent);
}
.rubric::before { box-shadow: -0.5px -4px 0 -0.5px var(--color-accent); }
.rubric::after  { box-shadow: 0.5px -4px 0 -0.5px var(--color-accent); }
.rubric--light { color: var(--color-on-light-2); }

.mono { font-family: var(--font-mono); }
.spec {
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--color-text-secondary);
}
.accent { color: var(--color-accent); }

/* The one ornament: cyan tick */
.tick { color: var(--color-accent); display: inline-flex; align-items: center; }
.tick i { font-size: 0.9em; }

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
main { display: block; }

/* Section spine: a cyan survey segment ticking each section it clears */
.spine { position: relative; }
.spine > .wrap { position: relative; }
.spine-mark {
  position: absolute; left: -1.75rem; top: 0.35em;
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.4rem; height: 1.4rem; color: var(--color-accent);
}
.spine-mark::before {
  content: ""; position: absolute; left: 50%; top: 1.5rem; bottom: -3rem;
  width: 2px; transform: translateX(-50%);
  background: linear-gradient(var(--color-accent), transparent);
  opacity: 0.5;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.95rem;
  padding: 0.7rem 1.35rem; min-height: 44px; border: 2px solid transparent;
  cursor: pointer; transition: background var(--motion-duration) var(--motion-ease),
    color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
  line-height: 1; text-align: center; white-space: nowrap;
}
.btn--cyan { background: var(--color-accent); color: var(--color-bg); border-color: var(--color-accent); }
.btn--cyan:hover { background: #1aa5ea; border-color: #1aa5ea; }
.btn--outline-navy { background: transparent; color: var(--color-on-light); border-color: var(--color-on-light); }
.btn--outline-navy:hover { background: var(--color-on-light); color: var(--color-light); }
.btn--indigo { background: var(--color-primary); color: var(--color-text); border-color: var(--color-primary); }
.btn--indigo:hover { background: #1f57ab; border-color: #1f57ab; }
.btn--ghost-light { background: transparent; color: var(--color-text); border-color: var(--color-border); }
.btn--ghost-light:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn--lg { font-size: 1.05rem; padding: 0.9rem 1.75rem; }

.textlink {
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-accent); display: inline-flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.textlink:hover { border-bottom-color: var(--color-accent); }
.textlink i { transition: transform var(--motion-duration) var(--motion-ease); }
.textlink:hover i { transform: translateX(4px); }

/* Dimension corner-ticks (measured-drawing frame) */
.dim { position: relative; }
.dim::before, .dim::after {
  content: ""; position: absolute; width: 20px; height: 20px; z-index: 2; pointer-events: none;
  border: 2px solid var(--color-accent);
}
.dim::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.dim::after  { right: 10px; bottom: 10px; border-left: 0; border-top: 0; }
.dim--lg::before { top: 16px; left: 16px; width: 30px; height: 30px; }
.dim--lg::after  { right: 16px; bottom: 16px; width: 30px; height: 30px; }

/* ============================================================
   Header / Nav — light cut-sheet bar over the dark hall
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--color-light);
  border-bottom: 1px solid var(--color-light-border);
  overflow: visible;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.site-header.nav-hidden { transform: translateY(-100%); }

.nav {
  min-height: var(--nav-h);
  width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.nav__brand img { height: 56px; width: auto; max-width: 200px; display: block; }

.nav__menu { display: flex; align-items: center; gap: 1.75rem; margin-left: 1rem; }
.nav__link {
  position: relative; font-family: var(--font-mono); font-weight: 500;
  font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-on-light); padding: 0.35rem 0; min-height: 44px;
  display: inline-flex; align-items: center;
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__link:hover { color: var(--color-primary); }
/* Active item marked by the survey tick — first appearance of the site's one ornament */
.nav__link[aria-current="page"] { color: var(--color-primary); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--color-accent);
}
.nav__link[aria-current="page"]::before {
  content: "\2713"; position: absolute; right: -1.15em; bottom: -0.15em;
  font-size: 0.7em; color: var(--color-accent);
}

.nav__spacer { margin-left: auto; }
.nav__actions { display: flex; align-items: center; gap: 0.9rem; }
.nav__call {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 14px; letter-spacing: 0.04em;
  color: var(--color-on-light); padding-right: 0.9rem; min-height: 44px;
  border-right: 1px solid var(--color-light-border);
}
.nav__call i { color: var(--color-accent); font-size: 1.1rem; }
.nav__call:hover { color: var(--color-primary); }
.nav__lanes { display: flex; align-items: center; gap: 0.6rem; }

.nav__toggle {
  display: none; margin-left: auto; background: transparent; border: 0;
  color: var(--color-on-light); font-size: 1.8rem; cursor: pointer;
  width: 44px; height: 44px; align-items: center; justify-content: center;
}

/* ============================================================
   Hero — load-in floor plan + self-drawing survey line
   ============================================================ */
.hero {
  position: relative; background: var(--color-bg);
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: stretch; overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}
.hero__floorplan {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(24,72,144,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,72,144,0.16) 1px, transparent 1px),
    linear-gradient(rgba(24,96,144,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24,96,144,0.10) 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px, 24px 24px, 24px 24px;
  background-position: -1px -1px;
}
.hero__ambient {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.25; mix-blend-mode: screen;
}
.hero__grid {
  position: relative; z-index: 2; width: min(100% - 2.5rem, var(--wrap));
  margin-inline: auto; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__col { min-width: 0; position: relative; z-index: 2; }
.hero__statement { color: var(--color-text); }
.hero__statement .line { display: block; }
.hero__statement .line--2 { padding-left: 0.6em; }
.hero__statement .line--3 { padding-left: 1.2em; }
.hero__statement .u-cyan {
  color: var(--color-accent);
  box-shadow: inset 0 -0.09em 0 var(--color-accent);
}
.hero__category {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-family: var(--font-mono); font-size: clamp(0.8rem, 1vw, 0.95rem);
  letter-spacing: 0.06em; color: var(--color-text-secondary); max-width: 46ch;
}
.hero__category .tick { margin-top: 0.1em; }

.hero__plate { position: relative; z-index: 1; align-self: stretch; display: flex; }
.hero__plate .plate-inner { position: relative; width: 100%; overflow: hidden; }
.hero__plate img {
  width: 100%; height: 100%; min-height: 340px; object-fit: cover; object-position: center 40%;
}
.hero__plate .plate-inner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,24,48,0.35), rgba(0,24,48,0.35));
}
.hero__plate .plate-tag {
  position: absolute; left: 16px; bottom: 16px; z-index: 3;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-text); background: rgba(0,24,48,0.72);
  padding: 0.4rem 0.7rem; border-left: 2px solid var(--color-accent);
}

/* Hero survey line (SVG draws on load) */
.hero__survey { position: absolute; inset: 0; z-index: 1; pointer-events: none; width: 100%; height: 100%; }
.hero__survey path, .hero__survey line { stroke: var(--color-accent); stroke-width: 2; fill: none; }
.hero__survey .check { stroke-width: 3; }

html.js .hero__survey .draw {
  stroke-dasharray: var(--len, 1400); stroke-dashoffset: var(--len, 1400);
}
html.js .hero.is-in .hero__survey .draw {
  animation: survey-draw 1.6s var(--motion-ease) forwards;
}
html.js .hero__survey .check {
  stroke-dasharray: 60; stroke-dashoffset: 60;
}
html.js .hero.is-in .hero__survey .check {
  animation: survey-draw 0.5s var(--motion-ease) 1.5s forwards;
}
@keyframes survey-draw { to { stroke-dashoffset: 0; } }

/* ============================================================
   Capability Marquee
   ============================================================ */
.marquee {
  background: var(--color-bg); border-block: 1px solid var(--color-border);
  overflow: hidden; padding-block: 1.4rem; white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; gap: 0; will-change: transform; }
html.js .marquee__track { animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-primary); font-variation-settings: 'wdth' 125; font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 2rem); text-transform: uppercase; color: var(--color-text);
  display: inline-flex; align-items: center; padding-inline: 1.4rem;
}
.marquee__item .tick { margin-right: 1.4rem; font-size: 0.8em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Positioning Statement
   ============================================================ */
.positioning { background: var(--color-bg); position: relative; overflow: hidden; }
.positioning__field {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.14;
}
.positioning .wrap { position: relative; z-index: 1; }
.positioning__inner { max-width: 46ch; }
.positioning__lead { margin-top: 1.4rem; color: var(--color-text); }
.positioning__lead strong { color: var(--color-accent); font-weight: 600; }
.positioning__meta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem; }
.positioning__meta .spec { color: var(--color-text-secondary); }

/* blur-to-focus reveal (JS-gated; sharp without JS) */
.blur-reveal { }
html.js .blur-reveal { filter: blur(10px); opacity: 0.35; transition: filter 900ms var(--motion-ease), opacity 900ms var(--motion-ease); }
html.js .blur-reveal.is-in { filter: blur(0); opacity: 1; }

/* ============================================================
   Capability Index — ruled dimension rows + left survey spine
   ============================================================ */
.capindex { background: var(--color-bg); }
.capindex__head { margin-bottom: 2.5rem; }
.caprows { position: relative; }
/* the survey line runs down the left, ticking each row */
.caprows::before {
  content: ""; position: absolute; left: 0; top: 0.5rem; bottom: 0.5rem; width: 2px;
  background: linear-gradient(var(--color-accent), var(--color-secondary));
  opacity: 0.35;
}
.caprow {
  position: relative; display: grid;
  grid-template-columns: auto 1fr auto; align-items: center; gap: 1.25rem;
  padding: 1.5rem 0 1.5rem 2rem; border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.caprow:first-child { border-top: 1px solid var(--color-border); }
.caprow__num { font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-secondary); letter-spacing: 0.1em; }
.caprow__label {
  font-family: var(--font-primary); font-variation-settings: 'wdth' 125; font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.7rem); text-transform: uppercase; color: var(--color-text);
  z-index: 2;
}
.caprow__label .managed {
  display: inline-block; margin-left: 0.75rem; font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.12em; color: var(--color-text-secondary);
  border: 1px solid var(--color-border); padding: 0.15rem 0.4rem; vertical-align: middle; text-transform: uppercase;
}
.caprow__chip {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text-secondary); display: inline-flex; align-items: center; gap: 0.6rem; z-index: 2;
}
.caprow__chip .tick { font-size: 1rem; }
/* row survey tick at the spine */
.caprow__tick {
  position: absolute; left: -0.55rem; top: 50%; transform: translateY(-50%);
  width: 1.1rem; height: 1.1rem; border-radius: 50%;
  background: var(--color-bg); border: 2px solid var(--color-secondary);
  display: flex; align-items: center; justify-content: center; z-index: 3;
  transition: border-color var(--motion-duration) var(--motion-ease), background var(--motion-duration) var(--motion-ease);
}
.caprow__tick i { font-size: 0.6rem; color: transparent; }
.caprow:hover .caprow__tick, .caprow:focus-within .caprow__tick { border-color: var(--color-accent); }
.caprow:hover .caprow__tick i, .caprow:focus-within .caprow__tick i { color: var(--color-accent); }
/* hover reveal image behind the row */
.caprow__reveal {
  position: absolute; inset: 0; z-index: 1; overflow: hidden; opacity: 0; pointer-events: none;
  transition: opacity var(--motion-duration-slow) var(--motion-ease);
}
.caprow__reveal img {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.08);
  transition: transform var(--motion-duration-slow) var(--motion-ease); opacity: 0.42;
}
.caprow__reveal::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--color-bg) 30%, rgba(0,24,48,0.55)); }
.caprow:hover .caprow__reveal, .caprow:focus-within .caprow__reveal { opacity: 1; }
.caprow:hover .caprow__reveal img { transform: scale(1); }

/* ============================================================
   Selected Builds — butted full-height linked panels
   ============================================================ */
.builds { background: var(--color-bg); }
.builds__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.builds__panels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.buildpanel {
  position: relative; display: block; min-height: 62vh; overflow: hidden;
  color: var(--color-text); isolation: isolate;
}
.buildpanel img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
  transition: transform var(--motion-duration-slow) var(--motion-ease);
}
.buildpanel::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(24,72,144,0.12) 0%, rgba(0,24,48,0.15) 45%, rgba(0,24,48,0.82) 100%);
}
.buildpanel:hover img { transform: scale(1.05); }
.buildpanel__body { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.75rem; }
.buildpanel__num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; color: var(--color-accent); margin-bottom: auto; }
.buildpanel__title { font-family: var(--font-primary); font-variation-settings: 'wdth' 125; font-weight: 700; font-size: clamp(1.25rem, 1.8vw, 1.6rem); text-transform: uppercase; line-height: 1.05; }
.buildpanel__fact { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; color: var(--color-text-secondary); margin-top: 0.6rem; }
.buildpanel__go { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.buildpanel:hover .buildpanel__go i { transform: translateX(4px); }
.buildpanel__go i { transition: transform var(--motion-duration) var(--motion-ease); }

/* ============================================================
   Coverage & Reliability — geographic + scale-contrast (NO stat band)
   ============================================================ */
.coverage { background: #00101f; border-block: 1px solid var(--color-border); position: relative; overflow: hidden; }
.coverage__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.coverage__map { position: relative; }
.coverage__map svg { width: 100%; height: auto; display: block; }
.coverage__map .land { fill: #0b2a44; stroke: var(--color-secondary); stroke-width: 1.2; }
.coverage__marker { fill: var(--color-accent); }
.coverage__ping { fill: none; stroke: var(--color-accent); stroke-width: 1.5; opacity: 0.6; }
.coverage__statement .lead { margin-top: 1.25rem; max-width: 42ch; color: var(--color-text); }

.coverage__figure { margin: 2.5rem 0 2rem; }
.coverage__figure .num {
  font-family: var(--font-primary); font-variation-settings: 'wdth' 125; font-weight: 900;
  font-size: clamp(4.5rem, 12vw, 9rem); line-height: 0.85; color: var(--color-text); letter-spacing: -0.02em;
}
.coverage__figure .label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-text-secondary); margin-top: 0.5rem; }

/* two footprint cells at opposed scale sharing one gridline */
.footprints { display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 1.25rem; border-top: 2px solid var(--color-accent); padding-top: 1.25rem; }
.footprint { position: relative; background: var(--color-primary); border: 1px solid var(--color-secondary); }
.footprint--sm { width: 66px; height: 46px; }
.footprint--lg { width: 100%; height: 132px; background: linear-gradient(180deg, #1c58ab, var(--color-primary)); }
.footprint__lab { position: absolute; left: 0; bottom: calc(100% + 0.4rem); font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-secondary); white-space: nowrap; }

/* ============================================================
   Inquiry — overlapping intake panel (tonal hinge to light)
   ============================================================ */
.inquiry { position: relative; background: var(--color-bg); padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: 0; }
.inquiry__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: end; }
.inquiry__headline { color: var(--color-text); padding-bottom: clamp(2rem, 6vw, 5rem); }
.inquiry__headline .lead { margin-top: 1.25rem; color: var(--color-text-secondary); max-width: 34ch; }
.inquiry__panel {
  background: var(--color-light); color: var(--color-on-light);
  padding: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: clamp(-3rem, -4vw, -2rem);
  box-shadow: 0 -20px 60px -30px rgba(0,0,0,0.6); position: relative; z-index: 2;
  border-top: 3px solid var(--color-accent);
}
.inquiry__panel .panel-title { color: var(--color-on-light); }
.inquiry::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: clamp(3rem, 5vw, 5rem); background: var(--color-light); z-index: 0; }

/* ============================================================
   Forms
   ============================================================ */
.contact-form { display: grid; gap: 1.1rem; }
.form-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
.field label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--color-on-light-2);
}
.field input, .field textarea, .field select {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--color-on-light);
  background: #fff; border: 1px solid var(--color-light-border); padding: 0.75rem 0.9rem; width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease), box-shadow var(--motion-duration) var(--motion-ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(24,72,144,0.18);
}
.field--file .filedrop {
  border: 2px dashed var(--color-accent); background: rgba(0,144,216,0.05);
  padding: 1.1rem; display: flex; align-items: center; gap: 0.75rem; cursor: pointer;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--color-on-light-2);
}
.field--file .filedrop i { color: var(--color-accent); font-size: 1.4rem; }
.field--file input[type="file"] {
  border: 0; padding: 0; background: transparent; font-family: var(--font-mono); font-size: 0.8rem;
}
.form-note { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em; color: var(--color-on-light-2); }
.form-lane { border-top: 1px solid var(--color-light-border); padding-top: 1.4rem; margin-top: 0.4rem; }
.form-lane__head { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 1rem; }

/* ============================================================
   Footer — mono cut-sheet contact directory (light ground)
   ============================================================ */
.site-footer { background: var(--color-light); color: var(--color-on-light); }
.footer-call { padding-block: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--color-light-border); }
.footer-call__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2rem; align-items: center; }
.footer-call__heading {
  font-family: var(--font-primary); font-variation-settings: 'wdth' 125; font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 0.98; text-transform: uppercase; color: var(--color-primary);
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.footer-call__heading .tick { color: var(--color-accent); font-size: 0.5em; margin-top: 0.4em; }
.footer-call__links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-cat {
  font-family: var(--font-mono); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-primary); display: inline-flex; align-items: center; gap: 0.6rem; min-height: 44px;
}
.footer-cat:hover { color: var(--color-on-light); }
.footer-cat i { color: var(--color-accent); }

.footer-dir { padding-block: clamp(2rem, 4vw, 3rem); }
.footer-dir__grid { display: grid; grid-template-columns: auto 1fr auto; gap: 2rem; align-items: start; }
.footer-dir img { height: 44px; width: auto; max-width: 160px; }
.footer-dir__brand { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--color-on-light-2); max-width: 30ch; margin-top: 0.75rem; }
.footer-office { font-family: var(--font-mono); font-size: 0.82rem; line-height: 1.9; color: var(--color-on-light); }
.footer-office .k { color: var(--color-on-light-2); letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.68rem; display: block; }
.footer-office a { color: var(--color-primary); }
.footer-office a:hover { color: var(--color-on-light); }
.footer-office .city { font-family: var(--font-primary); font-variation-settings: 'wdth' 125; font-weight: 700; font-size: 1.15rem; text-transform: uppercase; color: var(--color-on-light); }
.footer-legal { border-top: 1px solid var(--color-light-border); padding-block: 1.25rem; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--color-on-light-2); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }

/* ============================================================
   Compact page heroes (interior pages)
   ============================================================ */
.pagehero { background: var(--color-bg); position: relative; overflow: hidden; border-bottom: 1px solid var(--color-border); padding-block: clamp(4rem, 9vw, 7rem); }
.pagehero__field { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.16; }
.pagehero .wrap { position: relative; z-index: 1; }
.pagehero__title { margin-top: 1rem; color: var(--color-text); }
.pagehero__deck { margin-top: 1.5rem; max-width: 48ch; color: var(--color-text-secondary); }
/* mini survey line under page hero */
.pagehero__line { margin-top: 2rem; height: 2px; width: 100%; max-width: 520px; background: linear-gradient(90deg, var(--color-accent), transparent); position: relative; }
.pagehero__line::after { content: "\2713"; position: absolute; right: 40%; top: -0.7rem; color: var(--color-accent); font-size: 0.9rem; }

/* ============================================================
   Prose blocks
   ============================================================ */
.prose { max-width: 65ch; }
.prose p { margin-bottom: 1.2rem; color: var(--color-text); }
.prose p:last-child { margin-bottom: 0; }
.prose--light p { color: var(--color-text); }
.callout {
  border-left: 2px solid var(--color-accent); padding: 0.4rem 0 0.4rem 1.25rem; margin: 2rem 0;
  font-family: var(--font-mono); font-size: 0.85rem; letter-spacing: 0.02em; color: var(--color-text-secondary);
}

/* Services statement callout — mono spec bracket */
.spec-callout {
  display: inline-flex; align-items: center; gap: 0.9rem; margin-top: 1.75rem;
  font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--color-accent); border: 1px solid var(--color-border); padding: 0.7rem 1.1rem;
}
.spec-callout .bracket { color: var(--color-secondary); }

/* ============================================================
   Portfolio gallery
   ============================================================ */
.gallery-head { margin-bottom: 2.5rem; }
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.gallery__tile { position: relative; overflow: hidden; margin: 0; background: var(--color-surface); }
.gallery__tile img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); cursor: zoom-in; }
.gallery__tile:hover img { transform: scale(1.05); }
.gallery__tile--wide { grid-column: span 2; }
.gallery__tile--wide img { aspect-ratio: 16 / 9; }
.gallery__tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--color-text);
  background: linear-gradient(transparent, rgba(0,16,32,0.85)); padding: 1.5rem 0.9rem 0.75rem;
}

/* ============================================================
   Continuity / about accents
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.margin-diagram { border: 1px solid var(--color-border); padding: 1.5rem; background: var(--color-surface); }
.margin-diagram .footprints { border-color: var(--color-accent); }
.about-accent { width: 100%; height: 220px; object-fit: cover; opacity: 0.85; }

/* 404 */
.notfound { min-height: 66vh; display: flex; align-items: center; background: var(--color-bg); }
.notfound__code { font-family: var(--font-primary); font-variation-settings: 'wdth' 125; font-weight: 900; font-size: clamp(5rem, 18vw, 12rem); line-height: 0.85; color: var(--color-accent); }

/* ============================================================
   Reveal-gating floor (content visible without JS)
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--motion-ease), transform .6s var(--motion-ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* ============================================================
   Gallery lightbox — scaffolded shared mechanism (restyled, do not remove)
   ============================================================ */
.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; } }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(0,12,24,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.8rem; letter-spacing: 0.04em; line-height: 1.5; color: var(--color-text); 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-secondary); }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; z-index: 2; width: 2.8rem; height: 2.8rem; 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; transition: color var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.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: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__plate img { min-height: 300px; }
  .coverage__grid { grid-template-columns: 1fr; }
  .inquiry__grid { grid-template-columns: 1fr; }
  .footer-call__grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  /* No-JS base: everything wraps and stays visible (never trapped behind a dead toggle) */
  .nav { flex-wrap: wrap; row-gap: 0.5rem; padding-block: 0.75rem; }
  .nav__spacer { display: none; }
  .nav__toggle { display: none; }
  .nav__menu { order: 3; width: 100%; margin-left: 0; flex-wrap: wrap; gap: 1rem 1.5rem; }
  .nav__actions { order: 4; width: 100%; flex-wrap: wrap; }
  .nav__link { font-size: 15px; }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__link[aria-current="page"]::before { right: auto; left: -1.1em; bottom: auto; top: 0.9em; }

  /* JS-enhanced: collapse behind the hamburger */
  html.js .nav__toggle { display: inline-flex; margin-left: auto; }
  html.js .nav__menu, html.js .nav__actions {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--color-light); flex-direction: column; align-items: stretch;
    gap: 0; padding: 0 1.25rem; margin: 0; max-height: 0; overflow: hidden;
    border-bottom: 1px solid var(--color-light-border);
    transition: max-height var(--motion-duration-slow) var(--motion-ease), padding var(--motion-duration-slow) var(--motion-ease);
  }
  html.js .nav__actions { top: auto; }
  html.js .site-header.nav-open .nav__menu { max-height: 70vh; padding: 0.5rem 1.25rem; border-bottom: 0; }
  html.js .site-header.nav-open .nav__actions { max-height: 70vh; padding: 0.75rem 1.25rem 1.25rem; }
  html.js .nav__link { padding: 0.85rem 0; border-bottom: 1px solid var(--color-light-border); }
  html.js .nav__call { border-right: 0; border-bottom: 1px solid var(--color-light-border); padding: 0.5rem 0 1rem; width: 100%; }
  html.js .nav__lanes { flex-direction: column; align-items: stretch; width: 100%; gap: 0.75rem; margin-top: 0.75rem; }
  html.js .nav__lanes .btn { width: 100%; justify-content: center; }
}

@media (max-width: 760px) {
  .builds__panels { grid-template-columns: 1fr; }
  .buildpanel { min-height: 52vh; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__tile--wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-dir__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footprints { grid-template-columns: 1fr; }
  .footprint--sm { width: 90px; }
  .hero__statement .line--2 { padding-left: 0.3em; }
  .hero__statement .line--3 { padding-left: 0.6em; }
  /* hero asymmetry flips: photo full-width beneath statement, survey line down the margin */
  .hero__grid { padding-block: 3rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .nav__brand img { height: 46px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__tile--wide { grid-column: span 1; }
  .coverage__figure .num { font-size: clamp(4rem, 22vw, 6rem); }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html.js .marquee__track { animation: none; }
  html.js .hero__survey .draw, html.js .hero__survey .check { stroke-dashoffset: 0; }
  html.js .blur-reveal { filter: none; opacity: 1; }
  html.js .reveal { opacity: 1; transform: none; }
  .lightbox.is-open { animation: none; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLySOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLyTOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLydOxKsv4Rn.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;
}
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLySOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLyTOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLydOxKsv4Rn.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;
}
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLySOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLyTOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLydOxKsv4Rn.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;
}
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLySOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLyTOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 700;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLydOxKsv4Rn.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;
}
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 800;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLySOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 800;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLyTOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 800;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLydOxKsv4Rn.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;
}
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 900;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLySOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 900;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLyTOxKsv4RnUPU.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: 'Archivo';
  font-style: normal;
  font-weight: 900;
  font-stretch: 125%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q8EsLydOxKsv4Rn.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;
}
