

/* ============================================================
   A Squared v4 design system
   Vibe: VantagePoint (warm paper, dark hero, green accent,
   human scale) + Convirtue big type + A Squared navy brand
   ============================================================ */

:root {
  --ink: #183341;
  --ink-soft: #4d626c;
  --ink-faint: #5c6e76;
  --paper: #ffffff;
  --paper-deep: #f1f5f5;
  --white: #ffffff;
  --navy: #003d68;
  --navy-dark: #002c4c;
  --hero-dark: #12161c;
  --accent: #096c62;
  --accent-dark: #07574f;
  --accent-tint: rgba(14, 159, 110, 0.10);
  --line: rgba(22, 24, 29, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --radius-s: 8px;
  --radius: 14px;
  --radius-l: 20px;
  --font-head: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-editorial: "Newsreader", Georgia, serif;
  --pad-x: clamp(1.25rem, 4.5vw, 4.5rem);
  --measure: 60ch;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; }

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

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }

.display {
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.04;
  text-transform: uppercase;
}

.h2-xl {
  font-size: clamp(1.6rem, 3.1vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.008em;
  line-height: 1.08;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.eyebrow::before { content: ""; width: 20px; height: 3px; background: var(--accent); border-radius: 2px; }
.eyebrow-light { color: rgba(255, 255, 255, 0.75); }

/* ---------- Scroll reveal ---------- */

[data-reveal] { opacity: 1; transform: none; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(2) { transition-delay: 0.07s; }
[data-reveal-stagger].in > *:nth-child(3) { transition-delay: 0.14s; }
[data-reveal-stagger].in > *:nth-child(4) { transition-delay: 0.21s; }
[data-reveal-stagger].in > *:nth-child(5) { transition-delay: 0.28s; }
[data-reveal-stagger].in > *:nth-child(6) { transition-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-s);
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: #262b33; }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--ink); }
.btn-outline-light { border-color: var(--line-light); color: var(--white); background: transparent; }
.btn-outline-light:hover { border-color: var(--white); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--paper-deep); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}
.text-link:hover { color: var(--accent); }

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.4vw, 2rem);
  padding: 0.65rem var(--pad-x);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.hero-dark .site-header {
  background: transparent;
  border-bottom-color: var(--line-light);
  position: fixed;
  left: 0;
  right: 0;
  backdrop-filter: none;
}
.hero-dark .hero-inner { padding-top: clamp(7rem, 12vw, 9.5rem); }
.site-header.scrolled {
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(22, 24, 29, 0.06);
}
.hero-dark .site-header.scrolled .brand-on-dark { display: none; }
.hero-dark .site-header.scrolled .brand-on-light { display: block; }
.hero-dark .site-header.scrolled .desktop-nav > a,
.hero-dark .site-header.scrolled .nav-dropdown > summary,
.hero-dark .site-header.scrolled .header-phone { color: var(--ink); }

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 50px; width: auto; display: block; }
.brand .brand-on-dark { display: none; }
.hero-dark .brand .brand-on-light { display: none; }
.hero-dark .brand .brand-on-dark { display: block; }

.desktop-nav { display: flex; align-items: center; gap: 1.35rem; margin-left: auto; }
.desktop-nav > a { text-decoration: none; font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.desktop-nav > a:hover { color: var(--accent); }
.hero-dark .desktop-nav > a { color: rgba(255, 255, 255, 0.9); }

.nav-dropdown { position: relative; }
.nav-dropdown > summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ink);
}
.hero-dark .nav-dropdown > summary { color: rgba(255, 255, 255, 0.9); }
.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary:hover, .nav-dropdown[open] > summary { color: var(--accent); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(22, 24, 29, 0.14);
  padding: 0.65rem;
  min-width: 265px;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.nav-dropdown-panel a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--ink);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-dropdown-panel a:hover { background: var(--accent-tint); color: var(--ink); }
.nav-dropdown-panel a span { color: var(--accent); font-weight: 700; }
.nav-dropdown-panel-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem 1.4rem; min-width: 480px; padding: 0.9rem 1rem; }
.nav-dropdown-panel-wide > div { display: flex; flex-direction: column; gap: 0.05rem; }
.nav-group-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-faint); padding: 0.3rem 0.7rem 0.4rem; }
.nav-all-link { color: var(--accent-dark); font-weight: 650; }

.header-phone {
  margin-left: auto;
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.desktop-nav + .header-phone { margin-left: 0; }
.header-phone:hover { color: var(--accent); }
.hero-dark .header-phone { color: rgba(255, 255, 255, 0.92); }
.header-cta { white-space: nowrap; font-size: 0.92rem; padding: 0.62rem 1.2rem; }

.mobile-menu { display: none; }

@media (max-width: 1080px) {
  .desktop-nav, .header-phone, .site-header > .header-cta { display: none; }
  .mobile-menu { display: block; margin-left: auto; position: relative; }
  .mobile-menu > summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.45rem 0.95rem;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-s);
    color: var(--ink);
    background: var(--white);
  }
  .mobile-menu > summary::-webkit-details-marker { display: none; }
  .mobile-menu > nav {
    position: absolute;
    right: 0;
    top: calc(100% + 0.75rem);
    width: min(88vw, 350px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(22, 24, 29, 0.2);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    max-height: 78vh;
    overflow-y: auto;
  }
  .mobile-menu strong {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ink-faint);
    padding: 0.7rem 0.5rem 0.25rem;
  }
  .mobile-menu nav a { text-decoration: none; font-weight: 500; font-size: 0.96rem; color: var(--ink); padding: 0.45rem 0.5rem; border-radius: 8px; }
  .mobile-menu nav a:hover { background: var(--accent-tint); }
}

/* ---------- Dark hero (home) ---------- */

.hero-dark {
  position: relative;
  background: var(--hero-dark);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.5;
  transition: opacity 0.7s ease;
}
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 28s infinite;
}
.hero-slides img:nth-child(1) { animation-delay: 0s; }
.hero-slides img:nth-child(2) { animation-delay: 7s; }
.hero-slides img:nth-child(3) { animation-delay: 14s; }
.hero-slides img:nth-child(4) { animation-delay: 21s; }
@keyframes heroFade {
  0% { opacity: 0; }
  4% { opacity: 0.5; }
  25% { opacity: 0.5; }
  32% { opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slides img { animation: none; }
  .hero-slides img:first-child { opacity: 0.5; }
}
.hero-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 22, 28, 0.55) 0%, rgba(18, 22, 28, 0.35) 45%, rgba(18, 22, 28, 0.88) 100%);
}
.hero-inner { padding: clamp(3.2rem, 7vw, 6rem) var(--pad-x) clamp(2.6rem, 5vw, 4.2rem); }
.hero-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-kicker::before { content: ""; width: 24px; height: 3px; background: var(--accent); border-radius: 2px; }
.hero-dark h1 { max-width: 15ch; color: var(--white); }
.hero-dark h1 em { font-style: normal; color: var(--accent); }
.hero-sub {
  max-width: 46ch;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 1.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero-actions .btn { font-size: 1rem; padding: 0.95rem 1.7rem; }
.hero-note { margin-top: 1rem; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }

.trust-strip {
  margin-top: clamp(2.2rem, 4.5vw, 3.4rem);
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.2rem;
}
.trust-strip span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-strip span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

/* ---------- What you get (value strip) ---------- */

.value-strip { background: var(--paper); }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.8rem; margin-top: 2.2rem; }
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem 1.3rem;
}
.value-card svg { width: 30px; height: 30px; stroke: var(--accent); }
.value-card h3 { font-size: 1.02rem; margin-top: 0.85rem; letter-spacing: -0.01em; }
.value-card p { margin-top: 0.35rem; font-size: 0.88rem; line-height: 1.5; color: var(--ink-soft); }

/* ---------- Problem section ---------- */

.problem-section { background: var(--paper-deep); }
.problem-section h2 { max-width: 18ch; }
.problem-lede { max-width: 52ch; margin-top: 1.2rem; font-size: 1.08rem; line-height: 1.6; color: var(--ink-soft); }
.problem-questions {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.9rem;
}
.problem-questions li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  font-size: 1rem;
  font-weight: 550;
  line-height: 1.4;
}
.problem-questions li span { display: block; color: var(--accent); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }

/* ---------- Steps ---------- */

.steps-section { background: var(--paper); }
.steps-head { display: flex; flex-wrap: wrap; gap: 1.5rem 4rem; align-items: end; justify-content: space-between; margin-bottom: 2.6rem; }
.steps-head h2 { max-width: 15ch; }
.steps-head p { max-width: 38ch; color: var(--ink-soft); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.8rem 1.6rem 1.7rem;
}
.step-card > span {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent);
  display: block;
}
.step-card h3 { font-size: 1.22rem; margin-top: 1rem; letter-spacing: -0.015em; }
.step-card p { margin-top: 0.55rem; color: var(--ink-soft); font-size: 0.93rem; }

/* ---------- Specialty cards ---------- */

.spec-section { background: var(--white); }
.spec-head { margin-bottom: 2.6rem; }
.spec-head h2 { max-width: 16ch; }
.spec-head p { max-width: 50ch; margin-top: 1rem; color: var(--ink-soft); }
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1rem; }
.spec-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.7rem 1.5rem;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.spec-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(22, 24, 29, 0.08); }
.spec-card.spec-card-lead { background: var(--navy); color: var(--white); border-color: var(--navy); }
.spec-card .spec-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.spec-card h3 { font-size: 1.35rem; margin-top: 0.85rem; letter-spacing: -0.018em; }
.spec-card > p { margin-top: 0.6rem; font-size: 0.93rem; line-height: 1.5; color: var(--ink-soft); flex-grow: 1; }
.spec-card-lead > p { color: rgba(255, 255, 255, 0.82); }
.spec-card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.spec-card ul li { font-size: 0.88rem; font-weight: 500; display: flex; gap: 0.5rem; align-items: baseline; }
.spec-card ul li::before { content: "→"; color: var(--accent); font-weight: 700; }
.spec-card strong { margin-top: 1.3rem; font-weight: 650; font-size: 0.93rem; color: var(--ink); }
.spec-card-lead strong { color: var(--white); }

/* ---------- Industry tiles ---------- */

.industry-tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 0.7rem; margin-top: 2.2rem; }
.industry-tiles a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.05rem 1.2rem;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.industry-tiles a:hover { border-color: var(--accent); transform: translateY(-2px); }
.industry-tiles a span { color: var(--accent); font-weight: 700; }

/* ---------- Credibility strip ---------- */

.cred-strip { background: var(--navy); color: var(--white); }
.cred-strip .cred-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 2.5rem 4rem; align-items: center; }
.cred-strip h2 { max-width: 17ch; }
.cred-strip .cred-copy { color: rgba(255, 255, 255, 0.85); font-size: 1.02rem; max-width: 50ch; margin-top: 1.1rem; }
.cred-points { display: flex; flex-direction: column; gap: 0.9rem; }
.cred-points li { display: flex; gap: 0.8rem; align-items: baseline; font-size: 0.98rem; font-weight: 550; color: rgba(255, 255, 255, 0.92); }
.cred-points li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; transform: translateY(-1px); }
@media (max-width: 860px) { .cred-strip .cred-inner { grid-template-columns: 1fr; } }

/* ---------- Tech band ---------- */

.tech-band { background: var(--paper); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.9rem; margin-top: 2.2rem; }
.tech-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; }
.tech-card svg { width: 30px; height: 30px; stroke: var(--accent); }
.tech-card h3 { font-size: 1.08rem; margin-top: 0.85rem; }
.tech-card p { margin-top: 0.4rem; font-size: 0.92rem; color: var(--ink-soft); }
.tech-note { margin-top: 1.6rem; font-size: 0.92rem; color: var(--ink-faint); max-width: 60ch; }

/* ---------- Page hero (interior) ---------- */

.page-hero { background: var(--paper); padding: clamp(2.4rem, 5vw, 4rem) var(--pad-x) clamp(2.2rem, 4.5vw, 3.6rem); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.45rem; font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 1.5rem; }
.breadcrumbs a { color: var(--ink-faint); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs span::before { content: "/"; margin-right: 0.45rem; color: var(--line); }
.breadcrumbs span:first-child::before { content: none; }
.page-hero h1 { max-width: 16ch; margin-top: 1.1rem; }
.page-hero .page-intro { max-width: 54ch; margin-top: 1.3rem; font-size: 1.1rem; line-height: 1.6; color: var(--ink-soft); }
.page-hero .hero-actions { margin-top: 1.8rem; }

.answer-box {
  margin: 2.2rem 0 0;
  max-width: 720px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
}
.answer-box strong { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--accent-dark); margin-bottom: 0.45rem; }
.answer-box p { font-size: 1rem; line-height: 1.6; }

/* ---------- Bands + cards ---------- */

.band { padding: clamp(3.2rem, 6.5vw, 5.4rem) var(--pad-x); }
.band-white { background: var(--white); }
.band-paper { background: var(--paper); }
.band-deep { background: var(--paper-deep); }
.band-navy { background: var(--navy); color: var(--white); }
.band-head { max-width: 800px; margin-bottom: 2.2rem; }
.band-head h2 { max-width: 20ch; }
.band-head > p { margin-top: 0.9rem; color: var(--ink-soft); max-width: 52ch; }
.band-navy .band-head > p { color: rgba(255, 255, 255, 0.82); }

.chip-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.8rem; }
.chip-row li {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.45rem 1.05rem;
  font-weight: 550;
  font-size: 0.92rem;
}
.band-navy .chip-row li { background: transparent; border-color: var(--line-light); color: var(--white); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 0.9rem; }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.35rem;
}
.band-navy .info-card { background: rgba(255, 255, 255, 0.06); border-color: var(--line-light); }
.info-card > span { font-size: 0.76rem; font-weight: 700; color: var(--accent); letter-spacing: 0.02em; }
.info-card h3 { font-size: 1.08rem; margin-top: 0.5rem; letter-spacing: -0.01em; }
.info-card p { margin-top: 0.4rem; font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }
.band-navy .info-card p { color: rgba(255, 255, 255, 0.8); }

/* Not-covered: compact honesty list */
.not-covered { background: var(--paper-deep); }
.plain-list { max-width: 780px; margin-top: 2rem; display: flex; flex-direction: column; }
.plain-list li { display: flex; gap: 0.9rem; align-items: baseline; padding: 0.85rem 0; border-top: 1px solid var(--line); font-size: 0.98rem; }
.plain-list li:first-child { border-top: none; }
.plain-list li::before { content: "✕"; color: var(--ink-faint); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.plain-list strong { font-weight: 650; }
.plain-list span { color: var(--ink-soft); }

/* Checklist */
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 0.5rem; margin-top: 2rem; counter-reset: check; }
.check-grid li {
  display: flex;
  gap: 0.85rem;
  align-items: baseline;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.85rem 1.05rem;
  font-weight: 500;
  font-size: 0.95rem;
  counter-increment: check;
}
.check-grid li::before {
  content: counter(check, decimal-leading-zero);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--accent);
  font-size: 0.85rem;
}

/* Scenario cards */
.scenario-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 0.9rem; }
.scenario-card { border-radius: var(--radius-l); background: var(--navy); color: var(--white); padding: 1.8rem 1.6rem; }
.scenario-card span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); }
.scenario-card h3 { margin-top: 0.75rem; font-size: 1.22rem; letter-spacing: -0.016em; }
.scenario-card p { margin-top: 0.6rem; color: rgba(255, 255, 255, 0.84); font-size: 0.94rem; line-height: 1.55; }

/* ---------- FAQ ---------- */

.faq-section { background: var(--white); }
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2.1rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); overflow: hidden; }
.faq-item[open] { border-color: var(--accent); background: var(--white); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 600; font-size: 1.35rem; color: var(--accent); flex-shrink: 0; line-height: 1; }
.faq-item[open] summary::after { content: "×"; }
.faq-item div { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: 0.96rem; max-width: var(--measure); }

/* ---------- Callout + qualifier ---------- */

.callout-band { background: var(--hero-dark); color: var(--white); }
.callout-band h2 { max-width: 22ch; }
.callout-band p { max-width: 56ch; margin-top: 1.1rem; color: rgba(255, 255, 255, 0.8); font-size: 1.02rem; }

.qualifier { padding: 1.4rem var(--pad-x); background: var(--paper); border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-faint); }
.qualifier p { max-width: 880px; }

/* ---------- CTA band ---------- */

.cta-band { padding: clamp(2rem, 4vw, 3.5rem) var(--pad-x); display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center; background: var(--white); color: var(--ink); border-top: 1px solid var(--line); }
.cta-copy { min-width: 0; }
.cta-band h2 { max-width: none; line-height: 1.12; }
.cta-copy p { max-width: 58ch; margin-top: 0.85rem; font-size: 1rem; color: var(--ink-soft); }
.cta-band > .btn { justify-self: end; white-space: nowrap; }

/* ---------- Related ---------- */

.related-section { background: var(--paper); }
.related-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.4rem; }
.related-row a {
  text-decoration: none;
  font-weight: 550;
  font-size: 0.92rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 1.15rem;
  background: var(--white);
  transition: border-color 0.15s ease;
}
.related-row a:hover { border-color: var(--accent); }

/* ---------- Footer ---------- */

.site-footer { background: var(--navy-dark); color: var(--white); padding: clamp(3.2rem, 6.5vw, 5rem) var(--pad-x) 2.2rem; }
.footer-top { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem; }
.footer-top img { height: 52px; width: auto; }
.footer-top p { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; max-width: 52ch; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 2rem;
}
.footer-grid strong { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.55); margin-bottom: 0.8rem; }
.footer-grid a { display: block; text-decoration: none; color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; padding: 0.2rem 0; }
.footer-grid a:hover { color: var(--white); }
.footer-grid p { color: rgba(255, 255, 255, 0.85); font-size: 0.92rem; }
.footer-grid small { color: rgba(255, 255, 255, 0.55); }
.footer-disclosure { margin-top: 2.4rem; padding-top: 1.7rem; border-top: 1px solid var(--line-light); font-size: 0.8rem; line-height: 1.6; color: rgba(255, 255, 255, 0.55); max-width: 960px; }
.footer-legal { margin-top: 1.7rem; padding-top: 1.4rem; border-top: 1px solid var(--line-light); display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.8rem 1.6rem; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }
.footer-legal > div { display: flex; gap: 1.6rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ---------- Insights ---------- */

.insights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 1.1rem; margin-top: 2.2rem; }
@media (min-width: 1150px) { .insights-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 700px) and (max-width: 1149.9px) { .insights-grid { grid-template-columns: repeat(2, 1fr); } }
.band-white .insights-grid { margin-top: 0; }
.insights-featured { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.1rem; margin-bottom: 1.1rem; }
@media (min-width: 900px) { .insights-featured { grid-template-columns: repeat(2, 1fr); } }
.insights-featured .insight-card h3 { font-size: 1.35rem; }

.signal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
@media (min-width: 1150px) { .signal-grid { grid-template-columns: repeat(4, 1fr); } }
.signal-card { display: flex; flex-direction: column; gap: 0.7rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.6rem 1.5rem; }
.signal-meta { font-size: 0.78rem; color: var(--ink-faint); display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.signal-meta span { background: var(--accent-tint); color: var(--accent-dark); font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.04em; }
.signal-card h3 { font-size: 1.1rem; letter-spacing: -0.012em; line-height: 1.25; }
.signal-card > p { font-size: 0.92rem; line-height: 1.6; color: var(--ink-soft); }
.signal-view { border-left: 3px solid var(--accent); padding: 0.15rem 0 0.15rem 0.9rem; margin-top: 0.2rem; }
.signal-view strong { display: block; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent-dark); margin-bottom: 0.25rem; }
.signal-view p { font-size: 0.92rem; line-height: 1.55; color: var(--ink); }
.signal-card .text-link { margin-top: auto; font-size: 0.88rem; align-self: flex-start; }
.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.insight-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(22, 24, 29, 0.08); }
.insight-thumb { aspect-ratio: 16 / 8.5; width: 100%; display: block; object-fit: cover; }
.insight-body { padding: 1.25rem 1.35rem 1.45rem; display: flex; flex-direction: column; flex-grow: 1; }
.insight-meta { font-size: 0.78rem; color: var(--ink-faint); display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.insight-meta span { background: var(--accent-tint); color: var(--accent-dark); font-weight: 700; padding: 0.2rem 0.65rem; border-radius: 999px; font-size: 0.72rem; letter-spacing: 0.04em; }
.insight-card h3 { margin-top: 0.85rem; font-size: 1.14rem; letter-spacing: -0.014em; line-height: 1.22; }
.insight-card .insight-body > p { margin-top: 0.5rem; font-size: 0.9rem; color: var(--ink-soft); flex-grow: 1; }
.insight-card strong { margin-top: 1.05rem; color: var(--ink); font-weight: 650; font-size: 0.9rem; }

.article-hero { background: var(--navy); color: var(--white); padding: 0 0 clamp(2.4rem, 5vw, 4rem); }
.article-hero-inner { padding: clamp(1.8rem, 4vw, 3rem) var(--pad-x) 0; }
.article-hero .back-link { color: rgba(255, 255, 255, 0.7); text-decoration: none; font-size: 0.9rem; font-weight: 600; }
.article-hero .back-link:hover { color: var(--white); }
.article-hero h1 { max-width: 24ch; margin-top: 1.3rem; font-size: clamp(1.9rem, 4.2vw, 3.2rem); letter-spacing: -0.024em; line-height: 1.05; }
.article-hero .lede { max-width: 58ch; margin-top: 1.2rem; font-size: 1.06rem; color: rgba(255, 255, 255, 0.84); }
.article-meta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.7rem 1.8rem; font-size: 0.84rem; color: rgba(255, 255, 255, 0.65); }

.article-body { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: 3rem; padding: clamp(2.4rem, 5vw, 4rem) var(--pad-x); background: var(--white); }
.article-body aside { position: sticky; top: 4.5rem; align-self: start; display: flex; flex-direction: column; gap: 0.35rem; }
.article-body aside strong { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.13em; color: var(--ink-faint); margin-bottom: 0.35rem; }
.article-body aside a { text-decoration: none; font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); padding: 0.25rem 0; }
.article-body aside a:hover { color: var(--accent); }
.article-body h2 { font-size: 1.5rem; letter-spacing: -0.018em; margin: 2.2rem 0 0.8rem; }
.article-body section:first-child h2 { margin-top: 0; }
.article-body p { max-width: var(--measure); margin-bottom: 0.95rem; color: var(--ink-soft); font-size: 0.98rem; }
.article-body ul { max-width: var(--measure); margin: 0.5rem 0 1.1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.article-body ul li { display: flex; gap: 0.6rem; align-items: baseline; color: var(--ink-soft); font-size: 0.98rem; }
.article-body ul li::before { content: "→"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.article-sources { margin-top: 2.4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.article-sources a { display: inline-flex; margin: 0.3rem 0.6rem 0.3rem 0; font-weight: 550; color: var(--ink); text-decoration: none; border: 1px solid var(--line); padding: 0.42rem 0.9rem; border-radius: 999px; font-size: 0.87rem; }
.article-sources a:hover { border-color: var(--accent); }
.article-disclaimer { margin-top: 1.8rem; font-size: 0.83rem; color: var(--ink-faint); max-width: var(--measure); }

@media (max-width: 860px) {
  .article-body { grid-template-columns: 1fr; gap: 1.8rem; }
  .article-body aside { position: static; }
}

/* ---------- Team ---------- */

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.1rem; margin-top: 2.4rem; }
.team-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.9rem 1.7rem; }
.team-card .team-initials {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.team-card .person-role { margin-top: 1.2rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.13em; color: var(--accent-dark); }
.team-card h3 { margin-top: 0.4rem; font-size: 1.4rem; letter-spacing: -0.018em; }
.team-card p { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.94rem; line-height: 1.6; }

/* ---------- Contact / forms ---------- */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.1rem; margin-top: 2.4rem; align-items: start; }
.contact-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.9rem 1.7rem; }
.contact-card h3 { font-size: 1.22rem; letter-spacing: -0.016em; }
.contact-card p { margin-top: 0.55rem; color: var(--ink-soft); font-size: 0.94rem; }
.contact-card .contact-line { display: block; margin-top: 1rem; font-weight: 700; font-size: 1.1rem; color: var(--ink); text-decoration: none; }
.contact-card .contact-line:hover { color: var(--accent); }
.contact-card address { font-style: normal; margin-top: 0.9rem; color: var(--ink-soft); line-height: 1.6; font-size: 0.95rem; }
.contact-card .btn { margin-top: 1.3rem; }

.quote-shell { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 380px); gap: 2.5rem; align-items: start; }
@media (max-width: 960px) { .quote-shell { grid-template-columns: 1fr; } }

.quote-form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: clamp(1.5rem, 3vw, 2.3rem); }
.quote-form h2 { font-size: 1.35rem; }
.quote-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; margin-top: 1.4rem; }
.quote-form .form-field { display: flex; flex-direction: column; gap: 0.3rem; }
.quote-form .form-field-wide { grid-column: 1 / -1; }
.quote-form label { font-size: 0.82rem; font-weight: 650; color: var(--ink); }
.quote-form label small { font-weight: 500; color: var(--ink-faint); }
.quote-form input, .quote-form select, .quote-form textarea {
  font: inherit;
  font-size: 0.95rem;
  line-height: 1.4;
  height: 46px;
  padding: 0 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  min-width: 0;
}
.quote-form textarea { height: auto; padding: 0.7rem 0.85rem; }
.quote-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2343494f' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.85rem center; padding-right: 2.2rem; }
@media (max-width: 640px) { .quote-form .form-grid { grid-template-columns: 1fr; } }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: none; border-color: var(--accent); background: var(--white); }
.quote-form textarea { min-height: 110px; resize: vertical; }
.quote-form fieldset { border: none; grid-column: 1 / -1; }
.quote-form fieldset legend { font-size: 0.82rem; font-weight: 650; margin-bottom: 0.5rem; }
.quote-form .check-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.quote-form .check-row label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 550;
  line-height: 1;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-s);
  padding: 0.6rem 0.9rem;
  cursor: pointer;
  background: var(--paper);
  transition: border-color 0.12s ease, background 0.12s ease;
}
.quote-form .check-row label:hover { border-color: var(--ink-faint); }
.quote-form .check-row label:has(input:checked) { border-color: var(--accent); background: var(--accent-tint); }
.quote-form .check-row input { accent-color: var(--accent); width: 15px; height: 15px; margin: 0; flex-shrink: 0; }
.quote-form .btn { margin-top: 1.4rem; width: 100%; justify-content: center; }
.form-note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--ink-faint); }

.quote-success { background: var(--white); border: 1.5px solid var(--accent); border-radius: var(--radius-l); padding: 2.2rem; text-align: left; }
.quote-success h2 { font-size: 1.5rem; }
.quote-success p { margin-top: 0.8rem; color: var(--ink-soft); }
.quote-success .contact-line { display: block; margin-top: 0.9rem; font-weight: 700; font-size: 1.1rem; color: var(--ink); text-decoration: none; }

.quote-aside { display: flex; flex-direction: column; gap: 1rem; }
.quote-aside .aside-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem; }
.quote-aside .aside-card h3 { font-size: 1.02rem; }
.quote-aside .aside-card p { margin-top: 0.4rem; font-size: 0.9rem; color: var(--ink-soft); }
.quote-aside ol { counter-reset: qsteps; display: flex; flex-direction: column; gap: 0.7rem; margin-top: 0.8rem; }
.quote-aside ol li { display: flex; gap: 0.7rem; align-items: baseline; font-size: 0.9rem; color: var(--ink-soft); counter-increment: qsteps; }
.quote-aside ol li::before { content: counter(qsteps); font-family: var(--font-head); font-weight: 700; color: var(--accent); }
.quote-aside .contact-line { display: block; margin-top: 0.7rem; font-weight: 700; font-size: 1.02rem; color: var(--ink); text-decoration: none; }
.quote-aside .contact-line:hover { color: var(--accent); }

.start-list { margin-top: 2rem; display: grid; gap: 0.6rem; max-width: 740px; counter-reset: start; }
.start-list li { display: flex; gap: 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.15rem 1.35rem; counter-increment: start; }
.start-list li::before { content: counter(start, decimal-leading-zero); font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 1.15rem; letter-spacing: -0.02em; }
.start-list strong { display: block; font-size: 1.02rem; }
.start-list p { margin-top: 0.2rem; color: var(--ink-soft); font-size: 0.9rem; }

/* ---------- Legal ---------- */

.legal-section { background: var(--white); }
.legal-section article { max-width: 740px; margin-bottom: 2rem; }
.legal-section h2 { font-size: 1.3rem; letter-spacing: -0.014em; margin-bottom: 0.6rem; }
.legal-section p { color: var(--ink-soft); font-size: 0.97rem; }

/* ---------- Markets ---------- */

.market-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.85rem; margin-top: 2.2rem; }
.market-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem 1.3rem; }
.market-card h3 { font-size: 1.1rem; letter-spacing: -0.01em; }
.market-card p { margin-top: 0.35rem; font-size: 0.9rem; color: var(--ink-soft); }
.market-note { margin-top: 1.8rem; font-size: 0.85rem; color: var(--ink-faint); max-width: 840px; }

/* ---------- Narrative ---------- */

.narrative-section { background: var(--white); }
.narrative-block {
  display: grid;
  grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
  gap: 2.2rem;
  padding: clamp(2rem, 4.5vw, 3.2rem) 0;
  border-top: 1px solid var(--line);
}
.narrative-block:first-of-type { border-top: none; padding-top: 0; }
.narrative-block > div:first-child p { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.03em; color: var(--accent); line-height: 1; }
.narrative-block h2 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; letter-spacing: -0.005em; max-width: 26ch; text-transform: uppercase; }
.narrative-block .narrative-copy { margin-top: 0.9rem; color: var(--ink-soft); max-width: var(--measure); font-size: 0.99rem; }
@media (max-width: 760px) { .narrative-block { grid-template-columns: 1fr; gap: 0.7rem; } }

/* ---------- Captive diagram ---------- */

.capdiagram-band { background: var(--paper-deep); }
.capdiagram { max-width: 900px; margin-top: 2.2rem; }
.capdiagram svg { width: 100%; height: auto; }
.threshold-band { background: var(--navy); color: var(--white); }
.threshold-figure { display: flex; flex-wrap: wrap; gap: 2.5rem 4rem; align-items: center; margin-top: 2rem; }
.threshold-figure .big-number { font-family: var(--font-head); font-size: clamp(3.4rem, 9vw, 6.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--accent); }
.threshold-figure .big-number small { display: block; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); margin-top: 0.6rem; }
.threshold-figure p { max-width: 44ch; color: rgba(255, 255, 255, 0.85); }


/* ---------- Flagship specialties (home) ---------- */

.flagship-section { background: var(--white); }
.flagship-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 0.9rem; }
@media (min-width: 1024px) { .flagship-grid { grid-template-columns: repeat(3, 1fr); } }
.flagship-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: linear-gradient(160deg, #06436f 0%, var(--navy-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-l);
  padding: 1.9rem 1.5rem 1.7rem;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.flagship-card::before {
  content: attr(data-number);
  position: absolute;
  top: -1.4rem;
  right: -0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.flagship-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-l);
  border: 1.5px solid transparent;
  transition: border-color 0.18s ease;
  pointer-events: none;
}
.flagship-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px rgba(0, 44, 76, 0.28); }
.flagship-card:hover::after { border-color: var(--accent); }
.flagship-card svg { width: 40px; height: 40px; stroke: #34d399; flex-shrink: 0; }
.flagship-card h3 { font-size: 1.28rem; letter-spacing: -0.018em; line-height: 1.1; }
.flagship-card p { font-size: 0.9rem; line-height: 1.5; color: rgba(255, 255, 255, 0.78); flex-grow: 1; }
.flagship-card strong { font-size: 0.88rem; font-weight: 650; color: #34d399; }
.flagship-more { margin-top: 1.4rem; font-size: 0.95rem; color: var(--ink-soft); }
.flagship-more a { font-weight: 650; color: var(--ink); }

/* ---------- Renewal band (home) ---------- */

.renewal-band { background: var(--navy); color: var(--white); }
.renewal-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 1fr); gap: 2.5rem 4rem; align-items: center; }
.renewal-grid h2 { max-width: 18ch; font-size: clamp(1.8rem, 3.8vw, 2.9rem); font-weight: 700; letter-spacing: -0.008em; line-height: 1.06; text-transform: uppercase; }
.renewal-copy { margin-top: 1.1rem; max-width: 46ch; color: rgba(255, 255, 255, 0.85); font-size: 1.04rem; }
.renewal-points { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.65rem; }
.renewal-points li { display: flex; gap: 0.7rem; align-items: baseline; font-size: 0.97rem; font-weight: 550; color: rgba(255, 255, 255, 0.92); }
.renewal-points li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #34d399; flex-shrink: 0; transform: translateY(-1px); }
.renewal-cta-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-l);
  padding: 2rem 1.8rem;
  box-shadow: 0 30px 60px rgba(0, 20, 36, 0.35);
}
.renewal-cta-card .eyebrow { color: var(--accent-dark); }
.renewal-cta-card h3 { font-size: 1.45rem; letter-spacing: -0.02em; margin-top: 0.7rem; }
.renewal-cta-card p { margin-top: 0.6rem; font-size: 0.94rem; color: var(--ink-soft); }
.renewal-cta-card .btn { margin-top: 1.3rem; width: 100%; justify-content: center; }
.renewal-cta-card small { display: block; margin-top: 0.8rem; font-size: 0.8rem; color: var(--ink-faint); text-align: center; }
@media (max-width: 900px) { .renewal-grid { grid-template-columns: 1fr; } }

/* ---------- Service band (home) ---------- */

.service-band { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0.9rem; margin-top: 2.2rem; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 1.7rem 1.5rem; }
.service-card svg { width: 34px; height: 34px; stroke: var(--accent); }
.service-card h3 { font-size: 1.12rem; margin-top: 0.9rem; }
.service-card p { margin-top: 0.45rem; font-size: 0.92rem; color: var(--ink-soft); }

/* ---------- Team leadership band ---------- */

.leadership-band { background: var(--navy); color: var(--white); }
.leadership-band .card-grid { margin-top: 2rem; }
.leadership-band .info-card { background: rgba(255, 255, 255, 0.06); border-color: var(--line-light); }
.leadership-band .info-card h3 { color: var(--white); }
.leadership-band .info-card p { color: rgba(255, 255, 255, 0.8); }
.leadership-band .info-card > span { color: #34d399; }
.leadership-band .band-head > p { color: rgba(255, 255, 255, 0.85); }
.leadership-band .eyebrow { color: rgba(255, 255, 255, 0.75); }

/* ---------- Industry page v2 ---------- */

.weget-band { background: var(--navy); color: var(--white); }
.weget-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem 2.5rem; margin-top: 2.2rem; }
.weget-list li { display: flex; flex-direction: column; gap: 0.6rem; }
.weget-list li span { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; line-height: 1; color: #34d399; }
.weget-list li p { font-size: 1.08rem; line-height: 1.5; font-weight: 550; color: rgba(255, 255, 255, 0.94); max-width: 34ch; }

.program-band { background: var(--white); }
.program-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 3.5rem; margin-top: 1.6rem; max-width: 1100px; }
.program-list > div { display: flex; gap: 1rem; align-items: baseline; padding: 1.05rem 0; border-bottom: 1px solid var(--line); }
.program-list > div:last-child:nth-child(odd) { grid-column: 1 / -1; }
.program-list svg { width: 20px; height: 20px; stroke: var(--accent); flex-shrink: 0; transform: translateY(3px); }
.program-list strong { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; white-space: nowrap; }
.program-list p { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.5; }
@media (max-width: 860px) { .program-list { grid-template-columns: 1fr; } .program-list > div:last-child:nth-child(odd) { grid-column: auto; } }

.market-callout { background: var(--paper-deep); }
.market-callout-inner { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, 1fr); gap: 2rem 4rem; align-items: start; max-width: 1100px; }
.market-callout h2 { font-size: clamp(1.4rem, 2.6vw, 2rem); }
.market-callout .market-fact { margin-top: 1rem; font-size: 1.02rem; color: var(--ink); line-height: 1.6; }
.market-callout .signal-view { margin-top: 1.2rem; }
.market-callout .market-src { margin-top: 1.2rem; font-size: 0.85rem; color: var(--ink-faint); }
.market-callout .market-src a { font-weight: 650; color: var(--ink); }
@media (max-width: 860px) { .market-callout-inner { grid-template-columns: 1fr; } }

/* ---------- Utility ---------- */

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--white); color: var(--ink); padding: 0.7rem 1.2rem; border-radius: 0 0 8px 0; font-weight: 700; z-index: 100; }
.skip-link:focus { left: 0; }

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

.not-found-section { min-height: 55vh; display: grid; place-items: center; text-align: center; padding: 4rem var(--pad-x); }
.not-found-section h1 { font-size: clamp(3rem, 9vw, 6rem); letter-spacing: -0.04em; }
.not-found-section p { margin-top: 1rem; color: var(--ink-soft); }
.not-found-section .btn { margin-top: 2rem; }

/* Specialist edition: editorial layouts grounded in commercial operations. */
.display, .h2-xl { text-transform:none; letter-spacing:-.035em; }
.eyebrow { font-size:.8125rem; }
.home-lead { background:#082f49; min-height:0; }
.video-led-home { position:relative; background:#071d2a; }
.video-led-home .home-lead-grid { display:block; padding-top:clamp(8rem,12vw,11rem); padding-bottom:5.5rem; }
.video-led-home .home-lead-copy { max-width:54rem; position:relative; }
.video-led-home h1 { font-size:clamp(2.6rem,5.3vw,5.1rem); max-width:17ch; }
.video-led-home .home-lede { max-width:46ch; color:#fff; }
.video-led-home .home-founding { color:#e1e9e6; }
.video-led-home .home-proof { position:relative; background:rgba(5,22,32,.65); }
.video-led-home::after { pointer-events:none; background:linear-gradient(90deg,rgba(4,19,30,.87),rgba(4,19,30,.56) 55%,rgba(4,19,30,.2)),linear-gradient(0deg,rgba(4,19,30,.6),transparent 50%); }
.a2-video-hero { position:absolute; inset:0; pointer-events:none; }
.a2-video-poster,.a2-video-layer { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:-2; }
.a2-video-poster { z-index:-4; background:url('images/transportation.jpg') center 58%/cover no-repeat; }
.a2-video-layer { opacity:0; transition:opacity .8s ease; }
.a2-video-layer.is-active { opacity:1; }
@media(max-width:760px) { .video-led-home .home-lead-grid { padding-top:8.2rem; padding-bottom:6rem; } .video-led-home h1 { font-size:clamp(2.5rem,9vw,4rem); } .video-led-home .home-proof { min-height:7rem; } }
@media(prefers-reduced-motion:reduce) { .a2-video-layer { display:none; transition:none; } }
.home-lead-grid { display:grid; grid-template-columns:1.12fr 1fr; gap:3rem; padding:3.5rem var(--pad-x) 3rem; max-width:1600px; margin:auto; }
.home-lead h1 { font-size:clamp(2.4rem,4.1vw,4.1rem); line-height:1.08; font-weight:500; margin:1.4rem 0; letter-spacing:-.045em; }
.home-lead h1 em { font-style:normal; color:#a4d5c3; }
.home-lede { max-width:48ch; color:#dfebf2; font-size:1.125rem; }
.home-lead .hero-actions { margin-top:2rem; }
.home-person-link { color:white; text-decoration:none; font-weight:500; border-bottom:1px solid #6a879b; padding:.4rem 0; }
.home-founding { margin-top:2.1rem; padding-top:1.25rem; border-top:1px solid #446073; max-width:43ch; color:#c3d5e0; font-size:.875rem; }
.home-sector-visual { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:.75rem; min-height:470px; }
.visual-sector { position:relative; overflow:hidden; border-radius:3px; min-width:0; }
.visual-sector-0 { grid-row:1 / 3; }
.visual-sector img { width:100%; height:100%; object-fit:cover; position:absolute; inset:0; transition:transform .4s; }
.visual-sector:hover img { transform:scale(1.04); }
.visual-sector:after { content:""; position:absolute; inset:0; background:linear-gradient(transparent 30%,rgba(2,20,32,.9)); }
.visual-sector span { position:absolute; z-index:1; bottom:1.25rem; left:1.2rem; right:1.2rem; color:white; }
.visual-sector small { display:block; color:#afd4c9; font-size:.8125rem; margin-bottom:.4rem; }
.visual-sector strong { font-family:var(--font-head); font-size:1.15rem; line-height:1.1; display:block; padding-right:1rem; }
.visual-sector b { position:absolute; right:0; bottom:0; }
.home-proof { display:flex; justify-content:space-between; gap:1rem; padding:1.2rem var(--pad-x); border-top:1px solid #446073; color:#d0e1e9; font-size:.875rem; }
.home-proof a { text-decoration:none; }
.section-heading-row { display:flex; align-items:flex-end; justify-content:space-between; gap:3rem; margin-bottom:2.5rem; }
.section-heading-row h2 { margin-top:.7rem; }
.section-heading-row > p { max-width:38ch; color:var(--ink-soft); }
.focus-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.focus-card { padding:2rem; border-right:1px solid var(--line); color:var(--ink); text-decoration:none; }
.focus-card:first-child { padding-left:0; }
.focus-card:last-child { border-right:0; padding-right:0; }
.sector-tag { color:var(--accent-dark); font-size:.8125rem; }
.focus-card h3 { margin:.85rem 0 1rem; font-size:1.5rem; }
.focus-card > p:not(.sector-tag) { color:var(--ink-soft); margin-bottom:1.6rem; }
.focus-card:hover h3 { color:var(--accent); }
.focus-foot { margin-top:1.4rem; font-size:.875rem; color:var(--ink-soft); }
.focus-foot a { font-weight:600; text-underline-offset:4px; }
.experience-band { background:#edf1ee; display:grid; grid-template-columns:1fr 1.1fr; gap:4rem; }
.experience-intro h2 { margin:1rem 0 1.7rem; }
.experience-details p { margin-bottom:1.1rem; font-size:1.075rem; }
.capability-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.capability-grid a { border:1px solid var(--line); text-decoration:none; padding:1.8rem; position:relative; border-radius:8px; }
.capability-grid a:hover { border-color:var(--accent); }
.capability-grid span { font-size:.8125rem; color:var(--accent-dark); }
.capability-grid h3 { font-size:1.35rem; margin:1.4rem 0 1rem; }
.capability-grid p { color:var(--ink-soft); padding-bottom:1.7rem; }
.capability-grid b { position:absolute; bottom:1rem; right:1.3rem; }
.review-invitation { display:grid; grid-template-columns:1fr 1fr; gap:4rem; background:#082f49; color:white; }
.review-invitation h2 { font-size:clamp(2rem,3.5vw,3.25rem); line-height:1.1; margin:1rem 0 1.5rem; }
.review-invitation > div > p:last-child { max-width:42ch; color:#d0e1e9; }
.review-steps li { display:flex; gap:1.5rem; padding:1.2rem 0; border-bottom:1px solid #446073; }
.review-steps li:first-child { padding-top:0; }
.review-steps li > span { color:#a4d5c3; font-size:.875rem; }
.review-steps h3 { font-size:1.125rem; margin-bottom:.45rem; }
.review-steps p { color:#d0e1e9; }
.review-steps .btn { margin-top:1.7rem; }
.nav-dropdown > summary::after { content:""; display:inline-block; width:6px; height:6px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform:rotate(45deg); margin-left:8px; vertical-align:3px; }
.article-hero { padding:2.5rem var(--pad-x) 3rem; }
@media (max-width:1050px) { .home-lead-grid { gap:2rem; grid-template-columns:1.05fr 1fr; } .home-sector-visual { min-height:420px; } }
@media (max-width:760px) {
 .home-lead-grid { grid-template-columns:1fr; padding-top:2.2rem; }
 .home-lead h1 { font-size:clamp(2.25rem,8.6vw,3.5rem); }
 .home-sector-visual { min-height:290px; }
 .home-proof { flex-wrap:wrap; gap:.5rem 1.3rem; }
 .section-heading-row { align-items:flex-start; flex-direction:column; gap:1rem; }
 .focus-grid, .capability-grid, .experience-band, .review-invitation { grid-template-columns:1fr; }
 .focus-card, .focus-card:first-child, .focus-card:last-child { padding:1.6rem 0; border:0; border-bottom:1px solid var(--line); }
 .focus-card:last-child { border-bottom:0; }
 .experience-band, .review-invitation { gap:2rem; }
}


.specialty-hero { display:grid; grid-template-columns:1.1fr 1fr; min-height:490px; background:var(--paper); }
.specialty-heading { padding:2rem 3rem 3rem var(--pad-x); }
.specialty-heading h1 { font-size:clamp(2.2rem,3.65vw,3.6rem); line-height:1.08; margin:1rem 0; }
.specialty-heading .page-intro { font-size:1.075rem; margin:1.2rem 0 1.8rem; }
.specialty-heading .breadcrumbs { margin-bottom:1.8rem; }
.specialty-image { width:100%; height:100%; min-height:490px; max-height:620px; object-fit:cover; }
.page-jumps { padding:1rem var(--pad-x); display:flex; gap:2rem; border-block:1px solid var(--line); font-size:.875rem; background:white; flex-wrap:wrap; }
.page-jumps a { text-decoration:none; font-weight:600; }
.page-jumps a:hover { color:var(--accent); }
.decisions-section > h2 { margin:1rem 0 1.5rem; }
.decisions-section .chip-row { margin-bottom:2rem; }
.decision-list article { display:grid; grid-template-columns:3rem 1fr 1.7fr; gap:2rem; padding:2rem 0; border-top:1px solid var(--line); }
.decision-number { font-size:.875rem; color:var(--accent); font-weight:600; }
.decision-list h3 { font-size:1.6rem; line-height:1.15; }
.decision-list article > div > p { color:var(--ink-soft); }
.source-note { font-size:.8125rem; color:var(--accent-dark); display:inline-block; margin-top:1rem; text-decoration:underline; text-underline-offset:3px; }
.coverage-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2.2rem; }
.coverage-grid article { border-top:2px solid var(--accent); padding-top:1.2rem; }
.coverage-grid h3 { font-size:1.25rem; margin-bottom:.75rem; }
.coverage-grid h3 a { text-decoration:none; }
.coverage-grid p { color:var(--ink-soft); }
.preparation-band { display:grid; grid-template-columns:1.3fr 1fr; gap:4rem; background:#edf1ee; }
.preparation-band h2 { margin:1rem 0; font-size:2rem; }
.preparation-band h3 { margin:1rem 0; font-size:1.5rem; }
.preparation-band .text-link { margin-top:1.4rem; }
.preparation-band aside { border-left:1px solid #bdcdc5; padding-left:3rem; }
.faq-section > h2 { margin:1rem 0 2rem; }
.faq-item > div { padding:0 1.4rem 1.4rem; }
.related-perspective { background:#edf1ee; }
.related-perspective > a { display:flex; justify-content:space-between; align-items:center; gap:2rem; text-decoration:none; margin:.8rem 0 1rem; max-width:70rem; }
.related-perspective h2 { font-size:clamp(1.65rem,3vw,2.5rem); max-width:30ch; }
.related-perspective > a > span { font-size:2rem; }
.related-perspective > p { color:var(--ink-soft); }
.leadership-summary { padding-bottom:0; background:white; }
.leadership-node { border:1px solid var(--line); background:#edf1ee; padding:2rem; max-width:960px; margin:auto; text-align:center; }
.leadership-node h2 { font-size:1.8rem; margin:1rem 0; }
.leadership-node > p:not(.eyebrow) { max-width:78ch; margin:auto; }
.leadership-fields { display:flex; flex-wrap:wrap; gap:.6rem 1.8rem; justify-content:center; margin-top:1.5rem; font-size:.875rem; color:var(--accent-dark); }
.leadership-connector { height:2.5rem; width:1px; background:#bdcdc5; margin:auto; }
.leadership-caption { text-align:center; font-size:.875rem; color:var(--ink-soft); }
.portrait-placeholder { height:130px; display:flex; align-items:center; gap:1.3rem; background:#edf1ee; padding:1.5rem; }
.portrait-placeholder > span { font-size:2.5rem; font-family:var(--font-head); color:var(--navy); }
.portrait-placeholder small { color:var(--ink-soft); }
.form-explainer { margin:1rem 0 1.5rem; color:var(--ink-soft); }
.email-draft { margin-top:1.5rem; padding:2rem; border:1px solid var(--accent); border-radius:var(--radius); background:white; }
.email-draft h2 { font-size:1.5rem; margin-bottom:1rem; }
.email-draft label { display:block; font-weight:600; margin:1.5rem 0 .5rem; }
.email-draft textarea { width:100%; font:inherit; font-size:.875rem; padding:1rem; resize:vertical; border:1px solid var(--line); border-radius:6px; }
.email-draft .hero-actions { margin:1rem 0; }
.service-task-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.service-task-grid article { border-top:2px solid var(--accent); padding-top:1.5rem; }
.service-task-grid h2 { font-size:1.6rem; margin:1rem 0; }
.service-task-grid p { margin-bottom:1.2rem; }
.service-task-grid .btn { font-size:.875rem; padding:.75rem 1rem; }
.source-panel { font-size:.875rem; }
.source-panel > a { display:block; margin:1rem 0; }
.page-hero { padding-bottom:3rem; }
.page-hero h1 { max-width:24ch; }
.page-hero .page-intro { max-width:65ch; }
.card-grid { margin-top:1.8rem; }
.article-meta { flex-wrap:wrap; }
section[id], article section[id] { scroll-margin-top:100px; }
@media (max-width:900px) {
 .specialty-hero { grid-template-columns:1fr 1fr; }
 .specialty-heading { padding-right:1.8rem; }
 .coverage-grid, .service-task-grid { grid-template-columns:1fr 1fr; }
 .decision-list article { grid-template-columns:2rem 1fr; gap:1rem; }
 .decision-list article > div { grid-column:2; }
}
@media (max-width:650px) {
 .specialty-hero { grid-template-columns:1fr; }
 .specialty-image { height:250px; min-height:0; }
 .specialty-heading { padding-right:var(--pad-x); }
 .page-jumps { gap:.8rem 1.4rem; }
 .coverage-grid, .preparation-band, .service-task-grid { grid-template-columns:1fr; }
 .preparation-band { gap:2rem; }
 .preparation-band aside { border-left:0; border-top:1px solid #bdcdc5; padding:1.5rem 0 0; }
 .email-draft { padding:1.25rem; }
 .email-draft .hero-actions { align-items:stretch; }
}
.comparison-scroll{overflow-x:auto;margin:1.75rem 0}
.comparison-table{width:100%;border-collapse:collapse;font-size:1rem;min-width:34rem}
.comparison-table caption{text-align:left;font-weight:600;padding-bottom:1rem}
.comparison-table th,.comparison-table td{padding:.9rem;border-bottom:1px solid var(--line);text-align:left}
.comparison-table thead{background:var(--paper)}
.comparison-table tbody tr:last-child{font-weight:700;background:#e8f2ee}
.detail-library .faq-item>div{max-width:72rem}
.detail-library h3{margin:1.5rem 0 .5rem;font-size:1.125rem}
.article-body .source-note{font-size:.875rem;line-height:1.6;color:var(--muted)}
.article-body section{scroll-margin-top:7rem}
:focus-visible{outline:3px solid #168a66;outline-offset:5px}
.insights-grid .insight-card{min-width:0}
@media(max-width:640px){.article-body{padding-left:1.25rem;padding-right:1.25rem}.comparison-table{font-size:.9rem}}
.program-list strong{white-space:normal}
.info-card p,.insight-card .insight-body>p,.team-card p,.market-card p,.quote-aside .aside-card p,.program-list p,.article-body p,.article-body ul li,.narrative-block .narrative-copy{font-size:1rem}
.quote-form label,.quote-form fieldset legend{font-size:.875rem}
.quote-form input,.quote-form select,.quote-form textarea{font-size:1rem}
.inquiry-fields{border:0;padding:0;margin:0;min-width:0}
.content-anchor{display:block;height:0;scroll-margin-top:6rem;outline:none}
.narrative-block h2{text-transform:none}
.article-body .source-note{font-size:.875rem}
.photo-focus{border:0;gap:1.4rem}
.photo-focus .focus-card,.photo-focus .focus-card:first-child,.photo-focus .focus-card:last-child{padding:0;border:0;overflow:hidden;background:white}
.photo-focus .focus-card>img{width:100%;height:260px;object-fit:cover}
.photo-focus .focus-card>div{padding:1.5rem}
.photo-focus .focus-card h3{font-size:1.75rem;margin:.6rem 0}
.photo-focus .focus-card .text-link{margin-top:1.25rem}
.video-led-home .home-lead-grid{padding-bottom:4rem}
@media(max-width:760px){.photo-focus .focus-card>img{height:235px}.video-led-home .home-lead-grid{padding-bottom:3rem}}

/* Concise editorial pages */
.editorial-hero{display:grid;grid-template-columns:1.05fr 1fr;min-height:520px;background:#fff;border-bottom:1px solid var(--line)}
.editorial-heading{padding:2rem var(--pad-x) 3rem;align-self:center}
.editorial-heading h1{font-size:clamp(2.4rem,4.3vw,4.4rem);line-height:1.04;max-width:17ch;margin:1.1rem 0 1.3rem;text-transform:none}
.editorial-heading .page-intro{font-size:1.125rem;max-width:44ch;margin:0 0 1.75rem}
.editorial-photo{height:100%;min-height:520px;max-height:640px;width:100%;object-fit:cover}
.key-points{display:grid;grid-template-columns:.75fr 2fr;gap:3rem;padding-top:3.5rem;padding-bottom:3.5rem}
.key-points>h2,.related-reading h2{font-size:clamp(1.8rem,2.7vw,2.8rem);line-height:1.1}
.key-points>div{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1.8rem}
.key-points h3{font-size:1.3rem;line-height:1.2;margin:.75rem 0}
.key-points p{color:var(--ink-soft);font-size:1rem}
.point-number{color:var(--accent);font-size:.875rem;font-weight:700}
.compact-coverage{padding-top:2.5rem;padding-bottom:2.5rem;background:#fff;border-block:1px solid var(--line)}
.coverage-tags{display:flex;flex-wrap:wrap;gap:.7rem;margin:1.2rem 0}
.coverage-tags li{border:1px solid var(--line);padding:.65rem 1rem;font-size:1rem}
.prepare-line{max-width:75ch;margin-top:1.75rem;color:var(--ink-soft)}
.related-reading{display:grid;grid-template-columns:.75fr 2fr;gap:3rem;background:#f0f3f5;padding-block:3rem}
.related-reading h2{margin-top:.8rem}
.related-reading>div:last-child{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem}
.related-reading a{text-decoration:none;border-top:1px solid var(--line);padding:1.2rem 0;position:relative}
.related-reading a span{font-size:.875rem;color:var(--ink-soft)}
.related-reading h3{font-size:1.4rem;line-height:1.25;margin:.6rem 1.5rem .4rem 0}
.related-reading a b{position:absolute;right:0;top:1.2rem;color:var(--accent)}
.cross-border-feature{display:grid;grid-template-columns:1fr 1fr;background:var(--navy-dark);color:white}
.cross-border-feature>img{width:100%;height:100%;min-height:400px;max-height:480px;object-fit:cover;object-position:50% 70%}
.cross-border-feature>div{padding:3rem var(--pad-x);align-self:center}
.cross-border-feature h2{font-size:clamp(2rem,3.3vw,3.4rem);margin:1rem 0}
.cross-border-feature p:not(.eyebrow){max-width:45ch;color:#e1eaf0}
.cross-border-feature .text-link{margin-top:1.5rem;color:white}
.team-intro{padding-bottom:1.5rem}
.team-intro .page-hero{padding-top:2rem;padding-bottom:1rem}
.team-intro .display{font-size:clamp(2.4rem,4vw,3.8rem)}
.person-compact>.person-affiliation{font-size:.875rem;color:var(--navy);margin-bottom:1rem;font-weight:600}
.signal-detail summary{cursor:pointer;margin-block:1rem;font-weight:600}
.team-intro .page-intro{max-width:55ch}
.ownership-strip{margin:0 var(--pad-x);padding:1.5rem 2rem;background:var(--navy-dark);color:white;display:grid;grid-template-columns:1fr 1.5fr;gap:2rem}
.ownership-strip h2{font-size:1.5rem;line-height:1.2}
.ownership-strip p{font-size:1rem;color:#e1eaf0}
.team-section{padding-top:2.5rem;padding-bottom:2.5rem}
.team-section>h2{font-size:1.8rem;margin:.6rem 0 1.5rem}
.people-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.person-compact{border-top:2px solid var(--accent);padding:1.5rem 0}
.person-heading{display:flex;gap:1.2rem;align-items:center;margin-bottom:1.2rem}
.person-initials{display:grid;place-items:center;flex:0 0 64px;height:64px;background:#e8edf0;font:600 1.3rem var(--font-head);color:var(--navy)}
.person-heading h3{font-size:1.75rem;line-height:1.15;margin-bottom:.4rem}
.person-heading p{font-size:.9rem;color:var(--ink-soft);line-height:1.4}
.person-compact>p{max-width:60ch;font-size:1rem;color:var(--ink-soft)}
.partner-section{background:#f0f3f5}
.partner-disclosure{max-width:95ch;font-size:1rem;color:var(--ink-soft);margin-top:1.5rem}
.partner-section .source-note{display:inline-block;margin-top:.7rem}
.faq-section{padding-top:3rem;padding-bottom:3rem}
.faq-section .band-head{margin-bottom:1.3rem}
.coverage-grid article p{font-size:1rem}
.section-heading-row>p{font-size:1rem}
.compact-sources{padding-block:1.5rem;border-top:1px solid var(--line)}
.compact-sources details>summary{font-size:.9rem;cursor:pointer}
.compact-sources details>div{display:flex;gap:1.5rem;flex-wrap:wrap;padding-top:1rem}
.compact-sources a{font-size:.875rem}
@media(max-width:1000px){
 .key-points,.related-reading{grid-template-columns:1fr;gap:1.5rem}
 .editorial-heading h1{font-size:clamp(2.2rem,4.8vw,3.8rem)}
 .ownership-strip{grid-template-columns:1fr;gap:.75rem}
}
@media(max-width:760px){
 .editorial-hero{grid-template-columns:1fr;min-height:0}
 .editorial-heading{padding:1.25rem var(--pad-x) 2rem}
 .editorial-heading h1{max-width:20ch;font-size:2.7rem}
 .editorial-photo{min-height:0;height:280px;max-height:none}
 .key-points>div{grid-template-columns:1fr;gap:1.2rem}
 .key-points article{border-top:1px solid var(--line);padding-top:1rem}
 .key-points,.related-reading{padding-block:2.5rem}
 .related-reading>div:last-child{grid-template-columns:1fr;gap:.5rem}
 .cross-border-feature{grid-template-columns:1fr}
 .cross-border-feature>img{height:260px;min-height:0}
 .cross-border-feature>div{padding-block:2.5rem}
 .people-grid{grid-template-columns:1fr;gap:.5rem}
 .ownership-strip{padding:1.4rem}
 .person-heading h3{font-size:1.6rem}
 .team-section{padding-block:2rem}
}

/* A Squared: a people-led, editorial commercial brokerage. */
body{background:#fff}
.band{padding-block:clamp(2.75rem,4.5vw,4.5rem)}
.h2-xl{font-size:clamp(2.4rem,4vw,4rem)}
.text-link{text-transform:none;letter-spacing:0;font-size:1rem;font-weight:500}
.section-heading-row{align-items:flex-end;margin-bottom:2.5rem}
.section-heading-row .h2-xl{margin:0}
.display,.h2-xl,.page-hero h1,.editorial-heading h1{font-family:var(--font-editorial);font-weight:400;text-transform:none;letter-spacing:-.035em;line-height:1.08}
.eyebrow{font-size:.8125rem;font-weight:600;letter-spacing:.11em}
.eyebrow::before{display:none}
.btn{border-radius:3px;font-weight:500;font-size:.9375rem;padding:1rem 1.4rem;gap:1.5rem}
.btn-primary{background:var(--accent)}
.site-header{min-height:90px;border-bottom:1px solid var(--line)}
.brand{gap:8px;flex-shrink:0}
.brand-mark{width:42px;height:42px;border-radius:3px;background:#0c304f;color:#fff;position:relative;display:block;flex-shrink:0}
.brand-a{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);font:700 31px/1 Arial,sans-serif;letter-spacing:0}
.brand-power{position:absolute;right:5px;top:5px;font:700 12px/1 Arial,sans-serif;letter-spacing:0;color:#29c997}
.brand-wordmark{display:block;width:181px;height:50px;overflow:hidden;position:relative}
.brand-wordmark img{position:absolute;right:0;top:0;height:50px;width:auto;max-width:none}
.hero-dark .brand-mark{background:#fff;color:#0c304f}
.hero-dark .site-header.scrolled .brand-mark{background:#0c304f;color:#fff}
.human-home .site-header{border-color:rgba(255,255,255,.2)}
.human-home .home-lead-grid{min-height:740px;display:flex;align-items:center;padding-top:10rem;padding-bottom:4.5rem}
.human-home .home-lead-copy{max-width:850px}
.human-home .home-lead-copy h1{font-family:var(--font-editorial);font-size:clamp(3.5rem,6.5vw,6.25rem);font-weight:400;line-height:1.015;letter-spacing:-.04em;max-width:16ch;margin:1.5rem 0;color:#fff}
.human-home .home-lede{font-size:1.125rem;max-width:43ch;line-height:1.6;color:#edf3f6}
.human-home .hero-actions{margin-top:2rem}
.human-home .home-person-link{border:0;padding:.5rem 0;text-decoration:underline;text-underline-offset:.4rem}
.human-home .home-proof{background:rgba(3,26,41,.8);border-top:1px solid rgba(255,255,255,.2)}
.human-home.video-led-home::after{background:linear-gradient(90deg,rgba(4,25,38,.83),rgba(4,25,38,.45) 60%,rgba(4,25,38,.18))}
.page-hero .display{font-size:clamp(2.8rem,5vw,4.8rem)}
.page-hero .page-intro{font-size:1.125rem;line-height:1.65}

/* One industry at a time, with a generous photographic canvas. */
.sector-showcase{background:#f2f5f3}
.sector-stage{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.45fr);gap:4rem;align-items:stretch}
.sector-picker{min-width:0}
.sector-choice{border-top:1px solid #b6c6c0}
.sector-choice:last-child{border-bottom:1px solid #b6c6c0}
.sector-choice summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:1rem;cursor:pointer;padding:1.35rem 0;font-size:clamp(1.5rem,2.5vw,2.1rem);font-weight:500;line-height:1.15;letter-spacing:-.035em}
.sector-choice summary::-webkit-details-marker{display:none}
.sector-choice summary span{font-size:1.4rem;font-weight:400;color:var(--accent)}
.sector-choice summary span::after{content:"+"}
.sector-choice[open] summary span::after{content:"−"}
.sector-choice[open] summary{color:var(--accent);padding-bottom:.7rem}
.sector-choice>div{padding:0 1rem 1.8rem 0;max-width:39ch}
.sector-choice p{font-size:1rem;line-height:1.55}
.sector-choice .sector-audience{font-size:.8rem;margin-bottom:.7rem;color:var(--ink-faint)}
.sector-choice .text-link{margin-top:1.1rem}
.sector-photos{min-height:570px;position:relative;overflow:hidden}
.sector-mobile-photo{display:none}
.sector-image{display:none;position:absolute;inset:0;height:100%;width:100%;object-fit:cover}
.sector-image.image-transport{display:block}
.sector-stage:has(.sector-property[open],.sector-hotel[open],.sector-middle[open],.sector-small[open]) .sector-image{display:none}
.sector-stage:has(.sector-property[open]) .image-property,.sector-stage:has(.sector-hotel[open]) .image-hotel,.sector-stage:has(.sector-middle[open]) .image-middle,.sector-stage:has(.sector-small[open]) .image-small{display:block}
.sector-footnote{margin-top:2rem;font-size:.95rem;color:var(--ink-soft)}
.sector-footnote a{text-underline-offset:4px}

.people-story{display:grid;grid-template-columns:1.1fr 1fr;margin:5.5rem var(--pad-x);gap:clamp(3rem,6vw,6rem);align-items:center}
.people-story>figure>img{width:100%;height:520px;object-fit:cover;object-position:45% center}
.people-story figure,.editorial-visual{margin:0;min-width:0}
.people-story figcaption,.editorial-visual figcaption{font-size:.75rem;color:var(--ink-faint);margin-top:.5rem}
.people-story>div{max-width:35rem}
.people-story h2,.cross-border-feature h2,.risk-spotlight h2,.related-reading h2{font-family:var(--font-editorial);font-weight:400;font-size:clamp(2.4rem,4vw,4rem);letter-spacing:-.035em;line-height:1.08;margin:1rem 0 1.4rem}
.people-story p:not(.eyebrow){font-size:1.075rem;line-height:1.65;margin-bottom:1rem;max-width:42ch;color:var(--ink-soft)}
.people-story .text-link{margin-top:1rem}
.expertise-links{display:grid;grid-template-columns:1fr 1.15fr;gap:5rem;background:#f2f5f3}
.expertise-links .h2-xl{margin:1rem 0 1.5rem}
.expertise-links>div>p:not(.eyebrow){max-width:38ch;color:var(--ink-soft)}
.link-ledger>a{display:flex;justify-content:space-between;align-items:center;gap:2rem;padding:1.65rem 0;border-top:1px solid #b6c6c0;text-decoration:none;font-size:1.6rem;line-height:1.25;letter-spacing:-.025em}
.link-ledger>a:last-child{border-bottom:1px solid #b6c6c0}
.link-ledger small{display:block;font-size:.95rem;letter-spacing:0;margin-top:.55rem;color:var(--ink-soft);font-weight:400}
.link-ledger b{font-size:1.5rem;font-weight:400;color:var(--accent)}
.link-ledger>a:hover{color:var(--accent)}
.cross-border-feature>img{min-height:510px;max-height:600px}
.cross-border-feature>div{padding-block:4rem}
.cross-border-feature h2{color:#fff}
.cross-border-feature p:not(.eyebrow){font-size:1.0625rem;line-height:1.65}

/* Editorial cards: hierarchy, not a row of interchangeable boxes. */
.insight-card{border:0;border-radius:0;background:transparent;box-shadow:none}
.insight-card:hover{transform:none;box-shadow:none}
.insight-card:hover h3{text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:4px}
.insight-body{padding:1.1rem 0 0}
.insight-card h3{font-weight:500;font-size:1.45rem;line-height:1.25}
.insight-card strong{font-weight:500}
.insight-thumb{border-radius:0;aspect-ratio:3/2;object-fit:cover}
.journal-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:2rem 3.5rem}
.journal-grid .insight-card:first-child{grid-row:span 2}
.journal-grid .insight-card:first-child .insight-thumb{height:350px}
.journal-grid .insight-card:first-child h3{font-family:var(--font-editorial);font-size:2.5rem;font-weight:400;max-width:26ch}
.journal-grid .insight-card:not(:first-child){display:grid;grid-template-columns:150px 1fr;gap:1.5rem;align-items:start;border-top:1px solid var(--line);padding-top:1.5rem}
.journal-grid .insight-card:not(:first-child) .insight-thumb{height:150px;width:150px;aspect-ratio:1}
.journal-grid .insight-card:not(:first-child) .insight-body{padding:0}
.journal-grid .insight-meta{display:flex;flex-wrap:wrap;gap:.5rem;font-size:.8rem}

/* Inside pages: photographs first, useful detail on demand. */
.editorial-hero{padding:2.5rem var(--pad-x) 3.5rem;gap:clamp(2rem,5vw,5rem);min-height:0;border:0;align-items:center}
.editorial-heading{padding:0}
.editorial-heading .breadcrumbs{margin-bottom:2.5rem;font-size:.8rem}
.editorial-heading h1{font-size:clamp(2.9rem,4.8vw,4.8rem);line-height:1.06;max-width:19ch}
.editorial-heading .eyebrow{color:var(--accent)}
.editorial-heading .page-intro{font-size:1.075rem;line-height:1.65;max-width:43ch}
.editorial-photo{height:530px;min-height:0;max-height:none;object-fit:cover}
.coverage-explorer{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.4fr);gap:4rem;align-items:start}
.review-points{display:block;background:#fff;padding-block:2.5rem 3rem;border-top:1px solid var(--line)}
.review-points>h2{font-size:1rem;font-weight:500;color:var(--accent);margin-bottom:1.5rem}
.review-point-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:2.5rem}
.review-point-grid article{border-top:1px solid #c4d0cd;padding-top:1rem}
.review-point-grid h3{font-size:1.2rem;font-weight:500;line-height:1.35;margin-bottom:.65rem}
.review-point-grid p{font-size:1rem;line-height:1.6;color:var(--ink-soft);max-width:44ch}
.review-points+.coverage-explorer{background:#f2f5f3}
.review-points+.coverage-explorer+.faq-section{background:#fff}
.coverage-explorer h2{margin:1rem 0 1.4rem;max-width:14ch}
.coverage-explorer>div>p:not(.eyebrow){color:var(--ink-soft);max-width:32ch;line-height:1.65}
.coverage-explorer>div>.text-link{margin-top:1.8rem}
.disclosure-list details{border-top:1px solid #c4d0cd}
.disclosure-list details:last-child{border-bottom:1px solid #c4d0cd}
.disclosure-list summary{cursor:pointer;list-style:none;padding:1.3rem 0;display:flex;justify-content:space-between;align-items:center;gap:2rem;font-size:1.15rem;font-weight:500;line-height:1.35}
.disclosure-list summary::-webkit-details-marker{display:none}
.disclosure-list summary::after{content:"+";color:var(--accent);font-size:1.4rem;font-weight:400;flex-shrink:0}
.disclosure-list details[open] summary::after{content:"−"}
.disclosure-list details[open] summary{color:var(--accent)}
.disclosure-list details>div{padding:0 2rem 1.5rem 0;font-size:1rem;line-height:1.65;color:var(--ink-soft);max-width:65ch}
.disclosure-list .text-link{margin-top:.7rem;font-size:.95rem}
.disclosure-list .preparation-detail summary{font-size:1rem;color:var(--ink-soft)}
.risk-spotlight{display:grid;grid-template-columns:1fr 1fr;gap:5rem;padding:3.5rem var(--pad-x);background:#153e40;color:white;align-items:center}
.risk-spotlight h2{font-size:clamp(2.2rem,3.4vw,3.5rem);margin-bottom:0;color:#fff}
.risk-spotlight p:not(.eyebrow){color:#e3eee9;max-width:49ch;font-size:1rem;line-height:1.6}
.risk-spotlight small{display:block;max-width:60ch;color:#c1d8ce;font-size:.8rem;line-height:1.55;margin-top:1rem}
.risk-spotlight a{display:inline-block;color:white;margin-top:1.2rem;font-size:.9rem;text-underline-offset:4px}
.deductible-example strong{display:block;font-family:var(--font-editorial);font-weight:400;font-size:clamp(3.5rem,5.8vw,5.8rem);line-height:1;margin-bottom:.7rem;color:#cce2cf}
.recovery-sequence,.cargo-checks{display:flex;margin-bottom:1.5rem;gap:1rem;align-items:center}
.recovery-sequence span,.cargo-checks span{font-size:.9rem;color:#cce2cf}
.recovery-sequence span:not(:last-child)::after{content:"→";margin-left:1rem}
.cargo-checks{flex-wrap:wrap;gap:.6rem 1.5rem}
.cargo-checks span{border-bottom:1px solid #6a8c80;padding-bottom:.5rem}
.faq-section{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.4fr);gap:4rem;background:#f2f5f3}
.faq-section .band-head{margin:0}
.faq-section .h2-xl{margin-top:1rem;max-width:15ch}
.faq-section .faq-list{margin:0;max-width:none;gap:0}
.faq-item,.faq-item[open]{background:transparent;border:0;border-top:1px solid #c4d0cd;border-radius:0;overflow:visible}
.faq-item:last-child{border-bottom:1px solid #c4d0cd}
.faq-item summary{padding:1.2rem 0;font-weight:500;font-size:1rem;line-height:1.45}
.faq-item>div{padding:0 2rem 1.4rem 0;line-height:1.65}
.faq-section>script{display:none}
.related-reading{background:#fff;grid-template-columns:.85fr 1.4fr;gap:6rem}
.related-reading>div:last-child{gap:2rem}
.related-reading a{border:0;padding:0}
.related-reading a>img{width:100%;height:210px;object-fit:cover;display:block;margin-bottom:1rem}
.related-reading h3{font-size:1.3rem;font-weight:500;line-height:1.3;margin:.6rem 0 1rem}
.related-reading a:hover h3{text-decoration:underline;text-underline-offset:4px}
.related-reading .text-link{color:var(--accent)}
.compact-sources{padding-block:1.5rem}
.compact-sources .review-source-notes{display:block;max-width:65rem}
.review-source-notes article{padding:1.3rem 0;border-top:1px solid var(--line)}
.review-source-notes h3{font-size:1.1rem;margin-bottom:.7rem}
.review-source-notes p{font-size:.95rem;color:var(--ink-soft)}
.review-source-notes a{display:inline-block;margin-top:.7rem}

.narrative-section{display:grid;grid-template-columns:1fr 1fr;gap:3rem 5rem}
.narrative-block{display:block;padding:1.5rem 0 0;border-top:1px solid var(--line)}
.narrative-block:first-of-type{border-top:1px solid var(--line);padding-top:1.5rem}
.narrative-block>div:first-child{display:none}
.narrative-block h2{font-size:1.4rem;max-width:none;font-weight:500;text-transform:none}
.narrative-block .narrative-copy{line-height:1.7}
.team-section>h2{font-family:var(--font-editorial);font-size:2.6rem;font-weight:400}
.person-compact{border-top:1px solid #c4d0cd}
.person-initials{border-radius:50%;background:#e3eee7;font-family:var(--font-editorial);font-size:1.8rem;font-weight:400}
.person-heading h3{font-weight:500}
.ownership-strip{background:#153e40;padding:2rem;gap:3rem}
.ownership-strip h2{font-weight:500}
.partner-section{background:#f2f5f3}
.cross-border-partnership{display:grid;grid-template-columns:1fr 1.1fr;background:#153e40;color:white;margin:0 var(--pad-x) 1.5rem;overflow:hidden}
.cross-border-partnership>img{width:100%;height:100%;min-height:380px;object-fit:cover}
.cross-border-partnership>div{padding:clamp(2rem,4vw,4rem)}
.cross-border-partnership h2{font-family:var(--font-editorial);font-weight:400;font-size:clamp(2.2rem,3.4vw,3.4rem);letter-spacing:-.035em;line-height:1.1;color:white;margin:1rem 0 1.25rem}
.cross-border-partnership p:not(.eyebrow){font-size:1.075rem;line-height:1.65;max-width:45ch;color:#edf3ef}
.cross-border-partnership .jurisdiction-note{font-size:.875rem!important;color:#c5d9d0!important;margin-top:1.25rem}
.cross-border-partnership .text-link{color:white;margin-top:1.4rem}
.cross-border-partnership+.faq-section{background:#fff}
.cta-band h2{font-family:var(--font-editorial);text-transform:none;font-weight:400;font-size:clamp(2rem,3.2vw,3.1rem);letter-spacing:-.035em}
.site-footer{padding-top:3.5rem}
.footer-disclosure{font-size:.8rem;line-height:1.7}
.photo-focus .focus-card>div{padding:1.3rem 0}
.photo-focus .focus-card{background:transparent}
.photo-focus .focus-card h3{font-weight:500}
.industry-tiles a{border-radius:0}
.industry-focus{grid-template-columns:repeat(6,minmax(0,1fr));gap:2rem;border:0}
.industry-focus .focus-card{grid-column:span 2;border:0;padding:0}
.industry-focus .focus-card:nth-child(n+4){grid-column:span 3}
.industry-focus .focus-card img{height:240px;width:100%;object-fit:cover}
.article-hero{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:3rem;align-items:center}
.article-hero h1{font-family:var(--font-editorial);font-weight:400;text-transform:none;font-size:clamp(2.5rem,4vw,3.8rem);line-height:1.1}
.article-hero-photo{width:100%;height:360px;object-fit:cover}
.article-body{grid-template-columns:230px minmax(0,760px);justify-content:center}
.article-body>div{min-width:0}
.article-body aside{top:110px}
.article-body p,.article-body ul li{font-size:1rem}
.article-body section{scroll-margin-top:115px}
#draft-heading{scroll-margin-top:115px}

.journal-featured{padding-top:2.5rem}
.industry-watch{background:#f2f5f3}
.industry-watch .section-heading-row .h2-xl{margin-top:.7rem}
.watch-edition{font-size:.875rem;line-height:1.65;color:var(--ink-soft);text-align:right}
.watch-item{border-top:1px solid #b6c6c0}
.watch-item:last-child{border-bottom:1px solid #b6c6c0}
.watch-item summary{display:grid;grid-template-columns:190px minmax(0,1fr) 24px;align-items:center;gap:2rem;padding:1.65rem 0;list-style:none;cursor:pointer}
.watch-item summary::-webkit-details-marker{display:none}
.watch-topic{font-size:.875rem;color:var(--accent);font-weight:500}
.watch-title{font-size:1.4rem;letter-spacing:-.025em;line-height:1.3}
.watch-title small{display:block;font-size:.8125rem;letter-spacing:0;font-weight:400;color:var(--ink-soft);margin-top:.55rem}
.watch-toggle{color:var(--accent);font-size:1.5rem;font-weight:400}
.watch-toggle::after{content:"+"}
.watch-item[open] .watch-toggle::after{content:"−"}
.watch-body{display:grid;grid-template-columns:1fr 1.2fr;gap:3rem;margin:0 3rem 2.5rem 222px}
.watch-body h3{font-size:.9rem;font-weight:600;margin:0 0 .75rem}
.watch-body p{font-size:1rem;line-height:1.65;color:var(--ink-soft)}
.watch-body .text-link{margin-top:1rem;font-size:.875rem}
.watch-question{border-left:2px solid var(--accent);padding-left:1rem;margin-top:1.25rem}
.watch-question strong{display:block;font-size:.8rem;font-weight:500;color:var(--accent);margin-bottom:.35rem}
.watch-note{font-size:.8125rem;color:var(--ink-soft);max-width:85ch;margin-top:1.5rem}
.article-ledger{display:grid;grid-template-columns:1fr 1fr;gap:0 3rem}
.article-ledger>a{display:grid;grid-template-columns:1fr auto;column-gap:1rem;padding:1.5rem 0;border-top:1px solid var(--line);text-decoration:none;align-content:start}
.ledger-meta{grid-column:1/-1;font-size:.8125rem;color:var(--ink-soft)}
.article-ledger h3{font-size:1.3rem;line-height:1.35;font-weight:500;margin-top:.65rem}
.article-ledger>a>span:last-child{color:var(--accent);align-self:center}
.article-ledger>a:hover h3{text-decoration:underline;text-underline-offset:4px}

@media(min-width:1700px){
 .band,.editorial-hero,.risk-spotlight{padding-inline:max(var(--pad-x),calc((100vw - 1500px)/2))}
 .people-story{margin-inline:max(var(--pad-x),calc((100vw - 1500px)/2))}
}
@media(max-width:1050px){
 .sector-stage{gap:2rem;grid-template-columns:1fr 1.25fr}
 .sector-photos{min-height:560px}
 .people-story{gap:2.5rem}
 .people-story>figure>img{height:470px}
 .expertise-links,.review-points,.coverage-explorer,.faq-section,.related-reading{gap:3rem}
 .journal-grid{gap:2rem}
 .journal-grid .insight-card:not(:first-child){grid-template-columns:100px 1fr;gap:1rem}
 .journal-grid .insight-card:not(:first-child) .insight-thumb{width:100px;height:120px}
 .risk-spotlight{gap:3rem}
}
@media(max-width:760px){
 .site-header{min-height:76px}
 .human-home .home-lead-grid{min-height:670px;padding-top:8rem;padding-bottom:3rem}
 .human-home .home-lead-copy h1{font-size:clamp(2.75rem,11.5vw,3.6rem);max-width:15ch}
 .human-home .home-lede{font-size:1.0625rem;max-width:30ch}
 .human-home .hero-actions{align-items:flex-start;gap:1.1rem;flex-direction:column}
 .section-heading-row{align-items:flex-start;gap:1.2rem;flex-direction:column}
 .sector-stage,.people-story,.expertise-links,.journal-grid,.review-points,.coverage-explorer,.faq-section,.related-reading,.risk-spotlight{grid-template-columns:1fr;gap:2rem}
 .sector-photos{display:none}
 .sector-mobile-photo{display:block;width:100%;height:220px;object-fit:cover;margin:.6rem 0 1.25rem}
 .sector-choice summary{padding-block:1.2rem;font-size:1.5rem}
 .sector-choice>div{padding-bottom:1.3rem;max-width:none}
 .sector-footnote{font-size:.875rem;margin-top:1.5rem}
 .people-story{margin:3.5rem var(--pad-x)}
 .people-story>figure>img{height:330px}
 .people-story p:not(.eyebrow){font-size:1rem}
 .expertise-links{gap:2.5rem}
 .cross-border-feature>img{height:300px;min-height:0}
 .cross-border-feature>div{padding-block:3rem}
 .journal-grid .insight-card:first-child{grid-row:auto}
 .journal-grid .insight-card:first-child .insight-thumb{height:260px}
 .journal-grid .insight-card:first-child h3{font-size:2rem}
 .journal-grid .insight-card:not(:first-child){grid-template-columns:100px 1fr}
 .journal-grid .insight-card:not(:first-child) h3{font-size:1.2rem}
 .editorial-hero{padding:1.5rem var(--pad-x) 2.5rem;gap:2rem}
 .editorial-heading{padding:0}
 .editorial-heading h1{font-size:3rem;max-width:18ch}
 .editorial-heading .breadcrumbs{margin-bottom:1.75rem}
 .editorial-photo{height:310px}
 .risk-spotlight{padding-block:3rem}
 .risk-spotlight h2{margin:1rem 0 0}
 .deductible-example strong{font-size:4.2rem}
 .recovery-sequence{gap:.6rem}
 .recovery-sequence span{font-size:.8rem}
 .recovery-sequence span:not(:last-child)::after{margin-left:.6rem}
 .coverage-explorer h2,.review-points h2,.faq-section .h2-xl{max-width:18ch}
 .coverage-explorer>div>.text-link{margin-top:1rem}
 .disclosure-list summary{font-size:1.0625rem}
 .related-reading>div:last-child{grid-template-columns:1fr;gap:2rem}
 .related-reading a>img{height:240px}
 .narrative-section{grid-template-columns:1fr;gap:2rem}
 .ownership-strip{gap:1.1rem;padding:1.5rem}
 .cta-band{grid-template-columns:1fr;gap:1.5rem;padding-block:2.5rem}
 .cta-band>.btn{justify-self:start}
 .footer-grid{grid-template-columns:1fr 1fr;gap:2rem 1.5rem}
 .footer-grid>div{min-width:0}
 .footer-grid a,.footer-grid p{font-size:.8rem;overflow-wrap:anywhere}
 .watch-edition{text-align:left}
 .watch-item summary{grid-template-columns:1fr 24px;gap:.65rem 1rem;padding-block:1.35rem}
 .watch-topic{grid-column:1/-1}
 .watch-title{font-size:1.2rem}
 .watch-body{grid-template-columns:1fr;gap:1.5rem;margin:0 0 2rem}
 .article-ledger{grid-template-columns:1fr}
 .review-point-grid{grid-template-columns:1fr;gap:1.5rem}
 .review-points{padding-block:2rem}
 .cross-border-partnership{grid-template-columns:1fr;margin-inline:0}
 .cross-border-partnership>img{height:240px;min-height:0}
 .cross-border-partnership>div{padding:2rem var(--pad-x)}
 .industry-focus{grid-template-columns:1fr}
 .industry-focus .focus-card,.industry-focus .focus-card:nth-child(n+4){grid-column:auto}
 .article-hero{grid-template-columns:1fr;gap:2rem}
 .article-hero-photo{height:230px}
 .article-body{grid-template-columns:1fr}
}
@media(max-width:380px){
 .site-header{gap:.5rem}
 .brand{gap:6px}
 .brand-mark{width:34px;height:34px}
 .brand-a{font-size:26px}
 .brand-power{font-size:10px;right:4px;top:4px}
 .brand-wordmark{width:141px;height:39px}
 .brand-wordmark img{height:39px}
 .mobile-menu>summary{padding:.6rem .7rem;min-height:44px}
}

/* WordPress integration; no public design changes. */
body.admin-bar .site-header{top:32px} @media(max-width:782px){body.admin-bar .site-header{top:46px}} @media(max-width:600px){body.admin-bar .site-header.scrolled{top:0}}
.a2-native-content{max-width:900px;margin-inline:auto}.a2-native-content p,.a2-native-content ul,.a2-native-content ol{margin-block:1em}.a2-native-content ul{list-style:disc;padding-left:1.5em}.a2-native-content ol{list-style:decimal;padding-left:1.5em}
