/* ==========================================================================
   CyberFortify US — app.css
   Light. System font (SF Pro on Apple, Segoe UI on Windows). Green accent.
   Bento grid + split-screen features. No serif display.
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:      #FFFFFF;
  --bg-2:    #F5F5F7;                /* Apple off-white */
  --bg-3:    #FBFBFC;
  --bg-tint: #F1F7F3;                /* subtle green wash */

  /* Ink */
  --ink:     #1D1D1F;                /* Apple near-black */
  --ink-2:   #424245;
  --ink-3:   #6E6E73;
  --ink-4:   #86868B;                /* Apple muted */

  /* Rules */
  --line:    #D2D2D7;                /* Apple hairline */
  --line-2:  #E5E5EA;

  /* Green accent */
  --g-50:  #EBF7F0;
  --g-100: #D5EFDF;
  --g-300: #6BC793;
  --g-500: #16A661;                  /* primary green */
  --g-600: #0E8556;
  --g-700: #095F3E;
  --g-800: #06422B;

  /* Severity — legible on light */
  --sev-crit: #C0392B;
  --sev-high: #D97706;
  --sev-med:  #B45309;
  --sev-low:  #0369A1;
  --sev-info: #64748B;

  /* Type — Apple system stack */
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;

  --wrap:    1200px;
  --gutter:  32px;
  --radius:  20px;
  --radius-sm: 12px;
  --header-h: 68px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.04), 0 1px 3px rgba(0,0,0,.04);
  --shadow:    0 2px 8px rgba(0,0,0,.04), 0 6px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 4px 16px rgba(0,0,0,.05), 0 24px 60px rgba(0,0,0,.10);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 1.6rem + 4.5vw, 5rem); letter-spacing: -0.042em; font-weight: 660; line-height: 1.02; }
h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); letter-spacing: -0.034em; }
h3 { font-size: 1.4rem; line-height: 1.2; letter-spacing: -0.022em; }
h4 { font-size: 1.0625rem; font-weight: 600; letter-spacing: -0.014em; }

p { text-wrap: pretty; }
p + p { margin-top: 1em; }
strong { color: var(--ink); font-weight: 600; }

a { color: var(--g-600); text-decoration: none; }
a:hover { color: var(--g-700); }
:focus-visible { outline: 2px solid var(--g-500); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--g-100); color: var(--g-800); }

/* --- Wrap + section ------------------------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section       { padding-block: 112px; }
.section--tight{ padding-block: 72px; }
.section--tint { background: var(--bg-2); }
.section--wash { background: linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%); }

/* --- Utilities ----------------------------------------------------- */
.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--sans); font-size: 13px; font-weight: 550;
  letter-spacing: -0.005em;
  color: var(--g-600); background: var(--g-50);
  border-radius: 999px;
}
.lede {
  font-size: clamp(1.125rem, 1rem + .45vw, 1.375rem);
  line-height: 1.45; color: var(--ink-2);
  letter-spacing: -0.014em;
  max-width: 44ch;
}
.small { font-size: 14px; line-height: 1.5; color: var(--ink-3); }
.mono  { font-family: var(--mono); font-variant-numeric: tabular-nums; letter-spacing: 0; }
.mute  { color: var(--ink-3); }

.vh { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip { position: absolute; left: 24px; top: -60px; z-index: 200; padding: 10px 14px; background: var(--ink); color: #fff; border-radius: 8px; transition: top .15s; }
.skip:focus { top: 24px; }

/* --- Buttons ------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-family: var(--sans); font-size: 15px; font-weight: 560;
  letter-spacing: -0.005em;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; white-space: nowrap;
  transition: background .18s, border-color .18s, color .18s, transform .18s;
}
.btn:hover { text-decoration: none; }
.btn--fill { background: var(--g-600); color: #fff; }
.btn--fill:hover { background: var(--g-700); color: #fff; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; color: #fff; }
.btn--line { color: var(--ink); border-color: var(--line); background: var(--bg); }
.btn--line:hover { border-color: var(--ink); color: var(--ink); }
.btn--ghost { color: var(--ink); }
.btn--ghost:hover { color: var(--g-600); background: var(--g-50); }
.btn--lg { padding: 14px 26px; font-size: 16px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 560; color: var(--g-600);
  transition: gap .18s;
}
.link-arrow::after { content: "\2192"; transition: transform .18s; }
.link-arrow:hover { color: var(--g-700); text-decoration: none; gap: 10px; }

/* --- Header -------------------------------------------------------- */
.head {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line-2);
}
.head__in { height: 100%; display: flex; align-items: center; gap: 32px; }
.brand { display: flex; align-items: center; flex-shrink: 0; color: var(--ink); }
.brand svg { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
/* :not(.btn) so the CTA pill in the nav keeps its .btn styling — .nav a is
   more specific than .btn--fill on its own. */
.nav a:not(.btn), .nav button:not(.btn) {
  padding: 8px 14px;
  font-family: var(--sans); font-size: 14.5px; font-weight: 460;
  letter-spacing: -0.008em;
  color: var(--ink-2); background: none; border: 0; border-radius: 8px;
  cursor: pointer;
}
.nav a:not(.btn):hover, .nav button:not(.btn):hover { color: var(--ink); background: var(--bg-2); }
.nav a[aria-current="page"]:not(.btn) { color: var(--ink); font-weight: 540; }
.head__cta { margin-left: 12px; padding: 9px 18px; font-size: 14px; }

.nav-toggle {
  display: none; margin-left: auto; padding: 9px;
  background: none; border: 1px solid var(--line); border-radius: 8px; color: var(--ink);
}

/* --- Dropdown ------------------------------------------------------ */
.hm { position: relative; }
.hm > button { display: inline-flex; align-items: center; gap: 5px; }
.hm > button svg { transition: transform .18s; opacity: .5; }
.hm[data-open="true"] > button { color: var(--ink); background: var(--bg-2); }
.hm[data-open="true"] > button svg { transform: rotate(180deg); opacity: 1; }
.menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%);
  min-width: 560px; padding: 20px;
  display: none; grid-template-columns: 1fr 1fr; gap: 4px 24px;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: 16px;
  box-shadow: var(--shadow-lg);
}
.hm[data-open="true"] .menu { display: grid; }
.menu a { padding: 12px; border-radius: 10px; }
.menu a b { display: block; color: var(--ink); font-weight: 550; font-size: 14.5px; margin-bottom: 2px; }
.menu a span { display: block; color: var(--ink-3); font-size: 13px; line-height: 1.4; }
.menu a:hover { background: var(--bg-2); text-decoration: none; }
.menu a:hover b { color: var(--g-600); }

/* --- Hero ---------------------------------------------------------- */
.hero { padding-block: 120px 96px; text-align: center; }
.hero__eyebrow { margin-bottom: 28px; }
.hero h1 { max-width: 18ch; margin-inline: auto; }
.hero h1 .g { color: var(--g-600); }
.hero .lede { margin: 28px auto 0; max-width: 56ch; text-align: center; }
.hero .btn-row { margin-top: 40px; justify-content: center; }
.hero__meta { margin-top: 36px; display: inline-flex; align-items: center; gap: 20px; font-size: 13.5px; color: var(--ink-3); flex-wrap: wrap; justify-content: center; }
.hero__meta > span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--g-500); }

/* --- Trust rail (compliance logos placeholder) --------------------- */
.trust {
  margin-top: 88px;
  padding: 28px 40px;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
}
.trust__label { font-size: 13px; font-weight: 550; color: var(--ink-3); letter-spacing: 0; }
.trust__list { display: flex; flex-wrap: wrap; gap: 32px 40px; align-items: center; }
.trust__item { font-size: 15px; font-weight: 550; color: var(--ink-3); letter-spacing: -0.006em; }

/* --- Section head -------------------------------------------------- */
.sec-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.sec-head .eyebrow { margin-bottom: 20px; }
.sec-head h2 { margin-bottom: 20px; }
.sec-head p { color: var(--ink-3); font-size: 18px; line-height: 1.5; }
.sec-head--left { margin-left: 0; text-align: left; }
.sec-head--left .btn-row { margin-top: 24px; }

/* --- Bento grid --------------------------------------------------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: 20px;
}
.tile {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex; flex-direction: column;
  color: inherit;
  position: relative; overflow: hidden;
}
a.tile:hover { text-decoration: none; box-shadow: var(--shadow); border-color: var(--line); transform: translateY(-2px); }
a.tile:hover .tile__cta { color: var(--g-700); gap: 10px; }

.tile__cat {
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0; color: var(--ink-4);
  margin-bottom: 20px;
}
.tile h3 { color: var(--ink); }
.tile p  { margin-top: 12px; font-size: 15px; color: var(--ink-3); line-height: 1.5; }
.tile__cta {
  margin-top: auto; padding-top: 20px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 560; color: var(--g-600);
  transition: gap .18s, color .18s;
}
.tile__cta::after { content: "\2192"; }

.tile--wide  { grid-column: span 4; }
.tile--tall  { grid-row: span 2; }
.tile--half  { grid-column: span 3; }
.tile--third { grid-column: span 2; }

.tile--feature {
  background: linear-gradient(135deg, var(--g-600) 0%, var(--g-700) 100%);
  color: rgba(255,255,255,.86);
  border: 0;
}
.tile--feature h3, .tile--feature .tile__cat { color: #fff; }
.tile--feature .tile__cat { color: rgba(255,255,255,.7); }
.tile--feature p { color: rgba(255,255,255,.82); }
.tile--feature .tile__cta { color: #fff; }
.tile--feature h3 { font-size: 1.75rem; line-height: 1.1; }
a.tile--feature:hover .tile__cta { color: #fff; }

.tile--stat h3 { font-size: 3.75rem; line-height: 1; font-weight: 660; letter-spacing: -0.05em; color: var(--ink); }
.tile--stat h3 sup { font-size: 0.4em; font-weight: 500; color: var(--ink-3); margin-left: 4px; vertical-align: top; top: .6em; position: relative; }
.tile--stat .tile__cat { margin-bottom: 12px; }
.tile--stat p { margin-top: 12px; }

.tile__viz {
  margin-top: 16px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tile__chip {
  padding: 5px 11px; font-size: 12.5px; font-weight: 500;
  color: var(--ink-2); background: var(--bg-2);
  border: 1px solid var(--line-2); border-radius: 999px;
  letter-spacing: -0.005em;
}
.tile--feature .tile__chip { background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.18); }

/* --- Split feature section ---------------------------------------- */
.split {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 80px;
  align-items: center;
}
.split--rev { direction: rtl; }
.split--rev > * { direction: ltr; }
.split__copy .eyebrow { margin-bottom: 20px; }
.split__copy h2 { margin-bottom: 24px; }
.split__copy .lede { margin-bottom: 32px; }
.split__copy ul { list-style: none; padding: 0; margin-top: 32px; }
.split__copy li {
  padding: 14px 0 14px 32px;
  position: relative;
  border-top: 1px solid var(--line-2);
  font-size: 15.5px;
  color: var(--ink-2);
}
.split__copy li:last-child { border-bottom: 1px solid var(--line-2); }
.split__copy li::before {
  content: ""; position: absolute; left: 0; top: 20px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--g-50);
  border: 1.5px solid var(--g-500);
}
.split__copy li::after {
  content: ""; position: absolute; left: 5px; top: 24px;
  width: 8px; height: 4px;
  border-left: 2px solid var(--g-600); border-bottom: 2px solid var(--g-600);
  transform: rotate(-45deg);
}
.split__copy li strong { display: block; color: var(--ink); font-weight: 600; margin-bottom: 4px; }

/* --- Product-style visual card (mimics a screenshot) -------------- */
.visual {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.visual__bar {
  padding: 14px 18px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-2);
  display: flex; align-items: center; gap: 8px;
}
.visual__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.visual__title { margin-left: 12px; font-size: 13px; color: var(--ink-3); font-family: var(--mono); letter-spacing: 0; }
.visual__body { padding: 4px 0; }

table.rpt { width: 100%; border-collapse: collapse; font-size: 14px; }
table.rpt th, table.rpt td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
table.rpt thead th { padding-top: 18px; font-family: var(--mono); font-size: 11px; font-weight: 550; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-4); border-bottom-color: var(--line); }
table.rpt tbody tr:last-child td { border-bottom: 0; }
table.rpt .m { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--ink-3); white-space: nowrap; font-size: 13px; }
table.rpt .desc { color: var(--ink); font-size: 14px; }

.sev {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px;
  font-family: var(--sans); font-size: 12px; font-weight: 550;
  letter-spacing: -0.005em;
  border-radius: 999px;
  white-space: nowrap;
}
.sev--crit { color: #7A2016; background: #FCE9E5; }
.sev--high { color: #7C3B04; background: #FEEBD3; }
.sev--med  { color: #78350F; background: #FEF3C7; }
.sev--low  { color: #075985; background: #E0F2FE; }

/* --- Steps (methodology visual) ----------------------------------- */
.steps {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
}
.step {
  display: grid; grid-template-columns: 44px 1fr;
  gap: 16px; align-items: center;
  padding: 18px 20px;
  border-radius: 14px;
  position: relative;
}
.step + .step::before {
  content: ""; position: absolute;
  left: 42px; top: -12px; width: 2px; height: 12px;
  background: var(--line);
}
.step__n {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--g-50); color: var(--g-700);
  display: grid; place-items: center;
  font-weight: 600; font-size: 15px;
  border: 1.5px solid var(--g-100);
}
.step--done .step__n { background: var(--g-600); color: #fff; border-color: var(--g-600); }
.step__t { font-weight: 600; color: var(--ink); font-size: 15.5px; line-height: 1.3; }
.step__m { font-size: 13px; color: var(--ink-3); margin-top: 2px; font-family: var(--mono); letter-spacing: 0; }

/* --- Framework grid (light cards) --------------------------------- */
.fw-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.fw {
  padding: 24px; background: var(--bg);
  border: 1px solid var(--line-2); border-radius: 16px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  color: inherit; display: flex; flex-direction: column;
}
.fw:hover { text-decoration: none; box-shadow: var(--shadow); border-color: var(--line); transform: translateY(-2px); }
.fw__badge {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--g-50); color: var(--g-700);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 12px; font-weight: 600;
  margin-bottom: 20px;
}
.fw h3 { font-size: 1.125rem; color: var(--ink); }
.fw p { font-size: 14px; color: var(--ink-3); margin-top: 8px; line-height: 1.5; flex: 1; }
.fw__go { margin-top: 16px; font-size: 13.5px; font-weight: 550; color: var(--g-600); }

/* --- Statement band ----------------------------------------------- */
.stmt {
  padding: 88px 64px;
  background: var(--ink);
  border-radius: var(--radius);
  color: rgba(255,255,255,.75);
  text-align: center;
}
.stmt h2 {
  color: #fff; margin-bottom: 32px; max-width: 22ch; margin-inline: auto;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
}
.stmt h2 em { color: var(--g-300); font-style: normal; }
.stmt p { font-size: 17px; max-width: 62ch; margin-inline: auto; }
.stmt .btn-row { margin-top: 40px; justify-content: center; }
.stmt .btn--line { color: #fff; border-color: rgba(255,255,255,.28); background: transparent; }
.stmt .btn--line:hover { border-color: #fff; }

/* --- FAQ ---------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq details:first-child { border-top: 1px solid var(--line-2); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
  padding: 24px 4px;
  cursor: pointer; list-style: none;
  font-size: 17.5px; font-weight: 550; color: var(--ink);
  letter-spacing: -0.014em; line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-2); color: var(--ink-2);
  display: grid; place-items: center;
  font-size: 18px; font-weight: 400; line-height: 1;
  transition: background .18s, transform .18s;
}
.faq details[open] summary::after { content: "\2212"; background: var(--g-500); color: #fff; }
.faq summary:hover::after { background: var(--g-100); color: var(--g-700); }
.faq details > div { padding: 0 4px 24px; color: var(--ink-2); max-width: 68ch; font-size: 15.5px; line-height: 1.6; }

/* --- Coverage index ----------------------------------------------- */
.states {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px 20px;
  max-width: 900px; margin: 0 auto;
}
.states a {
  padding: 12px 16px;
  border-radius: 10px;
  color: var(--ink-2); font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .15s, color .15s;
}
.states a:hover { background: var(--g-50); color: var(--g-700); text-decoration: none; }
.states a .m { font-family: var(--mono); font-size: 12px; color: var(--ink-4); }

/* --- City index (state hub: hundreds of links) -------------------- */
.city-index { columns: 4; column-gap: 32px; border-top: 1px solid var(--line-2); padding-top: 20px; }
.city-index a { display: block; break-inside: avoid; padding: 7px 0; font-size: 14.5px; color: var(--ink-2); border-bottom: 1px solid var(--line-2); }
.city-index a:hover { color: var(--g-600); text-decoration: none; }
.city-index a .m { font-family: var(--mono); font-size: 11px; color: var(--ink-4); }
@media (max-width: 1000px) { .city-index { columns: 3; } }
@media (max-width: 720px) { .city-index { columns: 2; column-gap: 20px; } }

/* --- CTA ---------------------------------------------------------- */
.cta {
  padding: 72px 56px;
  background: linear-gradient(135deg, var(--g-600) 0%, var(--g-700) 100%);
  border-radius: var(--radius);
  color: rgba(255,255,255,.9);
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center;
}
.cta h2 { color: #fff; margin-bottom: 20px; font-size: clamp(1.75rem, 1.2rem + 1.8vw, 2.5rem); }
.cta p { color: rgba(255,255,255,.85); font-size: 17px; }
.cta__side { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.cta__side .btn--fill { background: #fff; color: var(--g-700); }
.cta__side .btn--fill:hover { background: var(--bg-2); color: var(--g-800); }
.cta__side .btn--line { color: #fff; border-color: rgba(255,255,255,.32); background: transparent; }
.cta__side .btn--line:hover { border-color: #fff; }

/* --- Article + sticky TOC (deep city/content pages) --------------- */
.article-grid { display: grid; grid-template-columns: minmax(0,1fr) 232px; gap: 64px; align-items: start; }
.toc { position: sticky; top: calc(var(--header-h) + 24px); }
.toc__label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 14px; }
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.toc li { margin-bottom: 2px; }
.toc a { display: flex; gap: 10px; padding: 7px 12px; border-radius: 8px; font-size: 13.5px; color: var(--ink-3); line-height: 1.35; }
.toc a::before { counter-increment: toc; content: counter(toc, decimal-leading-zero); font-variant-numeric: tabular-nums; color: var(--ink-4); font-size: 11px; padding-top: 1px; }
.toc a:hover { background: var(--bg-2); color: var(--ink); text-decoration: none; }
.toc a.is-active { background: var(--g-50); color: var(--g-700); font-weight: 550; }
.toc a.is-active::before { color: var(--g-500); }

/* --- Section number label ----------------------------------------- */
.secnum { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 550; color: var(--g-600); margin-bottom: 18px; }
.secnum b { font-family: var(--mono); font-weight: 500; color: var(--ink-4); font-size: 12px; letter-spacing: 0.04em; }
.csec { padding-block: 64px; border-top: 1px solid var(--line-2); }
.csec:first-child { border-top: 0; padding-top: 8px; }
.csec > h2 { font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.25rem); margin-bottom: 24px; max-width: 20ch; }
.csec p { margin-bottom: 16px; max-width: 68ch; }
.csec p:last-child { margin-bottom: 0; }

/* --- Executive summary callout ------------------------------------ */
.summary { background: var(--bg-tint); border: 1px solid var(--g-100); border-radius: var(--radius); padding: 32px 36px; margin-bottom: 8px; }
.summary .k { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--g-700); margin-bottom: 12px; }
.summary p { font-size: 17px; line-height: 1.6; color: var(--ink); margin: 0; max-width: none; }

/* --- Industry threat cards ---------------------------------------- */
.ind-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.ind-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.ind {
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.ind:hover { box-shadow: var(--shadow); border-color: var(--line); transform: translateY(-2px); }
.ind h3 { font-size: 1.2rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.ind h3 .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--g-500); flex-shrink: 0; }
.ind p { font-size: 14.5px; margin-bottom: 14px; color: var(--ink-3); }
.ind p:first-of-type { color: var(--ink-2); }
.risk { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 8px; }
.risk span { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; font-size: 13px; font-weight: 500; color: var(--ink-2); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 999px; }
.risk span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--g-500); }

/* --- Findings table (full width, illustrative) -------------------- */
.findings-wrap { overflow-x: auto; }
.findings { min-width: 560px; border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.findings__bar { padding: 14px 20px; background: var(--bg-2); border-bottom: 1px solid var(--line-2); display: flex; align-items: center; gap: 8px; }
.findings__bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.findings__bar .t { margin-left: 10px; font-family: var(--mono); font-size: 12.5px; color: var(--ink-3); }
.findings table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.findings th, .findings td { padding: 15px 20px; text-align: left; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.findings thead th { font-family: var(--mono); font-size: 11px; font-weight: 550; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-4); }
.findings tbody tr:last-child td { border-bottom: 0; }
.findings tbody tr:hover { background: var(--bg-3); }
.findings .m { font-family: var(--mono); font-variant-numeric: tabular-nums; color: var(--ink-3); white-space: nowrap; }
.findings .desc { color: var(--ink); max-width: 42ch; }

/* --- Hero stat row (interior) ------------------------------------- */
.statrow { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line-2); }
.statrow > div { }
.statrow .v { font-size: 1.75rem; font-weight: 640; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.statrow .l { margin-top: 6px; font-size: 13.5px; color: var(--ink-3); }

/* --- Breadcrumb --------------------------------------------------- */
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 0; font-size: 13px; }
.crumbs li { color: var(--ink-3); }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--g-600); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--ink-4); }
.crumbs li[aria-current="page"] { color: var(--ink); }

/* --- Page hero (interior pages) ----------------------------------- */
.phero { padding-block: 64px 48px; border-bottom: 1px solid var(--line-2); }
.phero .crumbs { margin-bottom: 28px; }
.phero h1 { font-size: clamp(2.25rem, 1.6rem + 3vw, 3.75rem); max-width: 18ch; }
.phero .lede { margin-top: 24px; max-width: 60ch; }
.phero__meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 14px; color: var(--ink-3); }
.phero__meta b { color: var(--ink); font-weight: 600; }

/* --- Region block (locations hub) --------------------------------- */
.region { margin-top: 64px; }
.region:first-of-type { margin-top: 0; }
.region__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: 20px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.region__head h2 { font-size: 1.5rem; letter-spacing: -0.024em; }
.region__head span { font-size: 13px; color: var(--ink-4); font-family: var(--mono); }

.state-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 4px 32px; }
.state-grid a {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  padding: 14px 12px 14px 0;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink); font-size: 16px; font-weight: 460;
  transition: color .15s, padding .15s;
}
.state-grid a:hover { color: var(--g-600); text-decoration: none; padding-left: 6px; }
.state-grid a .c { font-family: var(--mono); font-size: 13px; color: var(--ink-4); font-weight: 400; white-space: nowrap; }
.state-grid a:hover .c { color: var(--g-500); }

/* --- Footer ------------------------------------------------------- */
.foot { padding: 88px 0 40px; background: var(--bg-2); border-top: 1px solid var(--line-2); }
.foot__top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 56px; }
.foot__brand svg { height: 30px; margin-bottom: 20px; }
.foot__brand p { font-size: 14px; color: var(--ink-3); max-width: 34ch; margin-bottom: 20px; line-height: 1.55; }
.foot__nap { font-size: 14px; color: var(--ink-2); font-style: normal; line-height: 1.65; }
.foot__nap strong { color: var(--ink); }
.foot__nap a { color: var(--ink-2); }
.foot__nap a:hover { color: var(--g-600); }
.foot__col h4 { font-size: 12.5px; letter-spacing: -0.005em; color: var(--ink); font-weight: 600; margin-bottom: 18px; }
.foot__col ul { list-style: none; padding: 0; }
.foot__col li { margin-bottom: 10px; }
.foot__col a { color: var(--ink-3); font-size: 14px; }
.foot__col a:hover { color: var(--g-600); }
.foot__bot {
  margin-top: 72px; padding-top: 24px; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between;
  font-size: 12.5px; color: var(--ink-3);
}
.foot__bot nav { display: flex; gap: 24px; }
.foot__bot a { color: var(--ink-3); }
.foot__bot a:hover { color: var(--ink); }

/* --- Responsive --------------------------------------------------- */
@media (max-width: 1100px) {
  .split { gap: 56px; }
  .fw-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .states { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .state-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 4px 24px; }
  .bento { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .article-grid { grid-template-columns: 1fr; gap: 0; }
  .toc { display: none; }
  .ind-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tile--wide { grid-column: span 4; }
  .tile--half { grid-column: span 2; }
  .tile--third { grid-column: span 2; }
}

@media (max-width: 900px) {
  .nav, .head__cta { display: none; }
  .nav-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--rev { direction: ltr; }
  .cta { grid-template-columns: 1fr; padding: 48px 36px; gap: 24px; }
  .stmt { padding: 64px 32px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --header-h: 60px; --gutter: 20px; }
  .section { padding-block: 72px; }
  .hero { padding-block: 72px 60px; }
  .trust { padding: 24px 20px; gap: 20px; }
  .trust__list { gap: 16px 24px; }
  .bento { grid-template-columns: 1fr; gap: 14px; }
  .ind-grid, .ind-grid--2 { grid-template-columns: 1fr; }
  .tile { padding: 24px; }
  .tile--wide, .tile--half, .tile--third, .tile--tall { grid-column: auto; grid-row: auto; }
  .fw-grid { grid-template-columns: 1fr; }
  .states { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 4px 12px; }
  .state-grid { grid-template-columns: 1fr; }
  .region__head { flex-wrap: wrap; }
  .foot__top { grid-template-columns: 1fr; gap: 40px; }
  .head[data-open="true"] .nav {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    padding: 16px 20px 20px; background: var(--bg);
    border-bottom: 1px solid var(--line-2);
  }
  .head[data-open="true"] .nav a, .head[data-open="true"] .nav .hm > button { padding: 12px; }
  .head[data-open="true"] .menu {
    position: static; transform: none; min-width: 0; grid-template-columns: 1fr;
    box-shadow: none; border: 0; padding: 0 0 4px 16px;
  }
  .stmt { padding: 48px 20px; }
  .cta { padding: 40px 24px; }
  .hero__meta { gap: 12px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
