/* uxplate.com - self-contained. No external requests: fonts are bundled woff2,
   the only colors/type live here. Two themes at the token level. */

/* Wave C: display/headings now render in the estate UI stack (--font-ui,
   system-ui) to match uplinkd.com. The JetBrains Mono woff2 stays on disk
   (fonts/jetbrains-mono-var.woff2) but is no longer referenced, so its
   @font-face has been removed. */

/* IBM Plex Mono (SIL OFL, see fonts/ibm-plex-mono-OFL.txt) is the estate mono
   face: --font-mono leads with it so the mono/dev character matches the group. */
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("fonts/ibm-plex-mono-600.woff2") format("woff2");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------------------------------------------------------------- tokens */

:root {
  /* dark is the default ground */
  --ground: #16121C;
  --surface: #1D1826;
  --surface-2: #251F30;
  --line: rgba(244, 239, 243, .10);
  --line-2: rgba(244, 239, 243, .17);
  --ink: #F4EFF3;
  --ink-2: #BEB3C4;
  --ink-3: #948A9B;
  --ok-pill: #5BD6A4;
  --accent: #FF4D8D;
  --accent-text: #FF6299;
  --accent-soft: rgba(255, 77, 141, .13);
  --accent-line: rgba(255, 77, 141, .42);
  --btn-bg: #FF4D8D;
  --btn-fg: #1A1018;
  --btn-hover: #FF74A8;
  --shadow: 0 34px 64px -34px rgba(0, 0, 0, .66);
  --shadow-soft: 0 18px 40px -28px rgba(0, 0, 0, .55);

  /* terminals stay dark in both themes */
  --t-bg: #141019;
  --t-text: #DAD4E0;
  --t-line: rgba(255, 255, 255, .09);
  --t-prompt: #FF6BA0;
  --t-comment: #968CA2;
  --t-str: #F2B366;
  --t-hl: #79C9F2;
  --t-out: #8E8598;
  --t-ok: #5BD6A4;

  /* Wave A: shared uplinkd UI token. --font-body aliases it so existing rules unify.
     Wave B: --font-mono now leads with the vendored IBM Plex Mono for estate
     consistency. Wave C: --font-display now aliases --font-ui so headings and
     display text render in system-ui, matching uplinkd.com. */
  --font-ui: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: var(--font-ui);
  --font-display: var(--font-ui);
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --wrap: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme]) {
    --ground: #FBF8F6;
    --surface: #FFFFFF;
    --surface-2: #F5F0F2;
    --line: rgba(33, 20, 32, .11);
    --line-2: rgba(33, 20, 32, .18);
    --ink: #201924;
    --ink-2: #574C5D;
    --ink-3: #6F6675;
    --ok-pill: #0F7A50;
    --accent: #D6296B;
    --accent-text: #BB1C5C;
    --accent-soft: rgba(214, 41, 107, .09);
    --accent-line: rgba(214, 41, 107, .34);
    --btn-bg: #D6296B;
    --btn-fg: #FFFFFF;
    --btn-hover: #B81C5B;
    --shadow: 0 34px 60px -34px rgba(74, 18, 51, .30);
    --shadow-soft: 0 18px 40px -26px rgba(74, 18, 51, .22);
  }
}

:root[data-theme="light"] {
  --ground: #FBF8F6;
  --surface: #FFFFFF;
  --surface-2: #F5F0F2;
  --line: rgba(33, 20, 32, .11);
  --line-2: rgba(33, 20, 32, .18);
  --ink: #201924;
  --ink-2: #574C5D;
  --ink-3: #6F6675;
  --ok-pill: #0F7A50;
  --accent: #D6296B;
  --accent-text: #BB1C5C;
  --accent-soft: rgba(214, 41, 107, .09);
  --accent-line: rgba(214, 41, 107, .34);
  --btn-bg: #D6296B;
  --btn-fg: #FFFFFF;
  --btn-hover: #B81C5B;
  --shadow: 0 34px 60px -34px rgba(74, 18, 51, .30);
  --shadow-soft: 0 18px 40px -26px rgba(74, 18, 51, .22);
}

/* ------------------------------------------------------------------ base */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 82px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

svg { max-width: 100%; }
::selection { background: var(--accent); color: var(--btn-fg); }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

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

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--accent); color: var(--btn-fg);
  padding: 10px 16px; border-radius: 10px; font-weight: 600;
  transition: top .18s ease;
}
.skip-link:focus { top: 16px; text-decoration: none; }

/* --------------------------------------------------------- shared display */

.eyebrow, .kicker {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--accent-text);
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.kicker::before { content: "// "; color: var(--ink-3); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 em { font-style: normal; color: var(--accent-text); }

h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.015em;
  text-wrap: balance;
}
h3 { font-family: var(--font-body); font-weight: 650; letter-spacing: -.01em; }
/* card titles carry the display voice so identity reaches the component layer */
.domain-card h3, .theme-body h3, .service-card h3, .step h3 {
  font-family: var(--font-display); font-weight: 640; letter-spacing: -.005em; line-height: 1.2;
}

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head .kicker { display: block; margin-bottom: 16px; }
.section-head h2 { margin-bottom: 18px; }
.section-head > p { color: var(--ink-2); font-size: 1.075rem; }

/* buttons */
.btn-primary {
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 650;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 0; border-radius: 12px;
  padding: 14px 22px; cursor: pointer;
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
  box-shadow: 0 10px 26px -12px var(--accent);
}
.btn-primary:hover { background: var(--btn-hover); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  font-family: var(--font-mono); font-size: .82rem; letter-spacing: .04em;
  color: var(--ink); border: 1px solid var(--line-2);
  border-radius: 10px; padding: 8px 15px;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.btn-ghost:hover { border-color: var(--accent-line); color: var(--accent-text); text-decoration: none; }

/* --------------------------------------------------------------------- nav */

.site-nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--ground) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 66px; }

.wordmark {
  font-family: var(--font-mono); font-weight: 700; font-size: 1.06rem;
  letter-spacing: -.02em; color: var(--ink); text-decoration: none;
}
.wordmark:hover { text-decoration: none; }
/* Wave B: header brandmark set to the estate 42px logo standard (ThemeTanker
   reference). Type stays at 1.4rem; the 42px box gives a consistent brand height.
   Footer wordmark stays proportional at the base 1.06rem. */
.site-nav .wordmark {
  font-size: 1.4rem; letter-spacing: -.025em;
  display: inline-flex; align-items: center; height: 42px;
}
.wordmark svg { width: 22px; height: 22px; border-radius: 6px; margin-right: 9px; flex: none; }
.cursor { color: var(--accent); animation: blink 1.15s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .cursor { animation: none; } }

/* Wave A: links sit left-grouped beside the brand; the actions cluster (theme
   toggle far right) is pushed to the right via .nav-actions margin-left:auto. */
.nav-links { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink-2); font-size: .94rem; font-weight: 500;
  text-decoration: none; transition: color .16s ease;
}
.nav-links a:hover { color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.icon-btn {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px;
  color: var(--ink-2); background: transparent;
  border: 1px solid var(--line); cursor: pointer;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}
.icon-btn:hover { color: var(--ink); border-color: var(--line-2); background: var(--surface); text-decoration: none; }
.icon-btn svg { width: 19px; height: 19px; }

/* Wave A: shared icon theme toggle - transparent, currentColor glyph,
   1px border in the site border token, snug padding, ~6px radius. */
.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .4rem; line-height: 0; cursor: pointer;
  color: var(--ink-2); background: transparent;
  border: 1px solid var(--line); border-radius: 6px;
  transition: color .16s ease, border-color .16s ease, background .16s ease;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--line-2); background: var(--surface); }
.theme-toggle svg { width: 18px; height: 18px; }

/* theme icon visibility: show the glyph that switches TO the other mode -
   default dark shows the sun (tap for light); light shows the moon. */
.theme-toggle .ico-moon { display: none; }
.theme-toggle .ico-sun { display: block; }
@media (prefers-color-scheme: light) {
  :root:not([data-theme]) .theme-toggle .ico-sun { display: none; }
  :root:not([data-theme]) .theme-toggle .ico-moon { display: block; }
}
:root[data-theme="light"] .theme-toggle .ico-sun { display: none; }
:root[data-theme="light"] .theme-toggle .ico-moon { display: block; }
:root[data-theme="dark"] .theme-toggle .ico-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .ico-moon { display: none; }

.nav-cta { display: inline-block; }

/* mobile disclosure menu - native <details>, works with JS off */
.nav-menu { display: none; position: relative; }
.nav-menu > summary { list-style: none; }
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-menu .icon-close { display: none; }
.nav-menu[open] .icon-hamburger { display: none; }
.nav-menu[open] .icon-close { display: block; }
.nav-menu-panel {
  position: absolute; top: calc(100% + 12px); right: 0; z-index: 50;
  width: min(260px, 78vw); display: grid; gap: 4px;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow);
}
.nav-menu-panel a {
  display: flex; align-items: center; min-height: 44px;
  padding: 0 14px; border-radius: var(--radius-sm);
  color: var(--ink-2); font-size: 1rem; font-weight: 500;
  text-decoration: none; transition: color .15s ease, background .15s ease;
}
.nav-menu-panel a:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav-menu-install {
  justify-content: center; margin-top: 6px; font-weight: 650;
  color: var(--btn-fg); background: var(--btn-bg);
}
.nav-menu-install:hover { color: var(--btn-fg); background: var(--btn-hover); }

/* -------------------------------------------------------------------- hero */

.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 9vw, 112px); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 520px; z-index: 0;
  background:
    radial-gradient(60% 70% at 78% 12%, var(--accent-soft), transparent 70%),
    radial-gradient(46% 60% at 8% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 68%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.hero .eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.sub {
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  line-height: 1.55; color: var(--ink-2); max-width: 36ch;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.btn-lg { padding: 15px 26px; font-size: 1.05rem; border-radius: 13px; }
.btn-ghost--lg { padding: 14px 20px; font-size: .95rem; font-family: var(--font-body); letter-spacing: 0; }
.btn-ghost--lg:hover { color: var(--ink); border-color: var(--line-2); }

.install { max-width: 560px; }
.hero-note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 18px; font-size: .92rem; color: var(--ink-2);
}
.hero-note svg { width: 17px; height: 17px; color: var(--accent-text); flex: none; }

/* living design-system card, staged as a showpiece object */
.hero-art { min-width: 0; position: relative; perspective: 1500px; }
.hero-art::before {
  content: ""; position: absolute; z-index: 0;
  inset: 22px -18px -20px 30px; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--line);
  transform: rotate(3.5deg); opacity: .7;
}
.ds-card {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 22px;
  box-shadow: var(--shadow), 0 44px 90px -50px color-mix(in srgb, var(--accent) 60%, transparent);
  position: relative; z-index: 1;
  transform: rotateY(-6deg) rotateX(1.5deg);
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}
.ds-card:hover { transform: rotateY(0deg) rotateX(0deg); }
.ds-card::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1px; background: linear-gradient(160deg, var(--accent-line), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.ds-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ds-path { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); }
.ds-badge {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .06em;
  color: var(--accent-text); background: var(--accent-soft);
  border: 1px solid var(--accent-line); border-radius: 6px; padding: 3px 8px;
}
.ds-title { font-family: var(--font-display); font-weight: 720; letter-spacing: -.025em; font-size: 1.9rem; line-height: 1; margin-bottom: 4px; }
.ds-meta { font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); margin-bottom: 20px; }
.ds-swatches { display: grid; grid-template-columns: repeat(6, 1fr); gap: 7px; margin-bottom: 20px; }
.ds-swatches span { aspect-ratio: 1; border-radius: 8px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12); }
.ds-tokens { margin: 0; display: grid; gap: 11px; }
.ds-tokens > div { display: flex; align-items: center; gap: 14px; }
.ds-tokens dt {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3); width: 52px; flex: none;
}
.ds-tokens dd { margin: 0; font-size: .9rem; color: var(--ink); }
.ds-scale { display: flex; align-items: center; gap: 5px; }
.ds-scale i { display: block; height: 12px; border-radius: 3px; background: var(--accent); opacity: .85; }
.ds-footer {
  margin-top: 20px; padding-top: 14px; border-top: 1px solid var(--line);
  font-family: var(--font-mono); font-size: .74rem; color: var(--ink-3);
}

/* ---------------------------------------------------------------- terminal */

.terminal {
  margin: 0; min-width: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--t-bg); border: 1px solid var(--t-line);
  box-shadow: var(--shadow-soft);
}
.terminal-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-bottom: 1px solid var(--t-line);
  background: color-mix(in srgb, var(--t-bg) 80%, #000);
}
.terminal-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #43414d; }
.terminal-bar .dot:nth-child(1) { background: #ff5f57; }
.terminal-bar .dot:nth-child(2) { background: #febc2e; }
.terminal-bar .dot:nth-child(3) { background: #28c840; }
.terminal-title {
  margin-left: 8px; font-family: var(--font-mono); font-size: .74rem;
  color: var(--t-out); letter-spacing: .02em;
}
.terminal-body { padding: 16px 18px; overflow-x: auto; }
.terminal pre { margin: 0; }
.terminal code {
  font-family: var(--font-mono); font-size: .82rem; line-height: 1.75;
  color: var(--t-text); white-space: pre-wrap; word-break: break-word;
}
.terminal--tall code { white-space: pre; word-break: normal; font-size: .75rem; line-height: 1.72; }
.term-row { position: relative; }
.term-row + .term-row { margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--t-line); }
.prompt { color: var(--t-prompt); }
.comment { color: var(--t-comment); }
.str { color: var(--t-str); }
.hl { color: var(--t-hl); }
.out { color: var(--t-out); }
.ok { color: var(--t-ok); }

.copy-btn {
  position: absolute; top: -2px; right: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .72rem; color: var(--t-out);
  background: color-mix(in srgb, var(--t-bg) 70%, #000);
  border: 1px solid var(--t-line); border-radius: 8px;
  padding: 6px 10px; min-height: 30px; cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}
.copy-btn:hover { color: var(--t-text); border-color: rgba(255, 255, 255, .22); }
.copy-btn svg { width: 14px; height: 14px; }
.copy-btn.copied { color: var(--t-ok); border-color: var(--t-ok); }

/* -------------------------------------------------------------- stats band */

.stats-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.stats {
  display: grid; grid-template-columns: repeat(7, 1fr);
  list-style: none; margin: 0; padding: 0;
}
.stat {
  padding: 30px 18px; text-align: center;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: 0; }
.stat-value {
  display: block; font-family: var(--font-display); font-weight: 760;
  font-size: clamp(2.1rem, 3vw, 2.9rem); line-height: 1; color: var(--ink);
  letter-spacing: -.03em; font-variant-numeric: tabular-nums;
}
.stat--flag .stat-value { color: var(--accent-text); }
.stat-label {
  display: block; margin-top: 8px;
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink-3);
}

/* -------------------------------------------------------------- domain grid */

.domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.domain-card {
  display: flex; flex-direction: column; min-width: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.domain-card:hover { transform: translateY(-3px); border-color: var(--accent-line); box-shadow: var(--shadow-soft); }
.domain-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.domain-card > p { color: var(--ink-2); font-size: .95rem; margin-bottom: 18px; }
.q {
  font-family: var(--font-mono); font-size: .78rem; line-height: 1.6;
  color: var(--ink-2); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 11px 13px; margin-bottom: 14px; white-space: normal; word-break: break-word;
}
.q .prompt { color: var(--accent-text); font-weight: 600; margin-right: 4px; }
.q .str { color: var(--ink); }
.result { margin-top: auto; font-size: .92rem; color: var(--ink-2); }
.result strong { color: var(--ink); font-weight: 650; }
.result .arrow { color: var(--accent-text); font-weight: 700; margin-right: 4px; }

/* inline command mention in prose, e.g. /uxplate */
.cmd {
  font-family: var(--font-mono); font-size: .9em; font-style: normal;
  color: var(--accent-text); background: var(--accent-soft);
  border: 1px solid var(--accent-line); border-radius: 5px;
  padding: .05em .4em; white-space: nowrap;
}

/* UpLinkd Skills suite strip (shared across all five sites) */
.suite-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-top: 28px; }
.suite-card { display: flex; flex-direction: column; gap: 5px; padding: 20px; background: var(--surface);
  color: var(--ink); text-decoration: none;
  border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .15s ease, transform .15s ease; }
.suite-card:hover { border-color: var(--accent-line); transform: translateY(-2px); text-decoration: none; }
.suite-card:hover b { color: var(--accent); }
.suite-card:hover span { color: var(--ink-3); }
.suite-card b, .suite-card span { text-decoration: none; }
.suite-card b { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -.01em; transition: color .15s ease; }
.suite-card span { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); }
.suite-card[aria-current] { border-color: var(--accent-line); background: var(--accent-soft); }
.suite-hub { margin-top: 24px; font-size: .94rem; }
@media (max-width: 760px) { .suite-grid { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------------- how it */

.section--how { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.how-grid { display: grid; grid-template-columns: .74fr 1.26fr; gap: clamp(28px, 4vw, 52px); align-items: center; }
.how-copy .section-head { margin-bottom: 34px; }
.steps { margin: 0; padding: 0; display: grid; gap: 22px; }
.step { position: relative; padding-left: 52px; }
.step .n {
  position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600;
  color: var(--accent-text);
  width: 34px; height: 34px; display: grid; place-items: center;
  border: 1px solid var(--accent-line); border-radius: 9px;
  background: var(--accent-soft);
}
.step h3 { font-size: 1.32rem; margin-bottom: 5px; }
.step p { color: var(--ink-2); font-size: .95rem; }
.step .tag {
  display: inline-block; margin-top: 9px;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink-3);
  border: 1px solid var(--line-2); border-radius: 6px; padding: 3px 8px;
}

/* -------------------------------------------------------------- theme cards */

.theme-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.theme-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.theme-card:hover { transform: translateY(-3px); border-color: var(--line-2); box-shadow: var(--shadow-soft); }
/* theme colours ship as a Theme Tanker cargo load: 3-and-2, primaries on top */
.theme-load { padding: 22px 22px 14px; display: grid; gap: 5px; justify-items: center; background: var(--surface-2); }
.theme-load-top, .theme-load-bottom { display: grid; gap: 5px; width: 100%; }
.theme-load-top { grid-template-columns: repeat(2, 1fr); width: 70%; }
.theme-load-bottom { grid-template-columns: repeat(3, 1fr); }
.theme-load span { height: 26px; border-radius: 3px; background: var(--c); box-shadow: inset 0 0 0 1px rgba(127, 127, 127, .22); }
.theme-hull { width: 100%; height: 2px; margin-top: 6px; background: var(--line-2); border-radius: 2px; }

/* theme cards: type / scale / space token graphics */
.spec-mini { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.spec-row { display: flex; align-items: center; gap: 12px; font-size: .82rem; }
.spec-k { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .12em; color: var(--ink-3); width: 44px; flex: 0 0 auto; }
.spec-v { color: var(--ink-2); }
.spec-ramp { display: inline-flex; align-items: center; gap: 3px; }
.spec-ramp i { display: block; height: 8px; background: var(--accent-text); border-radius: 2px; opacity: .55; }

/* hero ds-card: palette as a Theme Tanker cargo load (3 + 2) */
.ds-load { display: grid; gap: 5px; justify-items: center; margin: 16px 0 4px; }
.ds-load-top, .ds-load-bottom { display: grid; gap: 5px; width: 100%; }
.ds-load-top { grid-template-columns: repeat(2, 1fr); width: 66%; }
.ds-load-bottom { grid-template-columns: repeat(3, 1fr); }
.ds-load span { height: 30px; border-radius: 4px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); }
.ds-hull { width: 100%; height: 2px; margin-top: 5px; background: rgba(0,0,0,.12); border-radius: 2px; }
.theme-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.free-tag, .pill {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .05em;
  text-transform: uppercase; color: var(--ink-3);
  border: 1px solid var(--line-2); border-radius: 6px; padding: 3px 8px;
  margin-bottom: 12px;
}
.theme-body h3 { font-size: 1.32rem; margin-bottom: 8px; }
.theme-body p { color: var(--ink-2); font-size: .9rem; }
.theme-card--flag { background: var(--surface-2); }
.theme-card--flag .pill { color: var(--accent-text); border-color: var(--accent-line); background: var(--accent-soft); }
.card-cta { margin-top: auto; padding-top: 14px; }
.card-cta a { font-family: var(--font-mono); font-size: .84rem; font-weight: 500; }

/* -------------------------------------------------------------- services */

.section--services { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-card {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color .2s ease;
}
.service-card:hover { border-color: var(--line-2); }
.service-card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.service-card p { color: var(--ink-2); }

/* -------------------------------------------------------------- pricing */

.tiers--two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: stretch; max-width: 760px; margin-left: auto; margin-right: auto; }
.tier {
  display: flex; flex-direction: column; min-width: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.tier.pop { border-color: var(--accent-line); box-shadow: var(--shadow-soft); }
.price-tier {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-3);
}
.tier.pop .price-tier { color: var(--accent-text); }
.price-badge {
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .04em;
  text-transform: none; color: var(--accent-text); background: var(--accent-soft);
  border: 1px solid var(--accent-line); border-radius: 6px; padding: 2px 7px;
}
.price-amount {
  font-family: var(--font-display); font-weight: 740; letter-spacing: -.03em;
  font-size: 2.4rem; line-height: 1; color: var(--ink);
}
.price-amount .price-unit { font-family: var(--font-mono); font-size: .8rem; font-weight: 400; letter-spacing: 0; color: var(--ink-3); }
.price-note { margin-top: 8px; font-size: .86rem; color: var(--ink-3); line-height: 1.5; }
.bsv-note { font-family: var(--font-mono); font-size: .76rem; line-height: 1.5; color: var(--ink-3); text-align: center; }
.bundle-note { margin-top: 26px; font-size: .92rem; color: var(--ink-2); }
.price-features { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 11px; }
.price-features li { position: relative; padding-left: 26px; font-size: .93rem; color: var(--ink-2); line-height: 1.5; }
.price-features li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-weight: 700; color: var(--ok-pill);
}
.price-cta { margin-top: auto; display: grid; gap: 10px; }
.price-cta > a { display: block; text-align: center; }
.price-cta .btn-ghost { font-size: .84rem; padding: 12px 16px; letter-spacing: .02em; }
@media (max-width: 760px) { .tiers--two { grid-template-columns: 1fr; } }

/* --------------------------------------------------------- roadmap + email */

.roadmap-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.roadmap { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.roadmap li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line);
  color: var(--ink-2); font-size: .96rem;
}
.roadmap li:first-child { border-top: 1px solid var(--line); }
.roadmap .pill {
  margin: 0; flex: none; align-self: center;
  color: var(--ink-3); min-width: 74px; text-align: center;
}
.pill--shipped { color: var(--ok-pill); border-color: color-mix(in srgb, var(--ok-pill) 40%, transparent); }
.pill--next { color: var(--accent-text); border-color: var(--accent-line); background: var(--accent-soft); }

.signup {
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-soft);
}
.signup h3 { font-family: var(--font-display); font-weight: 740; letter-spacing: -.025em; font-size: 1.8rem; line-height: 1.05; margin-bottom: 10px; }
.signup > p { color: var(--ink-2); font-size: .96rem; margin-bottom: 20px; }
.signup-form { display: flex; gap: 10px; flex-wrap: wrap; }
.signup-form input {
  flex: 1 1 100%; min-width: 0;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--ground); border: 1px solid var(--line-2);
  border-radius: 12px; padding: 13px 15px;
}
.signup-form button { flex: 1 1 100%; }
.signup-form input::placeholder { color: var(--ink-3); }
.signup-form input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.form-note { margin-top: 14px; font-size: .82rem; color: var(--ink-3); line-height: 1.5; }

/* trust cues beside the request-access CTA - honest security/assurance signals */
.trust-cues {
  list-style: none; margin: 18px 0 0; padding: 16px 0 0;
  border-top: 1px solid var(--line);
  display: grid; gap: 10px;
}
.trust-cues li {
  position: relative; padding-left: 26px;
  font-size: .84rem; line-height: 1.45; color: var(--ink-2);
}
.trust-cues li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  font-family: var(--font-mono); font-weight: 700; color: var(--ok-pill);
}

/* ------------------------------------------------- install / member capture */

/* even split so the install terminal never scrolls horizontally at 1100px+ */
#install .hero-grid { grid-template-columns: 1fr 1fr; }
#install .kicker { display: block; margin-bottom: 16px; }
.install-h2 { margin-bottom: 18px; }
.sub--install { max-width: 46ch; font-size: 1.05rem; margin-bottom: 16px; }
.capture { margin-top: 26px; display: grid; gap: 14px; max-width: 420px; }
.capture .field { display: grid; gap: 6px; }
.capture label {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-3);
}
.capture input {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 12px; padding: 12px 14px;
}
.capture input::placeholder { color: var(--ink-3); }
.capture input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.capture .btn-primary { width: 100%; }
.capture-note { font-size: .82rem; color: var(--ink-3); line-height: 1.5; }
/* Netlify honeypot: visually hidden, kept out of the tab order in markup */
.hidden-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; margin: 0; }

/* -------------------------------------------------------------------- faq */

.faq-list { max-width: 780px; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-size: 1.1rem; font-weight: 550; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.chev { position: relative; width: 14px; height: 14px; flex: none; }
.chev::before, .chev::after {
  content: ""; position: absolute; top: 6px; width: 9px; height: 2px;
  background: var(--ink-2); border-radius: 2px; transition: transform .2s ease;
}
details[open] .chev::before, details[open] .chev::after { background: var(--accent-text); }
.chev::before { left: 0; transform: rotate(45deg); }
.chev::after { right: 0; transform: rotate(-45deg); }
details[open] .chev::before { transform: rotate(-45deg); }
details[open] .chev::after { transform: rotate(45deg); }
.faq-list details > p { padding: 0 4px 24px; color: var(--ink-2); max-width: 68ch; }

/* ------------------------------------------------------------- thanks page */

.thanks-main {
  min-height: 62vh; max-width: 720px;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 80px; padding-bottom: 80px;
}
.thanks-main .eyebrow { margin-bottom: 20px; }
.thanks-main h1 { margin-bottom: 20px; }
.thanks-main > p { color: var(--ink-2); font-size: 1.1rem; max-width: 54ch; }
.thanks-back { margin-top: 30px; }
.thanks-back a { font-family: var(--font-mono); font-size: .9rem; }

/* ----------------------------------------------------------------- footer */

.site-footer { border-top: 1px solid var(--line); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .copyright { color: var(--ink-3); font-size: .88rem; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: var(--ink-2); font-size: .9rem; }
.footer-links a:hover { color: var(--accent-text); }

/* ----------------------------------------------------------------- motion */

.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
/* staggered cascade for cards within a grid */
.js .domain-card:nth-child(2), .js .theme-card:nth-child(2) { transition-delay: .05s; }
.js .domain-card:nth-child(3), .js .theme-card:nth-child(3) { transition-delay: .1s; }
.js .domain-card:nth-child(4), .js .theme-card:nth-child(4) { transition-delay: .15s; }
.js .domain-card:nth-child(5) { transition-delay: .2s; }
.js .domain-card:nth-child(6) { transition-delay: .25s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ------------------------------------------------------------- responsive */

@media (max-width: 940px) {
  .hero-grid, #install .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 460px; }
  .ds-card { transform: none; }
  .hero-art::before { display: none; }
  .how-grid, .roadmap-grid { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .stat:nth-child(4) { border-right: 0; }
  .stat:nth-child(n+5) { border-top: 1px solid var(--line); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-actions { margin-left: auto; }
  .nav-menu { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .domain-grid { grid-template-columns: 1fr; }
  .theme-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }
  .signup-form button { flex: 1 1 100%; }
}

/* ------------------------------------------------- supported-systems pills */

.stacks { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.stack-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: .82rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 8px 15px;
}
.stack-pill .d { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.stacks-note { margin-top: 16px; font-family: var(--font-mono); font-size: .78rem; color: var(--ink-3); }

/* --------------------------------------- the output: sample design system */

.audit-actions { display: flex; align-items: center; gap: 14px; margin-top: 22px; flex-wrap: wrap; }
.audit-actions .btn-ghost { padding: 10px 16px; }
.audit-actions-note { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); }

.audit {
  margin-top: 8px; border-radius: var(--radius); overflow: hidden;
  background: var(--t-bg); border: 1px solid var(--t-line); box-shadow: var(--shadow-soft);
}
.audit-print-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px 12px; border-bottom: 1px solid var(--t-line); color: var(--t-text);
}
.audit-print-head .aph-brand { display: flex; align-items: center; gap: 9px; }
.audit-print-head .aph-brand svg { width: 28px; height: 28px; flex: none; border-radius: 7px; }
.audit-print-head .aph-brand span { font-family: var(--font-mono); font-weight: 600; letter-spacing: .02em; font-size: .95rem; }
.audit-print-head .aph-meta { margin-left: auto; text-align: right; }
.audit-print-head .aph-title { font-weight: 600; font-size: .86rem; color: var(--t-text); }
.audit-print-head .aph-sub { font-family: var(--font-mono); font-size: .66rem; color: var(--t-out); margin-top: 2px; }

.audit-bar {
  display: flex; align-items: center; gap: 8px; padding: 11px 16px;
  border-bottom: 1px solid var(--t-line); background: color-mix(in srgb, var(--t-bg) 80%, #000);
}
.audit-bar .d { width: 11px; height: 11px; border-radius: 50%; background: #43414d; }
.audit-bar .d:nth-child(1) { background: #ff5f57; }
.audit-bar .d:nth-child(2) { background: #febc2e; }
.audit-bar .d:nth-child(3) { background: #28c840; }
.audit-bar .t { margin-left: 8px; font-family: var(--font-mono); font-size: .74rem; color: var(--t-out); }

.audit-body {
  padding: 16px 18px; font-family: var(--font-mono); font-size: .8rem; line-height: 1.7;
  color: var(--t-text); overflow-x: auto; white-space: pre-wrap;
}
.audit-body .h { color: var(--t-hl); }
.audit-body .m { color: var(--t-out); }
.audit-body .ok { color: var(--t-ok); }
.audit-body .p { color: var(--t-prompt); }

/* print-only spec sheet: hidden on screen, shown in print */
.audit-sample { display: none; }
.audit-sample .cl-head { font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3); margin-bottom: 14px; }
.audit-print-foot { display: none; }

.spec-block { display: grid; gap: 8px; margin-bottom: 16px; }
.spec-line { display: flex; gap: 12px; font-size: .8rem; }
.spec-label { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); width: 150px; flex: none; }
.spec-body { color: var(--ink); }
.spec-h { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 16px 0 8px; font-weight: 600; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .74rem; }
.spec-table th, .spec-table td { text-align: left; padding: 6px 9px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.spec-table th { font-family: var(--font-mono); font-size: .58rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.spec-table .sw { display: inline-block; width: 22px; height: 14px; border-radius: 3px; box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2); }
.spec-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.spec-ramp-print { display: flex; align-items: flex-end; gap: 8px; }
.spec-ramp-print span { font-family: var(--font-mono); font-size: .68rem; color: var(--ink-2); padding: 4px 8px; border: 1px solid var(--line); border-radius: 4px; }
.spec-p { font-size: .8rem; color: var(--ink-2); line-height: 1.5; }

/* ============================================================== *
 *  Print: "Download PDF" of the sample design system. The button
 *  adds .print-audit to <body>, isolating + light-theming #audit
 *  as a clean one-page spec sheet; afterprint removes it. Fully
 *  local - window.print() only, no external PDF service. The
 *  @page margin:0 + padding-on-#audit fix keeps the print dialog
 *  from clipping content at the paper edge.
 * ============================================================== */
@media print {
  @page { margin: 0; }
  .no-print { display: none !important; }
  body.print-audit { background: #fff; color: #16202B; color-scheme: light; }
  body.print-audit .reveal { opacity: 1 !important; transform: none !important; }
  body.print-audit > header.site-nav,
  body.print-audit > .site-footer,
  body.print-audit > .suite,
  body.print-audit > .skip-link { display: none !important; }
  body.print-audit main > section:not(#audit) { display: none !important; }
  body.print-audit #audit { padding: 15mm 14mm !important; background: #fff !important; border: 0 !important; }
  body.print-audit #audit .wrap { padding: 0 !important; max-width: none !important; }
  body.print-audit #audit .section-head .kicker,
  body.print-audit #audit .section-head h2,
  body.print-audit #audit .section-head > p,
  body.print-audit #audit .audit-actions,
  body.print-audit #audit .audit-bar { display: none !important; }
  body.print-audit #audit .section-head { margin-bottom: 0 !important; }
  body.print-audit #audit .audit-print-head { display: flex !important; align-items: center; gap: 14px;
    border-bottom: 2px solid #16202B; padding: 0 0 12px !important; margin-bottom: 16px; }
  body.print-audit #audit .aph-brand { display: flex; align-items: center; gap: 9px; }
  body.print-audit #audit .aph-brand svg { width: 30px; height: 30px; }
  body.print-audit #audit .aph-brand span { font-family: var(--font-mono); font-weight: 600; font-size: 1rem; letter-spacing: .02em; color: #16202B; }
  body.print-audit #audit .aph-meta { margin-left: auto; text-align: right; }
  body.print-audit #audit .aph-title { font-family: var(--font-ui); font-weight: 650; font-size: 1.05rem; color: #16202B; }
  body.print-audit #audit .aph-sub { font-family: var(--font-mono); font-size: .7rem; color: #55606A; }
  body.print-audit #audit .audit { display: block; background: #fff !important; border: 0 !important; box-shadow: none !important; margin: 0 !important; overflow: visible !important; }
  body.print-audit #audit .audit-body { display: none !important; }
  body.print-audit #audit .audit-sample { display: block !important; color: #16202B; }
  body.print-audit #audit .audit-sample .cl-head { color: #55606A !important; }
  body.print-audit #audit .audit-sample .cl-head b { color: #16202B !important; }
  body.print-audit #audit .spec-label { color: #55606A !important; }
  body.print-audit #audit .spec-body { color: #16202B !important; }
  body.print-audit #audit .spec-h { color: #55606A !important; }
  body.print-audit #audit .spec-table { font-size: 9.5px; }
  body.print-audit #audit .spec-table th { color: #55606A !important; border-bottom: 1px solid #bbb !important; }
  body.print-audit #audit .spec-table td { color: #16202B !important; border-bottom: 1px solid #e2e2e2 !important; }
  body.print-audit #audit .spec-table .sw { box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .3) !important; }
  body.print-audit #audit .spec-p { color: #55606A !important; }
  body.print-audit #audit .spec-ramp-print span { color: #16202B !important; border-color: #ccc !important; }
  body.print-audit #audit .spec-table tr { break-inside: avoid; page-break-inside: avoid; }
  body.print-audit #audit .spec-table thead { display: table-header-group; }
  body.print-audit #audit .audit-print-foot { display: block !important; margin-top: 16px; padding-top: 10px;
    border-top: 1px solid #C9D3CC; font-family: var(--font-mono); font-size: .66rem; color: #55606A !important; }
  body.print-audit * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
