/* =================================================================
   EQUALLY EVERYWHERE — CivicFlow AI
   Design system: "The Auditable Decision"
   Palette: ink / brand navy / logo blue / accent blue / soft mist
   Type: Lexend (display) · Source Sans 3 (body) · IBM Plex Mono (data)
   ================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand + neutrals — light theme (Equally Everywhere brand pack) */
  --ink:        #0b1116;   /* dark navy — footer / deep accents / text */
  --ink-2:      #0f2030;
  --navy-900:   #0f3146;   /* accent navy */
  --navy-800:   #134663;
  --navy-700:   #1a5478;
  --brand:      #1e5c85;   /* deep blue */
  --brand-600:  #174a6d;   /* darker — hover / links on light */
  --accent:     #2e78a8;   /* brighter blue accent */
  --accent-2:   #5ba4d6;   /* light accent on dark */
  --cyan:       #8fc6e8;

  --paper:      #ffffff;
  --mist:       #eef4fa;   /* soft light section bg */
  --mist-2:     #e1ecf6;
  --line:       #d5e2ee;   /* hairline border */
  --line-2:     #c2d4e4;

  --text:       #11222e;   /* near-black body text */
  --text-soft:  #3c5163;
  --text-mute:  #647889;

  /* On-dark text (used on deep-blue accent sections) */
  --on-dark:        #eef5fb;
  --on-dark-soft:   #c3d6e6;
  --on-dark-mute:   #87a3b9;
  --dark-line:      rgba(255,255,255,.12);
  --dark-line-2:    rgba(255,255,255,.18);

  /* Status colours */
  --status-draft:   #b0792a;
  --status-review:  #1a6aa8;
  --status-approved:#1f7a4d;
  --status-flag:    #b4453a;

  /* Type */
  --font-display: "Lexend", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius:     16px;
  --radius-lg:  22px;
  --radius-sm:  10px;
  --shadow-sm:  0 1px 2px rgba(11,28,43,.06), 0 1px 1px rgba(11,28,43,.04);
  --shadow-md:  0 10px 30px -12px rgba(11,28,43,.18), 0 2px 6px rgba(11,28,43,.06);
  --shadow-lg:  0 30px 60px -20px rgba(8,20,31,.30), 0 8px 18px rgba(8,20,31,.10);
  --shadow-dark:0 30px 70px -24px rgba(0,0,0,.55);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-600); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.container-narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section-sm { padding-block: clamp(48px, 6vw, 80px); }
.bg-mist { background: var(--mist); }
.bg-paper { background: var(--paper); }
.bg-dark {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(46,120,168,.32), transparent 55%),
    linear-gradient(150deg, var(--navy-900), #0c2740);
  color: var(--on-dark);
}
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: #fff; }

.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-tight { max-width: 50ch; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--accent); display: inline-block;
}
.bg-dark .eyebrow { color: var(--accent-2); }
.bg-dark .eyebrow::before { background: var(--accent); }
.eyebrow.no-rule::before { display: none; }

.section-head { max-width: 64ch; }
.section-head .lead {
  margin-top: 18px; font-size: 1.15rem; color: var(--text-soft); line-height: 1.6;
}
.bg-dark .section-head .lead { color: var(--on-dark-soft); }

/* Heading scale */
.h-display { font-size: clamp(2.4rem, 5.4vw, 4.1rem); letter-spacing: -.03em; line-height: 1.02; }
.h1 { font-size: clamp(2rem, 4vw, 3rem); }
.h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
.h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
.h4 { font-size: 1.15rem; }
.kicker-num {
  font-family: var(--font-mono); font-size: .8rem; color: var(--accent);
  letter-spacing: .1em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  letter-spacing: -.01em;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  min-height: 52px; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease),
              border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px -8px rgba(28,92,140,.7); }
.btn-primary:hover { background: var(--brand-600); color: #fff; box-shadow: 0 10px 26px -8px rgba(28,92,140,.8); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-secondary:hover { background: var(--mist); color: var(--text); border-color: var(--brand); }
.bg-dark .btn-secondary, .btn-secondary.on-dark { color: #fff; border-color: var(--dark-line-2); }
.bg-dark .btn-secondary:hover, .btn-secondary.on-dark:hover { background: rgba(255,255,255,.07); border-color: var(--accent-2); color: #fff; }
.btn-ghost { background: transparent; color: var(--brand); padding-inline: 4px; min-height: auto; }
.btn-ghost:hover { color: var(--brand-600); }
.btn-ghost .arrow { transition: transform .2s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }
.btn-block { width: 100%; }

/* ---------- Chips / badges ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: .68rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); color: var(--text-soft);
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.chip-draft   { color: var(--status-draft);   border-color: #e9d3a8; background: #fdf6e9; }
.chip-review  { color: var(--status-review);  border-color: #b9d6ea; background: #eef6fc; }
.chip-approved{ color: var(--status-approved);border-color: #b6dcc6; background: #eef7f1; }
.chip-flag    { color: var(--status-flag);    border-color: #ecc4bf; background: #fbeeec; }

.pill-soft {
  display:inline-flex; align-items:center; gap:8px;
  font-size:.85rem; font-weight:600; color:var(--brand);
  background: var(--mist-2); border:1px solid var(--line);
  padding:7px 14px; border-radius:999px;
}

/* ---------- Brand logo ---------- */
.logo { display: inline-flex; align-items: center; gap: 14px; color: inherit; }
.logo-mark { width: 40px; height: 40px; flex: none; color: var(--brand); }
.bg-dark .logo-mark, .site-header .logo-mark { color: var(--accent-2); }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word .name {
  font-family: var(--font-display); font-weight: 600; font-size: 1.06rem;
  letter-spacing: .14em; text-transform: uppercase; color: currentColor;
}
.logo-word .tag {
  font-family: var(--font-mono); font-size: .56rem; letter-spacing: .22em;
  text-transform: uppercase; margin-top: 5px; color: var(--text-mute);
}
.logo-divider { width:1px; height: 30px; background: var(--line-2); }

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 24px; }
.site-header .logo-word .name { color: var(--text); font-size: .98rem; letter-spacing: .12em; }
.site-header .logo-mark { color: var(--brand); }
.site-header .logo-divider { background: var(--line); }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 450; font-size: .94rem;
  color: var(--text-soft); padding: 9px 13px; border-radius: 8px;
  transition: color .18s var(--ease), background-color .18s var(--ease);
  letter-spacing: -.01em;
}
.nav-links a:hover { color: var(--text); background: var(--mist); }
.nav-links a[aria-current="page"] { color: var(--brand); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { white-space: nowrap; padding-inline: 22px; }
.nav-toggle { display: none; }

@media (max-width: 1080px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 48px; height: 48px; border-radius: 10px;
    border: 1px solid var(--line-2); background: var(--paper); color: var(--text);
  }
  .nav-toggle svg { width: 22px; height: 22px; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); z-index: 60;
  background: var(--ink); color: var(--on-dark);
  transform: translateX(100%); transition: transform .32s var(--ease);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: var(--shadow-dark); overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display); color: var(--on-dark); font-size: 1.12rem;
  padding: 13px 4px; border-bottom: 1px solid var(--dark-line);
}
.mobile-nav a[aria-current="page"] { color: var(--accent-2); }
.mobile-nav .btn { margin-top: 18px; }
.mobile-nav-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mobile-nav-close { background: none; border: 1px solid var(--dark-line-2); color: #fff; width: 44px; height: 44px; border-radius: 10px; display: grid; place-items: center; }
.nav-scrim {
  position: fixed; inset: 0; background: rgba(8,20,31,.5); z-index: 55;
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease);
}
.nav-scrim.open { opacity: 1; visibility: visible; }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(110% 90% at 88% -10%, rgba(91,164,214,.22), transparent 55%),
    radial-gradient(80% 70% at 2% 115%, rgba(30,92,133,.10), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--mist) 100%);
  color: var(--text);
  padding-block: clamp(44px, 6vw, 84px) clamp(52px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(30,92,133,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,92,133,.05) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(120% 80% at 60% 0%, #000, transparent 72%);
  pointer-events:none;
}
.hero .container { position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 56px; align-items: center; }
.hero h1 { color: var(--text); font-size: clamp(2.35rem, 4.7vw, 3.9rem); letter-spacing: -.035em; line-height: 1.04; }
.hero h1 .accent { color: var(--brand); }
.hero-sub { margin-top: 22px; font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--text-soft); max-width: 38ch; line-height: 1.55; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  margin-top: 40px; padding-top: 26px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 22px;
}
.hero-trust .item { display: flex; align-items: center; gap: 9px; font-size: .86rem; color: var(--text-soft); font-weight: 600; }
.hero-trust .item svg { width: 16px; height: 16px; color: var(--brand); flex:none; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { max-width: 50ch; }
}

/* ---------- Decision-record showpiece (signature) ---------- */
.record-card {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--dark-line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark); overflow: hidden;
  backdrop-filter: blur(2px);
}
.record-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--dark-line);
  background: rgba(255,255,255,.03);
}
.record-ref { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .04em; color: var(--on-dark-soft); }
.record-ref b { color: #fff; font-weight: 600; }
.record-body { padding: 20px; }
.record-title { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 1.18rem; letter-spacing: -.02em; }
.record-meta { display:flex; flex-wrap:wrap; gap: 8px 16px; margin-top: 10px; font-size:.8rem; color: var(--on-dark-mute); font-family: var(--font-mono); }

/* Workflow stages */
.flow { display: grid; gap: 10px; margin-top: 18px; }
.flow-step {
  display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 12px;
  border: 1px solid var(--dark-line); background: rgba(255,255,255,.03);
}
.flow-step .idx {
  width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center;
  font-family: var(--font-mono); font-size: .8rem; color: var(--accent-2);
  border: 1px solid var(--dark-line-2); background: rgba(43,134,206,.10);
}
.flow-step .label { color: var(--on-dark); font-weight: 600; font-size: .94rem; font-family: var(--font-display); }
.flow-step .sub { color: var(--on-dark-mute); font-size: .78rem; }
.flow-step.is-done .idx { color: #fff; background: rgba(31,122,77,.30); border-color: rgba(31,122,77,.6); }
.flow-step.is-active { border-color: rgba(43,134,206,.55); background: rgba(43,134,206,.10); }
.tick { width:16px;height:16px;color:#5fbf8e; }

.review-stamp {
  margin-top: 16px; display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 12px;
  border: 1px dashed rgba(125,191,142,.5); background: rgba(31,122,77,.10);
}
.review-stamp svg { width: 22px; height: 22px; color: #6fc999; flex:none; }
.review-stamp .t { font-size: .82rem; color: var(--on-dark); }
.review-stamp .t b { color: #fff; }

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.trust-bar .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; padding-block: 22px; }
.trust-bar .tlabel { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); }
.trust-bar .badges { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--text-soft); font-weight: 600; }
.trust-badge svg { width: 18px; height: 18px; color: var(--brand); flex:none; }

/* ================================================================
   CARDS / GRIDS
   ================================================================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 980px){ .grid-3,.grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px){ .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card-hover:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.card .ico {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--mist-2); color: var(--brand); margin-bottom: 18px; border: 1px solid var(--line);
}
.card .ico svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.16rem; }
.card p { margin-top: 10px; color: var(--text-soft); font-size: .98rem; }
.card .card-link { margin-top: 16px; display: inline-flex; }

/* Module card (with reference id) */
.module-card { position: relative; display: flex; flex-direction: column; }
.module-card .mc-ref { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .08em; color: var(--text-mute); margin-bottom: 14px; }
.module-card .mc-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 7px; }
.tag { font-family: var(--font-mono); font-size: .66rem; letter-spacing: .04em; color: var(--text-soft); background: var(--mist); border: 1px solid var(--line); padding: 4px 9px; border-radius: 6px; }

/* Feature list item */
.feature-row { display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: start; }
.feature-row .ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--mist-2); color: var(--brand); border: 1px solid var(--line); }
.feature-row .ico svg { width: 22px; height: 22px; }
.feature-row h4 { font-size: 1.05rem; }
.feature-row p { color: var(--text-soft); font-size: .95rem; margin-top: 5px; }

/* Two-column split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px){ .split,.split.reverse > :first-child { grid-template-columns: 1fr; order: 0; } .split { gap: 36px; } }

/* ---------- Problem section ---------- */
.problem-card { background: var(--paper); border:1px solid var(--line); border-left: 3px solid var(--status-flag); border-radius: var(--radius); padding: 24px; }
.problem-card .p-ref { font-family: var(--font-mono); font-size:.68rem; color: var(--status-flag); letter-spacing:.08em; text-transform: uppercase; }
.problem-card h3 { font-size: 1.1rem; margin-top: 8px; }
.problem-card p { color: var(--text-soft); margin-top: 8px; font-size:.96rem; }

/* ---------- Stats ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
@media (max-width:760px){ .stat-row { grid-template-columns: repeat(2,1fr); } }
.stat .num { font-family: var(--font-display); font-weight: 600; font-size: clamp(2rem,3.5vw,2.8rem); letter-spacing: -.03em; color: var(--text); }
.bg-dark .stat .num { color:#fff; }
.stat .num .unit { color: var(--accent); }
.stat .lbl { color: var(--text-soft); font-size: .92rem; margin-top: 6px; }
.bg-dark .stat .lbl { color: var(--on-dark-soft); }

/* ================================================================
   HOW IT WORKS (numbered workflow — a real sequence)
   ================================================================ */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; counter-reset: step; }
@media (max-width: 900px){ .steps { grid-template-columns: 1fr; } }
.step {
  position: relative; padding: 30px 26px 30px 0;
  border-top: 2px solid var(--line);
}
.steps .step + .step { padding-left: 26px; }
@media (min-width:901px){
  .step:not(:first-child) { border-left: none; }
}
.step .s-num { font-family: var(--font-mono); font-size: .78rem; color: var(--accent); letter-spacing: .12em; }
.step .s-dot { position: absolute; top: -7px; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(43,134,206,.18); }
@media (min-width:901px){ .step + .step .s-dot { left: 26px; } }
.step h3 { font-size: 1.18rem; margin-top: 18px; }
.step p { color: var(--text-soft); margin-top: 10px; font-size: .96rem; }
.step .s-out { margin-top: 14px; font-family: var(--font-mono); font-size:.72rem; color: var(--text-mute); display:flex; align-items:center; gap:8px; }
.step .s-out svg { width:15px;height:15px;color:var(--brand); }

/* ================================================================
   DASHBOARD PREVIEW
   ================================================================ */
.dash {
  background: linear-gradient(180deg,#0c2236,#0a1c2c);
  border: 1px solid var(--dark-line-2); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; color: var(--on-dark);
}
.dash-bar { display:flex; align-items:center; gap:14px; padding: 14px 18px; border-bottom:1px solid var(--dark-line); background: rgba(255,255,255,.03); }
.dash-dots { display:flex; gap:7px; }
.dash-dots i { width:11px;height:11px;border-radius:50%; background: var(--dark-line-2); }
.dash-bar .dtitle { font-family: var(--font-mono); font-size:.74rem; color: var(--on-dark-soft); letter-spacing:.04em; }
.dash-bar .dtitle b { color:#fff; font-weight:600; }
.dash-body { display:grid; grid-template-columns: 200px 1fr; min-height: 360px; }
@media (max-width:680px){ .dash-body { grid-template-columns: 1fr; } .dash-side { display:none; } }
.dash-side { border-right: 1px solid var(--dark-line); padding: 16px 12px; display:flex; flex-direction:column; gap:4px; }
.dash-side .sgroup { font-family: var(--font-mono); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color: var(--on-dark-mute); padding: 12px 10px 6px; }
.dash-side a { display:flex; align-items:center; gap:10px; padding:9px 10px; border-radius:8px; color: var(--on-dark-soft); font-size:.86rem; }
.dash-side a svg { width:16px;height:16px; }
.dash-side a.active { background: rgba(43,134,206,.16); color:#fff; }
.dash-main { padding: 20px; display:grid; gap: 16px; align-content:start; }
.dash-tiles { display:grid; grid-template-columns: repeat(3,1fr); gap:12px; }
@media (max-width:520px){ .dash-tiles { grid-template-columns: 1fr 1fr; } }
.tile { border:1px solid var(--dark-line); border-radius:12px; padding:14px; background: rgba(255,255,255,.02); }
.tile .tlbl { font-size:.72rem; color: var(--on-dark-mute); font-family: var(--font-mono); }
.tile .tval { font-family: var(--font-display); font-weight:600; font-size:1.6rem; color:#fff; margin-top:6px; }
.tile .tval .u { color: var(--accent-2); font-size:1rem; }
.tile .ttrend { font-size:.72rem; margin-top:4px; color:#6fc999; }

.dash-panel { border:1px solid var(--dark-line); border-radius:12px; overflow:hidden; }
.dash-panel .ph { display:flex; align-items:center; justify-content:space-between; padding:12px 14px; border-bottom:1px solid var(--dark-line); background: rgba(255,255,255,.02); }
.dash-panel .ph .pt { font-family: var(--font-display); font-weight:600; font-size:.92rem; color:#fff; }
.dash-row { display:grid; grid-template-columns: 1fr auto auto; gap:12px; align-items:center; padding:11px 14px; border-bottom:1px solid var(--dark-line); }
.dash-row:last-child { border-bottom:none; }
.dash-row .rt { font-size:.86rem; color: var(--on-dark); }
.dash-row .rref { font-family: var(--font-mono); font-size:.68rem; color: var(--on-dark-mute); margin-top:2px; }
.mini-chip { font-family: var(--font-mono); font-size:.62rem; padding:4px 9px; border-radius:999px; letter-spacing:.04em; text-transform:uppercase; border:1px solid; }
.mini-chip.draft { color:#e0b76a; border-color: rgba(224,183,106,.4); background: rgba(224,183,106,.10); }
.mini-chip.review { color: var(--accent-2); border-color: rgba(77,163,224,.4); background: rgba(77,163,224,.10); }
.mini-chip.approved { color:#6fc999; border-color: rgba(111,201,153,.4); background: rgba(111,201,153,.10); }

/* mini bar chart */
.bars { display:flex; align-items:flex-end; gap:8px; height:90px; padding: 8px 4px 0; }
.bars .bar { flex:1; background: linear-gradient(180deg, var(--accent-2), var(--brand)); border-radius:5px 5px 2px 2px; opacity:.85; }

/* ================================================================
   INTEGRATIONS
   ================================================================ */
.integ-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
@media (max-width:860px){ .integ-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width:560px){ .integ-grid { grid-template-columns: repeat(2,1fr); } }
.integ {
  display:flex; align-items:center; gap:13px; padding:16px 18px;
  background: var(--paper); border:1px solid var(--line); border-radius:14px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.integ-grid a.integ:hover { border-color: var(--line-2); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.integ .ms { width:30px; height:30px; flex:none; }
.integ .nm { font-weight:600; font-size:.94rem; color: var(--text); line-height:1.2; }
.integ .nm small { display:block; font-weight:400; color: var(--text-mute); font-size:.76rem; font-family: var(--font-mono); margin-top:3px; }

/* ================================================================
   RESPONSIBLE AI CONTROLS
   ================================================================ */
.control-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--dark-line); border:1px solid var(--dark-line); border-radius: var(--radius); overflow:hidden; }
@media (max-width:860px){ .control-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .control-grid { grid-template-columns: 1fr; } }
.control {
  background: var(--navy-900); padding: 24px;
  transition: background-color .2s var(--ease);
}
.control:hover { background: var(--navy-800); }
.control .ci { display:flex; align-items:center; gap:12px; }
.control .ci svg { width:22px; height:22px; color: var(--accent-2); flex:none; }
.control .ci h4 { color:#fff; font-size:1.02rem; }
.control p { color: var(--on-dark-soft); font-size:.9rem; margin-top:11px; line-height:1.55; }

/* assurance callout */
.assurance {
  display:grid; grid-template-columns: auto 1fr; gap: 20px; align-items:center;
  background: rgba(43,134,206,.10); border:1px solid var(--dark-line-2); border-radius: var(--radius);
  padding: 22px 26px; margin-top: 22px;
}
.assurance .big { font-family: var(--font-display); font-weight:600; color:#fff; font-size:1.15rem; }
.assurance svg { width:40px; height:40px; color: var(--accent-2); }
.assurance p { color: var(--on-dark-soft); font-size:.92rem; margin-top:4px; }

/* ================================================================
   PRICING
   ================================================================ */
.price-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items:stretch; }
@media (max-width:920px){ .price-grid { grid-template-columns:1fr; max-width:480px; margin-inline:auto; } }
.price-card { display:flex; flex-direction:column; background:var(--paper); border:1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); }
.price-card.featured { border-color: var(--brand); box-shadow: var(--shadow-md); position:relative; }
.price-card.featured::before { content:"Most requested"; position:absolute; top:-12px; left:30px; font-family:var(--font-mono); font-size:.66rem; letter-spacing:.1em; text-transform:uppercase; background:var(--brand); color:#fff; padding:5px 12px; border-radius:999px; }
.price-card .pname { font-family:var(--font-display); font-weight:600; font-size:1.35rem; }
.price-card .pfor { color:var(--text-mute); font-size:.9rem; margin-top:6px; }
.price-card .pcost { margin-top:20px; padding-bottom:20px; border-bottom:1px solid var(--line); }
.price-card .pcost .amt { font-family:var(--font-display); font-weight:600; font-size:1.8rem; }
.price-card .pcost .per { color:var(--text-mute); font-size:.86rem; }
.price-card ul.pfeat { margin-top:20px; display:grid; gap:12px; flex:1; }
.price-card ul.pfeat li { display:grid; grid-template-columns:20px 1fr; gap:11px; font-size:.94rem; color:var(--text-soft); }
.price-card ul.pfeat li svg { width:18px;height:18px;color:var(--status-approved); margin-top:3px; }
.price-card .btn { margin-top:26px; }

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  position: relative; overflow:hidden;
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(43,134,206,.25), transparent 55%),
    linear-gradient(120deg, var(--navy-900), var(--ink));
  color: var(--on-dark); border-radius: var(--radius-lg);
  padding: clamp(40px,6vw,68px); border:1px solid var(--dark-line-2);
}
.cta-band h2 { color:#fff; font-size: clamp(1.8rem,3.5vw,2.7rem); }
.cta-band p { color: var(--on-dark-soft); margin-top:14px; font-size:1.1rem; max-width: 52ch; }
.cta-band .cta-actions { margin-top:28px; display:flex; flex-wrap:wrap; gap:14px; }

/* ================================================================
   QUOTE / TESTIMONIAL
   ================================================================ */
.quote-card { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px,4vw,44px); box-shadow: var(--shadow-sm); }
.quote-card .qmark { font-family: var(--font-display); font-size: 3rem; color: var(--accent); line-height:0; height: 24px; }
.quote-card blockquote { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.2rem,2vw,1.55rem); line-height:1.45; letter-spacing:-.02em; color: var(--text); margin-top: 18px; }
.quote-card .qby { margin-top: 22px; display:flex; align-items:center; gap:14px; }
.quote-card .qby .av { width:46px; height:46px; border-radius:50%; background: var(--navy-800); color:#fff; display:grid; place-items:center; font-family:var(--font-display); font-weight:600; }
.quote-card .qby .qn { font-weight:700; color: var(--text); font-size:.95rem; }
.quote-card .qby .qr { color: var(--text-mute); font-size:.85rem; }
.illustrative { font-family: var(--font-mono); font-size:.68rem; color: var(--text-mute); letter-spacing:.04em; }

/* ================================================================
   FORMS (Book a demo / contact)
   ================================================================ */
.form-card { background: var(--paper); border:1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px,4vw,40px); box-shadow: var(--shadow-md); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap: 18px; }
@media (max-width:620px){ .form-grid { grid-template-columns:1fr; } }
.field { display:flex; flex-direction:column; gap:7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight:600; font-size:.9rem; color: var(--text); }
.field label .req { color: var(--status-flag); }
.field .hint { font-size:.78rem; color: var(--text-mute); }
.field input, .field select, .field textarea {
  font: inherit; font-size:1rem; padding: 13px 15px; border:1px solid var(--line-2); border-radius:10px;
  background: var(--paper); color: var(--text); width:100%;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(28,92,140,.14);
}
.form-aside { background: var(--mist); border:1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.form-aside h3 { font-size:1.1rem; }
.check-list { display:grid; gap:13px; margin-top:18px; }
.check-list li { display:grid; grid-template-columns:20px 1fr; gap:11px; font-size:.93rem; color:var(--text-soft); }
.check-list li svg { width:18px;height:18px;color:var(--status-approved); margin-top:3px; }
.consent { display:grid; grid-template-columns:22px 1fr; gap:11px; align-items:start; font-size:.86rem; color:var(--text-soft); }
.consent input { width:20px; height:20px; margin-top:2px; accent-color: var(--brand); }
.form-success { display:none; }
.form-error {
  display:none; margin-top:16px; padding:13px 16px; border-radius:10px;
  background:#fbeeec; border:1px solid #ecc4bf; color:#8f352c; font-size:.92rem; font-weight:600;
}
/* Submit button loading state */
.btn .btn-spinner { display:none; width:18px; height:18px; border-radius:50%;
  border:2px solid rgba(255,255,255,.45); border-top-color:#fff; animation:spin .7s linear infinite; }
.btn.is-loading { pointer-events:none; opacity:.85; }
.btn.is-loading .btn-icon { display:none; }
.btn.is-loading .btn-spinner { display:inline-block; }
.btn.is-loading .btn-label::after { content:"…"; }
@keyframes spin { to { transform:rotate(360deg); } }
@media (prefers-reduced-motion: reduce){ .btn .btn-spinner { animation:none; } }

/* ================================================================
   PAGE HERO (interior pages)
   ================================================================ */
.page-hero {
  background:
    radial-gradient(90% 120% at 90% -20%, rgba(91,164,214,.20), transparent 55%),
    linear-gradient(180deg, #ffffff, var(--mist));
  color: var(--text); padding-block: clamp(52px,7vw,88px) clamp(44px,6vw,72px);
  border-bottom: 1px solid var(--line);
  position: relative; overflow:hidden;
}
.page-hero::before {
  content:""; position:absolute; inset:0;
  background-image: linear-gradient(rgba(30,92,133,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(30,92,133,.05) 1px,transparent 1px);
  background-size:64px 64px; mask-image: radial-gradient(120% 90% at 80% 0%,#000,transparent 72%);
}
.page-hero .container { position:relative; }
.page-hero h1 { color:var(--text); font-size: clamp(2.2rem,4.4vw,3.4rem); letter-spacing:-.03em; max-width: 18ch; }
.page-hero .ph-sub { margin-top:18px; color: var(--text-soft); font-size: clamp(1.05rem,1.5vw,1.22rem); max-width: 56ch; }
.breadcrumb { display:flex; gap:8px; align-items:center; font-family:var(--font-mono); font-size:.74rem; color:var(--text-mute); letter-spacing:.04em; margin-bottom: 22px; }
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color:var(--brand); }
.breadcrumb .sep { color: var(--text-mute); }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: linear-gradient(180deg, var(--navy-900), #0a2235); color: var(--on-dark-soft); padding-block: 64px 30px; border-top: 1px solid var(--navy-700); }
.footer-top { display:grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width:900px){ .footer-top { grid-template-columns: 1fr 1fr; gap:32px; } }
@media (max-width:520px){ .footer-top { grid-template-columns: 1fr; } }
.footer-brand .logo .name { color:#fff; }
.footer-brand p { margin-top:18px; color: var(--on-dark-mute); font-size:.92rem; max-width: 34ch; }
.footer-brand .tag-line { font-family: var(--font-mono); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color: var(--accent-2); margin-top:18px; }
.footer-col h4 { color:#fff; font-size:.82rem; font-family: var(--font-mono); letter-spacing:.12em; text-transform:uppercase; font-weight:500; margin-bottom: 16px; }
.footer-col ul { display:grid; gap:11px; }
.footer-col a { color: var(--on-dark-soft); font-size:.93rem; }
.footer-col a:hover { color:#fff; }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top:1px solid var(--navy-800); display:flex; flex-wrap:wrap; justify-content:space-between; gap:14px; align-items:center; }
.footer-bottom p { font-size:.84rem; color: var(--on-dark-mute); }
.footer-bottom .fnote { font-family: var(--font-mono); font-size:.72rem; }
.footer-legal { display:flex; flex-wrap:wrap; gap:18px; }
.footer-legal a { font-size:.84rem; color: var(--on-dark-mute); }
.footer-legal a:hover { color: var(--on-dark); }

/* ================================================================
   MOTION / REVEAL
   ================================================================ */
.reveal { opacity:0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity:1; transform:none; }
.reveal.d1 { transition-delay:.06s; } .reveal.d2 { transition-delay:.12s; }
.reveal.d3 { transition-delay:.18s; } .reveal.d4 { transition-delay:.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  *, *::before, *::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ---------- Focus visibility (accessibility) ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, .btn:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px;
}
.bg-dark a:focus-visible, .hero a:focus-visible, .site-footer a:focus-visible { outline-color: var(--cyan); }

.skip-link {
  position:absolute; left:16px; top:-60px; z-index:100;
  background:var(--brand); color:#fff; padding:12px 18px; border-radius:10px; font-weight:600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top:14px; color:#fff; }

/* ---------- Utility ---------- */
.divider { height:1px; background: var(--line); border:0; }
.mt-0{margin-top:0}.mt-1{margin-top:12px}.mt-2{margin-top:24px}.mt-3{margin-top:36px}.mt-4{margin-top:48px}.mt-5{margin-top:64px}
.mb-2{margin-bottom:24px}.mb-3{margin-bottom:36px}.mb-4{margin-bottom:48px}
.flex{display:flex}.items-center{align-items:center}.gap-2{gap:12px}.gap-3{gap:18px}.wrap{flex-wrap:wrap}
.text-mute{color:var(--text-mute)} .small{font-size:.88rem}
.list-check { display:grid; gap:13px; }
.list-check li { display:grid; grid-template-columns:22px 1fr; gap:12px; color:var(--text-soft); }
.list-check li svg { width:20px;height:20px;color:var(--status-approved); margin-top:3px; flex:none; }
.bg-dark .list-check li { color:var(--on-dark-soft); }
.bg-dark .list-check li svg { color:#6fc999; }

/* ================================================================
   LIGHT-THEME ADDITIONS (hero photo, downward workflow, logo img)
   ================================================================ */
.logo-mark { width: 40px; height: 40px; border-radius: 10px; }

/* Hero photo + floating card */
.hero-photo { position: relative; }
.hero-photo > img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.hero-photo .float-card {
  position: absolute; left: -16px; bottom: -16px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md);
  padding: 13px 16px; display: flex; align-items: center; gap: 12px; max-width: 290px;
}
.hero-photo .float-card .ico { width: 38px; height: 38px; border-radius: 10px; background: #e9f4ee; border: 1px solid #bfe0cd; color: var(--status-approved); display: grid; place-items: center; flex: none; }
.hero-photo .float-card .ico svg { width: 20px; height: 20px; }
.hero-photo .float-card .t { font-size: .8rem; color: var(--text-soft); line-height: 1.35; }
.hero-photo .float-card .t b { color: var(--text); display: block; font-family: var(--font-display); font-size: .92rem; }
@media (max-width: 920px) { .hero-photo .float-card { left: 12px; bottom: 12px; } }

/* Image utilities */
.img-frame { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); object-fit: cover; }
.img-frame.tall { aspect-ratio: 4/5; }
.img-frame.wide { aspect-ratio: 16/10; }
.img-cap { display:grid; place-items:center; }

/* Downward workflow timeline (cards going down, not on the sides) */
.workflow-down { position: relative; max-width: 780px; margin-inline: auto; }
.wf-anchor { display: grid; place-items: center; margin-bottom: 18px; }
.wf-anchor img { width: 60px; height: 60px; }
.wf-spine { position: absolute; left: 50%; top: 86px; bottom: 24px; width: 2px; background: linear-gradient(var(--line), var(--line-2)); transform: translateX(-50%); }
@media (max-width: 640px) { .wf-spine { left: 27px; } }
.wf-item { position: relative; display: grid; grid-template-columns: 1fr 56px 1fr; align-items: center; margin: 16px 0; }
.wf-node { grid-column: 2; justify-self: center; width: 54px; height: 54px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line); display: grid; place-items: center; color: var(--brand); z-index: 1; box-shadow: var(--shadow-sm); }
.wf-node svg { width: 23px; height: 23px; }
.wf-item.emph .wf-node { border-color: var(--brand); background: var(--brand); color: #fff; }
.wf-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 17px 20px; box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease), border-color .25s var(--ease); }
.wf-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-2); }
.wf-item:nth-child(odd) .wf-card { grid-column: 1; text-align: right; }
.wf-item:nth-child(even) .wf-card { grid-column: 3; }
.wf-ref { font-family: var(--font-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.wf-card h3 { font-size: 1.06rem; margin-top: 4px; }
.wf-card p { color: var(--text-soft); font-size: .92rem; margin-top: 5px; }
.wf-item.emph .wf-card { border-color: var(--brand); background: linear-gradient(180deg,#fff,#f3f8fc); }
@media (max-width: 640px) {
  .wf-item { grid-template-columns: 54px 1fr; gap: 14px; margin: 12px 0; }
  .wf-node { grid-column: 1; }
  .wf-item:nth-child(odd) .wf-card, .wf-item:nth-child(even) .wf-card { grid-column: 2; text-align: left; }
}

/* Page-hero with photo (interior pages) */
.ph-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 48px; align-items: center; margin-top: 2px; }
.ph-grid .ph-text { min-width: 0; }
.ph-grid .ph-text h1 { max-width: 20ch; }
.ph-photo img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
@media (max-width: 900px) { .ph-grid { grid-template-columns: 1fr; gap: 26px; } }

/* ================================================================
   SCROLL-ZOOM INTRO (homepage startup screen)
   ================================================================ */
.intro { position: relative; height: 100vh; min-height: 640px; overflow: hidden; background: var(--ink); }
.intro-stage { position: absolute; inset: 0; display: grid; place-items: center; }
.intro-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform-origin: center; will-change: transform; }
.intro-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,17,22,.55) 0%, rgba(15,49,70,.42) 45%, rgba(11,17,22,.80) 100%),
    radial-gradient(120% 80% at 50% 32%, rgba(30,92,133,.28), transparent 70%);
}
.intro-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 940px; padding: 0 24px; will-change: transform, opacity; }
.intro-mark { width: 62px; height: 62px; margin: 0 auto 22px; filter: drop-shadow(0 8px 24px rgba(0,0,0,.35)); }
.intro-brand { font-family: var(--font-display); font-weight: 600; letter-spacing: .3em; text-transform: uppercase; font-size: clamp(.82rem, 1.4vw, 1.05rem); color: #fff; opacity: .94; }
.intro-headline { color: #fff; font-size: clamp(2.2rem, 4.8vw, 4rem); letter-spacing: -.03em; line-height: 1.05; margin-top: 18px; text-wrap: balance; }
.intro-headline span { color: var(--accent-2); }
.intro-sub { color: rgba(255,255,255,.88); font-size: clamp(1.04rem, 1.5vw, 1.26rem); max-width: 58ch; margin: 20px auto 0; line-height: 1.55; }
.intro-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }
.intro-scrollcue { position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 7px; color: rgba(255,255,255,.82); font-family: var(--font-mono); font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; will-change: opacity; }
.intro-scrollcue svg { width: 20px; height: 20px; animation: introbob 1.8s ease-in-out infinite; }
@keyframes introbob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Header overlay on intro pages */
.has-intro .site-header { position: fixed; left: 0; right: 0; background: transparent; border-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; transition: background-color .3s var(--ease), border-color .3s var(--ease); }
.has-intro .site-header:not(.scrolled) .logo-word .name { color: #fff; }
.has-intro .site-header:not(.scrolled) .logo-word .tag { color: rgba(255,255,255,.74); }
.has-intro .site-header:not(.scrolled) .logo-divider { background: rgba(255,255,255,.34); }
.has-intro .site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.88); }
.has-intro .site-header:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.14); }
.has-intro .site-header:not(.scrolled) .nav-toggle { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.has-intro .site-header.scrolled { background: rgba(255,255,255,.88); border-color: var(--line); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

@media (prefers-reduced-motion: reduce) {
  .intro-scrollcue svg { animation: none; }
  .intro-photo, .intro-content { transform: none !important; opacity: 1 !important; }
}
@media (max-width: 560px) { .intro-mark { width: 52px; height: 52px; } }

.has-intro .site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(8,20,31,.45); }
