/* ---------- fonts (self-hosted, subset to latin) ----------
   Cinzel, Source Sans 3 and IBM Plex Mono are SIL OFL 1.1. Files live in
   /assets/fonts and are served same-origin: no third-party font request, no CSP
   exception. Only the faces this stylesheet actually uses are included. */
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/cinzel-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Cinzel';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/cinzel-600.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-400.woff2') format('woff2');
}
@font-face {
  font-family: 'IBM Plex Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-mono-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/source-sans-3-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/source-sans-3-600.woff2') format('woff2');
}

:root {
  --navy: #103060;
  --navy-deep: #0b2144;
  --night: #081830;
  --night-2: #0d2242;
  --ink: #142033;
  --muted: #4b5b70;
  --muted-night: #93a7c4;
  --line: #dbe2ee;
  --line-night: rgba(142, 163, 189, 0.22);
  --paper: #f7f9fc;
  --white: #ffffff;
  --star: #c9d6ea;
  --gold: #c9a961;
  /* Text-safe gold for light backgrounds: #c9a961 is 2.25:1 on white, this is 5.0:1. */
  --gold-ink: #8a6a1f;
  --display: "Cinzel", "Times New Roman", serif;
  --body: "Source Sans 3", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
  --max: 72rem;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
}

img { max-width: 100%; height: auto; }
a { color: var(--navy); }
:focus-visible { outline: 3px solid #103060; outline-offset: 3px; box-shadow: 0 0 0 6px rgba(201, 169, 97, 0.9); }

.skip {
  position: absolute;
  left: 1rem;
  top: -3.5rem;
  z-index: 40;
  padding: 0.5rem 0.8rem;
  background: var(--night);
  color: var(--white);
  text-decoration: none;
}
.skip:focus { top: 0.75rem; }

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

.wrap { width: min(var(--max), calc(100% - 3rem)); margin-inline: auto; }

.kicker {
  margin: 0 0 1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.kicker::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

h1, h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.14;
  color: var(--navy);
}
h2 { margin: 0 0 1rem; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 {
  margin: 0 0 0.5rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.14rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.lede { max-width: 42rem; font-size: 1.2rem; }
.muted { color: var(--muted); }

/* ---------- breadcrumb trail ---------- */
/* Same order and labels as the BreadcrumbList node in each page's JSON-LD. */
.crumbs { border-bottom: 1px solid var(--line); background: var(--paper); }
.crumbs ol {
  list-style: none;
  margin: 0;
  padding: 0.7rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.6rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumbs li + li::before { content: "/"; margin-right: 0.6rem; color: var(--line); }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--navy); }
.crumbs li[aria-current] { color: var(--ink); }

/* ---------- contrast on light backgrounds ---------- */
/* --gold (#c9a961) is a night-background colour: on white it measures 2.25:1 and on paper 2.13:1,
   under the 4.5:1 that normal text needs. These contexts are all light, so they use --gold-ink. */
.card .stage,
.card p.stage,
.svc-meta .stage,
.cs-sector,
.outcomes .check,
.tier .stage { color: var(--gold-ink); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 24, 48, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-night);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.5rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--white);
}
.brand svg { display: block; }
.brand-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  position: relative;
  color: var(--star);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
}
.nav a:hover { color: var(--white); }
.nav a[aria-current="page"] { color: var(--white); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.1rem;
  height: 2px;
  background: var(--gold);
}
.nav-cta {
  padding: 0.5rem 1.15rem !important;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-family: var(--mono);
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}
.nav-cta:hover { background: var(--gold); color: var(--night) !important; }
.nav-cta[aria-current="page"]::after { display: none; }
.nav-toggle { display: none; }

/* ---------- heroes ---------- */
.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse 90rem 42rem at 78% -12%, #1a3a6e 0%, transparent 55%),
    linear-gradient(178deg, var(--night) 0%, var(--night-2) 62%, var(--night) 100%);
}
.hero,
.page-hero { padding: 6.5rem 0 5.5rem; }
.page-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 960px) {
  .hero,
  .page-hero { min-height: 43.6rem; }
}
.stars { position: absolute; inset: 0; pointer-events: none; opacity: 0.85; }
.hero-grid {
  position: relative;
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
.hero .kicker, .page-hero .kicker { color: var(--gold); }
.hero .kicker::before, .page-hero .kicker::before { background: var(--gold); }
.hero h1, .page-hero h1 {
  margin: 0 0 1.4rem;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: 24ch;
}
.hero .lede, .page-hero .lede {
  color: #e4edf7;
  font-size: 1.22rem;
  position: relative;
  text-shadow: 0 1px 2px rgba(8, 24, 48, 0.55);
}
.page-hero a { color: var(--star); }

.actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.6rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn-primary { background: var(--gold); color: var(--night); }
.btn-primary:hover { background: #dcbd78; color: var(--night); }
.btn-ghost { border: 1px solid rgba(201, 214, 234, 0.45); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.btn-ghost-day { border: 1px solid var(--navy); color: var(--navy); }
.btn-ghost-day:hover { background: rgba(16, 48, 96, 0.06); color: var(--navy-deep); }

/* hero watch panel */
.watch-panel {
  background: rgba(13, 34, 66, 0.72);
  border: 1px solid var(--line-night);
  backdrop-filter: blur(6px);
  padding: 1.4rem 1.5rem 1.5rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6);
}
.watch-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem 1rem;
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-night);
  color: var(--muted-night);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
}
.watch-head > span:first-child { flex: 1 1 auto; min-width: 0; }
.watch-head .live { color: #7dd9a0; white-space: nowrap; flex: 0 0 auto; }
.watch-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.62rem 0;
  border-bottom: 1px dashed rgba(142, 163, 189, 0.14);
  color: var(--star);
}
.watch-row:last-child { border-bottom: 0; }
.watch-row .tag {
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.55rem;
  white-space: nowrap;
}
.tag-ok { color: #7dd9a0; border: 1px solid rgba(125, 217, 160, 0.4); }
.tag-warn { color: var(--gold); border: 1px solid rgba(201, 169, 97, 0.45); }
.tag-info { color: var(--muted-night); border: 1px solid var(--line-night); }
.watch-caption {
  margin: 0.95rem 0 0;
  font-size: 0.7rem;
  color: #aebdd6;
  letter-spacing: 0.04em;
}

/* Defined night sky + glass status card. Homepage and service heroes opt in with .hero-sky. */
.hero-sky .stars { opacity: 1; }
@media (max-width: 959px) {
  .hero-sky .hero-sparks { display: none; }
}
@keyframes star-twinkle {
  0%, 100% { opacity: 0.38; }
  16% { opacity: 1; }
  32% { opacity: 0.5; }
  48% { opacity: 0.92; }
  72% { opacity: 0.42; }
}
@keyframes gold-twinkle {
  0%, 100% { opacity: 0.72; }
  20% { opacity: 1; }
  42% { opacity: 0.62; }
  64% { opacity: 1; }
}
.hero-sparks > g {
  animation: star-twinkle 4.8s ease-in-out infinite;
}
.hero-sparks > g:nth-child(2n) { animation-duration: 5.6s; animation-delay: -1.1s; }
.hero-sparks > g:nth-child(3n) { animation-duration: 3.9s; animation-delay: -2.3s; }
.hero-sparks > g:nth-child(4n) { animation-duration: 6.2s; animation-delay: -0.7s; }
.hero-sparks > g:nth-child(5n) { animation-duration: 4.3s; animation-delay: -3.4s; }
.hero-gold-sparks > g {
  animation: gold-twinkle 5.4s ease-in-out infinite;
}
.hero-gold-sparks > g:nth-child(2) { animation-duration: 4.5s; animation-delay: -1.8s; }
.hero-gold-sparks > g:nth-child(3) { animation-duration: 6.1s; animation-delay: -3.2s; }
.hero-sky.sky-right {
  background:
    radial-gradient(ellipse 56rem 32rem at 82% 6%, #244a82 0%, transparent 58%),
    radial-gradient(ellipse 36rem 22rem at 12% 88%, rgba(16, 48, 96, 0.55) 0%, transparent 70%),
    linear-gradient(178deg, #061326 0%, #0c2140 58%, #081830 100%);
}
.hero-home.hero-sky.sky-right {
  background:
    radial-gradient(ellipse 56rem 32rem at 82% 6%, #244a82 0%, transparent 58%),
    linear-gradient(178deg, #061326 0%, #0c2140 58%, #081830 100%);
}
.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 32% 35%;
  pointer-events: none;
}
.has-hero-photo .stars { display: none; }
.has-hero-photo::before,
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(8, 24, 48, 0.80) 0%, rgba(8, 24, 48, 0.52) 32%, rgba(8, 24, 48, 0.12) 46%, rgba(8, 24, 48, 0.08) 100%);
}
.has-hero-photo .hero-grid,
.has-hero-photo .wrap,
.hero-home .hero-grid { position: relative; z-index: 2; }
@media (max-width: 959px) {
  .hero-photo { object-position: 36% 40%; }
  .has-hero-photo::before,
  .hero-home::before {
    background: linear-gradient(180deg, rgba(8, 24, 48, 0.72) 0%, rgba(8, 24, 48, 0.55) 70%, rgba(8, 24, 48, 0.48) 100%);
  }
}
.hero-sky.sky-left {
  background:
    radial-gradient(ellipse 52rem 30rem at 18% 8%, #244a82 0%, transparent 56%),
    radial-gradient(ellipse 32rem 20rem at 88% 90%, rgba(16, 48, 96, 0.5) 0%, transparent 70%),
    linear-gradient(178deg, #061326 0%, #0c2140 58%, #081830 100%);
}
.hero-sky.sky-center {
  background:
    radial-gradient(ellipse 70rem 28rem at 50% -6%, #1e4578 0%, transparent 58%),
    radial-gradient(ellipse 28rem 18rem at 92% 88%, rgba(16, 48, 96, 0.4) 0%, transparent 70%),
    linear-gradient(178deg, #061326 0%, #0c2140 58%, #081830 100%);
}
.hero-sky.sky-high {
  background:
    radial-gradient(ellipse 48rem 26rem at 72% -18%, #2a5088 0%, transparent 55%),
    radial-gradient(ellipse 28rem 18rem at 8% 100%, rgba(16, 48, 96, 0.45) 0%, transparent 65%),
    linear-gradient(178deg, #05101f 0%, #0c2140 58%, #081830 100%);
}
.hero-sky .watch-panel {
  width: 100%;
  background:
    linear-gradient(180deg, rgba(201, 214, 234, 0.16) 0%, transparent 38%),
    rgba(10, 28, 56, 0.78);
  border: 1px solid rgba(201, 169, 97, 0.55);
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(8, 24, 48, 0.45),
    0 28px 56px -18px rgba(0, 0, 0, 0.72),
    inset 0 1px 0 rgba(201, 214, 234, 0.22);
  padding: 0;
}
.hero-sky .watch-head {
  margin: 0;
  padding: 1rem 1.55rem 0.95rem;
  background: linear-gradient(180deg, rgba(8, 24, 48, 0.42) 0%, transparent 100%);
  border-bottom: 1px solid rgba(201, 169, 97, 0.32);
  color: var(--star);
}
.hero-sky .watch-head .live {
  color: #7dd9a0;
  text-shadow: 0 0 10px rgba(125, 217, 160, 0.35);
}
.hero-sky .watch-row,
.hero-sky .watch-caption,
.hero-sky .panel-tiles,
.hero-sky .panel-table,
.hero-sky .panel-login {
  margin-left: 1.55rem;
  margin-right: 1.55rem;
}
.hero-sky .watch-head + .watch-row,
.hero-sky .watch-head + .panel-tiles,
.hero-sky .watch-head + .panel-table,
.hero-sky .watch-head + .panel-login { padding-top: 0.85rem; }
.hero-sky .panel-tiles,
.hero-sky .panel-table,
.hero-sky .panel-login { padding-bottom: 0.35rem; }
.hero-sky .watch-row {
  color: #d7e2f2;
  border-bottom-color: rgba(201, 214, 234, 0.12);
}
.hero-sky .watch-caption { padding-bottom: 1.35rem; }
.hero-sky .watch-row .tag,
.hero-sky .panel-tr .tag {
  padding: 0.22rem 0.62rem;
  font-weight: 500;
  border: 0;
  text-transform: uppercase;
}
.hero-sky .tag-ok {
  color: var(--night);
  background: #7dd9a0;
}
.hero-sky .tag-warn {
  color: var(--night);
  background: var(--gold);
}
.hero-sky .tag-info {
  color: var(--night);
  background: #c9d6ea;
}

/* proof strip */
.proof {
  border-top: 1px solid var(--line-night);
  background: var(--night);
  padding: 2rem 0;
}
.proof-inner {
  display: grid;
  gap: 1.5rem 0;
}
@media (min-width: 700px) {
  .proof-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .proof-inner { grid-template-columns: repeat(4, 1fr); }
}
.proof-item {
  padding: 0.2rem 1.6rem;
  border-left: 1px solid var(--line-night);
}
.proof-item:first-child { border-left-color: transparent; padding-left: 0; }
@media (max-width: 999px) {
  .proof-item { border-left: 0; padding-left: 0; }
}
.proof-item strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  margin-bottom: 0.15rem;
}
.proof-item span {
  color: var(--muted-night);
  font-size: 0.9rem;
}

/* ---------- day sections ---------- */
.section { padding: 5.5rem 0; }
.section-tight { padding: 4rem 0; }
.section-alt { background: var(--white); border-block: 1px solid var(--line); }

/* “In one sentence” continues the night of the photo hero; paper begins on the next section. */
.hero-extend {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -1px;
  padding: 1.8rem 0;
  background:
    linear-gradient(180deg, var(--night) 0%, #061326 72%, var(--night) 100%);
  color: var(--white);
  border: 0;
}
.hero-extend .kicker { color: var(--gold); }
.hero-extend .kicker::before { background: var(--gold); }
.hero-extend .lede {
  color: #e4edf7;
  font-size: clamp(1.28rem, 2.1vw, 1.62rem);
  line-height: 1.45;
  max-width: 38rem;
  text-shadow: 0 1px 2px rgba(8, 24, 48, 0.55);
}
.hero-extend .muted { color: var(--muted-night); }
.hero-extend .rail { margin: 1.35rem 0 0.65rem; }
.hero-extend .rail li {
  color: var(--muted-night);
  background: transparent;
  border-color: var(--line-night);
}
.hero-extend .rail li[aria-current="step"] {
  color: var(--night);
  background: var(--gold);
  border-color: var(--gold);
}

.split { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .split { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.gap-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.9rem; }
.gap-list li {
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
}
.gap-list .n {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.grid { display: grid; gap: 1.4rem; }
@media (min-width: 820px) {
  .grid.three { grid-template-columns: repeat(3, 1fr); }
  .grid.two { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.8rem 1.6rem 1.6rem;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}
.section-alt .card { background: var(--paper); }
.card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -20px rgba(16, 48, 96, 0.35);
}
.card .stage {
  display: block;
  margin-bottom: 0.6rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.card p { margin: 0 0 0.6rem; color: var(--muted); }
.card p:last-child { margin-bottom: 0; }
.card ul { margin: 0.4rem 0 0; padding-left: 1.1rem; color: var(--muted); }
.card ul li { margin-bottom: 0.35rem; }

/* process rail */
.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--white);
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  padding: 1.8rem 1.5rem 1.7rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}
@media (min-width: 820px) {
  .step { border-bottom: 0; border-right: 1px solid var(--line); }
  .step:last-child { border-right: 0; }
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}
.step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--line);
}
.step:hover::after { background: var(--navy); }
.step h3 { font-family: var(--display); font-weight: 600; font-size: 1.12rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.98rem; }
.step .owner {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* outcomes checklist */
.outcomes { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.75rem; max-width: 44rem; }
.outcomes li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.section-alt .outcomes li { background: var(--paper); }
.outcomes .check {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* service detail blocks */
.svc {
  display: grid;
  gap: 1.5rem;
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}
.svc:last-of-type { border-bottom: 1px solid var(--line); }
@media (min-width: 900px) { .svc { grid-template-columns: 4fr 8fr; gap: 3rem; } }
.svc .svc-meta .stage {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.svc .svc-meta h3 { font-family: var(--display); font-size: 1.35rem; }
.svc .svc-meta .fee {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.svc .svc-body p { margin: 0 0 0.9rem; }
.svc .svc-body p:last-child { margin-bottom: 0; }
.svc-deliver {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 700px) { .svc-deliver { grid-template-columns: 1fr 1fr; } }
.svc-deliver li {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  font-size: 0.98rem;
  color: var(--muted);
}
.svc-deliver li::before {
  content: "\2014";
  color: var(--gold);
  flex-shrink: 0;
}

/* case studies */
.cs {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 2rem 1.8rem 1.9rem;
  margin-top: 1.6rem;
}
.cs .cs-sector {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.cs h3 { font-family: var(--display); font-size: 1.3rem; }
.cs-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: 1.2rem;
}
@media (min-width: 860px) { .cs-grid { grid-template-columns: 1fr 1fr 1fr; } }
.cs-grid h4 {
  margin: 0 0 0.4rem;
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-grid p, .cs-grid ul { margin: 0; color: var(--muted); font-size: 0.98rem; }
.cs-grid ul { padding-left: 1.1rem; }
.cs-grid ul li { margin-bottom: 0.3rem; }
.candor {
  max-width: 44rem;
  font-size: 0.92rem;
  color: var(--muted);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}

/* prose */
.prose { max-width: 44rem; }
.prose p + p { margin-top: 1rem; }
.prose h2 { margin-top: 2.6rem; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5rem; }
.prose ul, .prose ol { margin: 0.85rem 0 0; padding-left: 1.25rem; }
.prose li + li { margin-top: 0.35rem; }
.prose .legal-toc {
  margin: 1.2rem 0 0;
  padding: 1rem 1.25rem 1rem 2.1rem;
  border: 1px solid var(--line);
  background: var(--white);
  columns: 2;
  column-gap: 2rem;
}
.prose .legal-toc li { break-inside: avoid; }
@media (max-width: 700px) {
  .prose .legal-toc { columns: 1; }
}
.page-hero .legal-updated,
.legal-updated {
  margin: 1rem 0 0;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-night);
}

/* timeline */
.timeline { margin: 0; padding: 0; list-style: none; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 0.55rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: var(--line);
}
.timeline li { position: relative; padding: 0 0 2.2rem 2.6rem; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.42rem;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--paper);
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.timeline .t-when {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.timeline h3 { font-family: var(--display); font-size: 1.2rem; }
.timeline p { margin: 0.2rem 0 0; color: var(--muted); max-width: 40rem; }

/* faq */
.faq { max-width: 46rem; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 600;
  color: var(--navy);
  font-size: 1.06rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 0 0 1.2rem; color: var(--muted); max-width: 40rem; }

/* contact form */
.form-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem 1.8rem;
  max-width: 34rem;
}
.form-row { margin-bottom: 1.15rem; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.35rem;
  color: var(--navy);
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: 2px solid var(--navy);
  outline-offset: 0;
}
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.9rem; }
.form-submit { width: 100%; border: 0; cursor: pointer; }

.contact-mail {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  letter-spacing: 0.03em;
  text-decoration: none;
}

/* cta band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70rem 30rem at 20% 120%, #1a3a6e 0%, transparent 60%),
    var(--night);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-band .kicker { justify-content: center; color: var(--gold); }
.cta-band h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.5rem); }
.cta-band p { color: var(--muted-night); max-width: 38rem; margin: 0 auto; font-size: 1.15rem; }
.cta-band .actions { justify-content: center; }
.cta-band a { color: var(--star); }
.cta-band .btn-primary { color: var(--night); }

/* footer */
.site-footer {
  background: var(--night);
  color: var(--muted-night);
  border-top: 1px solid var(--line-night);
  padding: 2.4rem 0 2.8rem;
  font-size: 0.92rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  align-items: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.footer-links a { color: var(--muted-night); text-decoration: none; }
.footer-links a:hover { color: var(--white); }

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    min-height: 2.75rem;
    background: transparent;
    border: 1px solid var(--line-night);
    color: var(--star);
    font-family: var(--mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    cursor: pointer;
  }
  .nav.is-open {
    display: flex;
    position: absolute;
    left: 0; right: 0; top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.8rem 1.5rem 1.4rem;
    background: var(--night);
    border-bottom: 1px solid var(--line-night);
  }
  .nav.is-open a { padding: 0.7rem 0; }
  .hero,
  .page-hero { padding: 4.5rem 0 4rem; }
}

/* ---------- dropdown nav ---------- */
.nav { gap: 1.4rem; }
/* Six primary items plus the Industries menu and two actions crowd the brand between the mobile
   breakpoint and ~1120px, so tighten the row before it wraps on its own. */
@media (min-width: 901px) and (max-width: 1120px) {
  .nav { gap: 0.95rem; }
  .nav-link, .nav-login, .nav-cta { font-size: 0.88rem; }
  .brand-name { font-size: 0.95rem; }
}
.nav-link {
  position: relative;
  color: var(--star);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-link:hover, .nav-group.is-open .nav-trigger { color: var(--white); }
.nav-trigger[data-active="true"] { color: var(--white); }
.nav-trigger[data-active="true"]::after,
.nav a.nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.1rem;
  height: 2px;
  background: var(--gold);
}
.nav-caret {
  width: 0.45rem; height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}
.nav-group.is-open .nav-caret { transform: translateY(1px) rotate(225deg); }
.nav-group { position: relative; }
.nav-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.55rem);
  left: -1rem;
  min-width: 14rem;
  padding: 0.7rem 0.95rem 0.75rem;
  background: var(--night);
  border: 1px solid var(--line-night);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.8);
  z-index: 40;
}
.nav-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -0.55rem; height: 0.55rem; }
.nav-group.is-open .nav-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, max-content));
  gap: 0.55rem 1.25rem;
  min-width: 0;
  width: max-content;
  max-width: min(40rem, calc(100vw - 3rem));
}
@media (min-width: 901px) {
  /* Anchored to its own trigger: the nav-group (position: relative) stays the containing block, so
     the panel opens centred under the link that was chosen instead of hanging off the edge of the
     header. Content-width columns keep the sub-links close together, and the viewport cap means a
     long label can never push the page sideways. */
  .nav-group.is-open .nav-menu-mega {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: max-content;
    min-width: 0;
    max-width: min(48rem, calc(100vw - 3rem));
    padding: 0.75rem 1rem 0.85rem;
    grid-template-columns: repeat(3, max-content);
    gap: 0.55rem 1.2rem;
  }
  .nav-menu-mega a { white-space: nowrap; }
}
.nav-col { display: flex; flex-direction: column; gap: 0.05rem; min-width: 0; }
.nav-col-title {
  margin: 0 0 0.25rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-menu a {
  color: var(--star);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.26rem 0;
  white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: var(--white); }
.nav-menu a.is-highlight {
  color: var(--white);
  font-weight: 600;
}
.nav-menu a.is-highlight:hover,
.nav-menu a.is-highlight[aria-current="page"] { color: var(--gold); }
.nav-login {
  color: var(--muted-night);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}
.nav-login:hover, .nav-login[aria-current="page"] { color: var(--white); }

@media (max-width: 900px) {
  .nav.is-open .nav-group { width: 100%; }
  .nav.is-open .nav-link { width: 100%; justify-content: space-between; padding: 0.7rem 0; }
  .nav.is-open .nav-menu {
    position: static;
    box-shadow: none;
    border: 0;
    border-left: 1px solid var(--line-night);
    padding: 0.2rem 0 0.6rem 1rem;
    margin: 0 0 0.4rem;
    min-width: 0;
  }
  .nav.is-open .nav-group.is-open .nav-menu,
  .nav.is-open .nav-group.is-open .nav-menu-mega {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    min-width: 0;
    max-width: none;
  }
  .nav.is-open .nav-menu a { white-space: normal; }
  .nav.is-open .nav-login { padding: 0.7rem 0; }
  .nav.is-open .nav-cta { margin-top: 0.6rem; text-align: center; }
}

/* ---------- footer grid ---------- */
.footer-grid {
  display: grid;
  gap: 2.2rem 2rem;
  padding-bottom: 2.2rem;
  margin-bottom: 1.8rem;
  border-bottom: 1px solid var(--line-night);
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.6fr repeat(5, 1fr); } }
.footer-brand p { margin: 0.8rem 0 0; max-width: 28ch; }
.footer-brand a { color: var(--star); text-decoration: none; }
.footer-brand .brand-name { font-size: 0.9rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-col a { color: var(--muted-night); text-decoration: none; font-size: 0.9rem; }
.footer-col a:hover { color: var(--white); }
.footer-title {
  margin: 0 0 0.5rem;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- hero panel variants ---------- */
.watch-panel > .panel-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.panel-tile {
  display: flex; flex-direction: column; gap: 0.2rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line-night);
  background: rgba(8, 24, 48, 0.5);
}
.panel-tile-label { font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-night); }
.panel-tile-value { font-family: var(--display); font-size: 1.5rem; color: var(--white); }
.panel-tile-note { font-size: 0.7rem; color: var(--star); }
.panel-table { display: flex; flex-direction: column; }
.panel-tr {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(142, 163, 189, 0.14);
  color: var(--star);
}
.panel-tr:last-child { border-bottom: 0; }
.panel-th { color: var(--muted-night); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; border-bottom: 1px solid var(--line-night); }
.panel-th span:last-child { text-align: right; }
.panel-tr .tag { justify-self: end; }
.panel-step { position: relative; padding-left: 1.3rem; }
.panel-step::before {
  content: ""; position: absolute; left: 0.25rem; top: 50%;
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--gold); transform: translateY(-50%);
}
.panel-step::after {
  content: ""; position: absolute; left: 0.47rem; top: 50%; bottom: -50%;
  width: 1px; background: rgba(201, 169, 97, 0.35);
}
.panel-step:last-of-type::after { display: none; }
.panel-clause span:first-child::before { content: "§ "; color: var(--gold); }
.panel-login { display: flex; flex-direction: column; gap: 0.6rem; }
.panel-field { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-night); }
.panel-input { padding: 0.55rem 0.7rem; border: 1px solid var(--line-night); color: var(--star); font-size: 0.82rem; letter-spacing: 0; text-transform: none; }
.panel-button { margin: 0.3rem 0 0.6rem; padding: 0.6rem; text-align: center; background: rgba(201, 169, 97, 0.18); border: 1px solid rgba(201, 169, 97, 0.45); color: var(--gold); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- service pages ---------- */
.wrap.narrow { max-width: 52rem; }
.svc-aside { display: flex; flex-direction: column; gap: 1.2rem; }
@media (min-width: 900px) { .svc-aside { position: sticky; top: 5.5rem; align-self: start; } }
.svc-deliver-aside { grid-template-columns: 1fr; gap: 0.55rem; margin-top: 0.6rem; }
.svc-deliver-aside li { font-size: 0.94rem; }
.svc-aside .card p { margin: 0 0 0.5rem; }
.svc-aside .card a { color: var(--navy); font-weight: 600; }
.svc-deliver-wide { margin-top: 1.4rem; }

/* stage rail: where a listing sits in the engagement, one chip per stage */
.rail { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 0; padding: 0; list-style: none; }
.rail li {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
}
.rail li[aria-current="step"] { color: var(--navy); border-color: var(--gold); background: var(--paper); }
@media (min-width: 1000px) { .svc-deliver-wide { grid-template-columns: repeat(4, 1fr); } }
.grid.two { display: grid; gap: 3rem; }
@media (min-width: 820px) { .grid.two { grid-template-columns: 1fr 1fr; } }
.gap-list-not li::before { background: var(--muted); }
.faq-more { margin-top: 1.6rem; }
.faq-more a { color: var(--navy); }

/* tiers */
.tiers .card h3 { font-family: var(--display); font-size: 1.35rem; margin: 0.6rem 0 0.5rem; }
.tier-fit { margin-top: 0.8rem !important; font-size: 0.92rem; }
.tier-note { margin-top: 1.6rem; max-width: 60ch; }

@media (min-width: 1100px) { .tiers-four { grid-template-columns: repeat(4, 1fr); } }
.independence { margin-top: 1.4rem; }

/* ---------- services overview ---------- */
.svc h3 a { color: inherit; text-decoration: none; }
.svc h3 a:hover { color: var(--navy); text-decoration: underline; }
.svc-more { margin: 0.9rem 0 0; }
.svc-more a { color: var(--navy); font-weight: 600; }

/* ---------- roadmap ---------- */
.roadmap { display: grid; gap: 1.4rem; margin-top: 2rem; }
.roadmap-item { display: grid; gap: 0.6rem 2rem; padding: 1.6rem 0; border-top: 1px solid var(--line); }
@media (min-width: 820px) { .roadmap-item { grid-template-columns: 11rem 1fr auto; align-items: start; } }
.roadmap-target { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.roadmap-item[data-status="live"] .roadmap-target { color: #1d7a4b; }
.roadmap-item[data-status="building"] .roadmap-target { color: var(--navy); }
.roadmap-item h3 { margin: 0 0 0.4rem; font-family: var(--display); font-size: 1.25rem; }
.roadmap-item p { margin: 0; color: var(--muted); }
.roadmap-item .btn { white-space: nowrap; }

/* ---------- glossary ---------- */
.glossary { display: grid; gap: 0; margin-top: 1.5rem; }
.glossary div { display: grid; gap: 0.3rem 2rem; padding: 1rem 0; border-top: 1px solid var(--line); }
@media (min-width: 720px) { .glossary div { grid-template-columns: 14rem 1fr; } }
.glossary dt { font-weight: 600; color: var(--ink); }
.glossary dd { margin: 0; color: var(--muted); }

/* ---------- FAQ filter ---------- */
.faq-filter { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.2rem; margin: 0 0 2rem; }
.faq-filter input {
  flex: 1 1 18rem;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 1rem;
  background: var(--white);
}
.faq-filter input:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
.faq-filter span { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.faq-jump { display: flex; flex-wrap: wrap; gap: 0.5rem 1.2rem; margin: 0 0 2.5rem; }
.faq-jump a { color: var(--navy); font-size: 0.92rem; }

/* ---------- portal ---------- */
.portal-list { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
@media (min-width: 820px) { .portal-list { grid-template-columns: repeat(2, 1fr); } }
.notice {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: var(--white);
  color: var(--muted);
}


/* ---------- case study pages ---------- */
.cs h3 a { color: inherit; text-decoration: none; }
.cs h3 a:hover { color: var(--navy); text-decoration: underline; }
.cs-steps { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.cs-steps li { margin-bottom: 0.5rem; }
.cs-links { display: grid; gap: 0.8rem; margin-top: 1rem; }
@media (min-width: 720px) { .cs-links { grid-template-columns: 1fr 1fr; } }
.cs-links a { display: flex; flex-direction: column; gap: 0.3rem; padding: 1rem 1.2rem; border: 1px solid var(--line); background: var(--white); color: var(--ink); text-decoration: none; font-weight: 600; }
.cs-links a:hover { border-color: var(--navy); }
.cs-links .cs-sector { font-weight: 400; }
.town-list { line-height: 2; margin: 0; color: var(--muted); }
.town-list a { color: var(--ink); font-weight: 600; }
.town-sep { color: var(--line); margin: 0 0.35rem; }

/* ---------- blog ---------- */
.post-grid { display: grid; gap: 1.6rem; margin-top: 1.6rem; }
.post-page { display: grid; gap: 1.6rem; }
.post-page[hidden] { display: none; }
@media (min-width: 720px) { .post-page { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .post-page { grid-template-columns: repeat(3, 1fr); } }
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: 1.6rem 1.8rem 1.9rem;
}
.post-grid .post-card { margin-top: 0; }
.post-card picture { display: block; }
.post-card picture img { display: block; width: 100%; height: auto; border-radius: 4px; margin-bottom: 1.2rem; }
.post-meta {
  display: block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.post-card h2 { font-family: var(--display); font-size: 1.25rem; margin: 0 0 0.6rem; }
.post-card h2 a { color: inherit; text-decoration: none; }
.post-card h2 a:hover { color: var(--navy); text-decoration: underline; }
.post-card p { color: var(--muted); margin: 0 0 0.8rem; }
.post-card .svc-more { margin-top: auto; margin-bottom: 0; }
.post-hero img { object-position: 50% 42%; }
.post-pager { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 2rem; }
.pager-btn {
  font-family: var(--mono);
  font-size: 0.8rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.pager-btn:hover { border-color: var(--navy); }
.pager-btn.is-active { border-color: var(--navy); color: var(--navy); font-weight: 600; }
.pager-status { margin: 0.7rem 0 0; font-size: 0.85rem; }
.post-more { display: grid; gap: 0.8rem; margin-top: 1rem; }
@media (min-width: 720px) { .post-more { grid-template-columns: 1fr 1fr; } }
.post-more a { display: flex; flex-direction: column; gap: 0.3rem; padding: 1rem 1.2rem; border: 1px solid var(--line); background: var(--white); color: var(--ink); text-decoration: none; font-weight: 600; }
.post-more a:hover { border-color: var(--navy); }
.post-more .post-meta { font-weight: 400; margin-bottom: 0; }


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card, .nav-cta { transition: none; }
  .card:hover { transform: none; }
  .hero-sparks > g,
  .hero-gold-sparks > g { animation: none; }
}
