/*
 * styles.css — TECHYVIBE
 * "The Managed Ledger" — an ink-on-vellum corporate operations manifest.
 * Navy paper, white type set like a firm's ledger, one teal leader that
 * only ever means "connected and managed." Photography-free by design.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  /* Brand (client-locked) */
  --color-primary: #0A1F44;   /* Manifest Navy — paper/ink */
  --color-navy-deep: #060E22; /* Deep Navy */
  --color-navy-tint: #E7EBF2; /* Vellum Navy Tint */
  --color-secondary: #33415C; /* Ledger Slate */
  --color-accent: #00A8A8;    /* Managed Teal — signal only */
  --color-bg: #FFFFFF;        /* Page White */
  --color-surface: #F4F6FA;   /* Cool Surface */
  --color-text: #0A1F44;      /* Navy Ink */
  --color-text-secondary: #4C5872; /* Slate Caption (AA on white) */
  --color-border: #D4DAE4;    /* Hairline */
  --color-on-navy: #C9D2E0;   /* Body/data lightened for navy contrast */

  /* Type */
  --font-primary: 'Archivo', sans-serif;
  --font-secondary: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;
  --font-size-base: 16px;

  /* Spacing */
  --spacing-base: 8px;
  --pad-x: clamp(20px, 6vw, 88px);
  --section-y: clamp(72px, 11vw, 148px);
  --measure: 66ch;

  /* Motion */
  --motion-duration: 300ms;
  --motion-duration-slow: 520ms;
  --motion-ease: cubic-bezier(0.2, 0.7, 0.2, 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, sans-serif);
  background-color: var(--color-bg, #ffffff);
  color: var(--color-text, #0A1F44);
  line-height: 1.65;
  font-size: 1.0625rem; /* 17px body */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
}

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

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

/* Focus states — WCAG AA required */
:focus-visible {
  outline: 3px solid var(--color-accent, #005fcc);
  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, #ffffff);
  color: var(--color-accent, #005fcc);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-accent, #005fcc);
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Typography Scale
   ============================================================ */
.display {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
h1, .h1 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.0;
  letter-spacing: -0.015em;
}
h2, .h2 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}
h4, .h4 {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.3;
}
.lead {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--color-text-secondary);
}
p { max-width: var(--measure); }
.prose p + p { margin-top: 1.15em; }
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

/* ============================================================
   Layout Helpers
   ============================================================ */
.section { padding: var(--section-y) var(--pad-x); }
.section--navy { background: var(--color-primary); color: #fff; }
.section--deep { background: var(--color-navy-deep); color: #fff; }
.section--surface { background: var(--color-surface); }
.section--white { background: var(--color-bg); }
.wrap { max-width: 1240px; margin-inline: auto; width: 100%; }
.wrap--narrow { max-width: 880px; }

.navy-field {
  position: relative;
  background-color: var(--color-primary);
  background-image: url('/images/abstract-deep-navy-field-background-text_20260727_224655.png');
  background-size: cover;
  background-position: center 30%;
  background-blend-mode: normal;
}
.navy-field::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,31,68,0.62), rgba(10,31,68,0.82));
  pointer-events: none;
}
.navy-field > * { position: relative; z-index: 1; }

.eyerow { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }

/* Reusable teal hairline */
.hairline {
  border: 0;
  height: 2px;
  background: var(--color-accent);
  width: clamp(56px, 8vw, 120px);
  margin: 1.25rem 0;
}
.hairline--full { width: 100%; height: 1px; }

/* ============================================================
   Reveal-gating (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; }

/* Leader-line draw — base visible, hidden only under html.js */
.ledger__leader,
.converge__line { transition: transform var(--motion-duration-slow) var(--motion-ease); }
html.js .ledger__leader {
  transform: scaleX(0);
  transform-origin: left center;
  transition-delay: var(--d, 0s);
}
html.js .ledger.is-drawn .ledger__leader { transform: scaleX(1); }

html.js .converge__line {
  stroke-dashoffset: var(--len, 400);
  transition: stroke-dashoffset var(--motion-duration-slow) var(--motion-ease);
  transition-delay: var(--d, 0s);
}
html.js .converge.is-drawn .converge__line { stroke-dashoffset: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html.js .reveal { opacity: 1; transform: none; }
  html.js .ledger__leader { transform: scaleX(1); }
  html.js .converge__line { stroke-dashoffset: 0; }
}

/* ============================================================
   Navigation — logo-left, menu-right, navy, scroll-away
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; }
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 64px;
  padding: 0 var(--pad-x);
  background: var(--color-primary);
  transition: transform var(--motion-duration) var(--motion-ease);
}
.site-nav.is-hidden { transform: translateY(-110%); }

.nav__brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.nav__logo {
  height: 40px;
  width: auto;
  max-width: 200px;
  display: block;
}

.nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.1rem);
}
.nav__item { position: relative; }
.nav__link {
  font-family: var(--font-secondary);
  font-size: 0.9375rem; /* 15px floor */
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link .ph { font-size: 0.9em; color: var(--color-accent); }

/* Services submenu (desktop dropdown) */
.nav__sub {
  list-style: none;
  position: absolute;
  top: calc(100% + 4px);
  left: -0.9rem;
  min-width: 260px;
  background: var(--color-navy-deep);
  border: 1px solid rgba(255,255,255,0.10);
  border-top: 2px solid var(--color-accent);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--motion-duration) var(--motion-ease),
              transform var(--motion-duration) var(--motion-ease),
              visibility var(--motion-duration);
  z-index: 120;
}
.nav__item--has-sub:hover .nav__sub,
.nav__item--has-sub:focus-within .nav__sub {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__sub a {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--color-on-navy);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 0.9375rem;
  border-left: 2px solid transparent;
  transition: color var(--motion-duration), border-color var(--motion-duration), background var(--motion-duration);
}
.nav__sub a:hover,
.nav__sub a:focus-visible,
.nav__sub a[aria-current="page"] {
  color: #fff;
  border-left-color: var(--color-accent);
  background: rgba(0,168,168,0.08);
}

/* Hamburger — enhancement; menu is visible by default without JS */
.nav__burger {
  display: none;
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  border-radius: 2px;
}

/* ============================================================
   Hero — the manifest opens
   ============================================================ */
.hero {
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 12vw, 150px) var(--pad-x) clamp(48px, 7vw, 90px);
  color: #fff;
}
.hero__headline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.7rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 17ch;
  color: #fff;
}
.hero__headline .soft { color: var(--color-on-navy); }
.hero__sub {
  margin-top: clamp(1.5rem, 3vw, 2.4rem);
  font-family: var(--font-secondary);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--color-on-navy);
  max-width: 54ch;
}
.hero__meta {
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* ============================================================
   Dot-leader ledger (signature move)
   ============================================================ */
.stack { padding-top: clamp(24px, 5vw, 64px); }
.stack__caption {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.ledger { list-style: none; }
.ledger__row {
  display: flex;
  align-items: baseline;
  gap: clamp(0.75rem, 1.6vw, 1.4rem);
  padding: clamp(16px, 2.4vw, 26px) 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: inherit;
}
.ledger li:last-child .ledger__row { border-bottom: 1px solid rgba(255,255,255,0.12); }
.ledger__index {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-accent);
  min-width: 2.4ch;
}
.ledger__name {
  flex: 0 1 auto;
  min-width: 0;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
  line-height: 1.05;
  color: #fff;
  transition: color var(--motion-duration) var(--motion-ease);
}
.ledger__desc {
  display: block;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-on-navy);
  letter-spacing: 0;
  margin-top: 0.35rem;
  max-width: 46ch;
}
.ledger__leader {
  flex: 1 1 2rem;
  min-width: 1.5rem;
  align-self: center;
  height: 0;
  border-bottom: 1.5px dotted var(--color-accent);
  opacity: 0.85;
  transition: opacity var(--motion-duration), transform var(--motion-duration-slow) var(--motion-ease);
}
.ledger__managed {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
a.ledger__row:hover .ledger__name,
a.ledger__row:focus-visible .ledger__name { color: var(--color-accent); }
a.ledger__row:hover .ledger__leader,
a.ledger__row:focus-visible .ledger__leader { opacity: 1; }

/* Light-ground ledger variant (services hub explainer siblings) */
.ledger--light .ledger__row { border-top-color: var(--color-border); }
.ledger--light li:last-child .ledger__row { border-bottom-color: var(--color-border); }
.ledger--light .ledger__name { color: var(--color-text); }
.ledger--light .ledger__desc { color: var(--color-text-secondary); }
.ledger--light .ledger__index,
.ledger--light .ledger__managed { color: var(--color-accent); }

/* ============================================================
   The Record — 25-year dateline
   ============================================================ */
.record { }
.record__dateline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--color-text);
}
.record__dateline em { font-style: normal; color: var(--color-accent); }
.record__caption {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.record__line { margin-top: 1.5rem; max-width: 40ch; }

/* ============================================================
   Convergence diagram — six into one
   ============================================================ */
.converge-section .converge__lede { max-width: 40ch; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.converge {
  position: relative;
  width: min(620px, 94vw);
  margin-inline: auto;
  aspect-ratio: 1 / 0.86;
}
.converge__svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.converge__line {
  stroke: var(--color-accent);
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: var(--len, 70);
}
.converge__node {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(0.95rem, 2.2vw, 1.5rem);
  letter-spacing: -0.01em;
  line-height: 1;
  padding: clamp(0.7rem, 1.8vw, 1.2rem) clamp(0.9rem, 2.2vw, 1.5rem);
  text-align: center;
  border: 2px solid var(--color-accent);
  border-radius: 2px;
  z-index: 2;
  white-space: nowrap;
}
.converge__label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--font-mono);
  font-size: clamp(0.62rem, 1.5vw, 0.8125rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
  max-width: 22vw;
  line-height: 1.25;
}
.converge__label .dot {
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--color-accent);
  border-radius: 50%;
  margin-right: 0.4rem;
  vertical-align: middle;
}

/* ============================================================
   Testimonial band
   ============================================================ */
.quote-block { max-width: 22ch; }
.quote-block__mark {
  font-family: var(--font-primary);
  color: var(--color-accent);
  font-size: 3rem;
  line-height: 0.6;
  display: block;
  margin-bottom: 0.5rem;
}
.quote-block__text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--color-text);
  max-width: 20ch;
}
.quote-block__attr {
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--color-text-secondary);
}
.quote-block__attr::before { content: '— '; color: var(--color-accent); }

/* ============================================================
   Buttons / CTA
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.5rem;
  text-decoration: none;
  border: 1.5px solid var(--color-accent);
  background: var(--color-navy-deep);
  color: #fff;
  cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease);
}
.btn:hover, .btn:focus-visible { background: var(--color-accent); color: var(--color-navy-deep); }
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-text);
}
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--color-text); color: #fff; }
.btn--on-navy.btn--ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--on-navy.btn--ghost:hover { background: #fff; color: var(--color-primary); }
.btn .ph { font-size: 1.1em; }

/* Text link with teal underline */
.tlink {
  color: var(--color-accent);
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
.section--navy .tlink, .section--deep .tlink { color: var(--color-accent); }
.tlink::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -3px; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.tlink:hover::after, .tlink:focus-visible::after { transform: scaleX(1); }

/* ============================================================
   Contact / lead forms
   ============================================================ */
.contact-form { display: grid; gap: 1.1rem; max-width: 560px; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.field .req { color: var(--color-accent); }
.field input,
.field textarea {
  font-family: var(--font-secondary);
  font-size: 1rem;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  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: 130px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,168,168,0.22);
}
.field input::placeholder,
.field textarea::placeholder { color: #96A0B4; }

/* Form on navy ground (Home closer, services CTA) */
.form--on-navy label { color: #fff; }
.form--on-navy input,
.form--on-navy textarea {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.form--on-navy input::placeholder,
.form--on-navy textarea::placeholder { color: #8B97AD; }
.form--on-navy input:focus,
.form--on-navy textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0,168,168,0.30);
}
.form__submit { justify-self: start; margin-top: 0.25rem; }

/* ============================================================
   Home closer band (split)
   ============================================================ */
.closer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.closer__head { max-width: 16ch; }
.closer__lead { margin-top: 1rem; color: var(--color-on-navy); max-width: 42ch; }

/* ============================================================
   Footer — mono contact directory
   ============================================================ */
.contact-footer { background: var(--color-primary); color: #fff; }
.contact-footer__inner { padding: clamp(56px, 8vw, 110px) var(--pad-x) clamp(40px, 5vw, 64px); }
.contact-footer__upper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: flex-end;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.contact-footer__heading {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--color-accent);
}
.contact-footer__nav {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  text-align: right;
}
.contact-footer__nav a {
  color: var(--color-on-navy);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 1rem;
}
.contact-footer__nav a:hover, .contact-footer__nav a:focus-visible { color: var(--color-accent); }

.contact-footer__lower {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  align-items: flex-end;
  padding-top: clamp(2rem, 4vw, 3rem);
}
.contact-footer__brand { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.contact-footer__logo { height: 30px; width: auto; max-width: 160px; }
.contact-footer__mono {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.75;
  color: var(--color-on-navy);
  font-variant-numeric: tabular-nums;
}
.contact-footer__mono a { color: var(--color-accent); text-decoration: none; }
.contact-footer__mono a:hover { text-decoration: underline; }
.contact-footer__mono .k { color: #9BA7BF; display: inline-block; min-width: 8.5ch; }
.contact-footer__legal {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #9BA7BF;
  letter-spacing: 0.04em;
  text-align: right;
}

/* ============================================================
   Interior page shells
   ============================================================ */

/* Extracted ledger-row opener (service sub-pages) */
.extracted {
  position: relative;
  padding: clamp(84px, 12vw, 160px) var(--pad-x) clamp(48px, 7vw, 88px);
}
.extracted__content { position: relative; z-index: 1; }
.extracted__row {
  display: flex;
  align-items: baseline;
  gap: clamp(0.75rem, 2vw, 1.6rem);
}
.extracted__index {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-accent);
  flex: 0 0 auto;
}
.extracted__name {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  min-width: 0;
  flex: 0 1 auto;
}
.extracted__leader {
  flex: 1 1 2rem;
  min-width: 1.5rem;
  align-self: center;
  height: 0;
  border-bottom: 1.5px dotted var(--color-accent);
}
.extracted__managed {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
/* rule-and-runover definition */
.runover { margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.runover__rule { border: 0; height: 2px; background: var(--color-accent); width: 100%; }
.runover__text {
  margin-top: 1.1rem;
  font-family: var(--font-secondary);
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-on-navy);
  max-width: 60ch;
}

/* Service body */
.service-body { }
.included-list { list-style: none; display: grid; gap: 0; margin-top: 1.5rem; }
.included-list__item {
  display: grid;
  grid-template-columns: 3ch 1fr;
  gap: 1rem 1.4rem;
  padding: clamp(16px, 2.4vw, 24px) 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
}
.included-list__item:last-child { border-bottom: 1px solid var(--color-border); }
.included-list__idx {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-accent);
  padding-top: 0.35rem;
}
.included-list__name {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  line-height: 1.2;
  color: var(--color-text);
}
.included-list__desc {
  margin-top: 0.45rem;
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 60ch;
}

.service-accent {
  position: absolute;
  top: 7%;
  right: 4%;
  width: clamp(120px, 16vw, 220px);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 620px) { .service-accent { display: none; } }

/* Page intro blocks (generic, non-eyebrow openers handled per-page) */
.pagehead { padding: clamp(84px, 12vw, 150px) var(--pad-x) clamp(40px, 6vw, 72px); }

/* Testimonials page */
.tquote { padding: clamp(56px, 8vw, 110px) 0; border-top: 1px solid var(--color-border); }
.tquote:first-of-type { border-top: 0; }
.tquote__text {
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--color-text);
  max-width: 20ch;
}
.tquote--lead .tquote__text { font-size: clamp(2rem, 6.5vw, 4.75rem); max-width: 16ch; }
.tquote:not(.tquote--lead) .tquote__text { font-size: clamp(1.5rem, 3.6vw, 2.75rem); }
.tquote--right { text-align: right; }
.tquote--right .tquote__text { margin-left: auto; }
.tquote__attr {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: var(--color-text-secondary);
}
.tquote__attr::before { content: '— '; color: var(--color-accent); }

/* FAQ page */
.faq-layout {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}
.faq-rubric {
  position: sticky;
  top: 96px;
  align-self: start;
}
.faq-rubric span {
  display: inline-block;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
}
.faq-list { list-style: none; }
.faq-item {
  display: grid;
  grid-template-columns: 3ch 1fr;
  gap: 0.75rem 1.4rem;
  padding: clamp(20px, 3vw, 34px) 0;
  border-top: 1px solid var(--color-border);
}
.faq-item:last-child { border-bottom: 1px solid var(--color-border); }
.faq-item__idx {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--color-accent);
  padding-top: 0.5rem;
}
.faq-item__q {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.3vw, 1.6rem);
  line-height: 1.2;
  color: var(--color-text);
  background: transparent;
  border: 0;
  text-align: left;
  padding: 0;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  font-family: var(--font-primary);
}
.faq-item__q .faq-toggle {
  flex: 0 0 auto;
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  transition: transform var(--motion-duration) var(--motion-ease);
}
.faq-item__a {
  margin-top: 0.9rem;
  color: var(--color-text-secondary);
  max-width: 66ch;
}
/* Progressive-enhancement accordion: only collapses when JS confirmed */
html.js .faq-item.is-collapsible .faq-item__a { display: none; }
html.js .faq-item.is-collapsible.is-open .faq-item__a { display: block; }
html.js .faq-item.is-collapsible.is-open .faq-toggle { transform: rotate(45deg); }

/* Blog page */
.blog-intro { max-width: 60ch; }
.blog-intro__p {
  font-family: var(--font-secondary);
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.55;
  color: var(--color-text-secondary);
}
.blog-intro__p::first-letter {
  float: left;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(3.6rem, 11vw, 6.5rem);
  line-height: 0.8;
  padding: 0.06em 0.14em 0 0;
  color: var(--color-accent);
}
.blog-empty {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  border-top: 2px solid var(--color-accent);
  padding-top: clamp(1.5rem, 3vw, 2.4rem);
}
.blog-empty__state {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
}

/* Contact page (form-first, two column) */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(84px, 11vw, 150px) var(--pad-x) var(--section-y);
}
.contact-form-head { margin-bottom: 1.8rem; }
.contact-ledger { }
.contact-ledger__title {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.2rem;
}
.contact-ledger__row {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--color-border);
}
.contact-ledger__row:last-child { border-bottom: 1px solid var(--color-border); }
.contact-ledger__k {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.contact-ledger__v {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}
.contact-ledger__v a { color: var(--color-text); text-decoration: none; }
.contact-ledger__v a:hover { color: var(--color-accent); }
.contact-ledger__v .ph { color: var(--color-accent); margin-right: 0.5rem; }

/* Cross-link / sub CTA band */
.subcta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.subcta__head { max-width: 22ch; }

/* 404 */
.notfound {
  min-height: 74vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-y) var(--pad-x);
  color: #fff;
}
.notfound__code {
  font-family: var(--font-mono);
  color: var(--color-accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8125rem;
}
.notfound__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0.8rem 0 1.2rem;
}

/* Utility spacing */
.mt-s { margin-top: 1rem; }
.mt-m { margin-top: 2rem; }
.mt-l { margin-top: clamp(2.5rem, 5vw, 4rem); }
.stack-block > * + * { margin-top: 1.15rem; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .closer { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  /* Nav collapses to a panel; base (no JS) shows it stacked */
  .nav__burger { display: inline-flex; }
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--color-navy-deep);
    padding: 0.5rem var(--pad-x) 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.12);
  }
  .nav__link { padding: 0.85rem 0; font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__item--has-sub:focus-within .nav__link[aria-haspopup] { color: var(--color-accent); }
  /* Submenu is static and visible inside the open panel */
  .nav__sub {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    min-width: 0; border: 0; border-top: 0;
    background: transparent;
    padding: 0 0 0.5rem;
  }
  .nav__sub a { padding: 0.55rem 0 0.55rem 1.4rem; font-size: 0.95rem; }

  /* JS-enhanced: hide the panel until toggled */
  html.js .nav__menu { display: none; }
  html.js .site-nav.nav-open .nav__menu { display: flex; }

  .faq-layout { grid-template-columns: 1fr; gap: 1rem; }
  .faq-rubric { position: static; margin-bottom: 0.5rem; }
  .faq-rubric span {
    writing-mode: horizontal-tb;
    transform: none;
    letter-spacing: 0.22em;
  }
}

@media (max-width: 620px) {
  :root { --measure: 90vw; }
  .hero { min-height: 78vh; }
  .hero__headline { font-size: clamp(2.5rem, 12vw, 3.6rem); } /* gains presence, holds a floor */
  .ledger__row { flex-wrap: wrap; }
  .ledger__leader { flex-basis: 1.5rem; min-width: 1rem; }
  .ledger__name { font-size: clamp(1.3rem, 7vw, 1.8rem); }
  .contact-footer__upper { flex-direction: column; align-items: flex-start; }
  .contact-footer__nav { text-align: left; }
  .contact-footer__lower { flex-direction: column; align-items: flex-start; }
  .contact-footer__legal { text-align: left; }
  .extracted__name { font-size: clamp(2rem, 11vw, 3rem); }
  .subcta { flex-direction: column; align-items: flex-start; }
  .converge__label { font-size: 0.6rem; max-width: 26vw; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* 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 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;
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.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: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.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;
}
