/*
 * styles.css — ABC Networks
 * Warm-newsprint editorial system: ABC Navy + one sparing Signal Orange.
 * Signature motif: the orange diamond that turns (a member's seat → the one
 * live problem). Circles are refused as a decorative shape anywhere.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary: #1B244B;        /* ABC Navy */
  --color-primary-deep: #10162E;   /* deepest navy — footer floor */
  --color-secondary: #3E4A6B;      /* slate navy — sub-rules on dark */
  --color-accent: #F26722;         /* Signal Orange */
  --color-bg: #F4F0E7;             /* warm newsprint ground */
  --color-surface: #FCFAF5;        /* warm white — plates, form fields */
  --color-text: #16203C;           /* display ink on paper */
  --color-text-secondary: #4A5675; /* secondary meta */
  --color-border: #CDD1DC;         /* hairline on paper */
  --color-on-primary: #F6F2EA;     /* paper-on-navy text */
  --color-on-primary-dim: rgba(246, 242, 234, 0.74);
  --color-hairline-navy: rgba(246, 242, 234, 0.16);

  --font-primary: 'Darker Grotesque', 'Arial Narrow', sans-serif;
  --font-secondary: 'Instrument Sans', system-ui, sans-serif;
  --font-mono: 'Spline Sans Mono', ui-monospace, 'SFMono-Regular', monospace;

  --font-size-base: 16px;
  --spacing-base: 8px;
  --shell: min(1200px, 92vw);

  --motion-duration: 300ms;
  --motion-duration-slow: 460ms;
  --motion-ease: cubic-bezier(0.4, 0, 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, #F4F0E7);
  color: var(--color-text, #16203C);
  line-height: 1.6;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

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

/* 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, #FCFAF5);
  color: var(--color-primary, #1B244B);
  font-family: var(--font-secondary);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--color-primary, #1B244B);
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Shared layout helpers
   ============================================================ */
.shell { width: var(--shell); margin-inline: auto; }
.shell--narrow { width: min(880px, 92vw); margin-inline: auto; }

.section { padding-block: clamp(3.75rem, 8vw, 7.5rem); }

/* Column-split children never overflow their track with long content */
.argument__grid > *, .method__grid > *, .founders__grid > *,
.closing__grid > *, .broadsheet__grid > *, .visit__grid > *,
.page-header__grid > *, .note-band__grid > * { min-width: 0; }
.section--paper { background: var(--color-bg); }
.section--navy {
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.section--navy .rubric,
.section--navy .rubric__label { color: var(--color-on-primary); }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-primary); font-weight: 800; }

.display {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(3.25rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
}
.page-head {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
}
.h2 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  line-height: 1.0;
  letter-spacing: -0.01em;
}
.h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.08;
}
.lead {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  line-height: 1.5;
  max-width: 40ch;
  color: var(--color-text-secondary);
}
.section--navy .lead { color: var(--color-on-primary-dim); }
.body-copy {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 66ch;
  color: var(--color-text);
}
.section--navy .body-copy { color: var(--color-on-primary-dim); }
.body-copy + .body-copy { margin-top: 1.15rem; }

/* Mono cadence stamp + rubrics */
.cadence {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.section--navy .cadence { color: var(--color-on-primary-dim); }
.cadence--lg { font-size: clamp(0.95rem, 1.6vw, 1.25rem); letter-spacing: 0.12em; }

.rubric {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.75rem;
}
.section--navy .rubric { border-bottom-color: var(--color-hairline-navy); }

/* ============================================================
   The diamond (orange square → diamond). Circles never appear.
   ============================================================ */
.diamond {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  background: var(--color-accent);
  transform: rotate(0deg);          /* square at rest */
  transition: transform var(--motion-duration-slow) var(--motion-ease);
  flex: none;
}
.mark {                              /* static diamond marker */
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  transform: rotate(45deg);
  flex: none;
}

/* Diamond list bullets */
.diamond-list { list-style: none; }
.diamond-list > li {
  position: relative;
  padding-left: 1.6rem;
}
.diamond-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  background: var(--color-accent);
  transform: rotate(45deg);
}

/* ============================================================
   Reveal-gating — content visible without JS (binding).
   Motion signature: deliberate near-stillness + the one diamond turn.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity var(--motion-duration-slow) var(--motion-ease),
              transform var(--motion-duration-slow) var(--motion-ease);
}
html.js .reveal.is-visible { opacity: 1; transform: none; }

/* the meaningful move: a marker square that turns to the diamond, once */
html.js .diamond-turn { transform: rotate(0deg); }
html.js .diamond-turn.is-visible { transform: rotate(45deg); }
/* settle: a plate/tile that eases a few px into place, once */
html.js .settle { transform: translateY(10px); opacity: 0; transition: opacity var(--motion-duration-slow) var(--motion-ease), transform var(--motion-duration-slow) var(--motion-ease); }
html.js .settle.is-visible { transform: none; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal, html.js .reveal.is-visible,
  html.js .diamond-turn, html.js .diamond-turn.is-visible,
  html.js .settle, html.js .settle.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .diamond { transition: none; }
}

/* ============================================================
   Buttons / CTA
   ============================================================ */
.btn {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.35rem;
  border: 1.5px 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);
}
.btn .diamond { width: 8px; height: 8px; }
.btn:hover .diamond { transform: rotate(45deg); }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-color: var(--color-primary);
}
.btn--primary:hover { background: #232e5c; }

.btn--on-navy {
  background: var(--color-surface);
  color: var(--color-primary);
  border-color: var(--color-surface);
}
.btn--on-navy:hover { background: var(--color-accent); color: #fff; border-color: var(--color-accent); }
.btn--on-navy:hover .diamond { background: #fff; }

/* text link with orange hairline hover */
.link-arrow {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding-bottom: 3px;
  box-shadow: inset 0 -1px 0 var(--color-border);
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}
.link-arrow:hover { box-shadow: inset 0 -2px 0 var(--color-accent); }
.section--navy .link-arrow { color: var(--color-on-primary); box-shadow: inset 0 -1px 0 var(--color-hairline-navy); }

/* ============================================================
   Masthead Navigation — centered-split
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  overflow: visible;             /* logo/diamond never clipped */
}
.nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--shell);
  margin-inline: auto;
  height: 76px;
  transition: height var(--motion-duration) var(--motion-ease);
}
.site-header::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background: transparent;
  transition: background var(--motion-duration) var(--motion-ease);
}
.site-header.is-condensed::after { background: var(--color-border); }
.site-header.is-condensed .nav { height: 60px; }
.site-header.is-condensed .nav__logo img { height: 34px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none;
}
.nav__links-right { justify-content: flex-end; }
.nav__logo { justify-self: center; display: inline-flex; }
.nav__logo img {
  height: 40px;
  width: auto;
  max-width: 220px;
  display: block;
  transition: height var(--motion-duration) var(--motion-ease);
}
.nav__link {
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.9375rem;          /* 15px — legibility floor */
  color: var(--color-text);
  padding: 0.3rem 0;
  box-shadow: inset 0 -2px 0 transparent;
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}
.nav__link:hover { box-shadow: inset 0 -2px 0 var(--color-accent); }
.nav__cta {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: 0.6rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: background var(--motion-duration) var(--motion-ease);
}
.nav__cta .diamond { width: 8px; height: 8px; background: var(--color-accent); }
.nav__cta:hover { background: #232e5c; }
.nav__cta:hover .diamond { transform: rotate(45deg); }

.nav__toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-primary);
  transition: transform var(--motion-duration) var(--motion-ease), opacity var(--motion-duration) var(--motion-ease);
}
.nav__drawer { display: none; }

/* ============================================================
   Footer — deepest navy, typeset brand + diamond glyph
   ============================================================ */
.site-footer {
  background: var(--color-primary-deep);
  color: var(--color-on-primary);
}
.footer__inner {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}
.footer__wordmark {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--color-on-primary);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer__diamond {
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  transform: rotate(45deg);
  flex: none;
}
.footer__positioning {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-on-primary-dim);
  margin-top: 1rem;
  max-width: 34ch;
}
.footer__col-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-on-primary-dim);
  margin-bottom: 1rem;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__nav a {
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-on-primary);
  width: fit-content;
  box-shadow: inset 0 -1px 0 transparent;
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}
.footer__nav a:hover { box-shadow: inset 0 -2px 0 var(--color-accent); }
.footer__cadence {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-on-primary-dim);
  margin-bottom: 1.3rem;
  line-height: 1.7;
}
.footer__cta { margin-top: 0.25rem; }
.footer__legal {
  border-top: 1px solid var(--color-hairline-navy);
}
.footer__legal p {
  width: var(--shell);
  margin-inline: auto;
  padding-block: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--color-on-primary-dim);
}

/* ============================================================
   HERO — inset plate + navy card as object + corner-breaking tiles
   ============================================================ */
.hero { background: var(--color-bg); padding-block: clamp(2rem, 5vw, 4.5rem) clamp(3.5rem, 8vw, 7rem); }
.hero__stage {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  row-gap: 1.5rem;
}
.hero__plate {
  position: relative;
  grid-column: 5 / 13;
  grid-row: 1;
  aspect-ratio: 16 / 10;
  overflow: visible;
  z-index: 1;
}
.hero__plate > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 30px 70px -30px rgba(16, 22, 46, 0.4);
}
.hero__card {
  grid-column: 1 / 8;
  grid-row: 1;
  z-index: 3;
  align-self: center;
  position: relative;
  background: var(--color-primary);
  color: var(--color-on-primary);
  padding: clamp(1.6rem, 3vw, 2.75rem);
  transform: rotate(-2deg);
  box-shadow: 0 24px 60px -24px rgba(16, 22, 46, 0.55);
  max-width: 34rem;
}
.hero__tag {
  position: absolute;
  top: -9px;
  right: -9px;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  transform: rotate(45deg);
}
.hero__headline { color: var(--color-on-primary); }
.hero__tile {
  position: absolute;
  width: clamp(84px, 9vw, 128px);
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(16, 22, 46, 0.28);
  border: 4px solid var(--color-bg);
  z-index: 2;
}
.hero__tile img { width: 100%; height: 100%; object-fit: cover; }
.hero__tile--tr { top: -28px; right: -22px; }
.hero__tile--br { bottom: -30px; right: 40px; }
.hero__tile--bl { bottom: -34px; left: -30px; z-index: 4; }
.hero__foot {
  width: var(--shell);
  margin-inline: auto;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  max-width: 52ch;
}
.hero__lead {
  font-family: var(--font-secondary);
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.5;
  color: var(--color-text);
  font-weight: 500;
}
.hero__cadence {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  display: inline-block;
}
.hero__cta { margin-top: 1.6rem; }

/* ============================================================
   THE ARGUMENT — navy geometry panel
   ============================================================ */
.argument__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.argument__graphic {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}
.argument__graphic img { width: 100%; height: auto; }
.argument__geo-line {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--color-on-primary);
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 2rem;
  max-width: 42ch;
}
.argument__geo-line .diamond-turn { position: relative; top: 0.05em; }

/* ============================================================
   NUMBERED METHOD INDEX (home preview + how-it-works)
   ============================================================ */
.method__grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.steps { list-style: none; margin-top: 0.5rem; }
.steps > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
}
.steps > li:last-child { border-bottom: 1px solid var(--color-border); }
.step__num {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  padding-top: 0.35rem;
}
.step__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.05;
  color: var(--color-text);
}
.step__body {
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-top: 0.4rem;
  max-width: 52ch;
}
.method__terminus {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}
.method__terminus .mark { width: 14px; height: 14px; }
.method__plate { position: relative; }
.method__plate img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 24px 60px -30px rgba(16, 22, 46, 0.4);
}
.method__plate--low { align-self: end; transform: translateY(2.5rem); }

/* Stepped seat-to-diamond markers (how-it-works method) */
.seat-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.4rem);
  margin: 2.5rem 0;
}
.seat {
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  flex: none;
}
.seat--live { background: var(--color-accent); transform: rotate(45deg); }
.seat-rule { flex: 1 1 24px; height: 1px; background: var(--color-border); min-width: 16px; }

/* ============================================================
   FOUNDERS (home preview + about header)
   ============================================================ */
.founders__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.founders__marginal {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  align-self: start;
}
.founders__names {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}
.plate-cluster { position: relative; }
.plate-cluster__main img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 24px 60px -30px rgba(16, 22, 46, 0.4);
}
.plate-cluster__inset {
  position: absolute;
  width: clamp(120px, 16vw, 200px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid var(--color-bg);
  box-shadow: 0 14px 36px rgba(16, 22, 46, 0.28);
}
.plate-cluster__inset img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.plate-cluster__inset--a { bottom: -34px; left: -26px; }
.plate-cluster__inset--b { bottom: -46px; left: clamp(90px, 12vw, 150px); }

/* ============================================================
   PROOF GALLERY — varied-scale mosaic, one doubled
   ============================================================ */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(120px, 15vw, 200px);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}
.mosaic figure { position: relative; overflow: hidden; margin: 0; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.mosaic .lightbox-zoomable:hover { transform: scale(1.03); }
.mosaic__a { grid-column: span 1; grid-row: span 1; }
.mosaic__b { grid-column: span 1; grid-row: span 1; }
.mosaic__big { grid-column: span 2; grid-row: span 2; transform: translateY(-20px); }
.mosaic__wide { grid-column: span 2; grid-row: span 1; }
.mosaic__tall { grid-column: span 1; grid-row: span 2; }
.mosaic figcaption {
  position: absolute;
  left: 0; bottom: 0;
  padding: 0.5rem 0.7rem;
  font-family: var(--font-secondary);
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--color-on-primary);
  background: linear-gradient(to top, rgba(16,22,46,0.72), transparent);
  width: 100%;
}

/* ============================================================
   CLOSING BAND — navy panel beside inset empty-table plate
   ============================================================ */
.closing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.closing__body .cadence { display: block; margin: 1.5rem 0; }
.closing__plate img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 60%;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.5);
}
.closing__cta { margin-top: 0.5rem; }

/* ============================================================
   BROADSHEET 2-COL (about story, faq)
   ============================================================ */
.broadsheet__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
}
.broadsheet__two-col {
  columns: 2;
  column-gap: 2.5rem;
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
}
.broadsheet__two-col p { break-inside: avoid-column; margin-bottom: 1.1rem; }
.broadsheet__single {
  max-width: 66ch;
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-top: 1.6rem;
}
.broadsheet__single p + p { margin-top: 1.15rem; }
.pull {
  font-family: var(--font-primary);
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--color-text);
  border-left: 3px solid var(--color-accent);
  padding-left: 1.4rem;
  margin: 2.5rem 0;
  max-width: 24ch;
}
.broadsheet__aside { position: relative; }
.portrait-plate { margin-bottom: 1.5rem; }
.portrait-plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 18px 44px -24px rgba(16, 22, 46, 0.4);
}
.portrait-plate figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  margin-top: 0.6rem;
}

/* ============================================================
   NAVY INDEX (beliefs) + RULED DIFFERENTIATOR ROW (no barriers)
   ============================================================ */
.belief-index { list-style: none; position: relative; z-index: 1; }
.belief-index > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-hairline-navy);
  align-items: baseline;
}
.belief-index > li:last-child { border-bottom: 1px solid var(--color-hairline-navy); }
.belief__num { font-family: var(--font-mono); font-size: 0.9rem; color: var(--color-accent); }
.belief__head { font-family: var(--font-primary); font-weight: 700; font-size: 1.5rem; color: var(--color-on-primary); }
.belief__gloss { font-family: var(--font-secondary); font-size: 1.0625rem; line-height: 1.6; color: var(--color-on-primary-dim); margin-top: 0.35rem; max-width: 60ch; }

.belief-section { position: relative; }
.belief-section .diamond-field {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--color-hairline-navy) 46%, var(--color-hairline-navy) 54%, transparent 54%);
  background-size: 60px 60px;
  opacity: 0.5;
  pointer-events: none;
}

.rule-row { list-style: none; }
.rule-row > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: baseline;
  padding: 1.8rem 0;
  border-top: 1px solid var(--color-border);
}
.rule-row > li:last-child { border-bottom: 1px solid var(--color-border); }
.rule-row__claim { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1; color: var(--color-text); }
.rule-row__gloss { font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.04em; color: var(--color-text-secondary); margin-top: 0.7rem; max-width: 46ch; line-height: 1.6; }

/* ============================================================
   FAQ accordion (broadsheet Q&A)
   ============================================================ */
.faq { border-top: 1px solid var(--color-border); }
.faq__item { border-bottom: 1px solid var(--color-border); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.1rem;
  align-items: baseline;
  padding: 1.6rem 0;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.1;
  color: var(--color-text);
}
.faq__num { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 500; color: var(--color-text-secondary); }
.faq__qmark {
  width: 14px; height: 14px; background: var(--color-accent);
  transform: rotate(0deg);
  transition: transform var(--motion-duration-slow) var(--motion-ease);
  align-self: center;
}
.faq__item.is-open .faq__qmark { transform: rotate(45deg); }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--motion-duration-slow) var(--motion-ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a p {
  font-family: var(--font-secondary);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text-secondary);
  max-width: 62ch;
  padding: 0 0 1.8rem 2rem;
}
@media (prefers-reduced-motion: reduce) {
  .faq__a { transition: none; }
  .faq__qmark { transition: none; }
}

/* ============================================================
   PAGE HEADERS (interior)
   ============================================================ */
.page-header { padding-block: clamp(3.5rem, 7vw, 6.5rem) clamp(2.5rem, 5vw, 4rem); }
.page-header__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.page-header__plate img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 24px 60px -30px rgba(16, 22, 46, 0.4);
}
.page-header--type-only { text-align: left; }
.page-header--type-only .cadence--lg {
  display: inline-block;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   VISIT — contact form
   ============================================================ */
.visit__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: clamp(1.6rem, 3vw, 2.75rem);
  position: relative;
}
.form-row { margin-bottom: 1.3rem; }
.form-row label {
  display: block;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--font-secondary);
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid var(--color-border);
  padding: 0.75rem 0.9rem;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(62, 74, 107, 0.18);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-hint { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.03em; color: var(--color-text-secondary); margin-top: 0.4rem; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }

.expect-list { list-style: none; counter-reset: expect; }
.expect-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--color-border);
  align-items: baseline;
}
.expect-list > li:last-child { border-bottom: 1px solid var(--color-border); }
.expect__num { font-family: var(--font-mono); font-size: 0.85rem; color: var(--color-accent); }
.expect__text { font-family: var(--font-secondary); font-size: 1.0625rem; line-height: 1.6; color: var(--color-text); }
.expect__text strong { font-family: var(--font-primary); font-weight: 700; }

/* Where & when — texture band */
.where-band {
  position: relative;
  background: var(--color-primary);
  color: var(--color-on-primary);
}
.where-band__texture { overflow: hidden; }
.where-band__texture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.where-band__texture img { width: 100%; height: 100%; object-fit: cover; opacity: 0.22; }
.where-band__inner { position: relative; z-index: 1; }
.where-band .cadence--lg { color: var(--color-on-primary); }
.where-band__loc { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--color-on-primary); margin: 1.2rem 0 1rem; }
.where-band__note { font-family: var(--font-secondary); font-size: 1.0625rem; line-height: 1.65; color: var(--color-on-primary-dim); max-width: 52ch; }

/* Beyond mondays — small band */
.note-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.note-band__plate img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; box-shadow: 0 24px 60px -30px rgba(16,22,46,0.4); }

.side-plate img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  box-shadow: 0 18px 44px -26px rgba(16, 22, 46, 0.4);
  margin-top: 2rem;
}

/* ============================================================
   404
   ============================================================ */
.error-page {
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.error-page .display { color: var(--color-text); }

/* generic section intro block */
.section-intro { max-width: 60ch; }
.section-intro .h2 { margin-bottom: 1rem; }
.stack-sm > * + * { margin-top: 1rem; }
.mt-lg { margin-top: clamp(1.5rem, 3vw, 2.5rem); }

/* ============================================================
   Gallery lightbox chrome (scaffolded mechanism — restyled)
   ============================================================ */
.lightbox-zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed; inset: 0; z-index: 320;
  display: none; align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
}
.lightbox.is-open { display: flex; animation: lightbox-in var(--motion-duration) var(--motion-ease); }
@keyframes lightbox-in { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .lightbox.is-open { animation: none; } }
.lightbox__scrim { position: absolute; inset: 0; background: rgba(16, 22, 46, 0.9); }
.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;
  box-shadow: 0 24px 80px -16px rgba(0, 0, 0, 0.6);
  border: 5px solid var(--color-bg);
}
.lightbox__caption {
  font-family: var(--font-secondary); font-size: 0.9rem; line-height: 1.5;
  color: var(--color-bg); 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-bg);
}
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; z-index: 2; width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  border: none; cursor: pointer; background: var(--color-bg); color: var(--color-primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); font-size: 1.15rem; line-height: 1;
}
.lightbox__close:hover, .lightbox__close:focus-visible,
.lightbox__prev:hover, .lightbox__prev:focus-visible,
.lightbox__next:hover, .lightbox__next:focus-visible { background: var(--color-accent); color: #fff; }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox__caption[hidden], .lightbox__counter[hidden],
.lightbox__prev[hidden], .lightbox__next[hidden] { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav { grid-template-columns: 1fr auto 1fr; }
  .nav__links-left, .nav__links-right { display: none; }
  .nav__toggle { display: flex; }
  .nav__logo { justify-self: start; }

  .site-header.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav__drawer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem var(--spacing-base, 8px);
    padding-inline: max(4vw, 1rem);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
  }
  .nav__drawer[hidden] { display: none; }
  .nav__drawer-link {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--color-text);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--color-border);
  }
  .nav__cta--drawer { width: fit-content; margin-top: 1rem; font-size: 1.05rem; padding: 0.8rem 1.35rem; }

  .argument__grid,
  .method__grid,
  .founders__grid,
  .closing__grid,
  .page-header__grid,
  .visit__grid,
  .note-band__grid { grid-template-columns: 1fr; }

  .founders__marginal { writing-mode: horizontal-tb; transform: none; margin-bottom: 1rem; }
  .method__plate--low { transform: none; margin-top: 1.5rem; }
  .argument__graphic { justify-self: start; margin-top: 1.5rem; }
  .plate-cluster__inset--b { left: auto; right: -18px; }
}

@media (max-width: 768px) {
  /* Hero re-stacks — card keeps its off-true rotation + diamond tag */
  .hero__stage { display: block; }
  .hero__plate { grid-column: auto; width: 100%; margin-bottom: -2.5rem; }
  .hero__card {
    grid-column: auto;
    position: relative;
    max-width: none;
    margin: 0 auto;
    width: 88%;
    transform: rotate(-2deg);
  }
  .hero__headline { font-size: clamp(2.75rem, 12vw, 4rem); }
  .hero__tile--tr { display: none; }          /* reduce to two, never zero */
  .hero__tile--br { top: -26px; right: -14px; bottom: auto; }
  .hero__tile--bl { bottom: auto; top: 40%; left: -22px; }
  .hero__foot { margin-top: 3.5rem; }

  .broadsheet__grid { grid-template-columns: 1fr; }
  .broadsheet__two-col { columns: 1; }
  .broadsheet__aside { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

  .mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(140px, 34vw, 220px);
  }
  .mosaic__big { grid-column: span 2; grid-row: span 2; transform: none; }
  .mosaic__wide { grid-column: span 2; }
  .mosaic__tall { grid-row: span 1; }

  .footer__inner { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 480px) {
  .broadsheet__aside { grid-template-columns: 1fr; }
  .plate-cluster__inset--a { width: 110px; left: -12px; bottom: -24px; }
  .plate-cluster__inset--b { display: none; }
  .seat { width: 18px; height: 18px; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Darker Grotesque';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq77UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7_UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7HUJEUJQOM.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq77UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7_UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7HUJEUJQOM.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq77UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7_UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7HUJEUJQOM.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq77UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7_UJEUJQOMuqA.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: 'Darker Grotesque';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/U9MH6cuh-mLQlC4BKCtayOfARkSVq7HUJEUJQOM.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;
}
/* latin-ext */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0She1ZuWi3hKpA.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: 'Instrument Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0SZe1ZuWi3g.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;
}
/* latin-ext */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0She1ZuWi3hKpA.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: 'Instrument Sans';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0SZe1ZuWi3g.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;
}
/* latin-ext */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0She1ZuWi3hKpA.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: 'Instrument Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0SZe1ZuWi3g.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;
}
/* latin-ext */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0She1ZuWi3hKpA.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: 'Instrument Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/pxiTypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr0SZe1ZuWi3g.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;
}
/* latin-ext */
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5yZmE-Z-lxguQ.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: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5KZmE-Z-lw.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;
}
/* latin-ext */
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5yZmE-Z-lxguQ.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: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5KZmE-Z-lw.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;
}
/* latin-ext */
@font-face {
  font-family: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5yZmE-Z-lxguQ.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: 'Spline Sans Mono';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/R70BjzAei_CDNLfgZxrW6wrZOF2WX5KZmE-Z-lw.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;
}
