/* ============================================================
   Lafayette Square Institute — site design system
   Brand book 2026.1 tokens + linear motif / newsprint treatment
   per the approved design reference (laptop mockup, Aug 2026).
   ============================================================ */
:root {
  --lsi-navy:       #0F202B;
  --lsi-teal:       #00C4C7;
  --lsi-light-teal: #DBEBEB;
  --lsi-white:      #FFFFFF;
  --lsi-black:      #000000;
  --lsi-yellow:     #F2FF66;
  --lsi-grey-1:     #82898E;
  --lsi-grey-2:     #BABDC0;
  --lsi-grey-3:     #E7E8E8;
  --lsi-ink-2:      #33424C;            /* body ink on light */
  --lsi-font: 'Funnel Sans', -apple-system, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --nav-h: 80px;
  /* Linear motif: thin parallel rules, echoing the icon hatching */
  --slats-light: repeating-linear-gradient(90deg, rgba(15,32,43,.055) 0 1px, transparent 1px 12px);
  --slats-diag:  repeating-linear-gradient(135deg, rgba(0,196,199,.5) 0 1px, transparent 1px 13px);
  --slats-navy:  repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 12px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--lsi-font);
  color: var(--lsi-navy);
  background: var(--lsi-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Eyebrow (K1 hatch chip, locked 2026-09-08; double hairline retired) ----------
   Chip inherits text color (currentColor) per the 2026-08-27 rule, so every
   surface variant (navy, hero accent, EO yellow) carries automatically. */
.eyebrow {
  display: inline-flex; align-items: center;
  font-size: .78rem; font-weight: 650; letter-spacing: .24em;
  text-transform: uppercase; color: var(--lsi-teal);
}
.eyebrow::before {
  content: ""; width: 26px; height: 12px; margin-right: 12px; flex: none;
  background: repeating-linear-gradient(45deg, currentColor 0 1px, transparent 1px 5px);
}
.eyebrow--navy { color: var(--lsi-navy); }
@media (prefers-reduced-motion: no-preference) {
  .eyebrow.reveal::before, .reveal .eyebrow::before { clip-path: inset(0 100% 0 0); }
  .eyebrow.reveal.is-visible::before, .reveal.is-visible .eyebrow::before { animation: kx-wipe .55s ease .25s forwards; }
}
@keyframes kx-wipe { to { clip-path: inset(0 0 0 0); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; text-decoration: none; font-weight: 600; font-size: .95rem;
  padding: 12px 26px; border-radius: 3px; border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
  cursor: pointer; font-family: var(--lsi-font);
}
.btn-teal { background: var(--lsi-teal); color: var(--lsi-navy); }
.btn-teal:hover { background: var(--lsi-navy); color: var(--lsi-white); transform: translateY(-1px); }
.btn-navy { background: var(--lsi-navy); color: var(--lsi-white); }
.btn-navy:hover { background: var(--lsi-teal); color: var(--lsi-navy); }
.btn-outline { border-color: var(--lsi-navy); color: var(--lsi-navy); background: transparent; }
.btn-outline:hover { background: var(--lsi-navy); color: var(--lsi-white); }
.btn-outline-light { border-color: var(--lsi-white); color: var(--lsi-white); background: transparent; }
.btn-outline-light:hover { background: var(--lsi-white); color: var(--lsi-navy); }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* Text arrow link, editorial style */
.more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .95rem; text-decoration: none; color: var(--lsi-navy);
  border-bottom: 2px solid var(--lsi-teal); padding-bottom: 2px;
}
.more::after { content: "\2192"; color: var(--lsi-teal); transition: transform .2s ease; }
.more:hover::after { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--lsi-navy);
  transition: box-shadow .35s ease, background .35s ease;
}
.nav.is-scrolled { box-shadow: 0 2px 18px rgba(15,32,43,.35); }
.nav--overlay { background: transparent; }
.nav--overlay.is-scrolled { background: var(--lsi-navy); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 16px 24px; min-height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > button.nav-top {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--lsi-white); text-decoration: none; font-size: .95rem; font-weight: 500;
  padding: 10px 14px; background: none; border: 0; cursor: pointer; font-family: var(--lsi-font);
  border-bottom: 2px solid transparent; transition: border-color .2s ease;
}
.nav-links > li > a:hover, .nav-links > li > button.nav-top:hover,
.nav-links > li.open > button.nav-top { border-bottom-color: var(--lsi-teal); }
.nav-top .caret { width: 9px; height: 9px; border-right: 2px solid var(--lsi-teal); border-bottom: 2px solid var(--lsi-teal); transform: rotate(45deg) translateY(-2px); transition: transform .2s ease; }
.open > .nav-top .caret { transform: rotate(225deg) translateY(-2px); }
.sub {
  position: absolute; top: 100%; left: 0; min-width: 250px;
  background: var(--lsi-navy); border-top: 3px solid var(--lsi-teal);
  box-shadow: 0 16px 30px rgba(0,0,0,.35);
  list-style: none; padding: 10px 0; display: none;
}
li.open > .sub { display: block; }
.sub a {
  display: block; padding: 10px 20px; color: var(--lsi-grey-2); text-decoration: none; font-size: .92rem;
  border-left: 2px solid transparent;
}
.sub a:hover { color: var(--lsi-white); border-left-color: var(--lsi-teal); background: rgba(0,196,199,.08); }
.sub li.sub-nest a { padding-left: 40px; font-size: .88rem; position: relative; }
.sub li.sub-nest a::before { content: ""; position: absolute; left: 22px; top: 50%;
  width: 8px; height: 2px; background: var(--lsi-teal); opacity: .65; }
.sub .sub-head { display: block; padding: 10px 20px 6px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--lsi-grey-1); }
.nav-cta { margin-left: 12px; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--lsi-white); margin: 5px 0; transition: .25s; }

/* ---------- Ticker (NOW AVAILABLE strip) ---------- */
/* Teal buffer strip, shorter (2026-08-14) */
.ticker {
  background: var(--lsi-teal); color: var(--lsi-navy); border: 0;
  overflow: hidden; white-space: nowrap; position: relative;
}
.ticker-track { display: inline-flex; padding: 7px 0; animation: ticker 36s linear infinite; will-change: transform; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px; padding: 0 20px;
  font-size: .82rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; color: var(--lsi-navy);
}
.ticker-item .t-go { color: var(--lsi-white); transition: transform .2s ease; font-size: 1rem; }
.ticker-item::after { content: ""; width: 10px; height: 11px; background: var(--lsi-navy); clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); margin-left: 20px; opacity: .85; }
.ticker-item:hover .t-label { color: var(--lsi-white); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--lsi-white); }
.ticker-item:hover .t-go { transform: translateX(4px); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Split video hero (homepage) ---------- */
.hero-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100svh; position: relative; background: var(--lsi-navy);
}
.hero-pane { position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: flex-end; }
.hero-pane video, .hero-pane .pane-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2;
}
.hero-pane .pane-poster { background-size: cover; background-position: center; }
.hero-pane::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,32,43,.5) 0%, rgba(15,32,43,.25) 45%, rgba(15,32,43,.78) 100%);
}
/* hatching pulled up from the seam, echoing the icon */
.hero-pane::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .12; pointer-events: none;
  background-image: var(--slats-diag);
  -webkit-mask-image: linear-gradient(180deg, transparent 60%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 60%, #000 100%);
}
.hero-seam {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%);
  background: var(--lsi-teal); opacity: .85; z-index: 2;
}
.hero-brand {
  position: absolute; top: calc(var(--nav-h) + 34px); left: 0; right: 0; z-index: 3;
  text-align: center; color: var(--lsi-white);
  font-size: .85rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; opacity: .92;
  padding: 0 24px; pointer-events: none;
}
.hero-brand::after { content: ""; display: block; width: 46px; height: 2px; background: var(--lsi-teal); margin: 20px auto 0; }
.pane-text { position: relative; padding: 0 6vw 12vh; color: var(--lsi-white); }
.pane-text .pane-kicker {
  font-size: .78rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--lsi-teal);
  display: block; margin-bottom: 14px;
}
.pane-text .pane-line {
  font-size: clamp(2.3rem, 4.6vw, 4.4rem); font-weight: 500; line-height: 1.06; letter-spacing: -.015em;
  text-wrap: balance; display: block;
}
.hero-pane--right { justify-content: flex-end; }
.hero-pane--right .pane-text { text-align: right; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%); z-index: 4;
  color: var(--lsi-white); text-decoration: none; line-height: 0; animation: bob 2.4s ease-in-out infinite;
  background: var(--lsi-navy); border-radius: 999px; padding: 6px; border: 1px solid rgba(0,196,199,.5);
}
.hero-scroll svg { width: 28px; height: 28px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ---------- Interior page hero ---------- */
.page-hero { /* old-site hero: dark field, newsprint photo, left text (2026-08-27) */
  --hero-accent: var(--lsi-teal);
  background: #131A1F; color: var(--lsi-white); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 0 76px;
}
.topic-eo .page-hero { --hero-accent: #E9FF4B; }
.topic-housing .page-hero { --hero-accent: var(--lsi-teal); }
.page-hero .hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero .hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.2) contrast(1.04) brightness(.9); opacity: .62;
}
.page-hero .hero-bg::before { /* linear brand masking over the photo, per old site */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    repeating-linear-gradient(135deg, var(--hero-accent) 0 1px, transparent 1px 9px),
    radial-gradient(rgba(15,32,43,.6) .7px, transparent .8px) 0 0/4px 4px;
  opacity: .13;
}
.page-hero .hero-bg::after { /* legibility wash toward the text side */
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(19,26,31,.85) 0%, rgba(19,26,31,.42) 48%, rgba(19,26,31,.08) 100%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 {
  margin-top: 26px; font-size: clamp(2.1rem, 4.6vw, 3.6rem); color: var(--lsi-white);
  font-weight: 500; line-height: 1.14; letter-spacing: -.015em; text-wrap: balance;
}
.page-hero .lead { margin-top: 22px; font-size: clamp(1.02rem, 1.5vw, 1.22rem); color: var(--lsi-grey-2); line-height: 1.7; max-width: 62ch; }
.page-hero .crumbs, .page-hero .crumbs a { color: var(--lsi-grey-2); }
.page-hero .crumbs a:hover { color: var(--lsi-teal); }
.page-hero .eyebrow--navy { color: var(--hero-accent); }
.page-hero .btn-navy { background: var(--lsi-white); color: var(--lsi-navy); border-color: var(--lsi-white); }
.page-hero .btn-navy:hover { background: var(--lsi-teal); border-color: var(--lsi-teal); }
.page-hero .btn-outline { border-color: rgba(255,255,255,.65); color: var(--lsi-white); }
.page-hero .btn-outline:hover { border-color: var(--hero-accent); color: var(--hero-accent); }
.page-hero .crumbs a:hover { color: var(--hero-accent); }
/* colored topic badge with the striped glyph, per old-site screenshots */
.topic-badge {
  width: 84px; height: 84px; display: grid; place-items: center; margin-bottom: 30px;
}
.topic-badge img { width: 54px; height: 54px; display: block; }
.topic-badge--teal { background: var(--lsi-teal); }
.topic-badge--chartreuse { background: #E9FF4B; }

/* ---------- Newsprint image treatment ---------- */
.np { position: relative; overflow: hidden; background: var(--lsi-grey-3); }
.np img, .np .np-bg {
  filter: grayscale(1) contrast(1.12) brightness(1.04);
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.np::after { /* halftone dot screen */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(15,32,43,.5) .7px, transparent .8px);
  background-size: 4px 4px; opacity: .35; mix-blend-mode: multiply;
}
.np::before { /* paper tint */
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: rgba(219,235,235,.16); mix-blend-mode: multiply;
}
.np--frame { border: 1px solid var(--lsi-navy); box-shadow: 8px 8px 0 var(--lsi-teal); }
.np--hex { clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); box-shadow: none; border: 0; aspect-ratio: .9 !important; height: auto; }
.np-media { aspect-ratio: 4 / 3; }
.np-media--tall { aspect-ratio: 3 / 4; }
figure.np figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  background: var(--lsi-navy); color: var(--lsi-grey-2);
  font-size: .78rem; padding: 8px 14px; letter-spacing: .04em;
}

/* ---------- Sections ---------- */
section { padding: 64px 0; position: relative; }
.section-title {
  margin-top: 28px; font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 500; line-height: 1.2; text-wrap: balance;
}
.section-lead { margin-top: 22px; font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--lsi-ink-2); line-height: 1.7; }
.section--navy { background: var(--lsi-navy); color: var(--lsi-white); }
.section--navy .section-lead { color: var(--lsi-grey-2); }
.section--light { background: var(--lsi-light-teal); }
.section--slats::before { content: ""; position: absolute; inset: 0; background-image: var(--slats-light); pointer-events: none; }
.section--navy.section--slats::before { background-image: var(--slats-navy); }
/* Keep content (forms, cards, text) above the decorative line overlays so
   the slat rules never run through inputs or cards */
section > .wrap { position: relative; z-index: 1; }
/* teal spine, from the report cover */
.spine { position: absolute; top: 0; bottom: 0; right: 0; width: 14px; background: var(--lsi-teal); }
.spine--left { right: auto; left: 0; }

/* ---------- Editorial cards (headline-led, newspaper rules) ---------- */
.cards { margin-top: 60px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.card {
  border: 1px solid var(--lsi-navy); border-top-width: 4px;
  padding: 26px 24px 24px; background: var(--lsi-white); position: relative;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); background: var(--topic-accent, var(--lsi-light-teal)); }
.card .card-num {
  font-size: .82rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--lsi-grey-1);
}
.card:hover .card-num { color: var(--lsi-teal); }
.card h3 { margin-top: 14px; font-size: 1.4rem; font-weight: 600; line-height: 1.25; }
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--lsi-teal); }
.card p { margin-top: 12px; font-size: .98rem; line-height: 1.7; color: var(--lsi-ink-2); }
.card .np-media { margin-top: 18px; aspect-ratio: 16 / 10; }
.card .more { margin-top: 16px; }
.section--navy .card { background: transparent; border-color: rgba(0,196,199,.4); }
.section--navy .card:hover { background: rgba(0,196,199,.1); }
.section--navy .card h3 { color: var(--lsi-white); }
.section--navy .card p { color: var(--lsi-grey-2); }
.section--navy .card .more { color: var(--lsi-white); }

/* ---------- Listings (research library, newspaper column rules) ---------- */
.listing { margin-top: 50px; border-top: 3px solid var(--lsi-navy); }
.listing-item {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 28px; align-items: baseline;
  padding: 30px 0; border-bottom: 1px solid var(--lsi-grey-2);
}
.listing-item .tag { font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--lsi-teal); }
.listing-item h3 { font-size: 1.3rem; font-weight: 600; line-height: 1.3; }
.listing-item h3 a { text-decoration: none; }
.listing-item h3 a:hover { color: var(--lsi-teal); }
.listing-item p { margin-top: 10px; color: var(--lsi-ink-2); font-size: .97rem; max-width: 68ch; }
.listing-item--feature { grid-template-columns: 120px 1fr; }
.listing-item--feature h3 { font-size: 1.7rem; }

/* ---------- Publication cover header ---------- */
.pub-cover {
  background: var(--lsi-light-teal); position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 90px;
}
.pub-cover::before { content: ""; position: absolute; inset: 0; background-image: var(--slats-light); pointer-events: none; }
.pub-cover .spine { width: 18px; }
.pub-cover .wrap { position: relative; }
.pub-cover .pub-kicker {
  font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-size: 1.15rem; font-weight: 600; letter-spacing: .02em;
  text-transform: none; color: var(--lsi-teal);
}
.pub-cover h1 { margin-top: 24px; font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 500; line-height: 1.06; letter-spacing: -.02em; }
.pub-cover .pub-sub { margin-top: 16px; font-size: clamp(1.1rem, 1.9vw, 1.45rem); color: var(--lsi-ink-2); font-weight: 500; max-width: 40ch; }
.pub-cover .hex-mark { position: absolute; top: 26px; right: 40px; width: 54px; height: 54px; opacity: .9; }
.pub-abstract { max-width: none; }
.pub-abstract p { margin-top: 18px; font-size: 1.08rem; line-height: 1.75; color: var(--lsi-ink-2); }
.pub-caption, .pub-dek { margin-top: 26px; font-family: 'EB Garamond', Georgia, serif; font-weight: 700; font-size: 1.15rem; color: var(--lsi-navy); line-height: 1.55; }
.sources-list { margin-top: 18px; padding-left: 18px; }
.sources-list li { margin-bottom: 7px; font-size: .74rem; line-height: 1.55; color: var(--lsi-grey-1); overflow-wrap: anywhere; }
.sources-list a { color: var(--lsi-navy); text-decoration: underline; text-decoration-color: var(--lsi-teal); }

/* ---------- Prose (long-form Our View) ---------- */
.prose { max-width: none; }
.prose p { margin-top: 20px; font-size: 1.04rem; line-height: 1.78; color: var(--lsi-ink-2); }
.prose p:first-child { margin-top: 30px; }

/* ---------- Team ---------- */
.people { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.person { padding-top: 4px; }
.person h3 { font-size: 1.25rem; font-weight: 600; }
.person .role { margin-top: 6px; color: var(--lsi-ink-2); font-size: .95rem; }
.person .org { color: var(--lsi-grey-1); font-size: .88rem; margin-top: 2px; }

/* ---------- Forms ---------- */
.subscribe-form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.subscribe-form input {
  flex: 1 1 260px; padding: 14px 18px; font-family: var(--lsi-font); font-size: 1rem;
  border: 1px solid var(--lsi-grey-2); border-radius: 3px; background: var(--lsi-white);
  color: var(--lsi-navy); outline-color: var(--lsi-teal);
}
.form-grid { margin-top: 30px; display: grid; gap: 16px; max-width: 560px; }
.form-grid label { font-size: .85rem; font-weight: 600; letter-spacing: .06em; }
.form-grid input, .form-grid textarea {
  padding: 13px 16px; font-family: var(--lsi-font); font-size: 1rem;
  border: 1px solid var(--lsi-grey-2); border-radius: 3px; outline-color: var(--lsi-teal); width: 100%;
}
.fine-print { margin-top: 16px; font-size: .85rem; color: var(--lsi-grey-1); max-width: 60ch; }

/* ---------- Footer ---------- */
footer { background: var(--lsi-navy); color: var(--lsi-grey-2); padding: 80px 0 36px; position: relative; }
footer::before { content: ""; position: absolute; inset: 0; background-image: var(--slats-navy); pointer-events: none; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand img { height: 52px; width: auto; }
.footer-brand p { margin-top: 20px; font-size: .92rem; max-width: 34ch; line-height: 1.65; }
.footer-col h4, .footer-col .footer-head { color: var(--lsi-white); font-size: .8rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin: 0 0 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--lsi-grey-2); text-decoration: none; font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--lsi-teal); }
.footer-bottom {
  position: relative; margin-top: 64px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem;
}
.footer-bottom a { color: var(--lsi-grey-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--lsi-teal); }
/* Horizontal teal rule reformatted as a diagonal-hatch band (2026-08-14) */
.teal-bar { height: 12px; background: repeating-linear-gradient(135deg, var(--lsi-teal) 0 5px, transparent 5px 12px); }

/* Diagonal hatch accents at section corners, to break up transitions */
.diag-accent::after {
  content: ""; position: absolute; width: 240px; height: 170px; pointer-events: none;
  background-image: repeating-linear-gradient(135deg, rgba(15,32,43,.13) 0 1px, transparent 1px 10px);
}
.diag-accent--tr::after { top: 0; right: 0; -webkit-mask-image: linear-gradient(225deg, #000, transparent 78%); mask-image: linear-gradient(225deg, #000, transparent 78%); }
.diag-accent--bl::after { bottom: 0; left: 0; -webkit-mask-image: linear-gradient(45deg, #000, transparent 78%); mask-image: linear-gradient(45deg, #000, transparent 78%); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Breadcrumbs ---------- */
.crumbs { position: relative; font-size: .82rem; letter-spacing: .05em; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: var(--lsi-teal); }
.crumbs a { color: var(--lsi-ink-2); text-decoration: none; }
.crumbs a:hover { color: var(--lsi-teal); }

/* ---------- Motion & responsive ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-scroll { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .hero-pane video { display: none; }
}
@media (max-width: 980px) {
  .cards, .people { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-hero .wrap { grid-template-columns: 1fr; }
  .page-hero .np-media--tall { aspect-ratio: 16 / 9; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--lsi-navy); flex-direction: column; align-items: stretch;
    padding: 12px 24px 26px; gap: 2px; box-shadow: 0 14px 24px rgba(0,0,0,.35);
    max-height: calc(100vh - var(--nav-h)); overflow: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a, .nav-links > li > button.nav-top { width: 100%; justify-content: space-between; padding: 12px 4px; }
  .sub { position: static; box-shadow: none; border-top: 0; border-left: 2px solid rgba(0,196,199,.4); margin: 0 0 8px 8px; }
  .nav-burger { display: block; }
  .nav-cta { margin: 10px 0 0; }
  section { padding: 52px 0; }
}
@media (max-width: 760px) {
  .hero-split { grid-template-columns: 1fr; min-height: 100svh; }
  .hero-pane { min-height: 50svh; }
  .hero-seam { left: 0; right: 0; top: 50%; bottom: auto; width: auto; height: 2px; transform: translateY(-50%); }
  .hero-pane--right .pane-text { text-align: left; }
  .pane-text { padding: 0 24px 8vh; }
  .listing-item, .listing-item--feature { grid-template-columns: 1fr; gap: 8px; }
  .cards, .people { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Homepage v2 layer (edits of 2026-08-14)
   ============================================================ */
.garamond { font-family: 'EB Garamond', Georgia, serif; }

/* ---------- Hexagon video field: loose cluster on pure navy ---------- */
.hero-hexes {
  position: relative; min-height: 100svh; background: var(--lsi-navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; isolation: isolate;
  padding: calc(var(--nav-h) + 40px) 24px 70px;
}
.hex-field {
  position: relative; width: min(94vw, 1320px); aspect-ratio: 2.05;
}
.hex-cell { position: absolute; aspect-ratio: .9; }
.hex-media {
  position: relative; width: 100%; height: 100%; overflow: hidden;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--lsi-navy);
}
.hex-media video, .hex-media .pane-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.45) contrast(1.04); transition: opacity 1.6s ease;
}
.hex-media .pane-poster { background-size: cover; background-position: center; }
.hex-media video.is-back { opacity: 0; }
.hex-media .pane-tint {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: rgba(219,235,235,.10); mix-blend-mode: multiply;
}
.hex-media::after { /* quiet navy wash so the sentence carries */
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: rgba(15,32,43,.24);
}
.hero-line {
  position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 4; text-align: center; margin: 0; padding: 0 12px;
  font-size: clamp(1.6rem, 4vw, 4rem); font-weight: 600; line-height: 1.15;
  white-space: nowrap; letter-spacing: -.01em; color: var(--lsi-white);
  text-shadow: 0 2px 30px rgba(15,32,43,.85), 0 1px 8px rgba(15,32,43,.6);
}
.hero-line .hl-b { color: var(--lsi-teal); }
@media (max-width: 760px) {
  .hero-hexes { min-height: 88svh; padding-bottom: 56px; }
  .hex-field { width: 96vw; aspect-ratio: 1.7; }
  .hero-line { font-size: clamp(1.05rem, 5vw, 1.7rem); }
}

/* Hero: teal-tinted video panes, serif/sans tagline, branded seam */
/* Clean newsprint grey on the footage itself; no line pattern over the video.
   Legibility comes from a soft navy ribbon behind the text line, and the brand
   texture moves to a diagonal hatch fading in at the lower outer corners. */
.hero-pane video, .hero-pane .pane-poster { filter: grayscale(.45) contrast(1.04); }
.hero-pane .pane-tint {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(219,235,235,.10); mix-blend-mode: multiply;
}
.hero-pane::before {
  background: linear-gradient(180deg,
    rgba(15,32,43,.28) 0%, rgba(15,32,43,.06) 26%,
    rgba(15,32,43,.06) 36%, rgba(15,32,43,.52) 50%, rgba(15,32,43,.06) 64%,
    rgba(15,32,43,.06) 74%, rgba(15,32,43,.30) 100%);
}
.hero-pane::after {
  opacity: .16;
  -webkit-mask-image: linear-gradient(45deg, #000 0%, transparent 42%);
          mask-image: linear-gradient(45deg, #000 0%, transparent 42%);
}
.hero-pane--right::after {
  -webkit-mask-image: linear-gradient(315deg, #000 0%, transparent 42%);
          mask-image: linear-gradient(315deg, #000 0%, transparent 42%);
}
.hero-pane video { transition: opacity 1.6s ease; }
.hero-pane video.is-back { opacity: 0; }
/* One-sentence alignment: both lines vertically centered on the seam,
   pulled toward the hex medallion, single line each */
.hero-split .hero-pane { align-items: center; justify-content: flex-end; }
.hero-split .hero-pane--right { justify-content: flex-start; }
.hero-split .pane-text { padding: 0 64px; }
.hero-split .hero-pane--right .pane-text { text-align: left; }
.pane-text .pane-line {
  font-size: clamp(1.7rem, 3.5vw, 3.8rem); font-weight: 600;
  white-space: nowrap; line-height: 1.1;
  text-shadow: 0 2px 26px rgba(15,32,43,.55);
}
.pane-text .pane-line--serif {
  font-family: var(--lsi-font); font-style: normal; font-weight: 600;
  letter-spacing: 0; color: var(--lsi-teal);
}
@media (max-width: 760px) {
  .hero-split .hero-pane, .hero-split .hero-pane--right { justify-content: center; }
  .hero-split .pane-text { padding: 0 18px; }
  .pane-text .pane-line { font-size: clamp(1.4rem, 6.5vw, 2.1rem); }
}
/* Branded seam: hatched band, inset from top and bottom, hex medallion */
/* Symmetric insets so the hex medallion sits at exactly 50%,
   on the same centerline as the panel text */
.hero-seam {
  top: 22%; bottom: 22%; width: 22px; background: none; opacity: 1;
}
.hero-seam::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--lsi-teal) 0 2px, transparent 2px 9px);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 12%, #000 88%, transparent 100%);
}
.hero-seam .seam-hex {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 82px; display: flex; align-items: center; justify-content: center;
  background: var(--lsi-teal); /* teal so the medallion reads against the footage */
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.hero-seam .seam-hex img { width: 40px; height: auto; }
@media (max-width: 760px) {
  .hero-seam { top: 50%; bottom: auto; left: 18%; right: 18%; height: 22px; width: auto; transform: translateY(-50%); }
  .hero-seam::before {
    background-image: repeating-linear-gradient(135deg, var(--lsi-teal) 0 2px, transparent 2px 9px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 12%, #000 88%, transparent 100%);
  }
}

/* Mission statement: single display sentence, typographic emphasis */
.mission-statement {
  font-size: clamp(1.55rem, 3.4vw, 2.7rem); font-weight: 300;
  line-height: 1.38; letter-spacing: -.005em; max-width: none;
  color: var(--lsi-navy);
}
/* Uniform emphasis (2026-08-14): all three methods use the light-teal
   highlight treatment */
.mission-statement .em-data { background: linear-gradient(transparent 62%, var(--lsi-light-teal) 62%); font-weight: 500; }
.mission-mark { width: 64px; height: auto; margin-bottom: 34px; display: block; }

/* Hexagonal pillar cards (How we work) */
.hex-cards { margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
/* Pillar cards (2026-08-14): faint vertical fluting + plinth shadow; no
   hexagon chips, no teal underlines on links */
.hex-card {
  position: relative; padding: 34px 30px 30px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 18px),
    var(--lsi-navy);
  transition: transform .25s ease, filter .25s ease;
}
.hex-card:hover { transform: translateY(-5px); filter: brightness(1.12); }
.hex-card::after { /* column base */
  content: ""; position: absolute; left: 7%; right: 7%; bottom: -10px; height: 10px;
  background: rgba(15,32,43,.16);
}
.hex-card .more { border-bottom: 0; }
.hex-card .hex-ico { width: 46px; height: 52px; margin-bottom: 20px; }
/* Category header in teal italic Garamond, matching the carousel cards */
.hex-card .pillar-label {
  font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; text-transform: none;
  color: var(--lsi-teal);
}
.hex-card h3 { margin-top: 12px; font-size: 1.42rem; font-weight: 600; line-height: 1.25; color: var(--lsi-white); }
.hex-card h3 a { text-decoration: none; }
.hex-card h3 a:hover { color: var(--lsi-teal); }
.hex-card p { margin-top: 12px; font-size: .98rem; line-height: 1.7; color: var(--lsi-grey-2); }
.hex-card .more { margin-top: 18px; color: var(--lsi-white); }
@media (max-width: 980px) { .hex-cards { grid-template-columns: 1fr; } }

/* Featured work carousel: continuous rotation + branded hex arrows */
.carousel { position: relative; margin-top: 44px; }
.car-track {
  display: flex; overflow-x: auto; padding: 16px 0 18px;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.feat-card { flex: 0 0 262px; margin-right: 20px; }
.car-nav { position: absolute; top: -74px; right: 4px; display: flex; gap: 12px; z-index: 2; }
.car-btn {
  width: 48px; height: 53px; border: 0; cursor: pointer;
  color: var(--lsi-teal); font-size: 1.15rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  background-color: var(--lsi-navy);
  background-image: repeating-linear-gradient(135deg, rgba(0,196,199,.3) 0 1.5px, transparent 1.5px 7px);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  transition: background-color .2s ease, color .2s ease, transform .15s ease;
}
.car-btn:hover { background-color: var(--lsi-teal); background-image: none; color: var(--lsi-navy); transform: translateY(-2px); }
@media (max-width: 760px) {
  .feat-card { flex-basis: 230px; }
  .car-nav { position: static; margin-bottom: 6px; justify-content: flex-end; }
}
/* Compact photo cards (Katie 2026-08-14): newsprint image up top, teal label,
   white title, single teal verb */
.feat-card {
  scroll-snap-align: start; position: relative; display: flex; flex-direction: column;
  background: var(--lsi-navy);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
  transition: transform .25s ease, background .25s ease;
}
.feat-card::after { /* hatched notch echoing the clipped corner */
  content: ""; position: absolute; top: 0; right: 0; width: 26px; height: 26px;
  background-image: repeating-linear-gradient(135deg, rgba(0,196,199,.55) 0 1.5px, transparent 1.5px 6px);
}
.feat-card:hover { transform: translateY(-5px); background: #152a38; }
.feat-card .feat-media { aspect-ratio: 16 / 10; }
.feat-card .feat-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
/* Category header: teal italic Garamond (White Paper / Data Analytics /
   Research Brief) */
.feat-card .feat-tag {
  font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-size: 1.02rem; font-weight: 600; letter-spacing: .02em;
  text-transform: none; color: var(--lsi-teal);
}
.feat-card h3 { margin-top: 8px; font-size: 1.08rem; font-weight: 600; line-height: 1.3; color: var(--lsi-white); }
.feat-card .feat-sum { margin-top: 6px; font-size: .84rem; font-weight: 300; line-height: 1.5; color: var(--lsi-grey-2); }
.feat-card .more {
  margin-top: auto; padding-top: 14px; color: var(--lsi-teal);
  border-bottom: 0; font-size: .9rem;
}
.feat-card .more::after { color: var(--lsi-teal); }
.feat-card .more::before { content: ""; position: absolute; inset: 0; } /* whole card clickable */
.feat-card:hover .more { color: var(--lsi-white); }
@media (max-width: 760px) {
  .feat-card { width: 230px; }
}

/* Updates section: full-width lead */
.updates-full .section-lead { max-width: none; }
.updates-full h2.section-title { max-width: none; }

/* ============================================================
   Homepage hero options A (Parcel Ledger) + B (Alignment)
   Ported from banner-concepts.html, 2026-08-27
   ============================================================ */
.hero-parcels { position:relative; background:var(--lsi-navy); color:var(--lsi-white); overflow:hidden; }
.hero-align { position:relative; background:var(--lsi-navy); color:var(--lsi-white); }
.hero-parcels .cell, .hero-align .cell { position:relative; overflow:hidden; background:#0C1922; }
.hero-parcels .cell img, .hero-parcels .cell video, .hero-align .cell img, .hero-align .cell video {
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  filter:grayscale(.45) contrast(1.04);
}
.hero-parcels .cell::after, .hero-align .cell::after { content:""; position:absolute; inset:0; background:rgba(4,9,13,.26); }
.tl-a { color:#fff; } .tl-b { color:var(--lsi-teal); }

  .hero-parcels { padding:0; }
  .hero-parcels .parcels {
    position:relative; display:grid; height:100svh;
    grid-template-columns:repeat(10,1fr); grid-template-rows:repeat(5,1fr);
    gap:9px; padding:calc(var(--nav-h) + 14px) 24px 30px 24px;
  }
  .hero-parcels .parcels::before { /* survey ruler, left edge */
    content:""; position:absolute; left:12px; top:calc(var(--nav-h) + 14px); bottom:30px; width:9px;
    background:
      repeating-linear-gradient(0deg, rgba(0,196,199,.8) 0 1px, transparent 1px 56px) left/9px 100% no-repeat,
      repeating-linear-gradient(0deg, rgba(130,137,142,.5) 0 1px, transparent 1px 14px) left/5px 100% no-repeat;
  }
  .hero-parcels .parcels::after { /* survey ruler, bottom edge */
    content:""; position:absolute; left:24px; right:24px; bottom:14px; height:9px;
    background:
      repeating-linear-gradient(90deg, rgba(0,196,199,.8) 0 1px, transparent 1px 56px) top/100% 9px no-repeat,
      repeating-linear-gradient(90deg, rgba(130,137,142,.5) 0 1px, transparent 1px 14px) top/100% 5px no-repeat;
  }
  /* the empty space: a navy clearing in the map where the words live */
  .hero-parcels .ledger-copy { grid-area:3/1/4/11; z-index:5; display:flex; align-items:center; justify-content:center; }
  .hero-parcels .ledger-copy .ledger-title { font-size:clamp(2.2rem,4.6vw,4.9rem); white-space:nowrap; text-align:center;
    line-height:1; font-weight:600; font-kerning:normal;
    font-feature-settings:"kern" 1, "liga" 1;
    text-shadow:0 0 4px rgba(15,32,43,.95), 0 3px 24px rgba(15,32,43,.9); }
  .hero-parcels .ledger-copy .ledger-title .tl-a { letter-spacing:-.022em; }
  .hero-parcels .ledger-copy .ledger-title .tl-b { font-family:'EB Garamond',Georgia,serif; font-style:italic;
    font-weight:600; letter-spacing:.01em; font-size:1em; }
  @media (max-width: 760px) {
    /* nowrap + the clamp() floor (2.2rem) is still wider than a phone
       viewport for this sentence, blowing out the whole page's width and
       forcing horizontal scroll site-wide. Let it wrap on narrow screens. */
    .hero-parcels .ledger-copy .ledger-title { white-space: normal; font-size: 1.7rem; padding: 0 16px; }
  }
  .hero-parcels .mcell--void { background:#0B161E; box-shadow:inset 0 0 0 1px rgba(0,196,199,.22); }
  .hero-parcels .clearing-cell { background:
    repeating-radial-gradient(circle at 12% 30%, rgba(0,196,199,.13) 0 1px, transparent 1px 15px),
    repeating-radial-gradient(circle at 88% 70%, rgba(0,196,199,.1) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(135deg, rgba(186,189,192,.08) 0 1px, transparent 1px 11px),
    #0D1B26;
    border-top:1px solid rgba(0,196,199,.4); border-bottom:1px solid rgba(0,196,199,.4); }
  .hero-parcels .ledger-copy .kicker { margin-top:18px; color:var(--lsi-grey-2); font-weight:300; max-width:38ch; line-height:1.6; }
  .hero-parcels .ccell { cursor:pointer; transition:filter 4s ease-in-out; }
  .hero-parcels .mcell--topo { background:
    repeating-radial-gradient(circle at 32% 38%, rgba(0,196,199,.24) 0 1px, transparent 1px 13px),
    repeating-radial-gradient(circle at 74% 78%, rgba(186,189,192,.16) 0 1px, transparent 1px 17px),
    #0C1922; }
  .hero-parcels .mcell--grat { background:
    repeating-linear-gradient(0deg, rgba(186,189,192,.14) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(90deg, rgba(186,189,192,.14) 0 1px, transparent 1px 22px),
    linear-gradient(#0C1922, #0C1922); }
  .hero-parcels .mcell--grat::before { content:""; position:absolute; left:50%; top:50%; width:14px; height:14px;
    transform:translate(-50%,-50%);
    background:
      linear-gradient(var(--lsi-teal), var(--lsi-teal)) center/2px 14px no-repeat,
      linear-gradient(var(--lsi-teal), var(--lsi-teal)) center/14px 2px no-repeat; opacity:.8; }
  .hero-parcels .mcell--dots { background:
    radial-gradient(rgba(0,196,199,.35) 1.1px, transparent 1.3px) 0 0/16px 16px, #0C1922; }
  .hero-parcels .mcell--hatch { background:
    repeating-linear-gradient(135deg, rgba(0,196,199,.22) 0 1px, transparent 1px 9px), #0C1922; }
  /* the whole map breathes: linear designs drift slowly */
  .hero-parcels .mcell--topo, .hero-parcels .mcell--grat, .hero-parcels .mcell--dots, .hero-parcels .mcell--hatch, .hero-parcels .clearing-cell { animation:mapShift 48s linear infinite alternate; }
  @keyframes mapShift { to { background-position:42px 26px; } }
  .hero-parcels .mcell--media img, .hero-parcels .mcell--media video { filter:brightness(.52) contrast(1.03); transition:filter 4.6s ease-in-out; }
  .hero-parcels .mcell--media::before { content:""; position:absolute; inset:0; z-index:2;
    background:
      repeating-radial-gradient(circle at 30% 40%, rgba(0,196,199,.14) 0 1px, transparent 1px 14px),
      rgba(12,25,34,.32);
    -webkit-mask-image:linear-gradient(105deg, #000 0 48%, transparent 96%);
    mask-image:linear-gradient(105deg, #000 0 48%, transparent 96%);
    transition:transform 5.4s cubic-bezier(.5,.06,.18,1); }
  .hero-parcels .ccell.lit { filter:drop-shadow(0 0 22px rgba(0,196,199,.32)); }
  .hero-parcels .ccell.lit img, .hero-parcels .ccell.lit video { filter:brightness(1.02) contrast(1.03); }
  .hero-parcels .ccell.lit::before { transform:translateX(135%); } /* veil slides off (default: exit right) */
  /* direction variants: each parcel opens and closes from its own side */
  .hero-parcels .vd-l .mcell--media::before, .hero-parcels .mcell--media.vd-l::before {
    -webkit-mask-image:linear-gradient(255deg, #000 0 48%, transparent 96%);
    mask-image:linear-gradient(255deg, #000 0 48%, transparent 96%); }
  .hero-parcels .ccell.vd-l.lit::before { transform:translateX(-135%); }
  .hero-parcels .vd-u .mcell--media::before, .hero-parcels .mcell--media.vd-u::before {
    -webkit-mask-image:linear-gradient(345deg, #000 0 48%, transparent 96%);
    mask-image:linear-gradient(345deg, #000 0 48%, transparent 96%); }
  .hero-parcels .ccell.vd-u.lit::before { transform:translateY(-135%); }
  .hero-parcels .vd-d .mcell--media::before, .hero-parcels .mcell--media.vd-d::before {
    -webkit-mask-image:linear-gradient(165deg, #000 0 48%, transparent 96%);
    mask-image:linear-gradient(165deg, #000 0 48%, transparent 96%); }
  .hero-parcels .ccell.vd-d.lit::before { transform:translateY(135%); }
  .hero-parcels .ccell.lit::after { background:rgba(0,0,0,.04); }
  /* research pop-ups on the map parcels */
  .hero-parcels .pop {
    position:absolute; inset:0; z-index:3; display:flex; flex-direction:column;
    justify-content:flex-end; padding:7px 9px 9px; overflow:hidden;
    opacity:0; transform:translateY(8px); transition:opacity 1.1s ease, transform 1.1s ease;
    background:linear-gradient(180deg, transparent 10%, rgba(12,25,34,.92) 62%);
  }
  .hero-parcels .pop em { font-family:'EB Garamond',Georgia,serif; font-style:italic; font-size:.72rem; color:var(--lsi-teal); line-height:1.2; }
  .hero-parcels .pop .t { margin-top:2px; color:#fff; font-weight:600; font-size:.78rem; line-height:1.2; }
  .hero-parcels .ccell.lit .pop, .hero-parcels .ccell:hover .pop { opacity:1; transform:none; }

  
  .hero-align { height:150vh; }
  .hero-align .sticky { position:sticky; top:0; height:100svh; overflow:hidden; }
  .hero-align .sticky::before { /* axis ruler, left */
    content:""; position:absolute; left:14px; top:90px; bottom:60px; width:9px; z-index:2;
    background:
      repeating-linear-gradient(0deg, rgba(0,196,199,.7) 0 1px, transparent 1px 56px) left/9px 100% no-repeat,
      repeating-linear-gradient(0deg, rgba(130,137,142,.45) 0 1px, transparent 1px 14px) left/5px 100% no-repeat;
  }
  .hero-align .sticky::after { /* axis ruler, bottom */
    content:""; position:absolute; left:36px; right:30px; bottom:16px; height:9px; z-index:2;
    background:
      repeating-linear-gradient(90deg, rgba(0,196,199,.7) 0 1px, transparent 1px 56px) top/100% 9px no-repeat,
      repeating-linear-gradient(90deg, rgba(130,137,142,.45) 0 1px, transparent 1px 14px) top/100% 5px no-repeat;
  }
  .trend { position:absolute; inset:0; width:100%; height:100%; z-index:2; pointer-events:none; }
  .trend .tline { stroke:var(--lsi-teal); stroke-width:2; fill:none; vector-effect:non-scaling-stroke;
    stroke-dasharray:100; stroke-dashoffset:100; }
  .trend .tick { stroke:var(--lsi-teal); stroke-width:2; vector-effect:non-scaling-stroke; opacity:0; }
  .trend .area { fill:url(#hatchp); opacity:0; }
  .hero-align .layer {
    position:absolute; left:50%; top:50%; z-index:3; clip-path:polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); aspect-ratio:.9;
    will-change:transform, opacity; opacity:var(--lo,1);
    transform:translate(calc(-50% + var(--sx) * var(--f,1) + var(--tx) * var(--g,0)),
                        calc(-50% + var(--sy) * var(--f,1) + var(--ty) * var(--g,0)));
  }
  /* one consistent shape; sizes ascend along the trajectory */
  .hero-align .layer--1 { width:9vw;    --sx:-38vw; --sy:-18vh; --tx:-32vw;   --ty:18vh; }
  .hero-align .layer--2 { width:10.5vw; --sx:24vw;  --sy:-26vh; --tx:-19.2vw; --ty:10.8vh; }
  .hero-align .layer--3 { width:12vw;   --sx:-12vw; --sy:28vh;  --tx:-6.4vw;  --ty:3.6vh; }
  .hero-align .layer--4 { width:13.5vw; --sx:38vw;  --sy:16vh;  --tx:6.4vw;   --ty:-3.6vh; }
  .hero-align .layer--5 { width:15vw;   --sx:6vw;   --sy:-34vh; --tx:19.2vw;  --ty:-10.8vh; }
  .hero-align .layer--6 { width:17vw;   --sx:-26vw; --sy:10vh;  --tx:32vw;    --ty:-18vh; }
  .flag-banner { position:absolute; left:0; right:0; top:50%; height:56vh; transform:translateY(-50%);
    opacity:0; overflow:hidden; z-index:4; will-change:opacity; }
  .flag-banner video { width:100%; height:100%; object-fit:cover; filter:grayscale(.35) contrast(1.05); }
  .flag-banner::after { content:""; position:absolute; inset:0; background:rgba(15,32,43,.24); }
  /* the sentence starts as one centered line, then the halves travel to
     opposite corners as you scroll (top-left / bottom-right) */
  .hero-align .tl-pc, .hero-align .tl-pi {
    position:absolute; left:50%; top:50%; z-index:6; white-space:nowrap;
    font-weight:650; letter-spacing:-.01em; font-size:clamp(1.7rem,3.8vw,3.9rem);
    text-shadow:0 0 3px rgba(15,32,43,.9), 0 2px 12px rgba(15,32,43,.85), 0 4px 34px rgba(15,32,43,.75);
    opacity:1; /* visible from the start; the halves lock together at alignment */
  }
  /* --bx centers the full sentence on the banner (set by JS from the two
     halves' widths) so the line reads horizontally centered as one piece */
  .hero-align .tl-pc { color:#fff;
    transform:translate(calc(-100% - 12px + var(--bx,0px) + var(--ox) * var(--q,1)), calc(-50% + var(--oy) * var(--q,1)));
    --ox:-3.5vw; --oy:0vh; }
  .hero-align .tl-pi { color:var(--lsi-teal);
    transform:translate(calc(12px + var(--bx,0px) + var(--ox) * var(--q,1)), calc(-50% + var(--oy) * var(--q,1)));
    --ox:3.5vw; --oy:0vh; }
  .hero-align .hint { position:absolute; bottom:26px; left:0; right:0; text-align:center; color:var(--lsi-grey-1);
    font-size:.8rem; letter-spacing:.15em; text-transform:uppercase; z-index:6; transition:opacity .4s ease; }

  @media (max-width:860px) {
    .hero-align .layer { width:22vw !important; }
    .hero-align .tl-pc, .hero-align .tl-pi { font-size:clamp(1.05rem,4.4vw,1.6rem); }
  }

/* demo-only hero option switcher: remove before launch */
@media (prefers-reduced-motion: reduce) {
  .hero-parcels .mcell--media::before { display:none; }
  .hero-parcels .mcell--media img, .hero-parcels .mcell--media video { filter:brightness(1) contrast(1.03); }
  .mcell--topo, .mcell--grat, .mcell--dots, .mcell--hatch, .clearing-cell { animation:none; }
}

/* 535 state library grid (ported PDF library, 2026-08-27) */
.state-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(64px, 1fr)); gap:10px; margin-top:34px; }
.state-grid a {
  display:block; text-align:center; padding:11px 4px; text-decoration:none;
  color:var(--lsi-white); font-weight:650; letter-spacing:.08em; font-size:.9rem;
  border:1px solid rgba(0,196,199,.45);
  background-image:repeating-linear-gradient(135deg, rgba(0,196,199,.12) 0 1px, transparent 1px 8px);
  transition:background-color .2s ease, color .2s ease;
}
.state-grid a:hover { background-color:var(--lsi-teal); color:var(--lsi-navy); background-image:none; }

/* Team headshots (old-site portraits) */
.person .headshot { aspect-ratio:1; margin-bottom:16px; }

/* Publication byline */
.pub-byline { margin-top:14px; color:var(--lsi-ink-2); font-size:.95rem; font-weight:500; }


/* ============================================================
   Comprehensive round, 2026-08-27
   ============================================================ */
/* citation superscripts */
.prose sup, .section-lead sup, .card sup, .pub-abstract sup { color: var(--lsi-teal); font-weight: 650; font-size: .68em; }

/* topic identities (restored from the old site) */
.topic-housing { --topic-accent: var(--lsi-teal); --topic-accent-ink: var(--lsi-navy); }
.topic-eo { --topic-accent: #E9FF4B; --topic-accent-ink: var(--lsi-navy); }
.topic-ico { width: 54px; height: 54px; margin-bottom: 18px; }
.topic-housing .spine, .topic-eo .spine { background: var(--topic-accent); }

/* floating priority cards: one row when room, wrap as the window narrows */
.priority-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 54px; }
.priority-row .card { flex: 1 1 230px; box-shadow: 8px 8px 0 rgba(15,32,43,.12); }
.priority-row .card:hover { box-shadow: 8px 8px 0 var(--topic-accent, var(--lsi-teal)); }

/* publication listing thumbnails + flagship visual */
.listing-thumb { width: 120px; }
.listing-thumb img { border: 1px solid var(--lsi-navy); width: 100%; height: auto; }
.flagship-grid { display: grid; grid-template-columns: 1fr 280px; gap: 44px; align-items: center; }
.pub-cover-img { border: 1px solid var(--lsi-navy); box-shadow: 10px 10px 0 var(--topic-accent, var(--lsi-teal)); }
@media (max-width: 860px) { .flagship-grid { grid-template-columns: 1fr; } .pub-cover-img { max-width: 280px; } }

/* dashboard / tool embeds */
.embed-frame { border: 1px solid var(--lsi-navy); background: var(--lsi-white); margin-top: 40px; }
.embed-frame .embed-scale { display: block; }
.embed-bar { display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 10px 16px; background: var(--lsi-navy); color: var(--lsi-grey-2); font-size: .85rem; }
.embed-bar a { color: var(--lsi-teal); font-weight: 650; text-decoration: none; }
.embed-bar a:hover { color: var(--lsi-white); }

/* 535 state tiles arranged as the U.S. */
.us-map { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 6px; margin-top: 36px; max-width: 900px; }
.us-map a { /* brand hexagon tiles on white (Katie, 2026-08-27) */
  aspect-ratio: .9; display: flex; align-items: center; justify-content: center;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  text-decoration: none; color: var(--lsi-navy); font-weight: 650; letter-spacing: .05em; font-size: .8rem;
  background-color: var(--lsi-light-teal);
  background-image: repeating-linear-gradient(135deg, rgba(0,196,199,.28) 0 1px, transparent 1px 7px);
  transition: background-color .2s ease, color .2s ease;
}
.us-map a:hover { background-color: var(--lsi-teal); background-image: none; color: var(--lsi-navy); }

/* pillar boxes (About): fill with differentiated colors on hover */
.pillar-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 54px; }
.pillar-box { border: 1px solid var(--lsi-navy); padding: 30px 26px; background: var(--lsi-white);
  transition: background .3s ease, transform .25s ease; position: relative; }
.pillar-box:hover { transform: translateY(-4px); }
.pillar-box--policy:hover { background: var(--lsi-teal); }
.pillar-box--tech:hover { background: var(--lsi-light-teal); }
.pillar-box--conv:hover { background: #E9FF4B; }
.pillar-box .hex-ico { width: 44px; height: 50px; margin-bottom: 16px; }
.pillar-box .hex-ico [stroke="#FFFFFF"], .pillar-box .hex-ico [stroke="#fff"] { stroke: var(--lsi-navy); }
.pillar-box h3 { font-size: 1.3rem; font-weight: 600; }
.pillar-box p { margin-top: 10px; color: var(--lsi-ink-2); font-size: .97rem; line-height: 1.65; }
.pillar-box .more { margin-top: 16px; }
@media (max-width: 860px) { .pillar-boxes { grid-template-columns: 1fr; } }

/* event cards */
.event-cards { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 50px; }
.event-card { flex: 1 1 320px; max-width: 460px; background: var(--lsi-white); color: var(--lsi-navy);
  border: 1px solid var(--lsi-navy); box-shadow: 10px 10px 0 var(--lsi-light-teal); }
.event-card .ev-photo { clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  aspect-ratio: .9; width: 62%; margin: 26px auto 0; overflow: hidden; }
.event-card .ev-photo img { width: 100%; height: 100%; object-fit: cover; }
.event-card .ev-body { padding: 20px 24px 26px; }
.event-card .ev-date { font-family: 'EB Garamond', Georgia, serif; font-style: italic; color: var(--lsi-teal); font-weight: 600; }
.event-card h3 { margin-top: 6px; font-size: 1.2rem; font-weight: 600; line-height: 1.3; }
.event-card p { margin-top: 8px; font-size: .93rem; color: var(--lsi-ink-2); line-height: 1.6; }

/* team: color portraits, consistent size, hover bio peek, click for full bio */
.person .headshot { position: relative; aspect-ratio: 3/4; max-width: 220px; margin-bottom: 16px; overflow: hidden; border: 1px solid var(--lsi-navy); }
.person .headshot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.person .bio-peek { position: absolute; inset: 0; background: rgba(15,32,43,.93); color: var(--lsi-grey-2);
  opacity: 0; transition: opacity .3s ease; padding: 16px; font-size: .8rem; line-height: 1.55; overflow: hidden; }
.person .bio-peek::after { content: "Click for full bio"; position: absolute; bottom: 10px; left: 16px;
  color: var(--lsi-teal); font-weight: 650; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.person:hover .bio-peek { opacity: 1; }
.person[data-bio] { cursor: pointer; }
dialog.bio-modal { border: 1px solid var(--lsi-navy); padding: 0; max-width: 680px; width: 92vw; }
dialog.bio-modal::backdrop { background: rgba(15,32,43,.72); }
.bio-modal .bm-head { display: flex; gap: 22px; align-items: center; padding: 26px 28px 18px; background: var(--lsi-navy); color: var(--lsi-white); }
.bio-modal .bm-head img { width: 92px; height: 92px; object-fit: cover; border: 1px solid var(--lsi-teal); }
.bio-modal .bm-name { font-size: 1.3rem; font-weight: 650; }
.bio-modal .bm-title { color: var(--lsi-teal); font-size: .92rem; margin-top: 2px; }
.bio-modal .bm-body { padding: 22px 28px 28px; }
.bio-modal .bm-body p { margin-top: 12px; color: var(--lsi-ink-2); font-size: .95rem; line-height: 1.7; }
.bio-modal .bm-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; color: var(--lsi-grey-2);
  font-size: 1.4rem; cursor: pointer; }

/* contact: two columns */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: start; margin-top: 40px; }
.contact-grid .panel { border: 1px solid var(--lsi-navy); padding: 28px; background: var(--lsi-white); }
.contact-grid div > .panel + .panel { margin-top: 28px; }
.contact-grid--two > .panel { margin-top: 0; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.addr-line { white-space: nowrap; }


/* ============================================================
   Edit round 2, 2026-08-27
   ============================================================ */
/* publication preview cards (research library + topic pages) */
.pub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: 18px; margin-top: 46px; }
.pub-card { border: 1px solid var(--lsi-navy); background: var(--lsi-white); display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease; position: relative; }
.pub-card:hover { transform: translateY(-3px); box-shadow: 7px 7px 0 var(--card-accent, var(--lsi-teal)); }
.pub-card .pc-cover { display: block; position: relative; background: var(--lsi-grey-3); border-bottom: 1px solid var(--lsi-navy); }
.pub-card .pc-cover img { width: 100%; aspect-ratio: 16/9; object-fit: cover; object-position: top; display: block; }
/* parcel veil: hex lattice from the homepage ledger, light enough to keep the photo legible */
.pub-card .pc-cover::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='29' viewBox='0 0 26 29'%3E%3Cpath d='M13 1.5 24.5 8v13L13 27.5 1.5 21V8z' fill='none' stroke='%2300C4C7' stroke-opacity='.28' stroke-width='1'/%3E%3C/svg%3E") 0 0/26px 29px repeat,
    rgba(12,25,34,.10);
  transition: opacity .25s ease; }
.pub-card:hover .pc-cover::after { opacity: .35; }
.pub-card .pc-body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.pub-card .pc-type { font-family: 'EB Garamond', Georgia, serif; font-style: italic; color: var(--lsi-teal); font-weight: 600; font-size: .84rem; }
.pub-card h3 { margin-top: 6px; font-size: .93rem; font-weight: 600; line-height: 1.35; }
.pub-card h3 a { text-decoration: none; color: inherit; }
.pub-card h3 a:hover { color: var(--lsi-teal-ink, var(--lsi-teal)); }
.pub-card .pc-byline { margin-top: 6px; font-size: .76rem; color: var(--lsi-ink-2); font-weight: 600; letter-spacing: .02em; }
.pub-card .pc-sum { margin-top: 8px; font-size: .8rem; color: var(--lsi-ink-2); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pub-card .more { margin-top: auto; padding-top: 12px; font-size: .8rem; }
.section--navy .pub-card { background: var(--lsi-navy); border-color: rgba(0,196,199,.4); }
.section--navy .pub-card h3, .section--navy .pub-card h3 a { color: var(--lsi-white); }
.section--navy .pub-card .pc-byline, .section--navy .pub-card .pc-sum { color: var(--lsi-grey-2); }

/* events calendar (fill in via the LSI_EVENTS array on the page) */
.cal { border: 1px solid var(--lsi-navy); background: var(--lsi-white); margin-top: 44px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px;
  background: var(--lsi-navy); color: var(--lsi-white); }
.cal-head .cal-title { font-weight: 650; letter-spacing: .06em; text-transform: uppercase; font-size: .95rem; }
.cal-head button { background: none; border: 1px solid rgba(255,255,255,.5); color: var(--lsi-white);
  width: 34px; height: 34px; cursor: pointer; font-size: 1rem; }
.cal-head button:hover { border-color: var(--lsi-teal); color: var(--lsi-teal); }
.cal-dow, .cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-dow span { padding: 10px 0; text-align: center; font-size: .72rem; font-weight: 650; letter-spacing: .14em;
  color: var(--lsi-ink-2); text-transform: uppercase; border-bottom: 1px solid var(--lsi-grey-3); }
.cal-grid .cal-day { min-height: 86px; border-right: 1px solid var(--lsi-grey-3); border-bottom: 1px solid var(--lsi-grey-3);
  padding: 6px 8px; font-size: .8rem; color: var(--lsi-ink-2); position: relative; }
.cal-grid .cal-day:nth-child(7n) { border-right: 0; }
.cal-grid .cal-day.out { background: #F4F7F7; color: var(--lsi-grey-1); }
.cal-grid .cal-day.today .d { color: var(--lsi-white); background: var(--lsi-teal); }
.cal-grid .d { display: inline-grid; place-items: center; width: 22px; height: 22px; font-weight: 650; }
.cal-ev { display: block; margin-top: 4px; padding: 3px 6px; background: var(--lsi-light-teal); color: var(--lsi-navy);
  border-left: 3px solid var(--lsi-teal); font-size: .72rem; line-height: 1.3; text-decoration: none; font-weight: 600; }
.cal-ev:hover { background: var(--lsi-teal); color: var(--lsi-navy); }
.cal-note { padding: 12px 18px; font-size: .8rem; color: var(--lsi-ink-2); border-top: 1px solid var(--lsi-grey-3); }

/* dashboard embeds render at natural size, scaled down to fit (js sets --embed-scale) */
.embed-scale { position: relative; width: 100%; overflow: hidden; }
.embed-scale iframe { position: absolute; top: 0; left: 0; width: 1280px; height: 820px;
  transform-origin: 0 0; transform: scale(var(--embed-scale, .75)); border: 0; }

/* hero A veil masks: mix of dot, square-grid, and hexagon patterns (2026-08-27) */
.hero-parcels .mcell--media.vm-grid::before { background:
  repeating-linear-gradient(0deg, rgba(0,196,199,.11) 0 1px, transparent 1px 12px),
  repeating-linear-gradient(90deg, rgba(0,196,199,.11) 0 1px, transparent 1px 12px),
  rgba(12,25,34,.32); }
.hero-parcels .mcell--media.vm-hex::before { background:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='29' viewBox='0 0 26 29'%3E%3Cpath d='M13 1.5 24.5 8v13L13 27.5 1.5 21V8z' fill='none' stroke='%2300C4C7' stroke-opacity='.22' stroke-width='1'/%3E%3C/svg%3E") 0 0/26px 29px repeat,
  rgba(12,25,34,.32); }


/* card caption alignment: reserve equal heading space so the grey body text
   starts on the same line across a row (Katie, 2026-08-27) */
.cards .card h3, .priority-row .card h3 { min-height: 2.7em; }
.feat-card h3 { min-height: 2.6em; }
.pub-card h3 { min-height: 4.05em; }
.pub-card .pc-byline { min-height: 1.2em; }

/* featured band sits on navy so adjacent sections alternate */
.section--navy .feat-card { background: #13242F; border: 1px solid rgba(0,196,199,.3); }
.section--navy .feat-card:hover { background: #17303E; }


/* slat lines belong to white sections only: navy and light-teal bands run
   clean so adjacent sections never repeat the same line pattern (2026-08-27) */
.section--navy.section--slats::before,
.section--light.section--slats::before { display: none; }


/* ============================================================
   EO hero + brand-yellow accents (Katie, 2026-08-27 PM)
   ============================================================ */
/* logo lockup: badge and title read as one unit */
.hero-head { display: flex; align-items: center; gap: 32px; margin-top: 18px; }
.hero-head .topic-badge { margin-bottom: 0; flex: none; box-shadow: 10px 10px 0 rgba(0,0,0,.28); }
.hero-head h1 { margin-top: 0; }
@media (max-width: 700px) { .hero-head { flex-direction: column; align-items: flex-start; gap: 20px; } }

/* EO photo: lighter masking, color evident */
.topic-eo .page-hero .hero-bg img { filter: grayscale(.2) contrast(1.04) brightness(.9); opacity: .62; }
.topic-eo .page-hero .hero-bg::before { opacity: .13; }
.topic-eo .page-hero .hero-bg::after {
  background: linear-gradient(100deg, rgba(19,26,31,.85) 0%, rgba(19,26,31,.42) 48%, rgba(19,26,31,.08) 100%);
}

/* chartreuse primary button */
.btn-chartreuse { background: #E9FF4B; border: 1px solid #E9FF4B; color: var(--lsi-navy); }
.btn-chartreuse:hover { background: var(--lsi-white); border-color: var(--lsi-white); color: var(--lsi-navy); }

/* EO page accent = brand yellow */
.topic-eo { --card-accent: #E9FF4B; }
/* Eyebrow rules always match the eyebrow text color (currentColor), never
   an accent (Katie, 2026-08-27). Only the text color varies by surface. */
.topic-eo .eyebrow { color: var(--lsi-navy); }
.topic-eo .section--navy .eyebrow { color: #E9FF4B; }
.topic-eo .prose sup, .topic-eo .card sup { color: var(--lsi-navy); background: #E9FF4B; padding: 0 3px; font-weight: 700; }
.topic-eo .section--navy .card sup { }
.topic-eo .pc-type { color: var(--lsi-navy); background: linear-gradient(transparent 55%, #E9FF4B 55%); display: inline; }
.topic-eo .priority-row .card:hover { box-shadow: 8px 8px 0 #E9FF4B; }
.topic-eo .pub-cover-img { box-shadow: 10px 10px 0 #E9FF4B; }


/* Housing hero: same lighter, color-forward treatment as EO (2026-08-27 PM2) */
.topic-housing .page-hero .hero-bg img { filter: grayscale(.2) contrast(1.04) brightness(.9); opacity: .62; }
.topic-housing .page-hero .hero-bg::before { opacity: .13; }
.topic-housing .page-hero .hero-bg::after {
  background: linear-gradient(100deg, rgba(19,26,31,.85) 0%, rgba(19,26,31,.42) 48%, rgba(19,26,31,.08) 100%);
}


/* Sources sections: more air above, smaller and more discrete (2026-08-27 PM) */
.sources-block { padding-top: 30px; padding-bottom: 44px; }
.sources-block .eyebrow { margin-top: 34px; font-size: .66rem; letter-spacing: .22em; opacity: .85; }
.sources-block .sources-list { max-width: 860px; }
@media (min-width: 900px) { .sources-block .sources-list { columns: 2; column-gap: 44px; } }

/* Calendar: smaller footprint, easier to scan (2026-08-27 PM) */
.cal { max-width: 720px; }
.cal-grid .cal-day { min-height: 62px; padding: 4px 6px; font-size: .74rem; }
.cal-grid .d { width: 19px; height: 19px; }
.cal-dow span { padding: 8px 0; font-size: .66rem; }
.cal-head { padding: 10px 14px; }
.cal-head .cal-title { font-size: .84rem; }
.cal-head button { width: 29px; height: 29px; }


/* ============================================================
   Team page: parcel-inspired backdrop + color hero (2026-08-27 PM)
   ============================================================ */
.team-page .page-hero .hero-bg img { filter: grayscale(.2) contrast(1.04) brightness(.9); opacity: .62; }
.team-page .page-hero .hero-bg::before { opacity: .13; }
.team-page .page-hero .hero-bg::after {
  background: linear-gradient(100deg, rgba(19,26,31,.85) 0%, rgba(19,26,31,.42) 48%, rgba(19,26,31,.08) 100%);
}
/* cartographic parcel field, echoing the homepage ledger */
.team-page section:not(.page-hero) { /* white parcel field (Katie 2026-08-27) */
  background:
    repeating-linear-gradient(0deg, rgba(0,196,199,.16) 0 1px, transparent 1px 138px),
    repeating-linear-gradient(90deg, rgba(0,196,199,.16) 0 1px, transparent 1px 178px),
    radial-gradient(rgba(0,196,199,.14) 1px, transparent 1.2px) 0 0/17px 17px,
    var(--lsi-white);
}
.team-page .team-board {
  background:
    repeating-linear-gradient(135deg, rgba(0,196,199,.13) 0 1px, transparent 1px 11px),
    var(--lsi-white);
}
.team-page .person .headshot { border-color: rgba(0,196,199,.5); box-shadow: 8px 8px 0 rgba(0,196,199,.16); }

/* ============================================================
   Contact: compact pop hero with the message form (2026-08-27 PM)
   ============================================================ */
.contact-hero {
  background:
    repeating-linear-gradient(90deg, rgba(15,32,43,.08) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(0deg, rgba(15,32,43,.06) 0 1px, transparent 1px 64px),
    var(--lsi-teal);
  color: var(--lsi-navy);
  padding: calc(var(--nav-h) + 34px) 0 30px; position: relative; overflow: hidden;
}
.contact-hero::after { /* brand hex, bleeding off the right edge */
  content: ""; position: absolute; right: -70px; top: 18%; width: 300px; height: 333px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: repeating-linear-gradient(90deg, rgba(15,32,43,.22) 0 3px, transparent 3px 10px);
  pointer-events: none;
}
.contact-hero .crumbs, .contact-hero .crumbs a { color: rgba(15,32,43,.75); }
.contact-hero h1 { margin-top: 14px; font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 550; color: var(--lsi-navy); }
.contact-form-pop {
  margin-top: 26px; background: var(--lsi-white); border: 1px solid var(--lsi-navy);
  box-shadow: 12px 12px 0 var(--lsi-navy); padding: 28px; max-width: 620px; position: relative; z-index: 1;
}
.contact-disclaimer { margin-top: 14px; color: var(--lsi-ink-2); }
.contact-disclaimer a { color: var(--lsi-navy); }
.scroll-cue {
  display: grid; place-items: center; width: 40px; height: 44px; margin: 26px auto 0;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--lsi-navy); color: var(--lsi-white); text-decoration: none; font-size: 1.1rem;
  animation: cueBob 2.2s ease-in-out infinite;
}
@keyframes cueBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .scroll-cue { animation: none; } }
.contact-grid--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) { .contact-grid--two { grid-template-columns: 1fr; } }


/* Research Library: color-forward hero (drawers photo), 2026-08-27 PM */
.lib-page .page-hero .hero-bg img { filter: grayscale(.2) contrast(1.04) brightness(.9); opacity: .62; object-position: center 38%; }
.lib-page .page-hero .hero-bg::before { opacity: .13; }
.lib-page .page-hero .hero-bg::after {
  background: linear-gradient(100deg, rgba(19,26,31,.85) 0%, rgba(19,26,31,.42) 48%, rgba(19,26,31,.08) 100%);
}

/* tighter vertical rhythm inside sections (2026-08-27: too much air) */
.section-title { margin-top: 20px; }
.people { margin-top: 38px; }
.pub-grid { margin-top: 32px; }
.cards, .pillar-boxes, .priority-row, .event-cards { margin-top: 36px; }
.page-hero { padding-bottom: 56px; }


/* Flagship Report: accent bar LEFT; publication photo bleeds off the right
   edge like a half-bleed hero (Katie, 2026-08-27 PM). Shared by EO + Housing. */
.flagship-sec { position: relative; overflow: hidden; }
.flagship-sec .spine { left: 0 !important; right: auto !important; }
.flagship-bleed { position: absolute; top: 0; right: 0; bottom: 0; width: 41%; display: block; }
.flagship-bleed img { width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(.15) contrast(1.03); }
.flagship-bleed::before { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--lsi-light-teal) 0%, rgba(219,235,235,0) 26%); }
.flagship-sec .wrap { position: relative; z-index: 2; }
.flagship-sec .flagship-copy, .flagship-sec .eyebrow { max-width: 54%; }
.flagship-sec .flagship-copy { display: block; }
@media (max-width: 860px) {
  .flagship-bleed { position: static; width: 100%; height: 220px; }
  .flagship-bleed::before { display: none; }
  .flagship-sec .flagship-copy, .flagship-sec .eyebrow { max-width: none; }
}


/* Technology pages: back to core brand colors (purple retired, Katie 2026-08-27) */
.em-tech { background: linear-gradient(transparent 62%, var(--lsi-light-teal) 62%); font-weight: 500; }


/* ============================================================
   Digital publications (native HTML from the PDFs), 2026-08-27
   ============================================================ */
.pub-doc { padding-top: 48px; }
.pub-doc-grid { display: grid; grid-template-columns: minmax(0, 1fr) 250px; gap: 60px; align-items: start; }
.pub-toc { position: sticky; top: calc(var(--nav-h) + 22px); max-height: calc(100vh - var(--nav-h) - 44px); overflow: auto; }
.toc-head { font-size: .72rem; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; color: var(--lsi-ink-2); }
.pub-toc ol { list-style: none; margin: 14px 0 0; padding: 0; border-left: 2px solid var(--lsi-grey-3); }
.pub-toc li a {
  display: block; padding: 7px 0 7px 14px; margin-left: -2px; border-left: 2px solid transparent;
  color: var(--lsi-grey-1); text-decoration: none; font-size: .86rem; line-height: 1.4; transition: color .2s, border-color .2s;
}
.pub-toc li a:hover { color: var(--lsi-navy); }
.pub-toc li a.done { color: var(--lsi-teal); border-left-color: var(--lsi-teal); }
.pub-toc li a.active { color: var(--lsi-navy); font-weight: 650; border-left-color: var(--lsi-navy); }
.toc-dl { margin-top: 22px; width: 100%; text-align: center; }
.pub-article { min-width: 0; }
.pub-article .pub-sec { scroll-margin-top: calc(var(--nav-h) + 18px); }
.pub-article h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); font-weight: 600; margin-top: 54px; line-height: 1.25; }
.pub-article .pub-sec:first-child h2 { margin-top: 0; }
.pub-article h3 { font-size: 1.12rem; font-weight: 650; margin-top: 34px; }
.pub-article p { margin-top: 16px; font-size: 1.01rem; line-height: 1.75; color: var(--lsi-ink-2); }
.pub-article ul { margin: 14px 0 0 22px; }
.pub-article ul li { margin-top: 8px; font-size: .99rem; line-height: 1.65; color: var(--lsi-ink-2); }
.pub-article .pull-stat { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 650; color: var(--lsi-teal); margin-top: 26px; line-height: 1; }
.pub-article sup.fn a { color: var(--lsi-teal); font-weight: 700; text-decoration: none; padding: 0 1px; }
.pub-article sup.fn a:hover { color: var(--lsi-navy); }
.endnotes { margin-top: 18px; padding-left: 20px; }
.endnotes li { margin-bottom: 8px; font-size: .78rem; line-height: 1.55; color: var(--lsi-grey-1); overflow-wrap: anywhere; }
.endnotes li:target { background: var(--lsi-light-teal); color: var(--lsi-navy); padding: 4px 6px; }
.fn-tip {
  position: fixed; z-index: 90; max-width: 360px; background: var(--lsi-navy); color: var(--lsi-grey-2);
  border: 1px solid var(--lsi-teal); padding: 12px 14px; font-size: .8rem; line-height: 1.55;
  box-shadow: 8px 8px 0 rgba(15,32,43,.25); display: none; overflow-wrap: anywhere;
}
.fn-tip.show { display: block; }
@media (max-width: 920px) {
  .pub-doc-grid { grid-template-columns: 1fr; }
  .pub-toc { position: static; max-height: none; border-bottom: 1px solid var(--lsi-grey-3); padding-bottom: 18px; }
}


/* Homepage featured cards: newsprint warms to full color on hover (2026-08-27) */
.feat-card .np img { transition: filter .5s ease; }
.feat-card .np::before, .feat-card .np::after { transition: opacity .5s ease; }
.feat-card:hover .np img, .feat-card:focus-within .np img { filter: none; }
.feat-card:hover .np::before, .feat-card:hover .np::after,
.feat-card:focus-within .np::before, .feat-card:focus-within .np::after { opacity: 0; }


/* Dashboards hero: teal-washed photo (Katie, 2026-08-27) */
.dash-page .page-hero .hero-bg img { filter: grayscale(.35) contrast(1.05) brightness(.85) sepia(.35) hue-rotate(140deg) saturate(1.5); opacity: .5; }
.dash-page .page-hero .hero-bg::after {
  background: linear-gradient(100deg, rgba(19,26,31,.9) 0%, rgba(13,55,60,.5) 55%, rgba(0,196,199,.16) 100%);
}


/* ============================================================
   Our Work page: pillar rows with newsprint rules (2026-08-27)
   ============================================================ */
.work-rows { margin-top: 40px; }
.work-row {
  display: grid; grid-template-columns: 190px 1fr; gap: 44px; align-items: start;
  padding: 34px 0 38px; position: relative;
  border-top: 1px solid var(--lsi-navy);
}
.work-row::before { /* newsprint double rule */
  content: ""; position: absolute; top: 3px; left: 0; right: 0; height: 1px; background: var(--lsi-navy);
}
.work-row .wr-side { display: flex; flex-direction: column; align-items: center; text-align: center; }
.work-row .wr-side .hex-ico { width: 88px; height: 98px; }
.work-row .wr-side .hex-ico [stroke="#FFFFFF"], .work-row .wr-side .hex-ico [stroke="#fff"] { stroke: var(--lsi-navy); }
.work-row .pillar-label { margin-top: 14px; color: var(--lsi-teal); font-weight: 650; font-size: .95rem;
  letter-spacing: .06em; }
.work-row h3 { font-size: clamp(1.25rem, 2.2vw, 1.7rem); font-weight: 600; }
.work-row p { margin-top: 12px; color: var(--lsi-ink-2); line-height: 1.7; max-width: 70ch; }
.work-row .more { margin-top: 14px; display: inline-block; }
@media (max-width: 760px) { .work-row { grid-template-columns: 1fr; gap: 16px; } }


/* ============================================================
   Our Work: teal statement hero, distinct from the homepage
   (IFP/FAS reference, Katie 2026-08-27)
   ============================================================ */
.work-hero {
  background:
    repeating-radial-gradient(circle at 110% 120%, rgba(15,32,43,.05) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(15,32,43,.05) 0 1px, transparent 1px 84px),
    var(--lsi-teal);
  color: var(--lsi-navy);
  padding: calc(var(--nav-h) + 90px) 0 96px;
}
.work-hero .crumbs, .work-hero .crumbs a { color: rgba(15,32,43,.72); }
.wh-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; margin-top: 34px; }
.work-statement {
  font-size: clamp(2.6rem, 5.4vw, 4.4rem); line-height: 1.12; letter-spacing: -.01em;
  color: var(--lsi-white); text-wrap: balance; margin-top: -6px;
}
.work-statement .ws-sans { font-weight: 600; }
.work-statement .ws-serif { font-family: 'EB Garamond', Georgia, serif; font-style: italic; font-weight: 500;
  font-size: 1.12em; line-height: 1; letter-spacing: -.01em; }
.wh-side p { font-size: 1.06rem; line-height: 1.8; color: var(--lsi-navy); }
.wh-links { margin-top: 30px; display: flex; gap: 28px; flex-wrap: wrap; }
.wh-links a {
  color: var(--lsi-navy); text-decoration: none; font-weight: 650; font-size: .95rem;
  border-bottom: 2px solid var(--lsi-navy); padding-bottom: 4px;
}
.wh-links a:hover { color: var(--lsi-white); border-color: var(--lsi-white); }
@media (max-width: 860px) { .wh-grid { grid-template-columns: 1fr; gap: 34px; } }


/* ============================================================
   Digital publications: elegance pass (Katie, 2026-08-27 PM)
   ============================================================ */
.read-progress { position: fixed; top: var(--nav-h); left: 0; right: 0; height: 3px;
  background: rgba(15,32,43,.08); z-index: 60; }
.read-progress span { display: block; height: 100%; width: 0; background: var(--lsi-teal); }
.pub-article h2 { font-weight: 800; letter-spacing: -.01em;
  font-size: clamp(1.45rem, 2.5vw, 1.95rem); line-height: 1.25; margin-top: 54px; }
.pub-article h3 { font-size: 1.06rem; font-weight: 600; margin-top: 34px; letter-spacing: .01em; color: var(--lsi-teal-ink, #007e82); }
.pub-article p { line-height: 1.8; }
.pub-article .pub-sec#overview > p:first-of-type { font-size: 1.13rem; line-height: 1.75; }
.pull-stat { color: var(--lsi-navy); font-weight: 700; letter-spacing: -.01em;
  font-size: clamp(2rem, 3.6vw, 2.9rem); margin: 30px 0 8px; padding-bottom: 10px;
  border-bottom: 4px solid var(--lsi-teal); display: inline-block; }
.pub-fig { border: 1px solid var(--lsi-grey-3); padding: 8px; background: var(--lsi-white);
  float: right; width: min(46%, 420px); margin: 6px 0 18px 26px; }
.pub-fig img { width: 100%; max-height: 340px; object-fit: contain; height: auto; display: block; }
.pub-sec { clear: both; }
.pub-sec::after { content: ""; display: block; clear: both; }
@media (max-width: 760px) { .pub-fig { float: none; width: 100%; margin: 20px 0; } }
.endnotes { margin-top: 20px; padding-left: 20px; }
.endnotes li { font-size: .78rem; line-height: 1.6; color: var(--lsi-grey-1); margin-bottom: 8px;
  overflow-wrap: anywhere; scroll-margin-top: calc(var(--nav-h) + 20px); }
.pub-toc .toc-head { color: var(--lsi-teal); font-weight: 650; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase; }


/* ============================================================
   Digital whitepaper standards v3 (Katie, 2026-08-27 PM)
   ============================================================ */
/* overview: distinct color-coded box; eyebrow-style kicker; bold sans dek */
.pub-overview {
  border: 1px solid var(--lsi-navy); background: var(--lsi-light-teal);
  padding: 28px 30px 30px; margin-bottom: 44px;
  box-shadow: 10px 10px 0 var(--card-accent, var(--lsi-teal));
}
.topic-eo .pub-overview { box-shadow: 10px 10px 0 #E9FF4B; }
.pub-overview .eyebrow { color: var(--lsi-navy); }
.pub-overview .pub-dek { margin-top: 16px; font-family: 'EB Garamond', Georgia, serif; font-style: italic;
  font-weight: 500; font-size: 1.28rem; line-height: 1.5;
  color: var(--lsi-navy); border: 0; padding: 0; background: none; }
.pub-overview > p:last-child { margin-top: 12px; }
.pub-article .pub-overview + .pub-sec h2 { margin-top: 0; }
/* branded in-line callout panels (re-rendered from print text boxes) */
.pub-box {
  border-left: 4px solid var(--card-accent, var(--lsi-teal)); background: var(--lsi-light-teal);
  padding: 14px 18px; margin: 22px 0; font-size: .92rem; max-width: 640px;
}
.pub-box p { line-height: 1.6; }
.topic-eo .pub-box { border-left-color: #E9FF4B; }
.pub-box p { margin-top: 10px; }
.pub-box p:first-child { margin-top: 0; }
.pub-box ul { margin: 8px 0 0 18px; padding: 0; }
/* nested bullets */
.pub-article ul { margin: 14px 0 0 20px; padding: 0; }
.pub-article ul li { margin-top: 8px; line-height: 1.7; }
.pub-article ul ul { margin-top: 6px; }
.pub-article ul ul li { margin-top: 5px; font-size: .97em; }


/* pubs: color-delineated sections + one-line TOC that fits (2026-08-27 PM8) */
/* Major section break: newsprint double hairline above the title (no accent underline,
   so section titles never compete with the accent finding bars) */
.pub-article .pub-sec > h2 {
  color: var(--lsi-navy); position: relative; padding-top: 26px;
}
.pub-article .pub-sec > h2::before { content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 7px; border-top: 1px solid var(--lsi-navy); border-bottom: 1px solid var(--lsi-navy); opacity: .8; }

.pub-article h3::before {
  content: ""; display: inline-block; width: 10px; height: 11px; margin-right: 9px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--card-accent, var(--lsi-teal));
}
.pub-toc li a { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: block; }


/* fastidious pubs round (Katie, 2026-08-27 PM10) */
.pub-cap { font-size: .76rem; color: var(--lsi-grey-1); line-height: 1.5; margin-top: 8px;
  padding-top: 6px; border-top: 1px solid var(--lsi-grey-3); font-weight: 500; }
p.pub-cap { border-top: 0; }
.pub-table-wrap { margin: 28px 0; overflow-x: auto; border: 1px solid var(--lsi-navy); }
.pub-table { width: 100%; border-collapse: collapse; font-size: .82rem; line-height: 1.5; }
.pub-table th { background: var(--lsi-navy); color: var(--lsi-white); text-align: left;
  padding: 9px 12px; font-weight: 650; letter-spacing: .04em; font-size: .74rem; text-transform: uppercase; }
.pub-table td { padding: 8px 12px; border-top: 1px solid var(--lsi-grey-3); vertical-align: top; color: var(--lsi-ink-2); }
.pub-table tbody tr:nth-child(even) { background: var(--lsi-light-teal); }
.topic-eo .pub-table tbody tr:nth-child(even) { background: #FBFFE0; }
.pub-table-wrap .pub-cap { padding: 8px 12px; border-top: 1px solid var(--lsi-grey-3); display: block; }
/* chapter numbers: TOC + section headings */
.ch-num { display: inline-grid; place-items: center; width: 34px; height: 38px; margin-right: 12px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--card-accent, var(--lsi-teal)); color: var(--lsi-navy);
  font-family: var(--font-sans, inherit); font-size: 1rem; font-weight: 700; vertical-align: -6px; }
.pub-toc .toc-ch > a { font-weight: 650; color: var(--lsi-navy); }
.pub-toc .toc-num { display: inline-grid; place-items: center; width: 16px; height: 18px; margin-right: 7px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--card-accent, var(--lsi-teal)); color: var(--lsi-navy); font-size: .62rem; font-weight: 700; }
.pub-toc .toc-ch ol { border-left: 0; margin-left: 20px; }


/* ============================================================
   Editorial punch-list round (Katie, 2026-08-27 PM11)
   ============================================================ */
:root { --lsi-teal-ink: #007E82; --paper: #F7F5EF; }
.pub-page .page-hero h1 { font-weight: 800; }
.pub-doc { background: var(--paper); }
.pub-page .pub-byline { color: var(--lsi-grey-2); margin-top: 14px; font-weight: 600; }
.pub-overview { background: var(--lsi-white); }
.pub-fig, .pub-table-wrap { background: var(--lsi-white); }
.ch-head { text-align: left; display: flex; align-items: center; gap: 14px; }
.ch-head .ch-num { margin-right: 0; flex: none; }
/* stat callout cards */
.stat-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 30px 0; clear: both; }
.stat-card { flex: 1 1 180px; max-width: 300px; background: var(--lsi-white);
  border: 1px solid var(--lsi-navy); border-top: 5px solid var(--card-accent, var(--lsi-teal));
  padding: 18px 20px 20px; }
.topic-eo .stat-card { border-top-color: #E9FF4B; }
.stat-card .sc-num { font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.5rem);
  color: var(--lsi-teal-ink); letter-spacing: -.01em; line-height: 1.05; }
.topic-eo .stat-card .sc-num { color: var(--lsi-navy); }
.stat-card .sc-cap { margin-top: 8px; font-size: .84rem; line-height: 1.55; color: var(--lsi-ink-2); }
/* designed feature lists (rebuilt from print callout panels) */
.feature-list { list-style: none; margin: 26px 0; padding: 0; clear: both;
  border: 1px solid var(--lsi-navy); background: var(--lsi-white); }
.feature-list > li { padding: 14px 18px 14px 46px; position: relative; border-top: 1px solid var(--lsi-grey-3); font-size: .95rem; line-height: 1.65; }
.feature-list > li:first-child { border-top: 0; }
.feature-list > li::before { content: ""; position: absolute; left: 18px; top: 18px; width: 12px; height: 13px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--card-accent, var(--lsi-teal)); }
.feature-list .fl-title { display: block; font-weight: 700; color: var(--lsi-navy); }
.feature-list.fl-titled::after { display: none; }
.fl-head { margin: 30px 0 -16px; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lsi-teal-ink); clear: both; }
.topic-eo .fl-head { color: var(--lsi-navy); }


.pub-fig--wide { float: none; width: 100%; max-width: 760px; margin: 28px auto; }
.pub-fig--wide img { max-height: none; }


/* ============================================================
   Digital paper v5 — hand-crafted publication components
   (Rural Business Succession rebuild, 2026-08-28)
   ============================================================ */

/* Finding statement: the print edition's teal-bar bold subhead */
.pub-article h3.pub-finding { margin-top: 44px; font-size: 1.14rem; font-weight: 700;
  line-height: 1.45; color: var(--lsi-navy); letter-spacing: .002em; max-width: 46em; }
.pub-article h3.pub-finding::before { content: ""; display: block; clip-path: none;
  width: 64px; height: 7px; margin: 0 0 14px; background: var(--card-accent, var(--lsi-teal)); }
.pub-article h3.pub-finding + p { margin-top: 14px; }
.pub-article .pub-sec > h2 + h3.pub-finding { margin-top: 30px; }

/* Definition callout: parcel-ledger styling (survey-tick ruler, hatched hex, tract-grid corner) */
.pub-def { position: relative; border: 1px solid var(--lsi-navy); background: var(--lsi-white);
  padding: 22px 26px 22px; margin: 30px 0; max-width: 700px; clear: both; overflow: hidden; }
.pub-def::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 8px;
  background:
    repeating-linear-gradient(90deg, var(--lsi-navy) 0 1px, transparent 1px 14px) left top / 100% 4px no-repeat,
    repeating-linear-gradient(90deg, var(--lsi-navy) 0 1px, transparent 1px 70px) left top / 100% 8px no-repeat;
  opacity: .5; }
.pub-def::after { content: ""; position: absolute; right: -1px; bottom: -1px; width: 130px; height: 92px;
  background:
    linear-gradient(to left, rgba(15,32,43,.11) 1px, transparent 1px) right bottom / 18px 100% repeat-x,
    linear-gradient(to top, rgba(15,32,43,.11) 1px, transparent 1px) right bottom / 100% 18px repeat-y;
  -webkit-mask-image: linear-gradient(215deg, #000 25%, transparent 75%);
  mask-image: linear-gradient(215deg, #000 25%, transparent 75%);
  pointer-events: none; }
.pub-def .def-head { display: flex; align-items: center; gap: 10px; margin: 0; }
.pub-def .def-hex { flex: none; width: 18px; height: 20px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.9) 0 1px, transparent 1px 4px),
    var(--card-accent, var(--lsi-teal)); }
.pub-def .def-label { font-size: .66rem; font-weight: 750; letter-spacing: .2em;
  text-transform: uppercase; color: var(--lsi-teal-ink); }
.topic-eo .pub-def .def-label { color: var(--lsi-navy); }
.pub-def .def-term { margin-top: 12px; font-size: 1.06rem; font-weight: 800; color: var(--lsi-navy); }
.pub-def p { margin-top: 8px; font-size: .97rem; line-height: 1.7; position: relative; }
.pub-def .def-head, .pub-def .def-term { position: relative; }

/* Stat callout: print-parity hatched frame + teal cap, centered */
.stat-row { justify-content: center; }
.stat-card { flex: 1 1 220px; max-width: 380px; text-align: center; position: relative;
  border: 10px solid transparent; border-top: 8px solid var(--card-accent, var(--lsi-teal));
  background: linear-gradient(var(--lsi-white), var(--lsi-white)) padding-box,
    repeating-linear-gradient(135deg, rgba(15,32,43,.16) 0 1px, var(--lsi-white) 1px 7px) border-box;
  box-shadow: 0 0 0 1px var(--lsi-navy); padding: 22px 24px 20px; }
.topic-eo .stat-card { border-top-color: #E9FF4B; }
.stat-card .sc-num { font-weight: 800; font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  color: var(--lsi-navy); letter-spacing: -.01em; line-height: 1.05; }
.topic-eo .stat-card .sc-num { color: var(--lsi-navy); }
.stat-card .sc-cap { margin-top: 8px; font-size: .86rem; line-height: 1.55; color: var(--lsi-ink-2); }

/* Figure block: kicker + title above, rule + caption/source below */
.pub-figure { margin: 36px 0; clear: both; border: 1px solid var(--lsi-grey-3);
  background: var(--lsi-white); padding: 22px 26px 16px; }
.pub-figure .fig-kicker { margin: 0; font-size: .64rem; font-weight: 750; letter-spacing: .22em;
  text-transform: uppercase; color: var(--lsi-teal-ink); }
.topic-eo .pub-figure .fig-kicker { color: var(--lsi-navy); }
.pub-figure .fig-title { margin: 4px 0 0; font-size: 1.04rem; font-weight: 800; color: var(--lsi-navy); }
.pub-figure .fig-body { margin-top: 18px; }
.pub-figure .fig-body img { width: 100%; height: auto; display: block; }
.pub-figure figcaption, .pub-figure .fig-src { margin-top: 16px; padding-top: 8px;
  border-top: 1px solid var(--lsi-grey-3); font-size: .76rem; line-height: 1.55;
  color: var(--lsi-grey-1); font-weight: 500; }

/* Native stacked bar chart */
.pub-chart { display: flex; gap: 10px; margin-top: 20px; }
.pc-y { display: flex; flex-direction: column; justify-content: space-between; height: 240px;
  font-size: .66rem; color: var(--lsi-grey-1); text-align: right; padding-right: 6px;
  transform: translateY(.45em); flex: none; }
.pc-main { flex: 1; min-width: 0; }
.pc-plot { height: 240px; display: flex; justify-content: space-evenly; align-items: flex-end;
  border-bottom: 2px solid var(--lsi-navy);
  background-image: linear-gradient(to top, var(--lsi-grey-3) 1px, transparent 1px);
  background-size: 100% 40px; background-position: 0 0; }
.pc-bar { width: clamp(72px, 18vw, 110px); display: flex; flex-direction: column;
  justify-content: flex-end; height: 100%; }
.pc-seg { display: grid; place-items: center; font-weight: 700; font-size: .92rem; min-height: 0; }
.pc-seg--65 { background: var(--lsi-teal); color: var(--lsi-white); }
.pc-seg--5564 { background: var(--lsi-light-teal); color: var(--lsi-navy); }
.pc-xrow { display: flex; justify-content: space-evenly; margin-top: 8px; }
.pc-xrow span { width: clamp(72px, 18vw, 110px); text-align: center; font-size: .78rem;
  font-weight: 650; color: var(--lsi-navy); }
.pc-legend { display: flex; justify-content: center; gap: 24px; margin-top: 16px;
  font-size: .78rem; color: var(--lsi-ink-2); }
.pc-legend .sw { display: inline-block; width: 12px; height: 12px; margin-right: 7px;
  vertical-align: -1px; border: 1px solid rgba(15,32,43,.25); }
.pc-legend .sw--5564 { background: var(--lsi-light-teal); }
.pc-legend .sw--65 { background: var(--lsi-teal); border-color: var(--lsi-teal); }

/* Highlighted text: print-parity brand-yellow marker */
.pub-article mark.hl { background: #F2FF66; color: var(--lsi-navy); padding: .04em .14em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone; }

/* Grouped bar chart + pie extensions */
.pc-plot--g { justify-content: space-around; }
.pc-group { display: flex; align-items: flex-end; gap: 8px; height: 100%; }
.pc-vbar { width: clamp(28px, 6vw, 46px); display: flex; flex-direction: column;
  justify-content: flex-end; height: 100%; }
.pc-val { font-size: .72rem; font-weight: 700; color: var(--lsi-navy); text-align: center;
  margin-bottom: 3px; }
.pc-fill--a { background: var(--lsi-teal); }
.pc-fill--b { background: var(--lsi-navy); }
.pc-xrow--g { justify-content: space-around; }
.pc-xrow--g span { flex: 1 1 0; width: auto; font-size: .74rem; line-height: 1.3; padding: 0 6px; }
.pc-legend .sw--teal { background: var(--lsi-teal); border-color: var(--lsi-teal); }
.pc-legend .sw--navy { background: var(--lsi-navy); border-color: var(--lsi-navy); }
.sc-pie { width: 112px; height: 112px; border-radius: 50%; margin: 4px auto 12px;
  background: conic-gradient(var(--lsi-teal) 0 187.2deg, var(--lsi-navy) 187.2deg 360deg);
  box-shadow: 0 0 0 1px rgba(15,32,43,.25); }

/* Figure internals: side-by-side columns, explanatory notes, formula line */
.pub-figure .fig-cols { display: flex; gap: 28px; flex-wrap: wrap; align-items: flex-start; }
.pub-figure .fig-cols > * { flex: 1 1 300px; min-width: 0; }
.pub-figure .fig-body p { font-size: .93rem; line-height: 1.65; margin-top: 12px; }
.pub-figure .fig-body p:first-child { margin-top: 0; }
.pub-figure .fig-body .pub-table-wrap { margin: 0; }
.pub-formula { text-align: center; font-weight: 700; color: var(--lsi-navy);
  margin: 18px 0; font-size: 1rem; letter-spacing: .01em; }
.pub-table tfoot td { background: var(--lsi-teal); color: var(--lsi-navy); font-weight: 800;
  border-top: 2px solid var(--lsi-navy); }

/* Hero chapter-number lockup: hex chip vertically centered with the title */
.page-hero h1.ch-head { display: flex; align-items: center; gap: 18px; text-align: left; }
.page-hero h1 .ch-num { flex: none; width: 46px; height: 51px; font-size: 1.25rem; margin-right: 0; }

/* Ordered lists in article prose (endnotes excluded) */
.pub-article ol:not(.endnotes) { margin: 16px 0 0 24px; padding: 0; }
.pub-article ol:not(.endnotes) > li { margin-top: 10px; line-height: 1.7; color: var(--lsi-ink-2); padding-left: 4px; }
.pub-article ol:not(.endnotes) > li::marker { font-weight: 700; color: var(--lsi-navy); }

/* Minor run-in headings (fourth level) */
.pub-article h4 { margin: 26px 0 0; font-size: .95rem; font-weight: 750; color: var(--lsi-navy); letter-spacing: .01em; }
.pub-article h4 + p { margin-top: 8px; }

/* Playbook chapter hub list + chapter pager */
.chapter-list { list-style: none; margin: 26px 0 0; padding: 0; }
.chapter-list li { border-top: 1px solid var(--lsi-grey-3); }
.chapter-list li:first-child { border-top: 0; }
.chapter-list a { display: flex; align-items: center; gap: 16px; padding: 14px 10px;
  text-decoration: none; color: var(--lsi-navy); }
.chapter-list a:hover { background: var(--lsi-light-teal); }
.topic-eo .chapter-list a:hover { background: #FBFFE0; }
.chapter-list .ch-num { flex: none; }
.chapter-list .cl-title { flex: 1; font-weight: 650; font-size: 1.02rem; line-height: 1.35; }
.chapter-list .cl-meta { flex: none; font-size: .78rem; color: var(--lsi-grey-1); }
.chapter-list .cl-arrow { flex: none; color: var(--card-accent, var(--lsi-teal)); font-weight: 800; }
.topic-eo .chapter-list .cl-arrow { color: var(--lsi-teal-ink); }
.pub-pager { display: flex; gap: 14px; margin-top: 48px; padding-top: 18px;
  border-top: 1px solid var(--lsi-navy); clear: both; flex-wrap: wrap; }
.pub-pager a { flex: 1 1 200px; border: 1px solid var(--lsi-navy); background: var(--lsi-white);
  padding: 12px 16px; text-decoration: none; color: var(--lsi-navy); min-width: 0; }
.pub-pager a:hover { background: var(--lsi-light-teal); }
.pub-pager .pp-label { display: block; font-size: .66rem; font-weight: 750; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lsi-teal-ink); }
.pub-pager .pp-title { display: block; margin-top: 4px; font-weight: 700; font-size: .95rem;
  line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pub-pager a.pp-next { text-align: right; }

/* Spectrum / continuum diagram (native rebuild of arrow-axis figures) */
.pub-spectrum { margin-top: 20px; padding: 4px 2px 2px; }
.ps-ends { display: flex; justify-content: space-between; gap: 20px; font-size: .76rem;
  font-weight: 700; color: var(--lsi-navy); line-height: 1.35; }
.ps-ends span:last-child { text-align: right; }
.ps-axis { position: relative; height: 2px; background: var(--lsi-navy); margin: 20px 10px 16px; }
.ps-axis::before, .ps-axis::after { content: ""; position: absolute; top: -4px;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent; }
.ps-axis::before { left: -9px; border-right: 9px solid var(--lsi-navy); }
.ps-axis::after { right: -9px; border-left: 9px solid var(--lsi-navy); }
.ps-labels { display: flex; gap: 8px; }
.ps-labels span { flex: 1 1 0; text-align: center; font-size: .74rem; line-height: 1.35;
  color: var(--lsi-ink-2); }
@media (max-width: 700px) { .ps-labels { flex-wrap: wrap; } .ps-labels span { flex: 1 1 30%; } }


/* 535 report search */
#find-report, section:has(.rpt-search) { position: relative; z-index: 30; }
.rpt-search { position: relative; z-index: 31; max-width: 640px; }
.rpt-search input { width: 100%; padding: 14px 18px; font: inherit; font-size: 1rem;
  border: 1px solid var(--lsi-navy); border-top: 4px solid var(--lsi-teal);
  background: var(--lsi-white); color: var(--lsi-navy); }
.rpt-search input:focus { outline: 2px solid var(--lsi-teal); outline-offset: -1px; }
.rpt-results { position: absolute; z-index: 40; left: 0; right: 0; top: 100%;
  background: var(--lsi-white); border: 1px solid var(--lsi-navy); border-top: 0;
  max-height: 420px; overflow: auto; display: none; box-shadow: 8px 8px 0 rgba(15,32,43,.12); }
.rpt-results.open { display: block; }
.rpt-results a { display: flex; gap: 12px; align-items: baseline; padding: 11px 16px;
  text-decoration: none; color: var(--lsi-navy); border-top: 1px solid var(--lsi-grey-3); }
.rpt-results a:first-child { border-top: 0; }
.rpt-results a:hover, .rpt-results a.sel { background: var(--lsi-light-teal); }
.rpt-results .rr-type { flex: none; font-size: .6rem; font-weight: 750; letter-spacing: .14em;
  text-transform: uppercase; color: var(--lsi-white); background: var(--lsi-navy); padding: 2px 7px; }
.rpt-results .rr-type--pdf { background: var(--lsi-teal-ink); }
.rpt-results .rr-label { font-weight: 650; font-size: .95rem; }
.rpt-results .rr-sub { margin-left: auto; font-size: .72rem; color: var(--lsi-grey-1); white-space: nowrap; }
.rpt-none { padding: 12px 16px; font-size: .85rem; color: var(--lsi-grey-1); }

/* 535 directory */
.dir-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.dir-jump a { display: inline-grid; place-items: center; min-width: 42px; height: 34px; padding: 0 9px;
  border: 1px solid var(--lsi-navy); background: var(--lsi-white); text-decoration: none;
  color: var(--lsi-navy); font-weight: 700; font-size: .8rem; }
.dir-jump a:hover { background: var(--lsi-teal); }
.dir-state { margin-top: 42px; padding-top: 24px; border-top: 1px solid var(--lsi-navy);
  scroll-margin-top: calc(var(--nav-h) + 16px); }
.dir-state > h2 { font-size: 1.35rem; font-weight: 800; }
.dir-state .dir-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 10px; }
.dir-state .dir-meta a { font-weight: 650; font-size: .9rem; color: var(--lsi-teal-ink);
  text-decoration: none; border-bottom: 2px solid var(--lsi-teal); padding-bottom: 2px; }
.dir-state .dir-meta a:hover { color: var(--lsi-navy); }
.dir-label { margin-top: 18px; font-size: .68rem; font-weight: 750; letter-spacing: .18em;
  text-transform: uppercase; color: var(--lsi-grey-1); }
.dir-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.dir-links a { border: 1px solid var(--lsi-grey-2); background: var(--lsi-white); padding: 6px 12px;
  font-size: .85rem; font-weight: 650; color: var(--lsi-navy); text-decoration: none; }
.dir-links a:hover { border-color: var(--lsi-teal); background: var(--lsi-light-teal); }

/* 535 state pages: district download tiles */
.dist-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; margin-top: 26px; }
.dist-grid a { display: block; border: 1px solid var(--lsi-navy); background: var(--lsi-white);
  padding: 14px 16px; text-decoration: none; color: var(--lsi-navy); font-weight: 650; font-size: .95rem;
  border-top: 4px solid var(--lsi-teal); }
.dist-grid a .dg-sub { display: block; margin-top: 4px; font-size: .74rem; font-weight: 500; color: var(--lsi-grey-1); }
.dist-grid a:hover { background: var(--lsi-light-teal); }

/* External commentary cards: hex mark keeps the cover rhythm (QA round 2) */
.pub-card--ext .pc-body::before {
  content: "\2197"; display: grid; place-items: center;
  width: 34px; height: 38px; margin-bottom: 12px;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  background: var(--slats-light), var(--lsi-light-teal);
  color: var(--lsi-teal-ink); font-weight: 700; font-size: 1.05rem;
}

/* Cite this paper */
.pub-cite { margin-top: 42px; border: 1px solid rgba(15,32,43,.16); background: transparent; }
.pub-cite .cite-label { display: flex; align-items: center; gap: 10px; margin: 0;
  padding: 12px 18px; border-bottom: 1px solid rgba(15,32,43,.16);
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--lsi-teal-ink); }
.pub-cite .cite-label::before { content: ""; width: 12px; height: 13px; flex: 0 0 auto;
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); background: var(--lsi-teal); }
.pub-cite .cite-row { display: grid; grid-template-columns: 74px 1fr auto; gap: 14px; align-items: start;
  padding: 14px 18px; }
.pub-cite .cite-row + .cite-row { border-top: 1px dashed rgba(15,32,43,.14); }
.pub-cite .cite-style { font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--lsi-grey-1); padding-top: 3px; }
.pub-cite .cite-text { margin: 0; font-size: .88rem; line-height: 1.55; color: var(--lsi-ink-2); overflow-wrap: anywhere; }
.pub-cite .cite-copy { border: 1px solid var(--lsi-navy); background: transparent; color: var(--lsi-navy);
  font: 600 .74rem/1 var(--lsi-font); letter-spacing: .08em; text-transform: uppercase;
  padding: 7px 12px; cursor: pointer; }
.pub-cite .cite-copy:hover { background: var(--lsi-navy); color: var(--lsi-white); }
@media (max-width: 640px) { .pub-cite .cite-row { grid-template-columns: 1fr; gap: 8px; } }

.hp { display: none !important; }

/* Hero choreography: one parcel crossfades to the benched clip every 5s (2026-09-01) */
.hero-parcels .mcell--media video { transition: opacity 1.4s ease, filter 4.6s ease-in-out; }
.hero-parcels .mcell--media video.is-back { opacity: 0; }
/* ============================================================
   Pillar icons — the Working Set (locked 2026-09-08)
   Looping SVG tiles. site.js adds .go when a tile scrolls into
   view and replays on hover; without .go (or under reduced
   motion) each tile shows its finished state.
   ============================================================ */
.ptile { width: 132px; height: 132px; background: var(--lsi-light-teal); position: relative; color: var(--lsi-navy); }
.ptile::after { content: ""; position: absolute; top: 0; right: 0; width: 26px; height: 26px;
  background: repeating-linear-gradient(45deg, rgba(15,32,43,.22) 0 1px, transparent 1px 5px); }
.ptile svg { display: block; width: 100%; height: 100%; overflow: visible; }
.ptile--dark { background: rgba(219,235,235,.1); color: var(--lsi-white); }
.ptile--dark::after { background: repeating-linear-gradient(45deg, rgba(255,255,255,.28) 0 1px, transparent 1px 5px); }
.hex-card .ptile { width: 104px; height: 104px; margin-bottom: 20px; }
.ptile .iN { fill: currentColor; }
.ptile .iT { fill: var(--lsi-teal); }
.ptile .sT { stroke: var(--lsi-teal); }
.ptile .ink { fill: var(--lsi-navy); }
.ptile .pgw { fill: #fff; }
.ptile .g1 { fill: var(--lsi-grey-1); }
.ptile .g2 { fill: var(--lsi-grey-2); }
.ptile .p1line { transform-box: fill-box; transform-origin: left center; }
.ptile .p1seal, .ptile .d2h, .ptile .d2hfa, .ptile .d2hfb, .ptile .d2hfc, .ptile .c3c { transform-box: fill-box; transform-origin: center; }

@media (prefers-reduced-motion: no-preference) {
  .ptile.go .p1pg { animation: p1pg 6s infinite; }
  .ptile.go .p1line { animation: var(--kf) 6s infinite; }
  .ptile.go .p1seal { animation: p1seal 6s infinite; }
  .ptile.go .d2h { animation: var(--kf) 6.5s infinite; }
  .ptile.go .d2hfa { animation: var(--kf) 6.5s infinite, d2fA 6.5s infinite; }
  .ptile.go .d2hfb { animation: var(--kf) 6.5s infinite, d2fB 6.5s infinite; }
  .ptile.go .d2hfc { animation: var(--kf) 6.5s infinite, d2fC 6.5s infinite; }
  .ptile.go .d2t { stroke-dasharray: 120; animation: d2t 6.5s infinite; }
  .ptile.go .c3d { animation: var(--kf) 7s infinite; }
  .ptile.go .c3ring { animation: c3ring 7s infinite; }
  .ptile.go .c3c { animation: c3c 7s infinite; }
  .ptile.go .c3g { animation: c3breathe 7s infinite; transform-origin: 75px 75px; }
}
@keyframes p1pg { 0%,2%{opacity:0} 7%,88%{opacity:1} 94%,100%{opacity:0} }
@keyframes p1l1 { 0%,4%{transform:scaleX(0);opacity:1} 11%,87%{transform:scaleX(1);opacity:1} 93%,100%{transform:scaleX(1);opacity:0} }
@keyframes p1l2 { 0%,12%{transform:scaleX(0);opacity:1} 19%,87%{transform:scaleX(1);opacity:1} 93%,100%{transform:scaleX(1);opacity:0} }
@keyframes p1l3 { 0%,20%{transform:scaleX(0);opacity:1} 27%,87%{transform:scaleX(1);opacity:1} 93%,100%{transform:scaleX(1);opacity:0} }
@keyframes p1l4 { 0%,28%{transform:scaleX(0);opacity:1} 35%,87%{transform:scaleX(1);opacity:1} 93%,100%{transform:scaleX(1);opacity:0} }
@keyframes p1l5 { 0%,36%{transform:scaleX(0);opacity:1} 43%,87%{transform:scaleX(1);opacity:1} 93%,100%{transform:scaleX(1);opacity:0} }
@keyframes p1seal {
  0%,50% { opacity:0; transform:scale(1.7); }
  56%    { opacity:1; transform:scale(.94); }
  60%    { transform:scale(1.05); }
  64%,87%{ opacity:1; transform:scale(1); }
  93%,100%{ opacity:0; transform:scale(1); }
}
@keyframes d2h1 { 0%,3%{opacity:0;transform:scale(0)} 8%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2h2 { 0%,6.5%{opacity:0;transform:scale(0)} 11.5%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2h3 { 0%,10%{opacity:0;transform:scale(0)} 15%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2h4 { 0%,13.5%{opacity:0;transform:scale(0)} 18.5%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2h5 { 0%,17%{opacity:0;transform:scale(0)} 22%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2h6 { 0%,20.5%{opacity:0;transform:scale(0)} 25.5%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2h7 { 0%,24%{opacity:0;transform:scale(0)} 29%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2h8 { 0%,27.5%{opacity:0;transform:scale(0)} 32.5%,87%{opacity:1;transform:scale(1)} 93%,100%{opacity:0;transform:scale(1)} }
@keyframes d2fA { 0%,36%{fill:currentColor} 41%,100%{fill:var(--lsi-teal)} }
@keyframes d2fB { 0%,48%{fill:currentColor} 53%,100%{fill:var(--lsi-teal)} }
@keyframes d2fC { 0%,55%{fill:currentColor} 60%,100%{fill:var(--lsi-teal)} }
@keyframes d2t {
  0%,28% { stroke-dashoffset:120; opacity:1; }
  54%    { stroke-dashoffset:0; }
  87%    { stroke-dashoffset:0; opacity:1; }
  93%,100%{ stroke-dashoffset:0; opacity:0; }
}
@keyframes c3d1 { 0%,4%{opacity:0;transform:translate(0,-46px)} 16%,74%{opacity:1;transform:none} 86%,100%{opacity:0;transform:translate(0,-46px)} }
@keyframes c3d2 { 0%,7%{opacity:0;transform:translate(52px,-28px)} 19%,74%{opacity:1;transform:none} 86%,100%{opacity:0;transform:translate(52px,-28px)} }
@keyframes c3d3 { 0%,10%{opacity:0;transform:translate(52px,28px)} 22%,74%{opacity:1;transform:none} 86%,100%{opacity:0;transform:translate(52px,28px)} }
@keyframes c3d4 { 0%,13%{opacity:0;transform:translate(0,46px)} 25%,74%{opacity:1;transform:none} 86%,100%{opacity:0;transform:translate(0,46px)} }
@keyframes c3d5 { 0%,16%{opacity:0;transform:translate(-52px,28px)} 28%,74%{opacity:1;transform:none} 86%,100%{opacity:0;transform:translate(-52px,28px)} }
@keyframes c3d6 { 0%,19%{opacity:0;transform:translate(-52px,-28px)} 31%,74%{opacity:1;transform:none} 86%,100%{opacity:0;transform:translate(-52px,-28px)} }
@keyframes c3ring { 0%,30%{opacity:0} 40%,72%{opacity:.45} 82%,100%{opacity:0} }
@keyframes c3c { 0%,24%{opacity:0;transform:scale(0)} 32%,78%{opacity:1;transform:scale(1)} 88%,100%{opacity:0;transform:scale(0)} }
@keyframes c3breathe { 0%,44%{transform:scale(1)} 52%{transform:scale(1.05)} 60%,100%{transform:scale(1)} }
