/*
 * iAlert About centerpiece styles. v9 (TEMPLATE).
 *
 * See centerpiece.php docblock for re-scope history. v9 introduces
 * photo hero, mission band, operational stat band, customer-voice
 * pull-quotes, heritage milestone timeline, expanded founder bio,
 * NWS data-pipeline credential strip, and a photo-backed subscribe
 * band. Includes placeholder visual treatment (dashed red outline
 * + corner pill) so reviewers can see what's draft.
 *
 * Section order (v9):
 *   1.  Hero photo            (full-bleed storm, dark gradient overlay)
 *   2.  Mission band          (cream, oversized centered statement)
 *   3.  Stat band             (white, 4 operational metrics)
 *   4.  What we do            (cream, 2-col push/pull row)
 *   5.  Customer proof        (white, 3 labeled logo bands)
 *   6.  Customer voice        (cream, 2 testimonial pull-quotes)
 *   7.  Heritage timeline     (white, 5 milestone anchors)
 *   8.  Founder editorial     (cream, expanded bio + portrait + quote)
 *   9.  NWS data pipeline     (navy, 4-source credential strip)
 *  10.  Subscribe band        (photo backdrop + saturated overlay)
 */

.ialert-cp {
  --cp-content-w: 1180px;
  --cp-prose-w: 760px;
  --cp-pad-y: 96px;
  --cp-pad-y-tight: 64px;
  --cp-pad-x: 24px;
  --cp-rule: rgba(23, 26, 31, 0.14);
  --cp-rule-soft: rgba(23, 26, 31, 0.08);
  --cp-rule-on-dark: rgba(244, 241, 234, 0.18);
  --cp-rule-on-dark-soft: rgba(244, 241, 234, 0.10);
  --cp-light-surface: #faf8f3;
  --cp-placeholder: #c52532;
  font-family: var(--ialert-font-display);
  color: var(--ialert-text);
  background: var(--ialert-bg);
}
.ialert-cp *,
.ialert-cp *::before,
.ialert-cp *::after {
  box-sizing: border-box;
}

.ialert-cp__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}

/* Universal CTA, shared with landing-page/centerpiece.css. */
.ialert-cp-btn {
  display: inline-flex;
  align-items: center;
  background: var(--ialert-red);
  color: var(--ialert-on-dark);
  font-family: var(--ialert-font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 28px;
  text-decoration: none;
  border: 0;
}
.ialert-cp-btn:hover { background: #a91823; }

/* =========================================================================
   PLACEHOLDER VISUAL TREATMENT
   Blocks carrying .is-placeholder render clean by default so stakeholders
   see the page as it would render to a customer. The dashed red outline
   and "PLACEHOLDER" pill only appear when the Developer Notes overlay
   is toggled on (body.is-dev-notes-on). Used for the stat-band 4th cell,
   both customer-voice quotes, the two timeline nodes with [YYYY] /
   [headline] copy, and the founder bio block. Remove .is-placeholder
   when verified content lands.
   ========================================================================= */

body.is-dev-notes-on .ialert-cp .is-placeholder {
  position: relative;
  outline: 1px dashed var(--cp-placeholder);
  outline-offset: 6px;
}
body.is-dev-notes-on .ialert-cp .is-placeholder::before {
  content: "PLACEHOLDER";
  position: absolute;
  top: -16px;
  right: 0;
  background: var(--cp-placeholder);
  color: #fff;
  font-family: var(--ialert-font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
  pointer-events: none;
}

/* =========================================================================
   1. EDITORIAL PAGE HEADER
   Solid navy, no photo. Left-aligned with a red vertical accent bar on
   the H1. Compact height — differentiates from the full-bleed photo hero
   on the home page while staying on-brand.
   ========================================================================= */

.ialert-cp-hero {
  background: var(--ialert-navy);
  color: var(--ialert-on-dark);
  padding: 72px 0 80px;
  border-bottom: 3px solid var(--ialert-red);
}
.ialert-cp-hero__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-hero__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 20px;
}
.ialert-cp-hero__line {
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.016em;
  color: var(--ialert-on-dark);
  margin: 0 0 28px;
  max-width: 760px;
  padding-left: 20px;
  border-left: 4px solid var(--ialert-red);
}
.ialert-cp-hero__body {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(244, 241, 234, 0.78);
  margin: 0;
  max-width: 680px;
  padding-left: 24px;
}
.ialert-cp-hero__body strong {
  color: var(--ialert-on-dark);
  font-weight: 600;
}

/* =========================================================================
   2. MISSION BAND
   Cream surface, oversized centered statement.
   ========================================================================= */

.ialert-cp-mission {
  background: var(--cp-light-surface);
  padding: 96px 0;
  text-align: center;
}
.ialert-cp-mission__inner {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-mission__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 28px;
}
.ialert-cp-mission__line {
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ialert-text);
  margin: 0;
}

/* =========================================================================
   3. STAT BAND
   White surface, 4 operational metrics in a row, bottom rule per cell
   for editorial structure.
   ========================================================================= */

.ialert-cp-stats {
  background: var(--ialert-bg);
  padding: var(--cp-pad-y) 0;
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-stats__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-stats__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ialert-cp-stats__cell {
  padding: 8px 32px 0 0;
  border-top: 2px solid var(--ialert-text);
  padding-top: 24px;
}
.ialert-cp-stats__cell + .ialert-cp-stats__cell {
  padding-left: 32px;
  padding-right: 0;
}
.ialert-cp-stats__cell + .ialert-cp-stats__cell:not(:last-child) {
  padding-right: 32px;
}
.ialert-cp-stats__figure {
  font-weight: 800;
  font-size: clamp(36px, 4.0vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ialert-text);
  margin: 0 0 16px;
}
.ialert-cp-stats__figure span {
  color: var(--ialert-red);
  font-weight: 800;
}
.ialert-cp-stats__label {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ialert-text);
  margin: 0 0 12px;
}
.ialert-cp-stats__caption {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ialert-text);
  opacity: 0.78;
  margin: 0;
}

/* =========================================================================
   4. WHAT WE DO  (v8 patterns, unchanged from prior file)
   ========================================================================= */

.ialert-cp-pitch {
  padding: var(--cp-pad-y) 0;
  background: var(--cp-light-surface);
}
.ialert-cp-pitch__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-pitch__intro {
  max-width: 880px;
  margin: 0 0 72px;
}
.ialert-cp-pitch__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 24px;
}
.ialert-cp-pitch__heading {
  font-weight: 700;
  font-size: clamp(28px, 3.0vw, 42px);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ialert-text);
  margin: 0 0 28px;
  max-width: 820px;
}
.ialert-cp-pitch__lede {
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.6;
  color: var(--ialert-text);
  margin: 0;
  font-weight: 400;
  max-width: 760px;
}
.ialert-cp-pitch__lede strong { font-weight: 700; }
.ialert-cp-pitch__lede a {
  color: var(--ialert-red);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}
.ialert-cp-pitch__lede a:hover { color: var(--ialert-text); }

.ialert-cp-pitch__lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(6, auto);
  column-gap: 64px;
  row-gap: 0;
  border-top: 1px solid var(--cp-rule);
  padding-top: 56px;
}
.ialert-cp-pitch__line {
  margin: 0;
  padding: 0;
  border: 0;
}
.ialert-cp-pitch__line + .ialert-cp-pitch__line {
  border-left: 1px solid var(--cp-rule);
  padding-left: 64px;
}
/* Subgrid: each column shares the parent's row tracks, so label, heading,
   body, meta, list, and link align across both columns even when the body
   text wraps to a different number of lines. */
@supports (grid-template-rows: subgrid) {
  .ialert-cp-pitch__line {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1 / span 6;
    row-gap: 0;
  }
}
.ialert-cp-pitch__line-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 18px;
}
.ialert-cp-pitch__line-heading {
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.008em;
  color: var(--ialert-text);
  margin: 0 0 22px;
  max-width: 460px;
}
.ialert-cp-pitch__line-body {
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.65;
  font-weight: 400;
  color: var(--ialert-text);
  margin: 0 0 36px;
}
.ialert-cp-pitch__line-body strong { font-weight: 700; }
.ialert-cp-pitch__line-body a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.ialert-cp-pitch__line-meta {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ialert-text);
  opacity: 0.62;
  margin: 0 0 12px;
}
.ialert-cp-pitch__line-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-pitch__line-list li {
  border-bottom: 1px solid var(--cp-rule-soft);
}
.ialert-cp-pitch__line-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ialert-text);
  text-decoration: none;
  transition: color 0.15s ease;
}
.ialert-cp-pitch__line-item:hover,
.ialert-cp-pitch__line-item:focus-visible {
  color: var(--ialert-red);
  text-decoration: none;
  outline: none;
}
.ialert-cp-pitch__line-item:focus-visible {
  outline: 2px solid var(--ialert-red);
  outline-offset: 2px;
}
.ialert-cp-pitch__line-arrow {
  display: inline-block;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-color: var(--ialert-red);
  opacity: 0.45;
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M18%2013v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6'/%3E%3Cpolyline%20points='15%203%2021%203%2021%209'/%3E%3Cline%20x1='10'%20y1='14'%20x2='21'%20y2='3'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='black'%20stroke-width='2.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M18%2013v6a2%202%200%200%201-2%202H5a2%202%200%200%201-2-2V8a2%202%200%200%201%202-2h6'/%3E%3Cpolyline%20points='15%203%2021%203%2021%209'/%3E%3Cline%20x1='10'%20y1='14'%20x2='21'%20y2='3'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.ialert-cp-pitch__line-item:hover .ialert-cp-pitch__line-arrow,
.ialert-cp-pitch__line-item:focus-visible .ialert-cp-pitch__line-arrow {
  opacity: 1;
  transform: translate(1px, -1px);
}
.ialert-cp-pitch__line-link {
  display: inline-block;
  justify-self: start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ialert-red);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.ialert-cp-pitch__line-link:hover { color: var(--ialert-text); }

.ialert-cp-pitch__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px 36px;
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-pitch__close {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ialert-text);
}
.ialert-cp-pitch__close a {
  color: var(--ialert-red);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}
.ialert-cp-pitch__close a:hover { color: var(--ialert-text); }

.ialert-cp-pitch__pdf {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ialert-text);
  text-decoration: none;
}
.ialert-cp-pitch__pdf:hover { color: var(--ialert-red); }
.ialert-cp-pitch__pdf-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  background: var(--ialert-text);
  color: var(--ialert-on-dark);
  padding: 4px 8px;
  line-height: 1;
}

/* =========================================================================
   5. CUSTOMER PROOF (v6/v8 unchanged — three labeled logo bands)
   ========================================================================= */

.ialert-cp-trust {
  padding: var(--cp-pad-y) 0;
  background: var(--ialert-bg);
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-trust__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-trust__intro {
  max-width: var(--cp-prose-w);
  margin: 0 0 64px;
}
.ialert-cp-trust__heading {
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--ialert-text);
  margin: 0 0 28px;
  max-width: 720px;
}
.ialert-cp-trust__body {
  font-size: clamp(15px, 1.35vw, 17.5px);
  line-height: 1.65;
  color: var(--ialert-text);
  margin: 0;
}
.ialert-cp-trust__group {
  padding: 32px 0;
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-trust__group:last-of-type {
  border-bottom: 1px solid var(--cp-rule);
}
.ialert-cp-trust__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 24px;
}
.ialert-cp-trust__row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 40px 32px;
}
.ialert-cp-trust__row--narrow {
  grid-template-columns: repeat(3, minmax(0, 280px));
  justify-content: start;
  gap: 56px;
}
.ialert-cp-trust__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
}
.ialert-cp-trust__cell img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 96px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.06);
  opacity: 0.96;
}

/* Logo marquee — used in wrkabout.php, not yet in production about.php */
.ialert-cp-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.ialert-cp-marquee__track {
  display: flex;
  width: max-content;
  animation: ialert-marquee 40s linear infinite;
}
.ialert-cp-marquee__track:hover {
  animation-play-state: paused;
}
.ialert-cp-marquee__set {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}
.ialert-cp-marquee__set img {
  height: auto;
  max-height: 90px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  opacity: 0.9;
}
@keyframes ialert-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .ialert-cp-marquee__track {
    animation-duration: 20s;
  }
}

/* =========================================================================
   6. CUSTOMER VOICE
   Two large pull-quotes side by side, separated by a vertical hairline
   rule mirroring the pitch business-areas pattern.
   ========================================================================= */

.ialert-cp-voice {
  background: var(--cp-light-surface);
  padding: var(--cp-pad-y) 0;
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-voice__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-voice__intro {
  margin: 0 0 64px;
  max-width: 760px;
}
.ialert-cp-voice__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 24px;
}
.ialert-cp-voice__heading {
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--ialert-text);
  margin: 0;
  max-width: 640px;
}
.ialert-cp-voice__quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  border-top: 1px solid var(--cp-rule);
  padding-top: 56px;
}
.ialert-cp-voice__quote {
  margin: 0;
}
.ialert-cp-voice__quote + .ialert-cp-voice__quote {
  border-left: 1px solid var(--cp-rule);
  padding-left: 64px;
}
.ialert-cp-voice__body {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ialert-text);
  margin: 0 0 32px;
  border-left: 2px solid var(--ialert-red);
  padding: 4px 0 4px 24px;
}
.ialert-cp-voice__cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-voice__cite-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ialert-text);
}
.ialert-cp-voice__cite-role {
  font-size: 13px;
  color: var(--ialert-text);
}
.ialert-cp-voice__cite-org {
  font-size: 13px;
  font-weight: 700;
  color: var(--ialert-red);
}

/* =========================================================================
   7. HERITAGE TIMELINE
   Five anchor years on a horizontal rail with vertical separators.
   Each node carries year, title, body. Stacks vertically below 1024px.
   ========================================================================= */

.ialert-cp-timeline {
  background: var(--cp-light-surface);
  padding: var(--cp-pad-y) 0;
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-timeline__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-timeline__intro {
  margin: 0 0 56px;
  max-width: 760px;
}
.ialert-cp-timeline__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 24px;
}
.ialert-cp-timeline__heading {
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--ialert-text);
  margin: 0;
  max-width: 700px;
}
.ialert-cp-timeline__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 2px solid var(--ialert-text);
}
.ialert-cp-timeline__node {
  padding: 28px 24px 0 0;
  position: relative;
}
.ialert-cp-timeline__node + .ialert-cp-timeline__node {
  border-left: 1px solid var(--cp-rule);
  padding-left: 24px;
}
.ialert-cp-timeline__node::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--ialert-red);
  border-radius: 50%;
}
.ialert-cp-timeline__node + .ialert-cp-timeline__node::before {
  left: 24px;
}
.ialert-cp-timeline__year {
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--ialert-red);
  margin: 0 0 14px;
}
.ialert-cp-timeline__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--ialert-text);
  margin: 0 0 10px;
}
.ialert-cp-timeline__body {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ialert-text);
  opacity: 0.84;
  margin: 0;
}

/* Option 1: Compact alternating timeline — year + title only, no body text */
@media (min-width: 941px) {
  .ialert-cp-timeline__rail--alt {
    grid-template-columns: repeat(8, 1fr);
    border-top: none;
    min-height: 220px;
    position: relative;
  }
  .ialert-cp-timeline__rail--alt::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 110px;
    height: 2px;
    background: var(--ialert-text);
    z-index: 0;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__node {
    padding: 0 12px;
    border-left: none;
    display: flex;
    flex-direction: column;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__node + .ialert-cp-timeline__node {
    border-left: none;
    padding-left: 12px;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__node::before,
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__node + .ialert-cp-timeline__node::before {
    top: 104px;
    left: 0;
    z-index: 1;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__node:nth-child(odd) {
    padding-top: 126px;
    justify-content: flex-start;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__node:nth-child(even) {
    flex-direction: column-reverse;
    justify-content: flex-start;
    padding-bottom: 126px;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__body {
    display: none;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__year {
    font-size: 22px;
    margin-bottom: 8px;
  }
  .ialert-cp-timeline__rail--alt .ialert-cp-timeline__title {
    font-size: 13px;
  }
}

/* Option 2: Milestone card grid — 4x2, used in wrkabout2.php */
.ialert-cp-timeline__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--cp-rule);
  border-left: 1px solid var(--cp-rule);
}
.ialert-cp-timeline__card {
  padding: 28px 24px;
  border-right: 1px solid var(--cp-rule);
  border-bottom: 1px solid var(--cp-rule);
}
.ialert-cp-timeline__card-year {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 10px;
}
.ialert-cp-timeline__card-title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  color: var(--ialert-text);
  margin: 0 0 10px;
}
.ialert-cp-timeline__card-body {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ialert-text);
  opacity: 0.72;
  margin: 0;
}
@media (max-width: 940px) {
  .ialert-cp-timeline__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .ialert-cp-timeline__cards {
    grid-template-columns: 1fr;
  }
}

/* =========================================================================
   8. FOUNDER EDITORIAL (v8 + expanded bio column)
   ========================================================================= */

.ialert-cp-founder {
  padding: var(--cp-pad-y) 0;
  background: var(--ialert-bg);
  border-top: 1px solid var(--cp-rule);
}
.ialert-cp-founder__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-founder__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 22px;
}
.ialert-cp-founder__heading {
  font-weight: 700;
  font-size: clamp(26px, 3.0vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ialert-text);
  margin: 0 0 24px;
  max-width: 760px;
}
.ialert-cp-founder__lede {
  font-size: clamp(15px, 1.35vw, 17.5px);
  line-height: 1.65;
  color: var(--ialert-text);
  margin: 0 0 48px;
  max-width: 720px;
}
.ialert-cp-founder__lede strong { font-weight: 700; }
.ialert-cp-founder__body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}
.ialert-cp-founder__avatar {
  width: 220px;
  height: 220px;
  border-radius: 0;
  object-fit: cover;
  display: block;
  border: 1px solid var(--cp-rule);
}
.ialert-cp-founder__col {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.ialert-cp-founder__quote {
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ialert-text);
  margin: 0;
  max-width: 720px;
  border-left: 2px solid var(--ialert-red);
  padding: 4px 0 4px 28px;
}
.ialert-cp-founder__bio {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.ialert-cp-founder__bio p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ialert-text);
  margin: 0;
}
.ialert-cp-founder__bio strong { font-weight: 700; }
.ialert-cp-founder__sig {
  margin: 36px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--cp-rule);
  font-size: 12px;
  font-weight: 400;
  color: var(--ialert-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ialert-cp-founder__sig strong {
  font-weight: 800;
  letter-spacing: 0.16em;
}

/* =========================================================================
   9. NWS DATA PIPELINE
   Navy band, 4-source credential strip.
   ========================================================================= */

.ialert-cp-pipeline {
  background: var(--ialert-navy);
  color: var(--ialert-on-dark);
  padding: var(--cp-pad-y) 0;
}
.ialert-cp-pipeline__inner {
  max-width: var(--cp-content-w);
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
}
.ialert-cp-pipeline__intro {
  margin: 0 0 56px;
  max-width: 720px;
}
.ialert-cp-pipeline__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  margin: 0 0 22px;
}
.ialert-cp-pipeline__heading {
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--ialert-on-dark);
  margin: 0 0 22px;
  max-width: 700px;
}
.ialert-cp-pipeline__body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244, 241, 234, 0.78);
  margin: 0;
}
.ialert-cp-pipeline__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--cp-rule-on-dark);
}
.ialert-cp-pipeline__cell {
  padding: 32px 24px 0 0;
}
.ialert-cp-pipeline__cell + .ialert-cp-pipeline__cell {
  border-left: 1px solid var(--cp-rule-on-dark);
  padding-left: 24px;
  padding-right: 0;
}
.ialert-cp-pipeline__cell + .ialert-cp-pipeline__cell:not(:last-child) {
  padding-right: 24px;
}
.ialert-cp-pipeline__source {
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: 0.04em;
  color: var(--ialert-red);
  margin: 0 0 8px;
}
.ialert-cp-pipeline__source-name {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ialert-on-dark);
  margin: 0 0 16px;
}
.ialert-cp-pipeline__source-body {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(244, 241, 234, 0.78);
  margin: 0;
}

/* =========================================================================
   10. SUBSCRIBE BAND
   v8 default (solid navy) for fallback; --photo modifier overlays the
   cumulonimbus photo with a saturated red overlay to differentiate
   from the navy data-pipeline section above.
   ========================================================================= */

.ialert-cp-subscribe {
  padding: 96px 0;
  background: var(--ialert-navy);
  color: var(--ialert-on-dark);
  text-align: center;
  position: relative;
  isolation: isolate;
}
.ialert-cp-subscribe--photo {
  background: var(--ialert-navy) url('/assets-about/scenery/coverage-sky.jpg') center/cover no-repeat;
}
.ialert-cp-subscribe--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 22, 42, 0.62) 0%, rgba(197, 37, 50, 0.88) 100%);
  z-index: -1;
}
.ialert-cp-subscribe__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--cp-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.ialert-cp-subscribe__heading {
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ialert-on-dark);
  margin: 0;
  max-width: 640px;
}

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1024px) {
  .ialert-cp-hero {
    padding: 144px 0 120px;
  }
  .ialert-cp-mission {
    padding: 80px 0;
  }
  .ialert-cp-stats__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }
  .ialert-cp-stats__cell {
    padding-right: 24px;
  }
  .ialert-cp-stats__cell + .ialert-cp-stats__cell {
    padding-left: 24px;
  }
  .ialert-cp-stats__cell:nth-child(2n+1) {
    padding-left: 0;
  }
  .ialert-cp-pitch__intro {
    margin-bottom: 56px;
  }
  .ialert-cp-pitch__lines {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 56px;
    padding-top: 48px;
  }
  .ialert-cp-pitch__line {
    display: block;
    grid-row: auto;
  }
  .ialert-cp-pitch__line + .ialert-cp-pitch__line {
    border-left: 0;
    border-top: 1px solid var(--cp-rule);
    padding-left: 0;
    padding-top: 56px;
  }
  .ialert-cp-trust__row {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .ialert-cp-trust__row--narrow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
  }
  .ialert-cp-trust__cell {
    min-height: 84px;
  }
  .ialert-cp-trust__cell img {
    max-height: 84px;
  }
  .ialert-cp-voice__quotes {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ialert-cp-voice__quote + .ialert-cp-voice__quote {
    border-left: 0;
    border-top: 1px solid var(--cp-rule);
    padding-left: 0;
    padding-top: 56px;
  }
  .ialert-cp-timeline__rail {
    grid-template-columns: 1fr;
    border-top: 0;
    border-left: 2px solid var(--ialert-text);
  }
  .ialert-cp-timeline__node {
    padding: 12px 0 32px 24px;
  }
  .ialert-cp-timeline__node + .ialert-cp-timeline__node {
    border-left: 0;
    padding-left: 24px;
  }
  .ialert-cp-timeline__node::before,
  .ialert-cp-timeline__node + .ialert-cp-timeline__node::before {
    top: 12px;
    left: -7px;
  }
  .ialert-cp-founder__body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ialert-cp-founder__avatar {
    width: 180px;
    height: 180px;
  }
  .ialert-cp-founder__quote {
    padding-left: 22px;
  }
  .ialert-cp-pipeline__rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 0;
  }
  .ialert-cp-pipeline__cell {
    padding: 24px 24px 0 0;
  }
  .ialert-cp-pipeline__cell + .ialert-cp-pipeline__cell {
    padding-left: 24px;
  }
  .ialert-cp-pipeline__cell:nth-child(2n+1) {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 720px) {
  .ialert-cp-hero {
    padding: 112px 0 96px;
  }
  .ialert-cp-mission {
    padding: 64px 0;
  }
  .ialert-cp-stats__row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ialert-cp-stats__cell,
  .ialert-cp-stats__cell + .ialert-cp-stats__cell {
    padding: 24px 0 0 0;
  }
  .ialert-cp-pitch__foot {
    flex-direction: column;
    align-items: flex-start;
  }
  .ialert-cp-trust__intro {
    margin-bottom: 48px;
  }
  .ialert-cp-trust__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .ialert-cp-trust__row--narrow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }
  .ialert-cp-trust__cell {
    min-height: 72px;
  }
  .ialert-cp-trust__cell img {
    max-height: 72px;
  }
  .ialert-cp-founder__avatar {
    width: 140px;
    height: 140px;
  }
  .ialert-cp-pipeline__rail {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ialert-cp-pipeline__cell,
  .ialert-cp-pipeline__cell + .ialert-cp-pipeline__cell {
    padding: 24px 0 0 0;
    border-left: 0;
  }
  .ialert-cp-subscribe {
    padding: 72px 0;
  }
}

/* =========================================================================
   DEVELOPER NOTES OVERLAY
   Demo-only. Strip before production merge along with every
   .is-placeholder class and every data-dev-note attribute.
   Mirrors the individual.php (Phase 5) overlay so reviewers see one
   consistent annotation pattern across the redesigned pages.
   ========================================================================= */

.ialert-dev-notes__toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ialert-navy, #171a1f);
  color: var(--ialert-on-dark, #f4f1ea);
  font-family: var(--ialert-font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: background 140ms, transform 140ms;
}
.ialert-dev-notes__toggle:hover {
  background: #0a0c0f;
  transform: translateY(-1px);
}
.ialert-dev-notes__toggle-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ialert-red);
  display: inline-block;
}
body.is-dev-notes-on .ialert-dev-notes__toggle {
  background: var(--ialert-red);
}
body.is-dev-notes-on .ialert-dev-notes__toggle:hover {
  background: #a91823;
}
body.is-dev-notes-on .ialert-dev-notes__toggle-dot {
  background: var(--ialert-on-dark, #f4f1ea);
}

/* Side panel. */
.ialert-dev-notes__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  max-width: 92vw;
  background: var(--ialert-bg, #fff);
  color: var(--ialert-text);
  border-left: 1px solid var(--cp-rule, rgba(23, 26, 31, 0.14));
  box-shadow: -12px 0 32px rgba(0, 0, 0, 0.10);
  overflow-y: auto;
  z-index: 999;
  font-family: var(--ialert-font-display);
}

.ialert-dev-notes__panel-head {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--cp-rule-soft);
}
.ialert-dev-notes__panel-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ialert-red);
  font-weight: 700;
  margin: 0 0 8px;
}
.ialert-dev-notes__panel-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 10px;
}
.ialert-dev-notes__panel-lede {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ialert-text-muted);
  margin: 0;
}

.ialert-dev-notes__list {
  list-style: none;
  counter-reset: devnote;
  margin: 0;
  padding: 0;
}
.ialert-dev-notes__list > li {
  counter-increment: devnote;
  padding: 22px 28px 22px 64px;
  position: relative;
  border-bottom: 1px solid var(--cp-rule-soft);
}
.ialert-dev-notes__list > li::before {
  content: counter(devnote);
  position: absolute;
  top: 22px;
  left: 24px;
  width: 28px;
  height: 28px;
  background: var(--ialert-red);
  color: var(--ialert-on-dark, #f4f1ea);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.ialert-dev-notes__list h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
}
.ialert-dev-notes__list p {
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 8px;
  color: var(--ialert-text);
}
.ialert-dev-notes__list p:last-child { margin-bottom: 0; }
.ialert-dev-notes__source {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ialert-text-muted);
}

.ialert-dev-notes__panel-foot {
  padding: 18px 28px 28px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ialert-text-muted);
}
.ialert-dev-notes__panel-foot p { margin: 0; }

/* Dev-notes ON state: surface numbered markers next to annotated blocks.
   The marker position offset below clears the placeholder pill at top:-16
   so the two badges do not stack on top of each other. */
body.is-dev-notes-on [data-dev-note] {
  position: relative;
}
body.is-dev-notes-on [data-dev-note]::after {
  content: attr(data-dev-note);
  position: absolute;
  top: -10px;
  left: -10px;
  width: 24px;
  height: 24px;
  background: var(--ialert-red);
  color: var(--ialert-on-dark, #f4f1ea);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  font-family: var(--ialert-font-display);
}

/* When dev-notes is on, push the page right edge so the panel does not
   cover content on wide viewports. */
@media (min-width: 1100px) {
  body.is-dev-notes-on main.ialert-cp {
    padding-right: 380px;
  }
}

@media (max-width: 860px) {
  .ialert-dev-notes__panel { width: 92vw; }
  .ialert-dev-notes__toggle {
    bottom: 16px;
    right: 16px;
    font-size: 11px;
    padding: 10px 14px;
  }
}
