/* ============================================================
   Snow Cap Consulting — Managed AI Services
   Single-page site styles. Vanilla CSS, custom-property driven.
   Drop into GeneratePress child theme as-is.
   ============================================================ */

:root {
  /* Palette — deep ink navy + icy whites + sunrise accent */
  --ink: #0d2238;
  --ink-2: #14304b;
  --ink-3: #1d3f60;
  --bg: #f5f8fa;
  --surface: #ffffff;
  --text: #243a52;
  --muted: #5b748e;
  --line: #dde7ee;
  --ice: #e4edf4;
  --accent: #c96b45;        /* sunrise — overridden by tweaks */
  --accent-hover: #b85c38;
  --accent-soft: #f7e8e0;
  --on-accent: #ffffff;

  --font-sans: "Schibsted Grotesk", "Helvetica Neue", Helvetica, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --shadow-card: 0 1px 2px rgba(13, 34, 56, 0.05), 0 12px 32px -16px rgba(13, 34, 56, 0.18);

  /* ---- Dark-section palette (default: Jewel = deep sapphire blue + warm
     sunrise). Breaks the all-navy monotony with a small, harmonious family:
     navy stays the anchor for photo sections, "The core service" takes a
     lighter, richer blue, and "Who it's for" takes a warm sunrise tone.
     Switchable via the Tweaks panel (body[data-sections]). */
  --core-bg: #103453;
  --core-glow: rgba(96, 156, 212, 0.26);
  --core-glow-2: rgba(96, 156, 212, 0.12);
  --whofor-bg: #1c1410;
  --whofor-glow-1: rgba(216, 122, 74, 0.32);
  --whofor-glow-2: rgba(150, 82, 54, 0.20);
  --whofor-veil-top: rgba(28, 19, 15, 0.90);
  --whofor-veil-mid: rgba(34, 22, 16, 0.85);
  --whofor-veil-bot: rgba(20, 14, 11, 0.95);
}

/* Forest — deep spruce green core (still warm "Who it's for") */
body[data-sections="forest"] {
  --core-bg: #0e2a23;
  --core-glow: rgba(90, 168, 122, 0.22);
  --core-glow-2: rgba(90, 168, 122, 0.10);
}

/* Navy — original all-navy scheme */
body[data-sections="navy"] {
  --core-bg: #0a1a2b;
  --core-glow: rgba(201, 107, 69, 0.18);
  --core-glow-2: rgba(201, 107, 69, 0.0);
  --whofor-bg: #0d2238;
  --whofor-glow-1: rgba(201, 107, 69, 0.16);
  --whofor-glow-2: rgba(91, 124, 158, 0.18);
  --whofor-veil-top: rgba(13, 34, 56, 0.94);
  --whofor-veil-mid: rgba(13, 34, 56, 0.90);
  --whofor-veil-bot: rgba(13, 34, 56, 0.96);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.12;
  margin: 0 0 0.5em 0;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

p { margin: 0 0 1em 0; text-wrap: pretty; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Kickers / labels ---------- */
.kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--ink-3); transform: translateY(-1px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}
.site-header.scrolled {
  background: rgba(245, 248, 250, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.25s ease;
}
.site-header.scrolled .brand-logo { filter: none; }

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a:not(.btn) {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.18s ease;
}
.site-nav a:not(.btn):hover { color: #fff; }
.site-header.scrolled .site-nav a:not(.btn) { color: var(--muted); }
.site-header.scrolled .site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav .btn { padding: 11px 20px; font-size: 14.5px; }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  perspective: 1200px;
  background: #0a1a2b;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/img/mountain_1.webp");
  background-size: cover;
  background-position: center 30%;
  transform-origin: center center;
  transform: scale(var(--hero-zoom, 1)) rotateX(var(--hero-tilt, 0deg));
  backface-visibility: hidden;
  will-change: transform;
}
body[data-photo="duotone"] .hero-bg { filter: saturate(0.55) contrast(1.04); }
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(10, 26, 43, 0.94) 0%, rgba(10, 26, 43, 0.6) 38%, rgba(10, 26, 43, 0.34) 65%, rgba(10, 26, 43, 0.42) 100%);
}
.hero .container { width: 100%; padding-bottom: 92px; padding-top: 160px; }
.hero-kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--accent) 60%, #ffffff);
  margin: 0 0 22px 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(9, 22, 37, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  white-space: nowrap;
}
@media (max-width: 480px) {
  .hero-kicker { font-size: 11px; letter-spacing: 0.14em; padding: 9px 14px; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(44px, 6.4vw, 84px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
  margin: 0 0 22px 0;
  max-width: 13ch;
  text-shadow: 0 2px 24px rgba(6, 16, 28, 0.5), 0 1px 3px rgba(6, 16, 28, 0.4);
}
.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  text-shadow: 0 1px 12px rgba(6, 16, 28, 0.55);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  margin-top: 26px;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- Experience + client logos ---------- */
.logo-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 60px;
}
.exp-card {
  display: grid;
  grid-template-columns: minmax(168px, 0.8fr) minmax(0, 2.4fr);
  align-items: stretch;
  gap: 48px;
}
.exp-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-kicker {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
}
.exp-number {
  font-family: var(--font-sans);
  font-size: clamp(74px, 9vw, 106px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 8px 0 10px;
}
.exp-number span { color: var(--accent); }
.exp-unit {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}
.exp-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  border-left: 1px solid var(--line);
  padding-left: 48px;
}
.exp-copy {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text);
  max-width: 56ch;
  margin: 0;
}

@media (max-width: 880px) {
  .exp-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .exp-body {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 28px;
  }
  .exp-number { font-size: clamp(64px, 16vw, 88px); }
}

/* ---------- Section scaffolding ---------- */
.section { padding: 104px 0; }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(30px, 3.4vw, 44px); }
.section-head .lede { font-size: 18.5px; color: var(--muted); margin: 0; }

/* ---------- Problem statement band ---------- */
.problem {
  background: linear-gradient(180deg, var(--bg) 0%, #eaf1f7 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem blockquote {
  margin: 0;
  max-width: 880px;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.problem blockquote strong { color: var(--accent); font-weight: 600; }
.problem .attribution {
  margin: 26px 0 0 0;
  font-size: 17px;
  color: var(--muted);
  max-width: 64ch;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step {
  --step-accent: var(--accent);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 20px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075) 0%, rgba(255, 255, 255, 0.022) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 26px 52px -34px rgba(0, 0, 0, 0.75);
  color: rgba(255, 255, 255, 0.72);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.step-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.step-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(130% 80% at 100% 0%, color-mix(in oklab, var(--step-accent) 15%, transparent) 0%, transparent 52%);
}
.step > * { position: relative; z-index: 1; }
.step:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--step-accent) 42%, rgba(255, 255, 255, 0.12));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.095) 0%, rgba(255, 255, 255, 0.03) 100%);
}

/* node that rides the connecting rail above each card */
.step-node {
  display: none;
  position: absolute;
  top: -24px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid color-mix(in oklab, var(--accent) 55%, #ffffff);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 20%, transparent);
  transform: translateX(-50%);
  z-index: 3;
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}

.step-meta {
  display: flex;
  align-items: center;
  min-height: 0;
  margin-bottom: 14px;
}
.step-phase {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--accent) 62%, #ffffff);
  padding: 5px 11px 4px;
  border: 1px solid color-mix(in oklab, var(--accent) 40%, transparent);
  border-radius: 100px;
  background: color-mix(in oklab, var(--accent) 14%, transparent);
}
.step h3 { font-size: 21px; margin-bottom: 12px; color: #ffffff; letter-spacing: -0.01em; }
.step p { font-size: 15.5px; line-height: 1.55; color: rgba(255, 255, 255, 0.7); margin: 0; }
.step h3 + p { margin-bottom: 24px; }
.step p.step-flag {
  margin-top: auto;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 500;
  color: #ffffff;
}
.step-flag::before {
  content: "";
  flex: none;
  margin-top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* ---------- How it works — deep navy band ----------
   The section reads as a dark, premium pipeline that echoes Mission
   Control: a navy gradient base, a soft sunrise glow, and a faint
   blueprint grid that fades toward the edges. Painted on the real
   .section element (no masks on content) so it renders identically in
   the browser, the sticky scrolly pin, and export paths. */
/* NOTE: selector is intentionally ID-free (.how-pin .section, not
   #how .section) so it stays LOWER specificity than the .is-scrolly
   sticky-pin rule below, otherwise position:relative would override
   position:sticky and break the scroll lock. */
.how-pin .section {
  position: relative;
  overflow: hidden;
  background-color: var(--ink);
  background-image:
    radial-gradient(120% 95% at 86% -12%, rgba(201, 107, 69, 0.18) 0%, transparent 46%),
    radial-gradient(110% 90% at 8% 112%, rgba(91, 155, 213, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, #0c2236 0%, var(--ink) 52%, #0a1b2c 100%);
}
.how-pin .section > .container { position: relative; z-index: 2; }
.how-layers { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.how-layers > div { position: absolute; inset: 0; }
.how-photo { display: none; }
.how-wash { display: none; }
.how-grid {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(125% 85% at 50% 4%, #000 0%, transparent 72%);
          mask-image: radial-gradient(125% 85% at 50% 4%, #000 0%, transparent 72%);
}
/* dark-section text treatment (matches Mission Control / Who it's for) */
.how-pin .kicker { color: color-mix(in oklab, var(--accent) 62%, #ffffff); }
.how-pin .section-head h2 { color: #ffffff; }
.how-pin .section-head .lede { color: rgba(255, 255, 255, 0.74); }

/* ---------- How it works — pinned card rise ----------
   JS adds .is-scrolly to .how-pin on large screens with motion on.
   The section pins full-viewport; scroll progress drifts the heading in,
   then rises each step card into place one at a time, lighting its rail
   node as it lands. Inert without .is-scrolly (mobile, reduced motion,
   motion tweak off, no JS). */
.how-pin { position: relative; }

body[data-motion="on"] .how-pin.is-scrolly { height: 150vh; }
body[data-motion="on"] .how-pin.is-scrolly .section {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
body[data-motion="on"] .how-pin.is-scrolly .container { width: 100%; }

/* Heading drifts up as the pin engages (scrubbed by site.js) */
body[data-motion="on"] .how-pin.is-scrolly .section-head {
  opacity: var(--how-head-o, 1);
  transform: translateY(var(--how-head-ty, 0px));
  will-change: transform, opacity;
}

/* Cards start below, lifted away in 3D; .on rises them home with a
   gentle overshoot for the "settle into place" feel */
body[data-motion="on"] .how-pin.is-scrolly .steps { perspective: 1400px; }
body[data-motion="on"] .how-pin.is-scrolly .step {
  opacity: 0;
  transform: translateY(58px) rotateX(11deg) scale(0.95);
  transform-origin: 50% 100%;
  transition:
    opacity 0.55s ease,
    transform 0.85s cubic-bezier(0.18, 0.92, 0.28, 1);
}
body[data-motion="on"] .how-pin.is-scrolly .step.on {
  opacity: 1;
  transform: none;
}
/* Dots are drawn on the rail, so cards can animate without dragging them. */
body[data-motion="on"] .how-pin.is-scrolly .step-node {
  display: none;
}

/* ---------- How it works — connecting rail ----------
   A hairline rail sits above the three cards; as each card rises into
   place its node lights and the rail fills toward it. Shown only in the
   scrolly desktop experience; the cards stand on their own otherwise. */
.steps-stage { position: relative; }
.steps-rail { display: none; }

body[data-motion="on"] .how-pin.is-scrolly .steps-stage {
  position: relative;
  transform: translateY(var(--how-stage-ty, 0px));
  will-change: transform;
}
body[data-motion="on"] .how-pin.is-scrolly .steps { position: relative; z-index: 2; }
body[data-motion="on"] .how-pin.is-scrolly .steps-rail {
  display: block;
  position: absolute;
  top: -16px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.13);
  z-index: 0;
}
.steps-rail-fill {
  display: block;
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  width: var(--how-rail-w, 0%);
  border-radius: inherit;
  background: var(--accent);
  box-shadow: 0 0 14px color-mix(in oklab, var(--accent) 65%, transparent);
  transition: width 0.12s linear;
}
.rail-node {
  display: none;
}
body[data-motion="on"] .how-pin.is-scrolly .rail-node {
  display: block;
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  opacity: 0;
  background: var(--accent);
  border: 2px solid color-mix(in oklab, var(--accent) 55%, #ffffff);
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 22%, transparent);
  transform: translate(-50%, -50%);
  transition: opacity 0.14s ease;
  z-index: 2;
}
body[data-motion="on"] .how-pin.is-scrolly .rail-node-1 { left: 0; }
body[data-motion="on"] .how-pin.is-scrolly .rail-node-2 { left: 50%; }
body[data-motion="on"] .how-pin.is-scrolly .rail-node-3 { left: 100%; }
body[data-motion="on"] .how-pin.is-scrolly .steps-rail.node-1-on .rail-node-1,
body[data-motion="on"] .how-pin.is-scrolly .steps-rail.node-2-on .rail-node-2,
body[data-motion="on"] .how-pin.is-scrolly .steps-rail.node-3-on .rail-node-3 {
  opacity: 1;
}

/* ---------- Services flagship ---------- */
.services {
  position: relative;
  overflow: hidden;
  background: #fbfcfd;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services .container {
  position: relative;
  z-index: 1;
  isolation: isolate;
}
.services-mountain {
  position: absolute;
  top: -20px;
  right: -80px;
  z-index: 0;
  display: block;
  width: min(1100px, 82vw);
  max-width: none;
  height: auto;
  opacity: 0.38;
  filter: contrast(1.12);
  mix-blend-mode: multiply;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 12%, rgba(0, 0, 0, 0.42) 26%, #000 42%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 12%, rgba(0, 0, 0, 0.42) 26%, #000 42%);
  pointer-events: none;
  user-select: none;
}
.services-flagship-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}
.services-title h2 {
  max-width: 20ch;
  margin-bottom: 22px;
  font-size: clamp(42px, 4.5vw, 58px);
  letter-spacing: 0;
}
.services-title .lede {
  max-width: 66ch;
  margin: 0;
  font-size: 19px;
  color: var(--muted);
}
.svc-core {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
  min-height: 452px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #152137;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 34px 64px -38px rgba(6, 16, 26, 0.78);
}
.svc-core::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 15, 28, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 28%, rgba(4, 10, 20, 0.12));
  pointer-events: none;
}
.svc-core-main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 46px;
}
.svc-core-tag {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.svc-core h3 {
  max-width: 18ch;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(34px, 2.8vw, 42px);
  letter-spacing: 0;
}
.svc-core h3 span { display: block; }
.svc-core-main > p {
  max-width: 39ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}
.svc-core-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 14px 18px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.svc-core-cta:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.svc-core-cta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}
.svc-core-cta svg { transition: transform 0.2s ease; }
.svc-core-cta:hover svg { transform: translateX(3px); }

.svc-core-flow {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  padding: 27px 25px 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(ellipse at 70% 48%, rgba(83, 137, 177, 0.26) 0%, rgba(42, 78, 111, 0.14) 36%, transparent 68%),
    linear-gradient(90deg, rgba(5, 12, 24, 0.18) 0%, rgba(27, 47, 73, 0.08) 45%, rgba(4, 10, 20, 0.32) 100%);
}
.svc-core-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(156, 190, 218, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 190, 218, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at 72% 48%, #000 12%, rgba(0, 0, 0, 0.9) 50%, transparent 95%);
  mask-image: radial-gradient(ellipse at 72% 48%, #000 12%, rgba(0, 0, 0, 0.9) 50%, transparent 95%);
  pointer-events: none;
}
.svc-core-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 17, 0.42), transparent 25%, transparent 72%, rgba(3, 8, 17, 0.5));
  pointer-events: none;
}
.svc-cine-status,
.svc-cine-sources,
.svc-cine-system,
.svc-cine-footer {
  position: relative;
  z-index: 1;
}
.svc-cine-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(224, 235, 244, 0.62);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.svc-cine-status > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8fc3a2;
  box-shadow: 0 0 0 4px rgba(143, 195, 162, 0.12), 0 0 14px rgba(143, 195, 162, 0.72);
}
.svc-cine-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 13px;
}
.svc-cine-sources span {
  padding: 7px 10px;
  border: 1px solid rgba(176, 205, 228, 0.16);
  border-radius: 4px;
  background: rgba(215, 229, 240, 0.075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  color: rgba(228, 237, 244, 0.68);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.1;
}
.svc-cine-system {
  display: grid;
  flex: 1;
  align-items: center;
  min-height: 220px;
}
.svc-cine-track {
  position: absolute;
  top: 50%;
  right: 6.5%;
  left: 6.5%;
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(90deg, #6c96b2 0%, #63aeb1 32%, #d2845e 70%, #95b18e 100%);
  box-shadow: 0 0 18px rgba(100, 159, 187, 0.4);
  transform: translateY(-50%);
}
.svc-cine-track::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -90px;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
  filter: blur(1px);
}
.svc-cine-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
}
.svc-cine-stage {
  --stage: #86adc7;
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 154px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 15px 13px;
  border: 1px solid color-mix(in oklab, var(--stage) 38%, transparent);
  border-radius: 6px;
  background:
    linear-gradient(160deg, color-mix(in oklab, var(--stage) 18%, rgba(16, 31, 51, 0.9)), rgba(9, 19, 34, 0.92) 70%),
    rgba(12, 26, 44, 0.92);
  box-shadow:
    0 16px 30px -22px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 22px color-mix(in oklab, var(--stage) 10%, transparent);
  backdrop-filter: blur(8px);
}
.svc-cine-agent { --stage: #6fbdbe; }
.svc-cine-review { --stage: #e09368; }
.svc-cine-complete { --stage: #9eb89a; }
.svc-cine-index {
  margin-bottom: 13px;
  color: color-mix(in oklab, var(--stage) 82%, #fff);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.svc-cine-icon {
  display: grid;
  width: 32px;
  height: 32px;
  margin-bottom: 13px;
  border: 1px solid color-mix(in oklab, var(--stage) 42%, transparent);
  border-radius: 5px;
  background: color-mix(in oklab, var(--stage) 13%, rgba(9, 19, 34, 0.94));
  box-shadow: 0 0 18px color-mix(in oklab, var(--stage) 15%, transparent);
  color: color-mix(in oklab, var(--stage) 82%, #fff);
  place-items: center;
}
.svc-cine-icon svg {
  width: 17px;
  height: 17px;
}
.svc-cine-stage strong {
  color: #fff;
  font-size: 12.5px;
  line-height: 1.2;
}
.svc-cine-stage small {
  display: block;
  margin-top: 6px;
  color: rgba(218, 230, 239, 0.55);
  font-size: 9.5px;
  line-height: 1.3;
}
.svc-cine-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(174, 203, 225, 0.12);
  color: rgba(216, 230, 241, 0.48);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.03em;
}
.svc-cine-footer span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.svc-cine-footer i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e09368;
  box-shadow: 0 0 10px rgba(224, 147, 104, 0.65);
}

/* Cinematic workflow image, composed as one continuous visual field. */
.svc-core {
  display: block;
  min-height: 320px;
  background:
    radial-gradient(90% 150% at 58% 48%, rgba(34, 58, 89, 0.34), transparent 62%),
    linear-gradient(105deg, #121d34 0%, #15213a 52%, #10243c 100%);
}
.svc-core::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 14, 27, 0.12) 0%, transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%, rgba(3, 9, 18, 0.16));
}
.svc-core-main {
  z-index: 3;
  width: 48%;
  min-height: 320px;
  padding: 30px 42px;
}
.svc-core-tag { margin-bottom: 12px; }
.svc-core h3 { margin-bottom: 12px; }
.svc-core-main > p {
  max-width: 40ch;
  line-height: 1.45;
}
.svc-core-cta {
  margin-top: 22px;
  padding: 13px 18px;
}
.svc-core-visual {
  position: absolute;
  inset: 0 0 0 42%;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  background: #102139;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.64) 12%, #000 27%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.64) 12%, #000 27%);
}
.svc-core-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.2), transparent 28%, transparent 72%, rgba(5, 12, 24, 0.34)),
    linear-gradient(90deg, rgba(13, 28, 48, 0.26), transparent 22%);
  pointer-events: none;
}
.svc-core-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}
.svc-core-visual figcaption {
  position: absolute;
  right: 5%;
  bottom: 14px;
  left: 8%;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  color: rgba(240, 245, 248, 0.72);
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  text-shadow: 0 1px 8px rgba(2, 8, 16, 0.85);
  text-transform: uppercase;
}
.svc-core-visual figcaption span {
  position: relative;
}
.svc-core-visual figcaption span:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -9px;
  color: rgba(240, 245, 248, 0.52);
  font-size: 10px;
  line-height: 1;
  transform: translate(50%, -52%);
}

.svc-rows {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.svc-row {
  --row-bg: #f4f7f9;
  --row-bg-hi: #fbfcfd;
  --row-line: var(--line);
  --row-accent: var(--accent);
  --row-accent-soft: var(--accent-soft);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 220px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--row-line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--row-bg-hi) 0%, var(--row-bg) 100%);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}
.svc-row:nth-child(1) {
  --row-bg: #b9dadb;
  --row-bg-hi: #c7e5e4;
  --row-line: #a7ced0;
  --row-accent: #245f68;
  --row-accent-soft: #c1e0e0;
  background:
    radial-gradient(circle at 13% 88%, rgba(244, 255, 255, 0.25), transparent 48%),
    linear-gradient(145deg, #c7e5e4 0%, #c1e0e0 48%, #b9dadb 100%);
}
.svc-row:nth-child(2) {
  --row-bg: #becfdd;
  --row-bg-hi: #cddae5;
  --row-line: #afc1d0;
  --row-accent: #405d7a;
  --row-accent-soft: #c7d5e1;
  background:
    radial-gradient(circle at 14% 84%, rgba(255, 255, 255, 0.16), transparent 50%),
    linear-gradient(145deg, #cddae5 0%, #c7d5e1 50%, #becfdd 100%);
}
.svc-row:nth-child(3) {
  --row-bg: #eab49b;
  --row-bg-hi: #efc1ad;
  --row-line: #d99d82;
  --row-accent: #84452f;
  --row-accent-soft: #edbba5;
  background:
    radial-gradient(circle at 63% 43%, rgba(255, 245, 239, 0.24), transparent 55%),
    linear-gradient(145deg, #efc1ad 0%, #edbba5 54%, #eab49b 100%);
}
.svc-row:nth-child(4) {
  --row-bg: #b3c4ac;
  --row-bg-hi: #c5d2bf;
  --row-line: #9fb39a;
  --row-accent: #365d4d;
  --row-accent-soft: #bdcbb7;
  background:
    radial-gradient(circle at 26% 82%, rgba(245, 250, 240, 0.16), transparent 52%),
    linear-gradient(145deg, #c5d2bf 0%, #bdcbb7 52%, #b3c4ac 100%);
}
a.svc-row:hover {
  border-color: var(--row-accent);
  box-shadow: 0 22px 34px -28px color-mix(in oklab, var(--row-accent) 72%, transparent);
  transform: translateY(-4px);
}
a.svc-row:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--row-accent) 55%, #fff);
  outline-offset: 3px;
}
.row-category {
  padding: 5px 9px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--row-accent-soft) 76%, #fff);
  color: var(--row-accent);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.row-icon {
  display: block;
  width: 80px;
  height: 67px;
  margin: -4px 0 10px -4px;
  overflow: hidden;
}
.row-icon img {
  display: block;
  width: 80px;
  height: auto;
  object-fit: cover;
}
.row-body h4 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: 0;
}
.row-body p {
  margin: 0;
  color: color-mix(in oklab, var(--ink-3) 86%, var(--row-accent));
  font-size: 14.5px;
  line-height: 1.5;
}
.row-foot {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}
.row-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--row-accent);
}
.row-cta .row-label {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
}
.row-chev {
  display: grid;
  width: 26px;
  height: 26px;
  flex: none;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: var(--row-accent);
  place-items: center;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}
a.svc-row:hover .row-chev {
  background: var(--row-accent);
  color: #fff;
  transform: translateX(3px);
}

@media (prefers-reduced-motion: no-preference) {
  .svc-cine-track::after { animation: svc-flow-scan 3.4s ease-in-out infinite; }
  .svc-cine-status > span { animation: svc-live-pulse 2.4s ease-out infinite; }
  @keyframes svc-flow-scan {
    0%, 15% { left: -90px; opacity: 0; }
    25% { opacity: 1; }
    78% { opacity: 1; }
    90%, 100% { left: 100%; opacity: 0; }
  }
  @keyframes svc-live-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(143, 195, 162, 0.12), 0 0 14px rgba(143, 195, 162, 0.72); }
    50% { box-shadow: 0 0 0 7px rgba(143, 195, 162, 0), 0 0 20px rgba(143, 195, 162, 0.9); }
  }
}

/* ---------- Mission Control ---------- */
.mission { background: var(--ink); color: rgba(255, 255, 255, 0.85); position: relative; overflow: hidden; }
.mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(90% 120% at 0% 100%, rgba(201, 107, 69, 0.14) 0%, transparent 50%),
    radial-gradient(80% 100% at 100% 0%, rgba(91, 124, 158, 0.20) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(13, 34, 56, 0.84) 0%, rgba(13, 34, 56, 0.72) 50%, rgba(13, 34, 56, 0.90) 100%),
    url("assets/img/mountain_3.webp") left 35% / cover no-repeat;
  pointer-events: none;
}
.mission .container { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; align-items: center; }
.mission h2 { color: #fff; font-size: clamp(30px, 3.2vw, 42px); }
.mission .lede { color: rgba(255, 255, 255, 0.75); font-size: 18px; }
.mission-points { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.mission-points li { display: flex; gap: 14px; font-size: 16px; line-height: 1.5; }
.mission-points .dot {
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}
.mission-points strong { color: #fff; font-weight: 600; }

/* Mock dashboard */
.mc-frame {
  background: #0a1c30;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  font-size: 13.5px;
}
.mc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mc-bar-title {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  display: flex; align-items: center; gap: 9px;
}
.mc-bar-title .pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: #6fbf8a;
  box-shadow: 0 0 0 0 rgba(111, 191, 138, 0.5);
  animation: mcPulse 2.4s infinite;
}
@keyframes mcPulse {
  0% { box-shadow: 0 0 0 0 rgba(111, 191, 138, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(111, 191, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(111, 191, 138, 0); }
}
.mc-bar-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
}
.mc-body { padding: 18px; display: grid; gap: 12px; }
.mc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 13px 16px;
}
.mc-row-icon {
  flex: none;
  width: 32px; height: 32px;
  border-radius: 9px;
  display: grid; place-items: center;
  font-size: 14px;
}
.mc-row-icon.brief { background: rgba(91, 124, 158, 0.25); color: #9cc0e0; }
.mc-row-icon.approve { background: rgba(201, 107, 69, 0.22); color: #e8a583; }
.mc-row-icon.health { background: rgba(111, 191, 138, 0.18); color: #8fd3a8; }
.mc-row-icon.report { background: rgba(255, 255, 255, 0.10); color: #c3d2df; }
.mc-row-main { flex: 1; min-width: 0; }
.mc-row-title { color: #fff; font-weight: 600; font-size: 13.5px; }
.mc-row-sub { color: rgba(255, 255, 255, 0.5); font-size: 12px; margin-top: 2px; }
.mc-chip {
  flex: none;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}
.mc-chip.action { background: var(--accent); border-color: transparent; color: #fff; }
.mc-foot {
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
}

/* ---------- Mission Control — pinned scrollytelling ----------
   JS adds .is-scrolly to .mission-pin on large screens with motion on.
   The wrapper becomes a tall scroll runway; the section pins (sticky)
   while scroll progress drives the dashboard choreography.
   Without .is-scrolly (mobile, reduced motion, motion tweak off, no JS)
   everything below is inert and the section renders normally. */
.mission-pin { position: relative; }

body[data-motion="on"] .mission-pin.is-scrolly { height: 250vh; }
body[data-motion="on"] .mission-pin.is-scrolly .mission {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}
body[data-motion="on"] .mission-pin.is-scrolly .mission .container { width: 100%; }

body[data-motion="on"] .mission-pin.is-scrolly .mission::before {
  transform: translateY(var(--mc-bg-shift, 0px)) scale(var(--mc-bg-scale, 1));
  transform-origin: left 35%;
  will-change: transform;
}

/* Frame flies in from 3D depth — tilted back and angled away — then
   swings flat and keeps slowly zooming while the rows light up.
   All values (--mc-*) are scrubbed from scroll progress by site.js. */
body[data-motion="on"] .mission-pin.is-scrolly .mission .container { perspective: 1300px; }
body[data-motion="on"] .mission-pin.is-scrolly .mc-frame {
  opacity: var(--mc-o, 1);
  transform:
    translateY(calc(var(--mc-ty, 0px) + var(--mc-drift-y, 0px)))
    rotateX(var(--mc-rx, 0deg))
    rotateY(var(--mc-ry, 0deg))
    scale(var(--mc-s, 1));
  will-change: transform, opacity;
}

/* Left copy column drifts up in parallax with the frame */
body[data-motion="on"] .mission-pin.is-scrolly .mission-copy {
  opacity: var(--mc-copy-o, 1);
  transform: translateY(calc(var(--mc-copy-ty, 0px) + var(--mc-copy-drift, 0px)));
  will-change: transform, opacity;
}

/* Dashboard rows flip in with their own 3D rotation, one by one */
body[data-motion="on"] .mission-pin.is-scrolly .mc-body { perspective: 900px; }
body[data-motion="on"] .mission-pin.is-scrolly .mc-row {
  opacity: 0;
  transform: translateY(26px) rotateX(-32deg) scale(0.97);
  transform-origin: 50% 0;
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
body[data-motion="on"] .mission-pin.is-scrolly .mc-row.on {
  opacity: 1;
  transform: none;
}
body[data-motion="on"] .mission-pin.is-scrolly .mc-caption {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
}
body[data-motion="on"] .mission-pin.is-scrolly .mc-caption.on {
  opacity: 1;
  transform: none;
}

/* Left-hand bullets track the active stage */
body[data-motion="on"] .mission-pin.is-scrolly .mission-points li {
  opacity: 0.45;
  transition: opacity 0.4s ease;
}
body[data-motion="on"] .mission-pin.is-scrolly .mission-points .dot {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
body[data-motion="on"] .mission-pin.is-scrolly .mission-points li.done { opacity: 0.8; }
body[data-motion="on"] .mission-pin.is-scrolly .mission-points li.active { opacity: 1; }
body[data-motion="on"] .mission-pin.is-scrolly .mission-points li.active .dot {
  transform: scale(1.35);
  box-shadow: 0 0 0 5px color-mix(in oklab, var(--accent) 30%, transparent);
}

/* ---------- Principles ---------- */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.principle {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.principle-icon {
  flex: none;
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
}
.principle-icon img { display: block; width: 64px; height: 64px; object-fit: contain; }
.principle h3 { font-size: 19px; margin-bottom: 8px; }
.principle p { font-size: 15px; color: var(--muted); margin: 0; }

/* ---------- Who it's for — warm sunrise band (color set by palette) ----------
   Layers are real elements (not a ::before) so the photo + veil composite
   reliably across browsers and export paths. */
.whofor {
  background: #f5f0e9;
  color: var(--text);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.whofor-layers { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.whofor-layers > div { position: absolute; inset: 0; }
.whofor-photo {
  background: url("assets/img/airy_mountain_peak.webp") right 45% / cover no-repeat;
}
.whofor-veil {
  background:
    linear-gradient(100deg,
      rgba(245, 240, 233, 0.95) 0%,
      rgba(245, 240, 233, 0.88) 34%,
      rgba(245, 240, 233, 0.60) 54%,
      rgba(245, 240, 233, 0.28) 72%,
      rgba(245, 240, 233, 0.08) 88%,
      transparent 100%),
    linear-gradient(to bottom,
      rgba(245, 240, 233, 0.60) 0%,
      transparent 20%,
      transparent 80%,
      rgba(245, 240, 233, 0.72) 100%);
}
.whofor .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.whofor .kicker { color: var(--accent); }
.whofor h2 { color: var(--ink); font-size: clamp(30px, 3.2vw, 44px); }
.whofor .lede { color: var(--text); }
.familiar { list-style: none; margin: 48px 0 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 12px; counter-reset: familiar; }
.familiar-head {
  grid-column: 1 / -1;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 4px;
  display: block;
}
.familiar-head::before { content: none; }
.familiar li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 20px 16px 16px;
  font-size: 15.5px;
  color: var(--text);
  display: flex;
  gap: 14px;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.familiar li:not(.familiar-head):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.familiar li:not(.familiar-head)::before {
  counter-increment: familiar;
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 75%, transparent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent);
}
.whofor-industries {
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--muted);
}

/* ---------- About ---------- */
.about .container { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; }
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  position: relative;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
body[data-photo="duotone"] .about-photo img { filter: saturate(0.6); }
.about h2 { font-size: clamp(30px, 3.2vw, 42px); }
.about .big { font-size: 19px; color: var(--text); }
.about .rest { font-size: 16.5px; color: var(--muted); }
.about-anchor {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
}

/* ---------- FAQ ---------- */
.faq-item {
  max-width: 880px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  transition: transform 0.2s ease;
  flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 26px 24px; font-size: 16px; color: var(--muted); }
.faq-item .faq-a p { margin: 0; }

/* ---------- Contact ---------- */
.contact { background: var(--ink); color: rgba(255, 255, 255, 0.8); position: relative; overflow: hidden; }
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/img/mountain_2.webp");
  background-size: cover;
  background-position: center 20%;
  opacity: 0.14;
  filter: saturate(0);
}
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--ink) 0%, rgba(13, 34, 56, 0.55) 60%, var(--ink) 100%);
}
.contact .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.05fr; gap: 72px; align-items: start; }
.contact h2 { color: #fff; font-size: clamp(30px, 3.2vw, 42px); }
.contact .lede { color: rgba(255, 255, 255, 0.75); font-size: 18px; }
.contact-copy { min-width: 0; }
.contact-illustration {
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin: 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.24);
}
.contact-direct { margin-top: 34px; display: grid; gap: 14px; }
.contact-direct a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 16.5px;
}
.contact-direct a span.icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid; place-items: center;
}
.contact-direct a:hover span.icon { background: rgba(255, 255, 255, 0.16); }

.contact-form-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 38px 36px;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.55);
}
.contact-form-card h3 { font-size: 20px; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--text);
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); background: var(--surface); }
.form-foot {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
}
.form-note { font-size: 12.5px; color: var(--muted); margin: 0; }
.form-success {
  grid-column: span 2;
  background: #eef7f0;
  border: 1px solid #bfe3c9;
  color: #245b36;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
  display: none;
}
.form-success.show { display: block; }
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
.contact-form-card .hidden-fields-container { display: none; }
.turnstile-field:empty { display: none; }
.turnstile-field .cf-turnstile { margin-top: 4px; }
.contact-form-card .wpcf7-form-control-wrap { display: block; }
.contact-form-card .wpcf7-not-valid-tip {
  color: #9f4329;
  font-size: 12.5px;
  margin-top: 6px;
}
.contact-form-card .wpcf7-spinner { margin: 0 0 0 12px; }
.contact-form-card .wpcf7-response-output {
  grid-column: span 2;
  display: none;
  margin: 16px 0 0;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 15px;
}
.contact-form-card.sent .wpcf7-response-output {
  display: block;
  background: #eef7f0;
  border-color: #bfe3c9;
  color: #245b36;
}
.contact-form-card.invalid .wpcf7-response-output,
.contact-form-card.failed .wpcf7-response-output,
.contact-form-card.spam .wpcf7-response-output,
.contact-form-card.unaccepted .wpcf7-response-output {
  display: block;
  background: #fff4ee;
  border-color: #f0c1a7;
  color: #8a3f24;
}

/* ---------- Service pages ---------- */
body[data-service="managed"] { --service-accent: #cf704b; --service-accent-soft: #f5e2da; --service-dark: #102a43; }
body[data-service="automation"] { --service-accent: #397987; --service-accent-soft: #dfeef0; --service-dark: #12333d; }
body[data-service="discovery"] { --service-accent: #b86645; --service-accent-soft: #f3e3dc; --service-dark: #2a2f3d; }
body[data-service="agents"] { --service-accent: #5a7397; --service-accent-soft: #e3e9f1; --service-dark: #172b42; }
body[data-service="training"] { --service-accent: #4f7f72; --service-accent-soft: #e2eee9; --service-dark: #173039; }

.service-page {
  --accent: var(--service-accent, #c96b45);
  background: var(--bg);
}
.service-hero {
  position: relative;
  min-height: min(790px, 94svh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 84px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--ink);
}
.service-hero-media,
.service-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.service-hero-media {
  background-image: var(--service-hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
}
.service-hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 24, 39, 0.97) 0%, rgba(8, 24, 39, 0.93) 35%, rgba(8, 24, 39, 0.66) 57%, rgba(8, 24, 39, 0.13) 82%),
    linear-gradient(180deg, rgba(6, 17, 28, 0.48) 0%, rgba(6, 17, 28, 0.03) 42%, rgba(6, 17, 28, 0.45) 100%);
}
.service-hero .container { width: 100%; }
.service-hero-copy { max-width: 790px; }
.service-hero h1 {
  max-width: 11.5ch;
  color: #fff;
  font-size: clamp(48px, 5.7vw, 78px);
  line-height: 1.02;
}
.service-page--automation .service-hero h1 { max-width: 12.5ch; }
.service-page--discovery .service-hero h1 { max-width: 13ch; }
.service-page--training .service-hero h1 { max-width: 13.5ch; }
.service-dek {
  max-width: 735px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.48;
}
.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.service-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 34px 0 0;
  padding: 22px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.service-signals li {
  position: relative;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
}
.service-signals li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--service-accent);
  border-radius: 50%;
}

.service-page .section { padding: 104px 0; }
.service-page h2 { font-size: clamp(34px, 4vw, 52px); }
.service-page h3 { letter-spacing: 0; }
.service-page .kicker { color: var(--service-accent); }
.service-lead {
  max-width: 660px;
  color: var(--text);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
}
.service-intro { background: #fff; }
.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}
.service-answer {
  position: relative;
  margin: 0;
  padding: 32px 34px 32px 38px;
  background: color-mix(in oklab, var(--service-accent-soft) 58%, #fff);
  border-left: 4px solid var(--service-accent);
}
.service-answer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid color-mix(in oklab, var(--service-accent) 22%, transparent);
}
.service-answer-label {
  display: block;
  margin-bottom: 14px;
  color: var(--service-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.service-answer p {
  margin: 0;
  color: var(--ink);
  font-size: 17.5px;
  line-height: 1.62;
}

.service-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: end;
  margin-bottom: 54px;
}
.service-section-head > p {
  max-width: 530px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 18px;
}
.service-signature {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.76);
  background-color: var(--service-dark);
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}
.service-signature h2,
.service-signature h3 { color: #fff; }
.service-signature .service-section-head > p { color: rgba(255, 255, 255, 0.67); }
.service-signature-visual {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.service-signature-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.service-signature-item + .service-signature-item { border-left: 0; }
.service-signature-item h3 { margin: 24px 0 12px; font-size: 22px; }
.service-signature-item p { margin: 0; color: rgba(255, 255, 255, 0.68); font-size: 15.5px; }
.service-node {
  display: block;
  color: color-mix(in oklab, var(--service-accent) 82%, #fff);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-connector {
  position: relative;
  z-index: 2;
  width: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  align-self: center;
  margin: 0 -1px;
  color: var(--service-accent);
}
.service-connector::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  z-index: -1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.service-connector svg { background: var(--service-dark); }
.service-signature--anatomy .service-signature-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.service-signature--anatomy .service-signature-item { border: 0; }
.service-signature--anatomy .service-connector { display: none; }

.service-features { background: #fff; }
.service-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.service-feature {
  min-width: 0;
  padding-top: 24px;
  border-top: 2px solid var(--line);
}
.service-feature-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: color-mix(in oklab, var(--service-accent-soft) 64%, #fff);
  border: 1px solid color-mix(in oklab, var(--service-accent) 18%, transparent);
  border-radius: 8px;
}
.service-feature-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.service-feature h3 { font-size: 22px; }
.service-feature p { margin: 0; color: var(--muted); font-size: 16px; }

.service-detail { background: #eaf0f4; }
.service-detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: start;
}
.service-detail-copy { position: sticky; top: 108px; }
.service-detail-copy > p:last-child { color: var(--muted); font-size: 18px; }
.service-detail-list { margin: 0; padding: 0; list-style: none; }
.service-detail-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
}
.service-detail-list li:last-child { border-bottom: 1px solid color-mix(in oklab, var(--ink) 14%, transparent); }
.service-detail-list > li > span {
  color: var(--service-accent);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}
.service-detail-list h3 { margin: 0 0 7px; font-size: 21px; }
.service-detail-list p { margin: 0; color: var(--muted); font-size: 16px; }

.service-split { background: #fff; }
.service-split-head { max-width: 850px; margin-bottom: 48px; }
.service-split-head > p { max-width: 710px; color: var(--muted); font-size: 18px; }
.service-split-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-split-grid article {
  padding: 34px;
  background: var(--bg);
  border-top: 4px solid var(--service-accent);
}
.service-split-grid article:last-child { border-top-color: var(--ink-3); }
.service-split-grid h3 { margin-bottom: 22px; font-size: 23px; }
.service-split-grid ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.service-split-grid li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 16px;
}
.service-split-grid li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--service-accent);
  transform: rotate(45deg);
}
.service-split-grid article:last-child li::before { background: var(--ink-3); }

.service-faq-section { background: var(--bg); }
.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: start;
}
.service-faq-layout > div:first-child { position: sticky; top: 108px; }
.service-faq-layout .faq-item { max-width: none; margin-bottom: 10px; border-radius: 6px; box-shadow: none; }
.service-faq-layout .faq-answer { padding: 0 26px 24px; color: var(--muted); font-size: 16px; }
.service-faq-layout .faq-answer p { margin: 0; }

.service-related { padding-top: 92px; background: #fff; }
.service-related > .container > h2 { margin-bottom: 42px; }
.service-link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-link-grid a {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  color: var(--ink);
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-link-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--service-accent);
  box-shadow: 0 18px 38px -22px rgba(13, 34, 56, 0.35);
}
.service-link-label {
  margin-bottom: 24px;
  color: var(--service-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-link-grid strong { margin-bottom: 11px; font-size: 22px; line-height: 1.2; }
.service-link-grid strong + span { color: var(--muted); font-size: 15.5px; }
.service-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--ink-3);
  font-size: 14px;
  font-weight: 700;
}
.service-link-arrow svg { transition: transform 0.2s ease; }
.service-link-grid a:hover .service-link-arrow svg { transform: translateX(4px); }

.service-closing {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 108px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}
.service-closing-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/img/airy_mountain_peak.webp") 62% 48% / cover no-repeat;
}
.service-closing::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(7, 22, 37, 0.97) 0%, rgba(7, 22, 37, 0.88) 48%, rgba(7, 22, 37, 0.37) 76%, rgba(7, 22, 37, 0.18) 100%);
}
.service-closing .container { max-width: 1200px; }
.service-closing h2 { max-width: 780px; color: #fff; }
.service-closing p:not(.kicker) { max-width: 680px; margin-bottom: 30px; font-size: 18px; }
.service-closing .btn svg { transition: transform 0.2s ease; }
.service-closing .btn:hover svg { transform: translateX(4px); }

/* Fallback styling for non-campaign WordPress pages. */
.service-body .container { max-width: 980px; }
.service-body h2 { margin-top: 56px; font-size: clamp(28px, 3vw, 40px); }
.service-body h2:first-child { margin-top: 0; }
.service-body h3 { margin-top: 34px; font-size: 22px; }
.service-body p,
.service-body li { color: var(--text); font-size: 18px; }

@media (max-width: 1060px) {
  .service-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .service-signature-visual { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.14); }
  .service-signature-item { border: 0; }
  .service-connector { display: none; }
  .service-signature--ownership .service-signature-visual,
  .service-signature--discovery .service-signature-visual { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 780px) {
  .service-hero { min-height: 720px; padding: 126px 0 68px; align-items: flex-end; }
  .service-hero-media { background-position: 64% center; }
  .service-hero-scrim {
    background:
      linear-gradient(90deg, rgba(8, 24, 39, 0.95) 0%, rgba(8, 24, 39, 0.77) 72%, rgba(8, 24, 39, 0.42) 100%),
      linear-gradient(180deg, rgba(6, 17, 28, 0.26) 0%, rgba(6, 17, 28, 0.24) 38%, rgba(6, 17, 28, 0.93) 100%);
  }
  .service-hero h1 { font-size: clamp(42px, 12vw, 62px); }
  .service-dek { font-size: 18px; }
  .service-signals { gap: 10px 18px; }
  .service-page .section { padding: 76px 0; }
  .service-intro-grid,
  .service-section-head,
  .service-detail-grid,
  .service-faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .service-section-head { align-items: start; margin-bottom: 40px; }
  .service-detail-copy,
  .service-faq-layout > div:first-child { position: static; }
  .service-signature-visual,
  .service-signature--ownership .service-signature-visual,
  .service-signature--discovery .service-signature-visual,
  .service-signature--anatomy .service-signature-visual { grid-template-columns: 1fr; }
  .service-feature-grid,
  .service-split-grid,
  .service-link-grid { grid-template-columns: 1fr; }
  .service-link-grid a { min-height: 220px; }
  .service-closing { padding: 84px 0; }
}

@media (max-width: 480px) {
  .service-actions { align-items: stretch; flex-direction: column; }
  .service-actions .btn { justify-content: center; white-space: normal; text-align: center; }
  .service-signals { display: grid; grid-template-columns: 1fr; }
  .service-answer,
  .service-signature-item,
  .service-split-grid article,
  .service-link-grid a { padding: 26px 24px; }
  .service-feature-grid { gap: 28px; }
  .service-detail-list li { grid-template-columns: 42px 1fr; gap: 14px; }
}

/* ---------- 404 ---------- */
.not-found {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 138px 0 88px;
  color: #fff;
  background: #0a1a2b;
}
.not-found-bg,
.not-found-scrim {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.not-found-bg {
  background: url("assets/img/airy_mountain_peak.webp") 62% center / cover no-repeat;
  transform: scale(1.035);
}
.not-found-scrim {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 20, 34, 0.62) 0%, rgba(7, 20, 34, 0.1) 32%, rgba(7, 20, 34, 0.32) 100%),
    linear-gradient(90deg, rgba(7, 20, 34, 0.96) 0%, rgba(10, 30, 49, 0.88) 36%, rgba(10, 30, 49, 0.42) 64%, rgba(10, 30, 49, 0.08) 100%);
}
.not-found .container {
  position: relative;
  width: 100%;
}
.not-found-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.not-found-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}
.not-found-kicker span {
  padding: 6px 10px;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
}
.not-found h1 {
  max-width: 9ch;
  margin-bottom: 20px;
  color: #fff;
  font-size: clamp(54px, 7.2vw, 94px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  text-shadow: 0 3px 28px rgba(5, 16, 28, 0.46);
}
.not-found-copy > p:not(.not-found-kicker) {
  max-width: 51ch;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.7vw, 20px);
}
.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.not-found-code {
  position: absolute;
  right: 4px;
  bottom: -72px;
  z-index: 1;
  font-size: clamp(190px, 30vw, 430px);
  font-weight: 800;
  line-height: 0.72;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.055);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  user-select: none;
}

@media (prefers-reduced-motion: no-preference) {
  .not-found-bg { animation: not-found-drift 16s ease-in-out infinite alternate; }
  .not-found-copy { animation: not-found-arrive 0.75s cubic-bezier(0.2, 0.7, 0.3, 1) both; }
  @keyframes not-found-drift {
    to { transform: scale(1.075) translate3d(-0.7%, -0.4%, 0); }
  }
  @keyframes not-found-arrive {
    from { opacity: 0; transform: translateY(22px); }
  }
}

@media (max-width: 740px) {
  .not-found { min-height: 100svh; padding: 126px 0 72px; }
  .not-found-bg { background-position: 70% center; }
  .not-found-scrim {
    background:
      linear-gradient(180deg, rgba(7, 20, 34, 0.72) 0%, rgba(7, 20, 34, 0.42) 42%, rgba(7, 20, 34, 0.78) 100%),
      linear-gradient(90deg, rgba(7, 20, 34, 0.93) 0%, rgba(10, 30, 49, 0.62) 100%);
  }
  .not-found h1 { font-size: clamp(52px, 16vw, 72px); }
  .not-found-actions { align-items: flex-start; flex-direction: column; }
  .not-found-code { right: -16px; bottom: -30px; font-size: 46vw; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #0a1c30;
  color: rgba(255, 255, 255, 0.55);
  padding: 56px 0 40px;
  font-size: 14.5px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { display: flex; align-items: center; }
.footer-brand img { height: 30px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-meta { max-width: 360px; }
.footer-meta p { margin: 0 0 6px; }
.footer-links {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: repeat(2, max-content);
  gap: 8px 42px;
}
.footer-links a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
.footer-links a:hover { color: #fff; }
.footer-legal {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 18px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ---------- Scroll reveals ---------- */
@media (prefers-reduced-motion: no-preference) {
  body[data-motion="on"] [data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.3, 1);
  }
  body[data-motion="on"] [data-reveal].in {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .services-mountain { top: 150px; right: -330px; width: 1000px; opacity: 0.56; }
  .services-title h2 { max-width: 18ch; }
  .svc-core { min-height: 610px; }
  .svc-core-main { width: 100%; min-height: 290px; padding: 38px 48px; }
  .svc-core-visual { inset: 290px 0 0; -webkit-mask-image: none; mask-image: none; }
  .svc-rows { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mission .container,
  .whofor .container,
  .about .container,
  .contact .container { grid-template-columns: 1fr; gap: 44px; }
  .about-photo { max-width: 520px; }
  .contact-illustration { width: min(100%, 540px); }
}

@media (max-width: 740px) {
  .section { padding: 72px 0; }
  .steps { grid-template-columns: 1fr; }
  .services-flagship-head { margin-bottom: 34px; }
  .services-mountain { top: 188px; right: -430px; width: 850px; opacity: 0.46; }
  .services-title h2 { max-width: none; font-size: 40px; }
  .services-title .lede { font-size: 17px; }
  .svc-core { min-height: 580px; }
  .svc-core-main { width: 100%; min-height: 310px; padding: 34px 28px; }
  .svc-core-visual { inset: 310px 0 0; }
  .svc-core-visual figcaption { right: 3%; bottom: 10px; left: 3%; gap: 4px; font-size: 8px; }
  .svc-core-visual figcaption span:not(:last-child)::after { right: -5px; font-size: 8px; }
  .svc-rows { grid-template-columns: 1fr; }
  .svc-row { min-height: 260px; }
  .principles-grid { grid-template-columns: 1fr; }
  .principle { padding: 28px 24px; }
  .principle-icon,
  .principle-icon img { width: 56px; height: 56px; }
  .contact-illustration { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full, .form-foot, .form-success { grid-column: span 1; }
  .hero .container { padding-bottom: 64px; }
  .service-hero { padding: 132px 0 72px; }
  .service-link-grid { grid-template-columns: 1fr; }
  .site-nav {
    position: fixed;
    top: 74px;
    left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 28px 24px;
    gap: 18px;
    display: none;
    box-shadow: 0 24px 40px -24px rgba(13, 34, 56, 0.3);
  }
  .site-nav.open { display: flex; }
  .site-nav a:not(.btn) { color: var(--ink) !important; font-size: 17px; }
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #fff;
  }
  .site-header.scrolled .nav-toggle { color: var(--ink); }
  .nav-toggle .bars,
  .nav-toggle .bars::before,
  .nav-toggle .bars::after {
    content: "";
    display: block;
    width: 22px; height: 2px;
    background: currentColor;
    position: relative;
    transition: transform 0.2s ease;
  }
  .nav-toggle .bars::before { position: absolute; top: -7px; }
  .nav-toggle .bars::after { position: absolute; top: 7px; }
}

/* ============================================================
   v2 additions — problem-first narrative, proof, pricing
   ============================================================ */

/* ---------- Sound familiar (problem hooks) — pre-dawn navy ---------- */
.familiar-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(168deg, #07182a 0%, var(--ink) 48%, #112e45 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.familiar-frame .container { position: relative; z-index: 2; }
.familiar-frame .kicker { color: color-mix(in oklab, var(--accent) 58%, #ffffff); }
.familiar-frame h2 { color: #fff; }
.familiar-intro .lede { color: rgba(255, 255, 255, 0.78); }

/* Layered dawn atmosphere */
.familiar-atmos {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* cool pre-dawn sky wash, upper-left */
.familiar-glow::after {
  content: "";
  position: absolute;
  left: -20%;
  top: -40%;
  width: 70%;
  height: 110%;
  background: radial-gradient(46% 46% at 40% 50%,
    color-mix(in oklab, #6fb6d8 60%, transparent) 0%,
    transparent 64%);
  opacity: 0.28;
  mix-blend-mode: screen;
}
/* warm sunrise glow rising behind the peak, upper-right */
.familiar-glow {
  position: absolute;
  right: -6%;
  top: -24%;
  width: 74%;
  height: 108%;
  background: radial-gradient(42% 44% at 60% 48%,
    color-mix(in oklab, var(--accent) 88%, #ffd0a4) 0%,
    color-mix(in oklab, var(--accent) 40%, transparent) 36%,
    transparent 66%);
  opacity: 0.6;
  filter: blur(2px);
  mix-blend-mode: screen;
}
/* the snow peak glowing out of the mist, behind the heading */
.familiar-fog {
  position: absolute;
  right: -2%;
  top: -8%;
  width: min(620px, 50%);
  aspect-ratio: 3 / 4;
  background: url("assets/img/mountain_2.webp") 52% 22% / cover no-repeat;
  opacity: 0.5;
  filter: contrast(1.06) brightness(1.06);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(78% 74% at 80% 34%, #000 0%, rgba(0,0,0,0.5) 48%, transparent 78%);
  mask-image: radial-gradient(78% 74% at 80% 34%, #000 0%, rgba(0,0,0,0.5) 48%, transparent 78%);
}
/* faint film grain for richness */
.familiar-grain {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

.familiar-intro { max-width: 62ch; }

.vignettes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.vignette {
  position: relative;
  background: rgba(255, 255, 255, 0.055);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px 32px 32px;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 54px -30px rgba(0, 0, 0, 0.7);
  transition: transform 0.34s cubic-bezier(0.2, 0.7, 0.3, 1),
              box-shadow 0.34s ease,
              border-color 0.34s ease,
              background 0.34s ease;
}
.vignette::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg,
    var(--accent),
    color-mix(in oklab, var(--accent) 25%, transparent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.vignette:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.085);
  border-color: color-mix(in oklab, var(--accent) 50%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 40px 66px -30px rgba(0, 0, 0, 0.8);
}
.vignette:hover::before { transform: scaleX(1); }
.vignette-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  filter: drop-shadow(0 9px 10px rgba(0, 0, 0, 0.22));
  transition: filter 0.3s ease, transform 0.3s ease;
}
.vignette-icon img { width: 100%; height: 100%; object-fit: contain; }
.vignette:hover .vignette-icon {
  transform: translateY(-2px) scale(1.06) rotate(-2deg);
  filter: drop-shadow(0 12px 14px color-mix(in oklab, var(--accent) 28%, rgba(0, 0, 0, 0.3)));
}
.vignette-tag {
  display: block;
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--accent) 55%, #ffffff);
  margin-bottom: 12px;
}
.vignette p {
  margin: 0;
  font-size: 18px;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.8);
}

/* The "rest of what slips" list — frosted dark chips */
.familiar-frame .familiar { margin-top: 40px; gap: 14px; }
.familiar-frame .familiar-head {
  background: transparent;
  border: 0;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 0 0 6px;
}
.familiar-frame .familiar li:not(.familiar-head) {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  backdrop-filter: blur(12px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  padding: 15px 20px 15px 17px;
  color: rgba(255, 255, 255, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.familiar-frame .familiar li:not(.familiar-head):hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: color-mix(in oklab, var(--accent) 45%, transparent);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 22px 38px -24px rgba(0, 0, 0, 0.7);
}

@media (max-width: 760px) {
  .vignettes { grid-template-columns: 1fr; }
  .familiar-fog { width: 70%; opacity: 0.2; top: -2%; }
  .familiar-glow { opacity: 0.5; }
}

/* ---------- Mission Control grounding caption ---------- */
.mc-caption {
  margin: 18px 4px 0;
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.mc-caption svg { flex: none; margin-top: 2px; color: rgba(255, 255, 255, 0.5); }

/* ---------- Proof: AI call recording ---------- */
.proof { background: var(--bg); }
.proof-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  box-shadow: var(--shadow-card);
}
.proof-card .kicker { margin-bottom: 16px; }
.proof-card h3 { font-size: clamp(22px, 2.3vw, 29px); }
.proof-card p { color: var(--muted); font-size: 16.5px; margin: 0; }
.player {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 26px 28px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.player::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 140% at 100% 0%, rgba(201, 107, 69, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.player-head { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; position: relative; }
.player-btn {
  flex: none;
  width: 54px; height: 54px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background 0.18s ease, transform 0.18s ease;
}
.player-btn:hover { background: var(--accent-hover); transform: scale(1.05); }
.player-meta { display: flex; flex-direction: column; gap: 3px; }
.player-title { font-weight: 600; font-size: 15px; color: #fff; }
.player-sub { font-size: 13px; color: rgba(255, 255, 255, 0.55); }
.waveform { display: flex; align-items: center; gap: 3px; height: 48px; position: relative; }
.waveform span {
  flex: 1 1 auto;
  min-width: 2px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  transition: background 0.3s ease;
}
.player.playing .waveform span { background: color-mix(in oklab, var(--accent) 55%, #ffffff); }
.player-note {
  margin: 16px 0 0;
  font-style: italic;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
}

/* ---------- Pricing (qualitative tiers) ---------- */
.pricing { background: var(--bg); }
.pricing-audit {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 30px 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 28px 0 0;
  position: relative;
  overflow: hidden;
}
.pricing-audit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(100% 160% at 0% 0%, rgba(201, 107, 69, 0.16) 0%, transparent 55%);
  pointer-events: none;
}
.pricing-audit-copy { position: relative; max-width: 64ch; }
.pricing-audit h3 { color: #fff; font-size: 21px; margin: 0 0 6px; }
.pricing-audit p { margin: 0; font-size: 15.5px; color: rgba(255, 255, 255, 0.72); }
.pricing-audit .btn { position: relative; flex: none; }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier.featured {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--accent), var(--shadow-card);
}
.tier-badge {
  position: absolute;
  top: -12px; left: 30px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}
.tier-name { font-size: 21px; color: var(--ink); margin: 0 0 8px; font-weight: 700; }
.tier-for { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; }
.tier-line {
  font-style: italic;
  font-size: 15px;
  color: var(--ink-3);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.tier ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.tier li { display: flex; gap: 11px; font-size: 14.5px; color: var(--text); line-height: 1.45; }
.tier li svg { flex: none; margin-top: 3px; color: var(--accent); }
.pricing-foot {
  margin-top: 28px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
}
.pricing-foot em { color: var(--ink-3); font-style: italic; }

@media (max-width: 1020px) {
  .proof-card { grid-template-columns: 1fr; gap: 32px; }
  .tiers { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .tier.featured { order: -1; }
}
@media (max-width: 740px) {
  .vignettes { grid-template-columns: 1fr; }
  .proof-card { padding: 32px 26px; }
  .pricing-audit { padding: 26px 24px; }
}

/* ---------- Who it's for — fit checklist (light band) ---------- */
.fit-list-head {
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.fit-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.fit-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.45;
  box-shadow: 0 1px 2px rgba(13, 34, 56, 0.04), 0 10px 26px -18px rgba(13, 34, 56, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.fit-list li:hover { transform: translateX(4px); border-color: color-mix(in oklab, var(--accent) 45%, transparent); box-shadow: 0 1px 2px rgba(13, 34, 56, 0.05), 0 14px 30px -16px rgba(13, 34, 56, 0.28); }
.fit-list li svg { flex: none; margin-top: 2px; color: var(--accent); }
