@charset "utf-8";
/* ==========================================================================
   DOVIUM — site.css
   Monochrome dark system. Inter + IBM Plex Mono, self-hosted.
   The wordmark is the logo: no icon precedes it, no D token sits beside it.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Fonts (self-hosted, font-display: swap, latin subset)
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-var-latin.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;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-400.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;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/ibm-plex-mono-500.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;
}

/* --------------------------------------------------------------------------
   2. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Approved palette — brand.css is the source of these values */
  --black: #0b0c0e;
  --white: #ffffff;
  --grey-700: #3f444c;
  --grey-500: #6b7280;
  --grey-300: #c7cbd1;
  --grey-150: #e4e7ec;
  --grey-050: #f5f6f8;

  /* Surfaces — neutral steps derived from Dovium Black, no hue introduced */
  --bg: #0b0c0e;
  --bg-raised: #0e1013;
  --bg-panel: #121418;
  --bg-inset: #08090b;

  /* Text — every value below meets WCAG 2.2 AA on --bg */
  --fg: #ffffff;
  --fg-2: #c7cbd1; /* 13.9:1 */
  --fg-3: #8a9099; /*  5.9:1 */
  --fg-4: #7a828c; /*  4.9:1 — minimum permitted for body-size text */

  /* Hairlines */
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.14);
  --line-3: rgba(255, 255, 255, 0.24);

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Layout */
  --wrap: 1240px;
  --gutter: clamp(20px, 4.5vw, 56px);
  --section-y: clamp(72px, 9vw, 132px);
  --radius: 3px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --fast: 160ms;
  --slow: 420ms;
}

/* --------------------------------------------------------------------------
   3. Reset / base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg-2);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  font-feature-settings: "cv05" 1, "ss03" 1, "tnum" 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--fg);
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }

a { color: inherit; }

ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd, dt, figure, blockquote { margin: 0; }

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

::selection { background: var(--white); color: var(--black); }

/* Focus — always visible, never removed */
:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  border-radius: 2px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--white);
  color: var(--black);
  padding: 12px 20px;
  font: 500 0.875rem/1 var(--font);
}
.skip-link:focus {
  left: var(--gutter);
  top: 12px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Layout primitives
   -------------------------------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(56px, 6vw, 88px); }

/* Full-bleed hairline: the rule runs past the column. One controlled
   exception per page, per the brand behaviour rule. */
.rule { border-top: 1px solid var(--line); }
.rule--bleed {
  border-top: 1px solid var(--line);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.grid { display: grid; gap: clamp(20px, 2.4vw, 32px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); }
}

/* --------------------------------------------------------------------------
   5. Typography
   -------------------------------------------------------------------------- */
.display {
  font-size: clamp(2.5rem, 6.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.036em;
  font-weight: 500;
}
.h2 {
  font-size: clamp(1.75rem, 3.3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.026em;
}
.h3 {
  font-size: clamp(1.15rem, 1.5vw, 1.375rem);
  line-height: 1.25;
  letter-spacing: -0.016em;
}
.h4 {
  font-size: 1.0625rem;
  line-height: 1.35;
  letter-spacing: -0.012em;
}

.lead {
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 62ch;
  text-wrap: pretty;
}
.body { color: var(--fg-2); max-width: 68ch; text-wrap: pretty; }
.small { font-size: 0.9375rem; line-height: 1.6; color: var(--fg-4); }

/* Technical label — the IBM Plex Mono voice */
.label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-block;
}
.label--dim { color: var(--fg-4); }

.idx {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--fg-4);
  font-variant-numeric: tabular-nums;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(36px, 4.6vw, 64px);
  max-width: 74ch;
}
.section-head__meta {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

/* --------------------------------------------------------------------------
   6. Buttons and links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 26px;
  font: 500 0.9375rem/1 var(--font);
  letter-spacing: -0.008em;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--fast) var(--ease),
    color var(--fast) var(--ease), border-color var(--fast) var(--ease),
    transform var(--fast) var(--ease);
}
.btn--primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn--primary:hover { background: var(--grey-150); border-color: var(--grey-150); }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--line-3); background: rgba(255, 255, 255, 0.04); }
.btn:active { transform: translateY(1px); }
.btn__arrow { transition: transform var(--fast) var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Inline arrow link */
.alink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 500 0.9375rem/1.4 var(--font);
  color: var(--fg);
  text-decoration: none;
  padding-block: 4px;
  border-bottom: 1px solid var(--line-2);
  transition: border-color var(--fast) var(--ease), color var(--fast) var(--ease);
}
.alink:hover { border-color: var(--white); }
.alink svg { transition: transform var(--fast) var(--ease); }
.alink:hover svg { transform: translateX(3px); }

.tlink {
  color: var(--fg);
  text-decoration: underline;
  text-decoration-color: var(--line-3);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color var(--fast) var(--ease);
}
.tlink:hover { text-decoration-color: var(--white); }

/* --------------------------------------------------------------------------
   7. Header
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--slow) var(--ease),
    background var(--slow) var(--ease);
}
.header[data-scrolled="true"] {
  border-bottom-color: var(--line);
  background: rgba(11, 12, 14, 0.94);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}
@media (max-width: 700px) { .header__inner { min-height: 64px; } }

/* The wordmark, alone. */
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: none;
}
.brand img { display: block; height: 26px; width: auto; }
@media (max-width: 480px) { .brand img { height: 22px; } }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  font: 400 0.9375rem/1 var(--font);
  letter-spacing: -0.006em;
  color: var(--fg-3);
  text-decoration: none;
  border-radius: var(--radius);
  transition: color var(--fast) var(--ease);
}
.nav__link:hover { color: var(--fg); }
.nav__link[aria-current="page"] { color: var(--fg); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 2px;
  height: 1px;
  background: var(--line-3);
}
.header__cta { margin-left: 12px; }
.btn--sm { min-height: 40px; padding: 10px 18px; font-size: 0.875rem; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--fg);
  cursor: pointer;
}
.nav-toggle__bars { display: block; width: 16px; height: 9px; position: relative; }
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}
.nav-toggle__bars::before { top: 0; }
.nav-toggle__bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .header__nav {
    position: fixed;
    inset: 64px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 24px;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
  }
  .header__nav[data-open="true"] { display: flex; }
  .nav__link {
    min-height: 52px;
    padding: 14px 0;
    font-size: 1.0625rem;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .nav__link[aria-current="page"]::after { left: 0; right: auto; width: 18px; bottom: 10px; }
  .header__cta { margin: 20px 0 0; width: 100%; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-block: clamp(64px, 11vw, 148px) clamp(56px, 8vw, 104px);
  overflow: hidden;
  isolation: isolate;
}
.hero__field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.9;
}
.hero__field::after {
  /* keeps the field from competing with the headline */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      120% 90% at 12% 34%,
      rgba(11, 12, 14, 0.94) 0%,
      rgba(11, 12, 14, 0.62) 42%,
      rgba(11, 12, 14, 0) 78%
    );
}
.hero__inner { position: relative; max-width: 62rem; }
.hero__eyebrow { margin-bottom: clamp(20px, 3vw, 30px); }
.hero__title { margin-bottom: clamp(22px, 2.6vw, 30px); }
.hero__lead { margin-bottom: clamp(32px, 3.6vw, 44px); max-width: 58ch; }

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(22px, 2.4vw, 30px);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--slow) var(--ease),
    background var(--slow) var(--ease);
}
.card:hover { border-color: var(--line-2); background: var(--bg-panel); }
.card__idx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.card__title { color: var(--fg); }
.card__body { font-size: 0.9375rem; line-height: 1.6; color: var(--fg-3); }
.card__meta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--fg-4);
  text-transform: uppercase;
}

/* Linked card — whole surface clickable via a stretched anchor */
.card--link:hover { border-color: var(--line-3); }
.card__link { text-decoration: none; color: inherit; }
.card__link::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }
.card--link:focus-within { outline: 2px solid var(--white); outline-offset: 3px; }
.card--link:focus-within .card__link:focus-visible { outline: none; }

/* Pillar list — the "Why Dovium" five */
.pillar {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding-block: clamp(24px, 2.6vw, 34px);
  border-top: 1px solid var(--line);
  transition: background var(--slow) var(--ease);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.pillar__no {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-4);
  letter-spacing: 0.1em;
  padding-top: 5px;
  font-variant-numeric: tabular-nums;
}
.pillar__body { display: flex; flex-direction: column; gap: 10px; max-width: 66ch; }
@media (max-width: 560px) {
  .pillar { grid-template-columns: minmax(0, 1fr); gap: 8px; }
}

/* Split: text + supporting panel */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 940px) { .split { grid-template-columns: minmax(0, 1fr); } }

.panel {
  padding: clamp(24px, 2.8vw, 36px);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.panel--inset { background: var(--bg-inset); }

/* The marker is positioned, not a grid track, so a list item may contain any
   inline markup (<strong>, <a>, bare text) without fragmenting into cells. */
.checklist { display: block; }
.checklist li {
  position: relative;
  padding: 11px 0 11px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--fg-2);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.5em;
  width: 18px;
  height: 1px;
  background: var(--line-3);
}

/* Definition rows (facts, contact details) */
.deflist { display: grid; }
.deflist__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.deflist__row:first-child { border-top: 1px solid var(--line); }
.deflist__k {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.deflist__v { color: var(--fg); font-size: 0.9375rem; line-height: 1.6; }
.deflist__v a { text-decoration: none; border-bottom: 1px solid var(--line-2); }
.deflist__v a:hover { border-color: var(--white); }
@media (max-width: 560px) {
  .deflist__row { grid-template-columns: minmax(0, 1fr); gap: 6px; }
}

/* --------------------------------------------------------------------------
   11. Robotics spotlight
   -------------------------------------------------------------------------- */
.robotics {
  position: relative;
  background: var(--bg-inset);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.robotics__figure {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  padding: clamp(18px, 2.2vw, 26px);
  overflow: hidden;
}
.robotics__figure svg { width: 100%; height: auto; display: block; }
.robotics__cap {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--fg-4);
}
.taglist { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.8125rem;
  line-height: 1;
  color: var(--fg-2);
  background: var(--bg-raised);
}

/* --------------------------------------------------------------------------
   12. Founder block
   -------------------------------------------------------------------------- */
.founder { display: grid; gap: clamp(28px, 4vw, 56px); }
.founder__quote {
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -0.022em;
  color: var(--fg);
  max-width: 30ch;
  font-weight: 500;
}
.founder__sig {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.founder__name { color: var(--fg); font-weight: 500; font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   13. Conversion band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(255, 255, 255, 0) 62%),
    var(--bg);
  overflow: hidden;
}
.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
@media (max-width: 860px) {
  .cta-band__inner { grid-template-columns: minmax(0, 1fr); align-items: start; }
}
.cta-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  margin-top: clamp(36px, 4.4vw, 56px);
  border-top: 1px solid var(--line);
}
.cta-path {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  margin-right: clamp(0px, 3vw, 40px);
  color: var(--fg-2);
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}
.cta-path:hover { color: var(--fg); }
.cta-path__no {
  font-family: var(--mono);
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  color: var(--fg-4);
  flex: none;
}
.cta-path__arrow { margin-left: auto; opacity: 0.45; transition: opacity var(--fast) var(--ease), transform var(--fast) var(--ease); }
.cta-path:hover .cta-path__arrow { opacity: 1; transform: translateX(3px); }

/* --------------------------------------------------------------------------
   14. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 22px; }
.field { display: grid; gap: 8px; }
.field__label {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.field__req { color: var(--fg-4); }
.field__hint { font-size: 0.8125rem; color: var(--fg-4); line-height: 1.5; }

.input,
.select,
.textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 15px;
  background: var(--bg-inset);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  color: var(--fg);
  font: 400 0.9375rem/1.5 var(--font);
  transition: border-color var(--fast) var(--ease), background var(--fast) var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.textarea { min-height: 132px; resize: vertical; padding-top: 13px; }
.input::placeholder, .textarea::placeholder { color: #6b7280; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--line-3); }
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--white);
  background: var(--bg-raised);
}
.select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238A9099' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.select option { background: var(--bg-panel); color: var(--fg); }

.field--error .input,
.field--error .select,
.field--error .textarea { border-color: #ff8b8b; }
.field__error {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #ff9c9c;
  display: none;
}
.field--error .field__error { display: block; }

.checkbox {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--fg-2);
  cursor: pointer;
}
.checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  background: var(--bg-inset);
  border: 1px solid var(--line-3);
  border-radius: 2px;
  cursor: pointer;
  display: grid;
  place-content: center;
  transition: background var(--fast) var(--ease), border-color var(--fast) var(--ease);
}
.checkbox input::before {
  content: "";
  width: 10px;
  height: 10px;
  transform: scale(0);
  transition: transform var(--fast) var(--ease);
  box-shadow: inset 1em 1em var(--black);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 18%, 84% 4%, 38% 68%);
}
.checkbox input:checked { background: var(--white); border-color: var(--white); }
.checkbox input:checked::before { transform: scale(1); }

.honeypot {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__status {
  padding: 16px 18px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  line-height: 1.6;
  display: none;
}
.form__status[data-state="ok"] {
  display: block;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
}
.form__status[data-state="error"] {
  display: block;
  border-color: #ff8b8b;
  background: rgba(255, 139, 139, 0.07);
  color: #ffc4c4;
}
.form__status[data-state="pending"] { display: block; color: var(--fg-3); }

.btn[aria-disabled="true"], .btn:disabled { opacity: 0.55; pointer-events: none; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--line);
  padding-block: clamp(40px, 4.4vw, 60px) clamp(22px, 2.4vw, 32px);
  background: var(--bg-inset);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(2, minmax(0, 0.8fr));
  gap: clamp(32px, 4vw, 64px);
  padding-bottom: clamp(28px, 3vw, 40px);
}
@media (max-width: 860px) { .footer__top { grid-template-columns: minmax(0, 1fr); } }
.footer__brand img { height: 34px; width: auto; margin-bottom: 20px; }
.footer__legal {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--fg-4);
  max-width: 34ch;
}
.footer__legal strong { color: var(--fg-2); font-weight: 500; display: block; margin-bottom: 4px; }
.footer__coltitle {
  font-family: var(--mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-4);
  margin-bottom: 18px;
}
.footer__list { display: grid; gap: 2px; }
.footer__list a,
.footer__list span {
  display: inline-block;
  padding-block: 7px;
  font-size: 0.9375rem;
  color: var(--fg-3);
  text-decoration: none;
  transition: color var(--fast) var(--ease);
}
.footer__list a:hover { color: var(--fg); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid var(--line);
}
.footer__fine {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  color: var(--grey-700);
}
.footer__disclaimer {
  padding-top: clamp(20px, 2.4vw, 28px);
  font-size: 0.75rem;
  line-height: 1.7;
  color: var(--grey-700);
  max-width: 92ch;
}

/* --------------------------------------------------------------------------
   16. Prose (Privacy)
   -------------------------------------------------------------------------- */
.prose { max-width: 72ch; }
.prose h2 {
  font-size: clamp(1.25rem, 1.9vw, 1.5rem);
  letter-spacing: -0.02em;
  margin-top: clamp(40px, 4.4vw, 56px);
  margin-bottom: 14px;
  padding-top: clamp(24px, 2.6vw, 32px);
  border-top: 1px solid var(--line);
}
.prose h2:first-of-type { margin-top: 0; }
.prose p { margin-bottom: 16px; color: var(--fg-2); }
.prose ul { margin: 0 0 18px; display: block; }
.prose ul li {
  position: relative;
  padding: 4px 0 4px 28px;
  color: var(--fg-2);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 12px;
  height: 1px;
  background: var(--line-3);
}
.prose a { color: var(--fg); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--line-3); }
.prose a:hover { text-decoration-color: var(--white); }

/* --------------------------------------------------------------------------
   17. Page hero (interior pages)
   -------------------------------------------------------------------------- */
.phero {
  padding-block: clamp(52px, 7vw, 100px) clamp(40px, 5vw, 68px);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.phero__inner { position: relative; max-width: 58rem; display: grid; gap: 20px; }
.phero__title { font-size: clamp(2.125rem, 4.6vw, 3.5rem); line-height: 1.05; letter-spacing: -0.032em; }

/* --------------------------------------------------------------------------
   18. 404
   -------------------------------------------------------------------------- */
.notfound {
  min-height: 62vh;
  display: grid;
  align-content: center;
  gap: 24px;
  padding-block: clamp(64px, 10vw, 140px);
}
.notfound__code {
  font-family: var(--mono);
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1;
  color: var(--grey-700);
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   19. Reveal (progressive enhancement — content is visible without JS)
   -------------------------------------------------------------------------- */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 640ms var(--ease), transform 640ms var(--ease);
  will-change: opacity, transform;
}
html.js [data-reveal][data-shown="true"] { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   20. Reduced motion — motion is opt-out everywhere
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__field .drift { display: none; }
}

/* --------------------------------------------------------------------------
   21. Print
   -------------------------------------------------------------------------- */
@media print {
  .header, .cta-band, .nav-toggle, .hero__field { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}

/* --------------------------------------------------------------------------
   22. Hero signal field — code-native, no imagery, no library
   -------------------------------------------------------------------------- */
.hero__field svg { width: 100%; height: 100%; display: block; }
.field-rule   { stroke: rgba(255, 255, 255, 0.055); stroke-width: 1; }
.field-rule-2 { stroke: rgba(255, 255, 255, 0.032); stroke-width: 1; }
.field-path   { stroke: rgba(255, 255, 255, 0.10); stroke-width: 1; fill: none; }
.field-node   { fill: rgba(255, 255, 255, 0.16); }
.field-node-lit { fill: rgba(255, 255, 255, 0.5); }

.drift {
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 1.25;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 3 460;
  animation: dv-signal 11s linear infinite;
}
.drift--2 { animation-duration: 14s; animation-delay: -4.5s; }
.drift--3 { animation-duration: 9.5s; animation-delay: -7s; }
@keyframes dv-signal {
  from { stroke-dashoffset: 463; }
  to   { stroke-dashoffset: 0; }
}

/* Interior-page field: quieter, static */
.phero__field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.75;
}
.phero__field::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 6%, rgba(11, 12, 14, 0.55) 52%, rgba(11, 12, 14, 0.9) 100%);
}
.phero__field svg { width: 100%; height: 100%; }

/* --------------------------------------------------------------------------
   24. Utilities (no inline style attributes anywhere — strict CSP)
   -------------------------------------------------------------------------- */
.section-head--flush { margin-bottom: 0; }
.panel .label + .checklist { margin-top: 16px; }
.taglist { margin-top: 6px; }

/* --------------------------------------------------------------------------
   25. Product category records
   -------------------------------------------------------------------------- */
.cat-list { display: grid; }
.cat {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: clamp(16px, 2.6vw, 36px);
  padding-block: clamp(30px, 3.6vw, 46px);
  border-top: 1px solid var(--line);
  scroll-margin-top: 104px;
}
.cat:last-child { border-bottom: 1px solid var(--line); }
.cat__no { padding-top: 6px; }
.cat__main { display: flex; flex-direction: column; gap: 16px; max-width: 74ch; align-items: flex-start; }
.cat__reqs {
  width: 100%;
  margin-top: 6px;
  padding: clamp(18px, 2vw, 24px);
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cat__reqs .checklist { margin-top: 12px; }
@media (max-width: 620px) {
  .cat { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .cat__no { padding-top: 0; }
}

/* --------------------------------------------------------------------------
   26. Process steps
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 4vw, 64px);
  counter-reset: step;
}
@media (max-width: 780px) { .steps { grid-template-columns: minmax(0, 1fr); } }
.step {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  padding-block: clamp(20px, 2.2vw, 28px);
  border-top: 1px solid var(--line);
}
.step__no {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--fg-4);
  padding-top: 4px;
}
.step__body { display: flex; flex-direction: column; gap: 8px; }
.step__body .body { font-size: 0.9375rem; }
.scope-note { margin-top: clamp(32px, 3.6vw, 44px); display: grid; gap: 12px; }

/* --------------------------------------------------------------------------
   27. Contact layout
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }

.form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 620px) { .form__row { grid-template-columns: minmax(0, 1fr); } }

.contact-aside { display: grid; gap: clamp(16px, 2vw, 24px); }
.contact-aside .deflist { margin-top: 12px; }
.contact-address {
  margin-top: 14px;
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--fg-2);
}
.contact-address strong { display: block; color: var(--fg); font-weight: 500; margin-bottom: 4px; }
.route-list { margin-top: 14px; }
.route-list strong { color: var(--fg); font-weight: 500; }
.disclosure {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--fg-4);
}
.cta-paths li { display: flex; }
.cta-paths li > .cta-path { flex: 1; }
.notfound .cta-paths { margin-top: 8px; }

/* --------------------------------------------------------------------------
   28. Header nav container — nav and CTA share one row on desktop only.
        Scoped to min-width so it cannot override the mobile drawer rules
        declared earlier in the sheet.
   -------------------------------------------------------------------------- */
@media (min-width: 861px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 0;
  }
}

/* --------------------------------------------------------------------------
   29. Contact aside — the column is too narrow for a two-track definition
        list, so labels stack above values and the number never breaks.
   -------------------------------------------------------------------------- */
.contact-aside .deflist__row {
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
}
.contact-aside .deflist__v,
.contact-aside .deflist__v a { white-space: nowrap; }
