/*
 * styles.css — Creative Cargo Lifts
 * Design language: engineered + warm. Deep harbor navy + a single copper accent
 * rendered as one thin structural "lift-rail" spine that threads the whole site:
 * docking hero type, binding service lines, climbing the product lineup, capping
 * the footer. Specs set as literal engineered elevation ticks in IBM Plex Mono.
 * (design-direction.md is binding.)
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --color-primary:   #0E2436; /* harbor navy — structural ink */
  --color-primary-2: #17374E; /* navy ground (CTA base, scrims) */
  --color-secondary: #1E4E74; /* harbor blue — links, passenger tint */
  --color-accent:    #D97B3F; /* copper — the rail, the single lit element */
  --color-accent-dk: #B7602B; /* copper hover */
  --color-bg:        #F7F6F2; /* warm paper — default ground */
  --color-surface:   #E8EEF3; /* pale harbor — alternate band, cards, fields */
  --color-text:      #0E2436;
  --color-text-secondary: #56606B;
  --color-border:    #DCE4EB;

  --font-primary:   'Archivo', 'Helvetica Neue', Arial, sans-serif; /* display */
  --font-secondary: 'IBM Plex Sans', system-ui, sans-serif;         /* body */
  --font-mono:      'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  --font-size-base: 16px;
  --spacing-base: 8px;

  --motion-duration: 200ms;
  --motion-duration-slow: 2600ms;
  --motion-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --shell: 1180px;
  --rail-w: 2px;
}

/* ============================================================
   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);
  color: var(--color-text);
  line-height: 1.6;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.01em;
}

:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
}

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

/* ============================================================
   Reveal-gating floor — content visible without JS.
   Base state VISIBLE; hidden only when html.js is confirmed.
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--motion-ease), transform .6s var(--motion-ease);
}
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Shared layout primitives
   ============================================================ */
.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }
.section { padding-block: clamp(3.25rem, 7vw, 6rem); }
.section--paper   { background: var(--color-bg); }
.section--harbor  { background: var(--color-surface); }
.section--navy    { background: var(--color-primary); color: var(--color-bg); }

.lead {
  font-family: var(--font-secondary);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 62ch;
}
.body-copy { max-width: 62ch; color: var(--color-text-secondary); }
.body-copy p + p { margin-top: 1rem; }

/* Stamped datum/level label — the site's section-opener grammar.
   Replaces the house eyebrow: uppercase Archivo, tracked, 2px copper underrule. */
.datum-label {
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8125rem;            /* 13px — uppercase floor */
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.5rem;
  position: relative;
}
.datum-label::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 2.6rem; height: 2px;
  background: var(--color-accent);
}
.datum-label .datum-tick {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--color-accent);
}
.section--navy .datum-label { color: var(--color-bg); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-primary); font-weight: 700;
  font-size: 1rem; line-height: 1;
  padding: 0.85rem 1.4rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease),
              border-color var(--motion-duration) var(--motion-ease);
}
.btn--copper { background: var(--color-accent); color: var(--color-primary); }
.btn--copper:hover { background: var(--color-accent-dk); color: var(--color-bg); }
.btn--ghost {
  background: transparent; color: var(--color-primary);
  border-color: var(--color-border);
}
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-primary); }
.section--navy .btn--ghost { color: var(--color-bg); border-color: color-mix(in srgb, var(--color-bg) 45%, transparent); }
.section--navy .btn--ghost:hover { border-color: var(--color-accent); }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-primary); font-weight: 700;
  color: var(--color-secondary);
}
.text-link i { transition: transform var(--motion-duration) var(--motion-ease); }
.text-link:hover i { transform: translateX(4px); }

.mono-tick { font-family: var(--font-mono); color: var(--color-accent); font-size: 0.8rem; }

/* ============================================================
   Navigation — logo-left, menu-right, persistent phone CTA
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}
.nav.is-scrolled { box-shadow: 0 6px 20px -12px color-mix(in srgb, var(--color-primary) 55%, transparent); }
.nav__inner {
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  position: relative;
}
/* Memorable decision: a 2px copper rule sits flush under the bar and rises 8px
   into a short vertical tick at the logo's left edge — the lift-rail motif's
   first appearance, before the hero. */
.nav__inner::before {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 2px; height: 10px;
  background: var(--color-accent);
}
.nav__brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.nav__brand img {
  height: 52px; width: auto; max-width: 210px; display: block;
}
.nav__links {
  display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem);
  list-style: none;
}
.nav__link {
  font-family: var(--font-secondary);
  font-size: 1rem; /* 16px — above the 15px floor */
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
  padding-block: 0.4rem;
}
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--color-secondary); }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--color-accent);
}
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-primary); font-weight: 700;
  background: var(--color-accent); color: var(--color-primary);
  padding: 0.6rem 1.05rem; border-radius: 4px;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--color-accent-dk); color: var(--color-bg); }
.nav__cta .nav__cta-num { font-family: var(--font-mono); font-size: 0.95rem; }
.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  color: var(--color-primary); font-size: 1.7rem; line-height: 1;
  padding: 0.25rem;
}

/* ============================================================
   HERO — custom:hero-elevation-register-banded-proof-photo-docked-rail
   ============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; overflow: hidden; }
.hero__image {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
/* Bottom scrim carries the docked type at AA */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom,
    color-mix(in srgb, var(--color-primary) 20%, transparent) 0%,
    transparent 34%,
    color-mix(in srgb, var(--color-primary) 78%, black) 100%);
}
/* Copper rail spine down the left edge */
.hero__rail {
  position: absolute; top: 0; bottom: 0;
  left: clamp(18px, 5vw, 60px);
  width: var(--rail-w);
  background: var(--color-accent);
  z-index: 3;
}
/* Signature motion: a single specular light rides the rail bottom-to-top once. */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero__rail::before {
    content: ""; position: absolute; left: -2px; width: 6px; height: 20%;
    background: linear-gradient(to top, transparent,
      color-mix(in srgb, var(--color-accent) 55%, white));
    filter: blur(0.5px);
    animation: railrise var(--motion-duration-slow) var(--motion-ease) 0.35s 1 both;
  }
}
@keyframes railrise {
  from { transform: translateY(0%); opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  to   { transform: translateY(-480%); opacity: 0; }
}
/* Datum hairlines crossing the photo */
.hero__datums { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero__datum {
  position: absolute; left: clamp(18px, 5vw, 60px); right: 0;
  height: 1px; background: color-mix(in srgb, var(--color-accent) 65%, transparent);
}
.hero__datum span {
  position: absolute; left: 0.75rem; top: -0.95rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: color-mix(in srgb, var(--color-accent) 92%, white);
  letter-spacing: 0.05em;
  text-shadow: 0 1px 3px color-mix(in srgb, var(--color-primary) 70%, transparent);
}
.hero__datum--grade { bottom: 20%; }
.hero__datum--mid   { top: 46%; }
.hero__datum--deck  { top: 15%; }

.hero__inner {
  position: relative; z-index: 4;
  width: min(100% - 2.5rem, var(--shell));
  margin-inline: auto;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  padding-left: clamp(2rem, 7vw, 5.5rem); /* dock to the rail */
}
.hero__levels { list-style: none; display: flex; gap: 1.4rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.hero__level {
  font-family: var(--font-primary); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.8125rem; color: var(--color-bg);
  display: inline-flex; align-items: baseline; gap: 0.4rem;
}
.hero__level .num { font-family: var(--font-mono); color: var(--color-accent); letter-spacing: 0; }
.hero__level--active { color: var(--color-accent); }
.hero__headline {
  font-family: var(--font-primary); font-weight: 800; line-height: 0.98;
  font-size: clamp(2.6rem, 6.2vw, 5.4rem);
  color: var(--color-bg);
  max-width: 18ch;
  text-wrap: balance;
}
.hero__sub {
  margin-top: 1.1rem;
  font-family: var(--font-secondary);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: color-mix(in srgb, var(--color-bg) 92%, transparent);
  max-width: 46ch;
}
.hero__actions {
  margin-top: 1.8rem; display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap;
}
.hero__phone {
  font-family: var(--font-primary); font-weight: 800;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--color-bg); display: inline-flex; align-items: center; gap: 0.5rem;
}
.hero__phone:hover { color: var(--color-accent); }
.hero__phone .mono-tick { font-size: 0.7rem; }

/* ============================================================
   Home — Credibility Register (GRADE)
   ============================================================ */
.credibility { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: end; }
.credibility__claim {
  font-family: var(--font-primary); font-weight: 700;
  font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.04;
  color: var(--color-primary); min-width: 0; max-width: 16ch;
}
.credibility__claim .accent { color: var(--color-secondary); }
.credibility__creds { min-width: 0; display: grid; gap: 1.1rem; }
.credibility__cred { display: flex; gap: 0.7rem; }
.credibility__cred i { color: var(--color-accent); font-size: 1.2rem; margin-top: 0.15rem; flex: 0 0 auto; }
.credibility__cred p { color: var(--color-text-secondary); }
.credibility__cred strong { color: var(--color-primary); font-weight: 600; }

/* ============================================================
   Rail-bound sequence (What We Do / Service Lines) — the copper spine
   ============================================================ */
.railseq { position: relative; padding-left: clamp(1.25rem, 3vw, 2.25rem); }
.railseq::before {
  content: ""; position: absolute; left: 0; top: 0.4rem; bottom: 0.4rem;
  width: var(--rail-w); background: var(--color-accent);
}
.railrow {
  position: relative;
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem 1.4rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--color-border);
}
.railrow:last-child { border-bottom: 0; }
.railrow::before { /* rung dot on the rail */
  content: ""; position: absolute; left: calc(-1 * clamp(1.25rem, 3vw, 2.25rem) - 3px);
  top: 1.75rem; width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-bg); border: 2px solid var(--color-accent);
}
.section--harbor .railrow::before { background: var(--color-surface); }
.railrow__num {
  font-family: var(--font-mono); font-size: 1.05rem; font-weight: 500;
  color: var(--color-accent); transition: transform var(--motion-duration) var(--motion-ease);
}
.railrow:hover .railrow__num { transform: translateX(3px); }
.railrow__body { min-width: 0; }
.railrow__label { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--color-primary); }
.railrow__scope { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.05em; color: var(--color-secondary); text-transform: uppercase; margin-top: 0.15rem; }
.railrow__copy { margin-top: 0.5rem; color: var(--color-text-secondary); max-width: 60ch; }
.railrow__media { margin-top: 1rem; overflow: hidden; border-radius: 4px; max-width: 420px; }
.railrow__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-duration-slow, 240ms) var(--motion-ease); }
.railseq-foot { margin-top: 1.6rem; }

/* What We Do — service rail beside the operation video */
.services-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.services-layout__rail { min-width: 0; }

/* Video card sized to native 9:16 */
.video-card { min-width: 0; }
.video-card__frame {
  position: relative;
  max-width: 300px; margin-inline: auto;
  aspect-ratio: 9 / 16;
  background: var(--color-primary);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 18px 44px -20px color-mix(in srgb, var(--color-primary) 70%, transparent);
}
.video-card__frame video { width: 100%; height: 100%; object-fit: cover; }
/* Copper play affordance — only under html.js (native controls remain without JS) */
.video-card__play { display: none; }
html.js .video-card__play {
  display: flex; align-items: center; justify-content: center;
  position: absolute; inset: 0; z-index: 2;
  border: none; cursor: pointer;
  background: color-mix(in srgb, var(--color-primary) 22%, transparent);
  transition: background var(--motion-duration) var(--motion-ease);
}
html.js .video-card__play:hover { background: color-mix(in srgb, var(--color-primary) 10%, transparent); }
.video-card__play span {
  width: 4.4rem; height: 4.4rem; border-radius: 50%;
  border: 3px solid var(--color-accent);
  background: color-mix(in srgb, var(--color-primary) 55%, transparent);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-bg); font-size: 1.6rem;
}
.video-card__play.is-hidden { display: none; }
.video-card__caption { margin-top: 0.8rem; font-family: var(--font-mono); font-size: 0.8rem; color: var(--color-text-secondary); text-align: center; }

/* ============================================================
   The Lineup — ascending model index climbing the rail
   ============================================================ */
.lineup { position: relative; padding-left: clamp(1.25rem, 3vw, 2.25rem); }
.lineup::before {
  content: ""; position: absolute; left: 0; top: 0.4rem; bottom: 0.4rem;
  width: var(--rail-w); background: var(--color-accent);
}
.lineup__row {
  position: relative;
  display: grid; grid-template-columns: auto 1fr auto; gap: 1rem 1.4rem;
  align-items: center;
  padding: 1.1rem 0; border-bottom: 1px solid var(--color-border);
  transition: transform var(--motion-duration) var(--motion-ease);
}
.lineup__row:last-child { border-bottom: 0; }
.lineup__row::before {
  content: ""; position: absolute; left: calc(-1 * clamp(1.25rem, 3vw, 2.25rem) - 3px);
  top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--color-bg); border: 2px solid var(--color-accent);
  transition: box-shadow var(--motion-duration) var(--motion-ease);
}
.lineup__row:hover { transform: translateX(2px); }
.lineup__row:hover::before { box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-accent) 22%, transparent); }
.lineup__num { font-family: var(--font-mono); color: var(--color-accent); font-size: 1rem; }
.lineup__main { min-width: 0; }
.lineup__name { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--color-primary); }
.lineup__spec { font-family: var(--font-mono); font-size: 0.78rem; color: var(--color-text-secondary); margin-top: 0.15rem; letter-spacing: 0.02em; }
.lineup__tag { display: inline-block; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-secondary); border: 1px solid color-mix(in srgb, var(--color-secondary) 40%, transparent); padding: 0.1rem 0.4rem; border-radius: 3px; margin-top: 0.4rem; }
.lineup__thumb { width: 96px; height: 72px; overflow: hidden; border-radius: 4px; background: var(--color-surface); flex: 0 0 auto; }
.lineup__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--motion-duration) var(--motion-ease); }
.lineup__row:hover .lineup__thumb img { transform: translateY(-3px) scale(1.04); }

/* ============================================================
   CTA closer (DECK)
   ============================================================ */
.closer { position: relative; background: linear-gradient(120deg, var(--color-primary) 0%, var(--color-primary-2) 100%); color: var(--color-bg); }
.closer__top-rule { height: 2px; background: var(--color-accent); }
.closer__inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.closer__label { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 0.8rem; }
.closer__headline { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.9rem, 3.6vw, 3rem); color: var(--color-bg); line-height: 1.02; min-width: 0; }
.closer__right { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.closer__phone { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.5rem); color: var(--color-bg); display: inline-flex; align-items: center; gap: 0.5rem; }
.closer__phone:hover { color: var(--color-accent); }
.closer__phone .mono-tick { font-size: 0.72rem; }

/* ============================================================
   Interior page header
   ============================================================ */
.page-head { padding-block: clamp(2.75rem, 6vw, 4.5rem) clamp(1.75rem, 3vw, 2.5rem); }
.page-head__title { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.6rem); line-height: 1.0; color: var(--color-primary); max-width: 20ch; }
.page-head__lead { margin-top: 1.1rem; }

/* Services header — bare oversized exclusivity statement */
.exclusivity__statement {
  font-family: var(--font-primary); font-weight: 800;
  font-size: clamp(2.2rem, 5.6vw, 4.4rem); line-height: 1.0;
  color: var(--color-primary); max-width: 16ch;
}
.exclusivity__statement .only { color: var(--color-accent); font-style: normal; }
.exclusivity__seal {
  margin-top: 1.4rem;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em;
  font-size: 0.8rem; color: var(--color-primary);
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.exclusivity__seal .bracket { color: var(--color-accent); font-weight: 700; }
.exclusivity__lead { margin-top: 1.3rem; }

/* Contact header — oversized phone as the headline */
.contact-head__rubric { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; color: var(--color-text-secondary); margin-bottom: 0.7rem; }
.contact-head__phone {
  font-family: var(--font-primary); font-weight: 800;
  font-size: clamp(2.4rem, 8vw, 5rem); line-height: 0.98;
  color: var(--color-primary);
  display: inline-flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap;
}
.contact-head__phone:hover { color: var(--color-secondary); }
.contact-head__phone .mono-tick { font-size: 0.9rem; align-self: flex-start; }
.contact-head__sub { margin-top: 0.9rem; }

/* ============================================================
   Product model sections
   ============================================================ */
.model {
  position: relative;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
  scroll-margin-top: 88px;
}
.model__gallery { min-width: 0; }
.model__specs { min-width: 0; }
.model__stop {
  font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em;
  color: var(--color-accent); text-transform: uppercase; margin-bottom: 0.5rem;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.model__stop .bar { width: 1.6rem; height: 2px; background: var(--color-accent); display: inline-block; }
.model--passenger .model__stop { color: var(--color-secondary); }
.model--passenger .model__stop .bar { background: var(--color-secondary); }
.model__name { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.6rem); color: var(--color-primary); }
.model--passenger .model__name { color: var(--color-secondary); }
.model__diff { margin-top: 0.6rem; font-size: 1.05rem; color: var(--color-text-secondary); max-width: 52ch; }
.model__passenger-tag { display: inline-block; margin-top: 0.7rem; font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-secondary); border: 1px solid color-mix(in srgb, var(--color-secondary) 45%, transparent); padding: 0.15rem 0.5rem; border-radius: 3px; }

.speclist { list-style: none; margin-top: 1.3rem; display: grid; gap: 0.65rem; }
.speclist li { display: grid; grid-template-columns: auto 1fr; gap: 0.7rem; align-items: baseline; }
.speclist .tick { color: var(--color-accent); font-size: 0.95rem; line-height: 1.2; }
.model--passenger .speclist .tick { color: var(--color-secondary); }
.speclist .k { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--color-text-secondary); }
.speclist .v { font-family: var(--font-mono); font-size: 0.92rem; color: var(--color-primary); font-weight: 500; }
.speclist li .pair { display: flex; flex-direction: column; }

/* Carousel */
.carousel { position: relative; }
.carousel__viewport { overflow: hidden; border-radius: 4px; background: var(--color-surface); }
.carousel__track { display: flex; transition: transform 360ms var(--motion-ease); }
.carousel__slide { min-width: 100%; position: relative; }
.carousel__slide figure { margin: 0; position: relative; }
.carousel__slide img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--color-surface); }
.carousel__slide--product img { object-fit: contain; background: #fff; padding: 1rem; }
.carousel__slide figcaption { position: absolute; left: 0; right: 0; bottom: 0; font-family: var(--font-mono); font-size: 0.72rem; color: var(--color-bg); background: linear-gradient(to top, color-mix(in srgb, var(--color-primary) 82%, transparent), transparent); padding: 1.4rem 0.9rem 0.7rem; pointer-events: none; }
.carousel__viewport { position: relative; }
.carousel__controls { position: absolute; inset: 0; pointer-events: none; }
.carousel__btn {
  pointer-events: auto;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.6rem; height: 2.6rem; border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: color-mix(in srgb, var(--color-primary) 55%, transparent);
  color: var(--color-bg); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background var(--motion-duration) var(--motion-ease);
}
.carousel__btn:hover { background: var(--color-accent); color: var(--color-primary); }
.carousel__btn--prev { left: 0.7rem; }
.carousel__btn--next { right: 0.7rem; }
.carousel__dots { display: flex; gap: 0.4rem; justify-content: center; margin-top: 0.8rem; }
.carousel__dot { width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0; background: var(--color-border); cursor: pointer; }
.carousel__dot.is-active { background: var(--color-accent); }
.carousel__hint { margin-top: 0.6rem; font-family: var(--font-mono); font-size: 0.72rem; color: var(--color-text-secondary); text-align: center; }

/* Boat controller — off the rail, quieter card */
.accessory {
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: clamp(1.25rem, 3vw, 2.25rem);
}
.accessory__media { background: #fff; border-radius: 4px; overflow: hidden; }
.accessory__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; padding: 1rem; }
.accessory__label { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-secondary); }
.accessory__name { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.35rem, 2.4vw, 1.8rem); color: var(--color-primary); margin-top: 0.35rem; }
.accessory__copy { margin-top: 0.7rem; color: var(--color-text-secondary); max-width: 54ch; }

/* ============================================================
   About — founding band + team slot
   ============================================================ */
.founding { position: relative; overflow: hidden; color: var(--color-bg); }
.founding__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 65%; z-index: 0; }
.founding::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(105deg, color-mix(in srgb, var(--color-primary-2) 92%, black) 0%, color-mix(in srgb, var(--color-primary-2) 74%, transparent) 62%, color-mix(in srgb, var(--color-primary) 55%, transparent) 100%); }
.founding__inner { position: relative; z-index: 2; padding-left: clamp(2rem, 6vw, 4.5rem); }
.founding__rail { position: absolute; top: 2.5rem; bottom: 2.5rem; left: clamp(0.5rem, 3vw, 2rem); width: 2px; background: var(--color-accent); z-index: 2; }
.founding__title { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2rem, 4.6vw, 3.4rem); color: var(--color-bg); line-height: 1.02; max-width: 18ch; }
.founding__lead { margin-top: 1.2rem; color: color-mix(in srgb, var(--color-bg) 92%, transparent); max-width: 58ch; }
.founding__lead p + p { margin-top: 1rem; }
.founding__pull { margin-top: 1.6rem; font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.3rem); color: var(--color-accent); line-height: 1.05; max-width: 20ch; }
.section--navy .datum-label.on-image { color: var(--color-bg); }

.whoweare { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.whoweare__creds { list-style: none; display: grid; gap: 1rem; }
.whoweare__creds li { display: flex; gap: 0.7rem; }
.whoweare__creds i { color: var(--color-accent); font-size: 1.2rem; margin-top: 0.15rem; flex: 0 0 auto; }
.whoweare__creds .harbor i { color: var(--color-secondary); }
.whoweare__creds p { color: var(--color-text-secondary); }
.whoweare__ethos p { margin-bottom: 1rem; color: var(--color-text-secondary); }
.whoweare__ethos .relationship { font-family: var(--font-primary); font-weight: 800; font-size: clamp(1.4rem, 2.8vw, 2.1rem); color: var(--color-primary); line-height: 1.1; }
.team-slot {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 2px solid var(--color-accent);
  padding-top: 1.5rem;
}
.team-slot__row {
  margin-top: 1rem;
  border: 1px dashed var(--color-border);
  border-radius: 6px;
  padding: 1.5rem;
  background: var(--color-surface);
  color: var(--color-text-secondary);
  font-family: var(--font-mono); font-size: 0.85rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.team-slot__row i { color: var(--color-accent); font-size: 1.2rem; }

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(1.75rem, 5vw, 4rem); align-items: start; }
.contact-facts { list-style: none; display: grid; gap: 1.2rem; }
.contact-facts li { display: flex; gap: 0.8rem; align-items: flex-start; }
.contact-facts i { color: var(--color-accent); font-size: 1.3rem; margin-top: 0.15rem; flex: 0 0 auto; }
.contact-facts .k { font-family: var(--font-mono); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-secondary); display: block; }
.contact-facts .v { color: var(--color-primary); font-weight: 500; }
.contact-facts a.v { color: var(--color-secondary); }
.contact-facts a.v:hover { color: var(--color-primary); }

/* ============================================================
   Forms — .contact-form (partner.js owns submission)
   ============================================================ */
.form-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: clamp(1.35rem, 3vw, 2.25rem);
}
.form-panel__title { font-family: var(--font-primary); font-weight: 700; font-size: clamp(1.3rem, 2.4vw, 1.8rem); color: var(--color-primary); }
.form-panel__note { margin-top: 0.5rem; color: var(--color-text-secondary); font-size: 0.95rem; }
.contact-form { display: grid; gap: 1.1rem; margin-top: 1.4rem; }
.form-field { display: grid; gap: 0.4rem; }
.form-field label { font-family: var(--font-primary); font-weight: 600; font-size: 0.85rem; color: var(--color-primary); text-transform: uppercase; letter-spacing: 0.04em; }
.form-field input,
.form-field textarea {
  font-family: var(--font-secondary); font-size: 1rem;
  color: var(--color-primary);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  border-radius: 4px;
  padding: 0.7rem 0.85rem;
  width: 100%;
  transition: border-color var(--motion-duration) var(--motion-ease);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-border);
  border-bottom-color: var(--color-accent); /* rail motif at field scale */
}
.contact-form button[type="submit"] { justify-self: start; margin-top: 0.3rem; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 62vh; display: flex; align-items: center; }
.notfound__inner { text-align: left; }
.notfound__code { font-family: var(--font-mono); color: var(--color-accent); font-size: 1rem; letter-spacing: 0.1em; }
.notfound__title { font-family: var(--font-primary); font-weight: 800; font-size: clamp(2.2rem, 6vw, 4rem); color: var(--color-primary); margin-top: 0.6rem; }
.notfound__copy { margin-top: 1rem; }
.notfound__actions { margin-top: 1.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--color-surface); border-top: 2px solid var(--color-accent); color: var(--color-primary); }
.footer__inner {
  width: min(100% - 2.5rem, var(--shell)); margin-inline: auto;
  display: grid; grid-template-columns: 1.2fr 1fr 1.1fr; gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.25rem, 4vw, 3rem);
}
.footer__brand img { height: 44px; width: auto; max-width: 176px; display: block; }
.footer__descriptor { margin-top: 0.9rem; color: var(--color-text-secondary); font-size: 0.92rem; max-width: 30ch; }
.footer__col h4 { font-family: var(--font-primary); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--color-primary); margin-bottom: 0.9rem; }
.footer__nav { list-style: none; display: grid; gap: 0.55rem; }
.footer__nav a { color: var(--color-secondary); font-size: 0.95rem; }
.footer__nav a:hover { color: var(--color-primary); }
.footer__facts { list-style: none; display: grid; gap: 0.75rem; }
.footer__facts li { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--color-text-secondary); font-size: 0.92rem; }
.footer__facts i { color: var(--color-accent); margin-top: 0.1rem; flex: 0 0 auto; }
.footer__facts a { color: var(--color-secondary); }
.footer__facts a:hover { color: var(--color-primary); }
.footer__bottom {
  border-top: 1px solid var(--color-border);
}
.footer__bottom-inner {
  width: min(100% - 2.5rem, var(--shell)); margin-inline: auto;
  padding-block: 1.1rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--color-text-secondary);
}
.footer__bottom-inner p { font-family: var(--font-mono); font-size: 0.78rem; }

/* ============================================================
   Lightbox chrome — restyled to brand (mechanism unchanged)
   ============================================================ */
.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: color-mix(in srgb, var(--color-primary) 90%, transparent); }
.lightbox__frame { position: relative; z-index: 1; margin: 0; max-width: min(1200px, 92vw); max-height: 86vh; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.lightbox__img { max-width: 100%; max-height: 80vh; width: auto; height: auto; object-fit: contain; border: 1px solid color-mix(in srgb, var(--color-accent) 55%, transparent); box-shadow: 0 24px 80px -16px color-mix(in srgb, var(--color-primary) 70%, transparent); }
.lightbox__caption { font-family: var(--font-mono); font-size: 0.85rem; 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.8rem; height: 2.8rem; display: flex; align-items: center; justify-content: center; border: 2px solid var(--color-accent); cursor: pointer; background: var(--color-bg); color: var(--color-primary); 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: var(--color-primary); }
.lightbox__close { top: 1rem; right: 1rem; border-radius: 50%; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); border-radius: 50%; }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); border-radius: 50%; }
.lightbox__caption[hidden], .lightbox__counter[hidden], .lightbox__prev[hidden], .lightbox__next[hidden] { display: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .credibility,
  .services-layout,
  .closer__inner,
  .model,
  .accessory,
  .whoweare,
  .contact-grid,
  .footer__inner { grid-template-columns: 1fr; }
  .closer__inner { gap: 1.5rem; }
  .model__gallery { order: -1; } /* colorful install carousel always leads */
  .accessory__media { max-width: 320px; }
  .video-card__frame { max-width: 260px; }
}

@media (max-width: 768px) {
  .nav__links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 16px 24px -18px color-mix(in srgb, var(--color-primary) 60%, transparent);
    padding: 0.5rem 1.25rem 1rem;
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--color-border); }
  .nav__links li:last-child { border-bottom: 0; }
  .nav__link { display: block; padding: 0.9rem 0; font-size: 1.05rem; }
  /* Phone CTA is the FIRST drawer item on mobile — conversion path never buried */
  .nav__cta-li { order: -1; border-bottom: 1px solid var(--color-border); }
  .nav__cta { display: flex; justify-content: center; margin: 0.6rem 0; }
  .nav__toggle { display: inline-flex; align-items: center; }
  /* Type gains weight on mobile, never merely shrinks */
  .hero__headline { font-size: clamp(2.4rem, 9vw, 3.4rem); font-weight: 800; }
  .hero__inner { padding-left: clamp(1.5rem, 8vw, 3rem); }
  .credibility__claim { max-width: none; }
  .footer__bottom-inner { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero { min-height: 88vh; }
  .hero__levels { gap: 1rem; }
  .lineup__row { grid-template-columns: auto 1fr; }
  .lineup__thumb { display: none; }
  .speclist li { grid-template-columns: auto 1fr; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  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: 400;
  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: 400;
  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: 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;
}
/* 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;
}
