/*
Theme Name: AEGIS Advanced
Theme URI: https://aegis-advanced.com
Description: AEGIS Advanced — Spectrum Advanced coatings division. Advanced corrosion coatings, precision energy surface preparation, and patent-pending precision magnetic heat activation, with tungsten carbide thermal spray for extreme-wear service.
Author: Spectrum Advanced
Author URI: https://www.spectrumadvanced.com
Template: twentytwentyfive
Version: 0.3.0
Text Domain: aegis
*/

/* =========================================================
   AEGIS Advanced — Base Stylesheet
   Brand: AEGIS Advanced (Spectrum Advanced family)
   Palette: Graphite #1F2A33 • Steel #3A4756 • Copper #B16A2A • Ember #D98744 • Ice #EAEFF2 • Ink #0E1620
   Type: Manrope (display + body + UI — clean modern industrial sans)
         JetBrains Mono (technical chips/eyebrows only)
   Philosophy: heavy industrial / thermal spray. Strong grid. Hot-metal copper
   accent against deep graphite. No floating boxes. Class names are intentionally
   shared with the Fluoron theme so layout primitives stay in sync.
   ========================================================= */

/* ---------- Fonts (Google Fonts CDN) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* brand — pulled from the AEGIS phoenix wordmark:
     deep navy body + teal flame accent. */
  --navy:        #1B3F6C;   /* AEGIS deep navy (logo) */
  --navy-deep:   #122B4D;
  --navy-ink:    #0A1B33;   /* hero / dark surface */
  --navy-jet:    #06112A;   /* deepest pin */
  --teal:        #2DA6B4;   /* AEGIS teal (flame) */
  --teal-bright: #4FC3D1;
  --teal-deep:   #1F7E89;

  /* neutrals — cool industrial paper */
  --paper:       #F4F6F8;   /* primary page background */
  --paper-2:     #E8ECF0;   /* alt surface */
  --steel:       #D8DEE5;   /* card surface */
  --steel-2:     #B9C2CC;
  --line:        #A6B0BB;   /* hairline divider */
  --line-soft:   #CFD5DC;
  --ink:         #0A1B33;
  --ink-2:       #213047;
  --muted:       #56657A;
  --faint:       #8893A4;
  --on-navy:     #EAF0F6;

  /* radii / spacing */
  --r-xs: 2px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;

  /* type */
  --display: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --sans:    "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* sizes */
  --fs-xs:  12px;
  --fs-sm:  15px;
  --fs-bd:  17.5px;
  --fs-md:  19px;
  --fs-lg:  20px;
  --fs-xl:  26px;
  --fs-2xl: 34px;
  --fs-3xl: 48px;
  --fs-4xl: 64px;
  --fs-hero:68px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: var(--fs-bd);
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Type ---------- */
.display { font-family: var(--display); font-weight: 700; letter-spacing: -0.022em; line-height: 1.02; }
.mono    { font-family: var(--mono); font-size: var(--fs-xs); letter-spacing: 0.04em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 18px; height: 1px; background: var(--teal-deep);
}
h1, h2, h3, h4 { margin: 0; }

/* ---------- Layout ---------- */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.row { display: flex; }
.between { justify-content: space-between; }
.center  { align-items: center; }
.gap-8   { gap: 8px; }
.gap-16  { gap: 16px; }
.gap-24  { gap: 24px; }
.gap-32  { gap: 32px; }

/* hairline: tight industrial grid edges */
.hairline-top    { border-top: 1px solid var(--line); }
.hairline-bottom { border-bottom: 1px solid var(--line); }

/* ---------- Topbar (Spectrum Advanced family selector) ---------- */
.topbar {
  background: var(--navy-ink);
  color: rgba(255,255,255,.78);
  font-size: 12px;
  line-height: 1;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 14px;
  height: 28px;
}
.topbar-label {
  color: rgba(255,255,255,.55);
  letter-spacing: .02em;
}
.topbar-links {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 500;
}
.topbar-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  padding: 4px 2px;
  transition: color .15s;
}
.topbar-links a:hover { color: #fff; }
.topbar-sep { color: rgba(255,255,255,.3); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,248,249,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 64px;
  gap: 32px;
}
.brand {
  display: inline-flex; align-items: center;
  color: var(--navy);
}
.brand-mark {
  width: 22px; height: 22px; display: inline-block;
}
.brand-logo {
  width: auto;
  height: 40px;
  max-width: 240px;
  display: block;
  object-fit: contain;
}
.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
}
.brand-name {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 21px;
  color: var(--navy);
}
.brand-line {
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 7.5px;
  color: var(--teal-deep);
}
.nav-links {
  display: flex; gap: 28px; justify-self: center;
  font-size: 14px; font-weight: 500; color: var(--ink-2);
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--teal);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--on-navy);
  padding: 10px 18px; font-weight: 600; font-size: 13.5px;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.nav-cta:hover { background: var(--navy-deep); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  font-weight: 600; font-size: 14px;
  border-radius: var(--r-sm); border: 1px solid transparent;
  transition: all .18s ease;
}
.btn-primary { background: var(--navy); color: var(--on-navy); }
.btn-primary:hover { background: var(--navy-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn .arr { font-family: var(--mono); transition: transform .18s; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 8px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xs);
  color: var(--ink-2);
}
.chip.teal   { color: var(--teal-deep); border-color: rgba(45,166,180,.35); background: rgba(45,166,180,.08); }
.chip.navy   { color: var(--navy);      border-color: rgba(27,63,108,.25);  background: rgba(27,63,108,.06); }
.chip-dot    { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ---------- Section ---------- */
.section { padding: 40px 0; }
.section-sm { padding: 28px 0; }
.section-tight { padding: 20px 0; }
.section-dark { background: var(--navy-ink); color: var(--on-navy); }
.section-paper-2 { background: var(--paper-2); }

/* Section label strip — industrial editorial signature.
   Three columns: left label / center headline / right callout.
   The right callout column is sized generously so its paragraph
   wraps to a few short lines rather than a tall ribbon — the
   strip's overall height is driven by the callout, so a wider
   callout means a shorter, calmer header band. */
.strip {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(380px, 1.25fr);
  align-items: end;
  gap: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.strip .strip-num {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.12em;
  color: var(--ink-2);
  font-weight: 500;
}
.strip h2 {
  font-family: var(--display); font-weight: 500; letter-spacing: -0.018em;
  font-size: clamp(24px, 2.4vw, 30px); line-height: 1.08; color: var(--navy);
  max-width: 22ch;
}
.strip .strip-meta {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
  max-width: 58ch;
  text-align: left;
  font-weight: 400;
  align-self: end;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--teal);
  border-radius: 3px;
  padding: 10px 14px;
  margin: 0;
}

/* Strip variant: comparison intro with a deliberate right-side callout.
   Keeps the same column ratio as the default strip so the visual rhythm
   matches across pages; the callout block just gets a paper-2 plate to
   read as a "how to read this" sidecar. */
.strip-callout { grid-template-columns: 140px minmax(0, 1fr) minmax(400px, 1.3fr); }
/* Non-callout subtitle in a strip-callout (e.g. material list under the h2) —
   keep it tucked under the headline in column 2 with no decorative border. */
.strip-callout > p.strip-meta:not(.callout) {
  grid-column: 2;
  grid-row: 2;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 4px 0 0;
  font-size: 13.5px;
  color: var(--muted);
}
.strip-callout .strip-meta.callout {
  display: block;
  text-align: left;
  max-width: none;
  justify-self: stretch;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: end;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--teal);
  border-radius: 3px;
  padding: 12px 16px;
  color: var(--ink);
}
.strip-callout .strip-meta.callout .callout-eyebrow {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.strip-callout .strip-meta.callout p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
}
.strip-callout .strip-meta.callout p strong {
  font-weight: 700;
  color: var(--navy);
}

/* Contact intake strip: long sentence-style headline needs a wider
   reading column than the default editorial strip. Drop the leading
   label slot, give the headline room to breathe, and let the meta
   paragraph sit at a comfortable measure beside it. */
.strip.strip-contact {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}
.strip.strip-contact .strip-num {
  grid-column: 1 / -1;
  margin-bottom: -4px;
}
.strip.strip-contact h2 {
  max-width: 28ch;
  font-size: clamp(26px, 2.6vw, 36px);
}
.strip.strip-contact .strip-meta {
  max-width: 46ch;
  text-align: left;
  align-self: start;
  border-left: 3px solid var(--teal);
}

/* ---------- Footer ---------- */
.foot {
  background: var(--navy-ink); color: var(--on-navy);
  padding: 36px 0 22px;
  font-size: 15px;
}
.foot a:hover { color: var(--teal-bright); }
.foot-rail {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  column-gap: 10px;
  row-gap: 14px;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
  margin: 0 0 24px;
  padding: 24px 0;
}
.foot-rail a {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 4px 10px;
  transition: background .18s;
}
.foot-rail a:hover { background: rgba(255,255,255,.03); }
.foot-rail .rail-parent {
  grid-column: 1 / -1;
  padding-bottom: 8px;
}
.foot-rail .rail-division {
  grid-row: 2;
  padding-top: 4px;
}
.foot-rail .rail-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 72px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}
.foot-rail .rail-logo-box img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: rgba(255,255,255,.94);
  border-radius: 8px;
  padding: 8px 14px;
  box-sizing: border-box;
}
.foot-rail .rail-parent .rail-logo-box {
  width: 270px;
  height: 108px;
}
.foot-rail .rail-parent .rail-logo-box img {
  padding: 10px 18px;
}
/* Fluoron's source logo is much wider (≈3.3:1) than Radiant/AEGIS (≈2:1),
   so object-fit:contain pins it to the box width while the others pin to
   height — making Fluoron read as visually wider. Cap its rendered width
   so all three divisions occupy similar footprint. */
.foot-rail .rail-division.is-fluoron .rail-logo-box img {
  max-width: 80%;
}
/* Fluoron is the current division — keep it in the rail for hierarchy
   but mark it visually as "you are here" so it doesn't read like a peer
   nav link to itself. */
.foot-rail .rail-division.is-fluoron {
  position: relative;
  pointer-events: none;
}
.foot-rail .rail-division.is-fluoron .rail-logo-box img {
  opacity: 0.92;
}
.foot-rail .rail-division.is-fluoron .rail-div {
  color: var(--teal-bright);
  letter-spacing: 0.16em;
}
.foot-rail .rail-division.is-fluoron .rail-div::after {
  content: " · You are here";
  color: rgba(255,255,255,.45);
  letter-spacing: 0.12em;
}
.foot-rail .rail-div {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,.55);
}
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
}
.foot-grid h4 {
  font-family: var(--mono); font-weight: 500;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; }
.foot-grid li { margin-bottom: 6px; color: rgba(255,255,255,.85); }
.foot-bot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 26px; padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55); font-size: 13px;
}

/* ---------- Utility ---------- */
.kbd { font-family: var(--mono); font-size: 11.5px; }
.tnum { font-variant-numeric: tabular-nums; }
.nowrap { white-space: nowrap; }
.hide-mobile { }
.show-mobile { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root {
    --fs-2xl: 28px;
    --fs-3xl: 38px;
    --fs-4xl: 48px;
    --fs-hero: 48px;
  }
  .wrap, .wrap-wide { padding: 0 22px; }
  .section { padding: 28px 0; }
  .section-sm { padding: 22px 0; }
  .section-tight { padding: 16px 0; }
  .strip { grid-template-columns: 1fr; gap: 10px; padding-bottom: 10px; margin-bottom: 16px; }
  .strip h2 { max-width: none; }
  .strip .strip-meta { text-align: left; max-width: none; font-size: 14.5px; padding: 10px 12px; }
  .strip-callout { grid-template-columns: 1fr; }
  .strip-callout > p.strip-meta:not(.callout) { grid-column: 1; grid-row: auto; padding: 0; }
  .strip-callout .strip-meta.callout { justify-self: stretch; padding: 12px 14px; grid-column: 1; grid-row: auto; }
  .strip.strip-contact { grid-template-columns: 1fr; gap: 12px; }
  .strip.strip-contact h2 { max-width: none; }
  .strip.strip-contact .strip-meta { max-width: none; padding: 10px 12px; }
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 16px; height: 58px; }
  .nav-links { display: none; }
  .topbar-inner { justify-content: center; gap: 8px; height: 26px; font-size: 11px; }
  .topbar-label { display: none; }
  .topbar-links { gap: 6px; }
  .topbar-links a { padding: 4px 2px; }
  .foot-rail { grid-template-columns: repeat(3, auto); column-gap: 6px; }
  .foot-rail .rail-parent { grid-column: 1 / -1; }
  .foot-rail .rail-division { grid-row: 2; }
  .foot-rail .rail-logo-box { width: 130px; height: 56px; }
  .foot-rail .rail-logo-box img { padding: 6px 8px; }
  .foot-rail .rail-parent .rail-logo-box { width: 195px; height: 84px; }
  .foot-rail .rail-parent .rail-logo-box img { padding: 8px 14px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  :root {
    --fs-2xl: 24px;
    --fs-3xl: 30px;
    --fs-4xl: 38px;
    --fs-hero: 34px;
  }
  .wrap, .wrap-wide { padding: 0 16px; }
  .section { padding: 22px 0; }
  .section-sm { padding: 18px 0; }
  .section-tight { padding: 14px 0; }
  .strip { gap: 8px; padding-bottom: 10px; margin-bottom: 14px; }
  .strip h2 { max-width: none; }
  .strip .strip-meta { font-size: 14px; padding: 9px 11px; }
  .strip .strip-num { font-size: 11.5px; }
  .strip-callout .strip-meta.callout p { font-size: 14px; }
  .foot { padding: 26px 0 18px; }
  .foot-rail { padding: 18px 0; margin: 0 0 18px; column-gap: 4px; }
  .foot-rail .rail-logo-box { width: 100px; height: 44px; }
  .foot-rail .rail-parent .rail-logo-box { width: 160px; height: 68px; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bot { flex-direction: column; gap: 8px; align-items: flex-start; }
  .btn { padding: 11px 18px; font-size: 13.5px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; }
}
/* ============================================================
   Fluoron — Page-specific styles
   ============================================================ */

/* =================== HOME =================== */

/* HERO — compact, dense, photo-anchored. No floating boxes. */
.hero {
  position: relative;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}
.hero-copy {
  padding: 48px 56px 32px 0;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid var(--line);
}
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(40px, 4.8vw, var(--fs-hero));
  letter-spacing: -0.025em; line-height: 0.98;
  color: var(--navy-ink);
  max-width: 18ch;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic; font-weight: 500; color: var(--teal-deep);
}
.hero-sub {
  margin-top: 22px; max-width: 50ch;
  font-size: var(--fs-md); color: var(--ink-2); line-height: 1.5;
}
.hero-ctas { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* hero meta strip — gives the bottom of the hero structure */
.hero-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  gap: 12px;
}
.hero-meta .m {
  display: grid; gap: 2px;
}
.hero-meta .m-k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.hero-meta .m-v {
  font-family: var(--sans); font-weight: 600; font-size: 19px;
  color: var(--navy); letter-spacing: -0.005em; line-height: 1.25;
}

.hero-photo {
  position: relative;
  background: var(--navy-ink);
  overflow: hidden;
}
.hero-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: saturate(0.92) contrast(1.04);
}
/* Photo overlay corner spec card — text never overlaps the photo subject */
.photo-spec {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--navy-ink);
  color: var(--on-navy);
  padding: 16px 20px;
  display: grid; gap: 4px;
  border-top: 2px solid var(--teal);
  min-width: 280px;
}
.photo-spec .ps-k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.photo-spec .ps-v {
  font-family: var(--sans); font-size: 17px; font-weight: 600;
  color: #fff; letter-spacing: -0.002em; line-height: 1.3;
}
.photo-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(14,26,43,0.78); backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.85);
  padding: 5px 9px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* === Section: Sleeve overview cards === */
.sleeve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.sleeve-grid--three { grid-template-columns: repeat(3, 1fr); }
.sleeve-card {
  background: var(--paper);
  padding: 18px 18px 16px;
  display: flex; flex-direction: column;
  position: relative; transition: background .2s;
}
.sleeve-card:hover { background: var(--paper-2); }
.sleeve-card .sc-num {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.14em;
}
.sleeve-card .sc-name {
  font-family: var(--sans); font-weight: 600;
  font-size: 24px; letter-spacing: -0.012em; line-height: 1.15;
  color: var(--navy); margin-top: 4px;
}
.sleeve-card .sc-tag {
  font-size: 12.5px; color: var(--teal-deep); font-weight: 600;
  margin-top: 2px; letter-spacing: 0.02em;
}
.sleeve-card .sc-body {
  margin-top: 14px; font-size: 16px; color: var(--ink-2); line-height: 1.5;
}
.sleeve-card .sc-specs {
  margin-top: auto;
  display: grid; gap: 4px;
  border-top: 1px dashed var(--line); padding-top: 12px;
  font-size: 12.5px;
}
.sleeve-card .sc-specs .row {
  display: flex; justify-content: space-between;
}
.sleeve-card .sc-specs .row .k { color: var(--muted); font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.sleeve-card .sc-specs .row .v { color: var(--ink); font-weight: 600; font-variant-numeric: tabular-nums; }
.sleeve-card .sc-link {
  margin-top: 14px;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em;
  color: var(--navy); text-transform: uppercase; font-weight: 600;
}
.sleeve-card .sc-link::after { content: " →"; }

/* Install-support cards: tighter headline scale so body copy doesn't get dwarfed */
.sleeve-grid--three .sleeve-card .sc-name {
  font-size: 21px;
}
.sleeve-grid--three .sleeve-card .sc-tag {
  font-size: 12px;
}

/* === Product card "best for" chips === */
.sc-chips {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sc-chip {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xs);
  color: var(--ink-2);
  line-height: 1.3;
}
.sc-chip--best {
  background: rgba(45,166,180,.08);
  border-color: rgba(45,166,180,.35);
  color: var(--teal-deep);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  font-family: var(--sans);
  font-size: 12px;
  padding: 4px 9px;
}

/* === Hero problem-led chips === */
.hero-problems {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hero-problems li {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 9px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xs);
  color: var(--ink-2);
  line-height: 1.3;
}

/* === Sticky/floating conversion CTA (homepage) === */
.aegis-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  align-items: stretch;
  background: var(--navy-ink);
  color: var(--on-navy);
  border-radius: var(--r-md);
  box-shadow: 0 12px 28px rgba(14, 26, 43, 0.22), 0 2px 6px rgba(14, 26, 43, 0.12);
  border: 1px solid rgba(45, 166, 180, 0.45);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  max-width: calc(100vw - 40px);
}
.aegis-fab.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.aegis-fab-btn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  text-decoration: none;
  color: inherit;
}
.aegis-fab-label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.005em;
  line-height: 1.15;
}
.aegis-fab-sub {
  display: block;
  grid-column: 1 / 2;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-top: 2px;
  line-height: 1.2;
}
.aegis-fab-arr {
  grid-row: 1 / span 2;
  grid-column: 2;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--teal-bright);
  align-self: center;
  transition: transform .18s;
}
.aegis-fab-btn:hover .aegis-fab-arr {
  transform: translateX(3px);
}
.aegis-fab-close {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 18px;
  line-height: 1;
  padding: 0 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: color .15s;
}
.aegis-fab-close:hover {
  color: #fff;
}
@media (max-width: 640px) {
  .aegis-fab {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    border-radius: var(--r-sm);
  }
  .aegis-fab-btn {
    padding: 10px 12px 10px 14px;
    flex: 1;
  }
  .aegis-fab-label {
    font-size: 13.5px;
  }
  .aegis-fab-sub {
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .aegis-fab {
    transition: opacity .15s ease;
    transform: none;
  }
  .aegis-fab.is-visible {
    transform: none;
  }
}

/* === Section: Process strip === */
.process {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
.process-copy {
  padding: 26px 28px;
  border-right: 1px solid var(--line);
}
.process-copy h3 {
  font-family: var(--sans); font-weight: 600; letter-spacing: -0.012em;
  font-size: var(--fs-xl); line-height: 1.2; color: var(--navy); margin-bottom: 14px;
  max-width: 22ch;
}
.process-copy p {
  font-size: 16.5px; color: var(--ink-2); line-height: 1.55; margin: 0;
}
.process-steps {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
}
.process-steps .step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.process-steps .step:last-child { border-bottom: none; }
.process-steps .step-num {
  font-family: var(--display); font-weight: 500;
  font-size: 36px; color: var(--teal); letter-spacing: -0.02em;
  line-height: 1;
}
.process-steps .step-name {
  font-weight: 600; font-size: 14px; color: var(--ink);
}
.process-steps .step-desc {
  font-size: 12.5px; color: var(--muted); margin-top: 2px; line-height: 1.4;
}

/* === Section: Applications (clean grid) === */
.apps-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.app-card {
  background: var(--paper);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 200px;
}
.app-card .ac-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}
.app-card .ac-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 2px 0 0;
}
.app-card .ac-body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}
.app-card .ac-chips {
  margin: auto 0 0;
  padding: 12px 0 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid var(--line);
}
.app-card .ac-chips li {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper-2, #f4f6f7);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm, 3px);
}
.apps-cta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* === Industry proof band === */
.industry-proof {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
.industry-proof--with-photo {
  grid-template-columns: 1.25fr 1fr;
}
.industry-proof-copy {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.industry-proof-photo {
  position: relative;
  margin: 0;
  border-left: 1px solid var(--line);
  min-height: 320px;
  overflow: hidden;
}
.industry-proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.industry-proof-photo figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  gap: 2px;
  padding: 8px 12px;
  background: rgba(14,26,43,0.78);
  color: #fff;
  border-radius: var(--r-sm);
  max-width: calc(100% - 28px);
}
.industry-proof-photo .ipp-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.industry-proof-photo .ipp-v {
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
}
.industry-proof-copy h3 {
  margin-top: 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--navy-ink);
  max-width: 18ch;
}
.industry-proof-copy p {
  margin-top: 14px;
  max-width: 62ch;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.industry-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.industry-panel {
  background: var(--paper);
  padding: 28px 30px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.industry-panel.feature {
  background:
    linear-gradient(120deg, rgba(246,248,249,.94), rgba(237,241,243,.82)),
    url('../img/Fluoron_InOperation_AfterCleaning_01-2.jpg') center/cover;
}
.industry-panel.flex-feature {
  background: var(--paper);
}
.industry-panel.paper-feature {
  background:
    linear-gradient(120deg, rgba(246,248,249,.93), rgba(237,241,243,.78)),
    url('../img/Fluoron_InOperation_AfterCleaning_01-2.jpg') center/cover;
}
.industry-panel h2 {
  margin-top: 12px;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy-ink);
  max-width: 18ch;
}
.industry-title {
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--teal-deep);
}
.industry-hero-photo {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.industry-hero-photo img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}
.industry-hero-photo div {
  display: grid;
  gap: 5px;
}
.industry-hero-photo strong {
  max-width: 38ch;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
}
.industry-panel p {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 62ch;
}
.industry-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.industry-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  font-size: 15.5px;
  color: var(--ink);
  line-height: 1.45;
}
.industry-list li::before {
  content: "▸";
  color: var(--teal-deep);
  font-family: var(--mono);
}
.industry-panel .btn {
  align-self: flex-start;
  margin-top: auto;
}
.industry-metrics {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.industry-metrics span {
  background: rgba(255,255,255,.66);
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--navy);
}
.industry-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: var(--r-sm);
}
.industry-links a:hover {
  border-color: var(--teal);
  color: var(--teal-deep);
}
/* === Trust strip === */
.trust {
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  padding: 22px 0; align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.trust-row {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px;
  font-family: var(--sans); font-weight: 600; font-size: 15px;
  color: var(--navy); letter-spacing: 0;
}

/* === Differentiator (patented tech) === */
.diff {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--navy-ink); color: var(--on-navy);
  border: 1px solid var(--navy-ink);
}
.diff-photo {
  position: relative; min-height: 360px;
  background-size: cover; background-position: center;
}
.diff-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,26,43,0) 60%, rgba(14,26,43,0.45) 100%);
}
.diff-copy {
  padding: 36px 32px 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  column-gap: 40px;
  row-gap: 8px;
  align-items: start;
}
.diff-copy .eyebrow { grid-column: 1 / -1; color: var(--teal-bright); }
.diff-copy .eyebrow::before { background: var(--teal-bright); }
.diff-copy h3 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.022em; line-height: 1.08;
  margin-top: 6px; color: #fff;
  max-width: 32ch;
  grid-column: 1;
}
.diff-copy h3 em { font-style: italic; color: var(--teal-bright); }
.diff-copy p {
  margin-top: 14px; max-width: 56ch;
  color: rgba(255,255,255,0.82); font-size: 16px; line-height: 1.5;
  grid-column: 1;
}
.diff-points {
  margin: 0; display: grid; gap: 8px; padding: 0; list-style: none;
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: start;
}
.diff-points li {
  display: grid; grid-template-columns: 22px 1fr;
  font-size: 15.5px; line-height: 1.45; color: rgba(255,255,255,0.88);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 8px;
}
.diff-points li::before {
  content: "—"; color: var(--teal-bright); font-family: var(--mono);
}
.diff-cta {
  grid-column: 1 / -1;
  margin-top: 22px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.diff-bottom {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 20px;
  padding: 20px 28px 28px;
  align-items: stretch;
}
.diff-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: transparent;
  padding: 0;
  width: 100%;
}
.diff-side-cta {
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 22px 22px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
}
.diff-side-cta .eyebrow { color: var(--teal-bright); }
.diff-side-cta .eyebrow::before { background: var(--teal-bright); }
.diff-side-cta h4 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(20px, 1.7vw, 24px);
  letter-spacing: -0.018em; line-height: 1.1;
  margin: 4px 0 2px; color: #fff;
}
.diff-side-cta p {
  margin: 0; color: rgba(255,255,255,0.82);
  font-size: 14.5px; line-height: 1.5;
}
.diff-side-cta-actions {
  margin-top: auto;
  padding-top: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.diff-side-cta-actions .btn { width: 100%; justify-content: center; text-align: center; }
.diff-ba-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--navy-ink);
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(255,255,255,0.08);
}
.diff-ba-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.diff-ba-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: grid;
  gap: 2px;
  padding: 6px 10px;
  background: rgba(14,26,43,0.78);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-sm);
  max-width: calc(100% - 24px);
}
.diff-ba-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.diff-ba-desc {
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
}

/* =================== COVERS / SLEEVES PAGE =================== */

.covers-hero {
  padding: 40px 0 22px;
  border-bottom: 1px solid var(--line);
}
.covers-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
}
@media (max-width: 900px) {
  .covers-hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .covers-hero-grid > div:last-child { border-left: none !important; padding-left: 0 !important; border-top: 1px solid var(--line); padding-top: 20px; }
  .industry-hero-photo { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
}
.covers-hero h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(32px, 3.8vw, 50px);
  letter-spacing: -0.022em; line-height: 1; color: var(--navy-ink);
  max-width: 18ch;
  text-wrap: balance;
}
.covers-hero h1 em { font-style: italic; color: var(--teal-deep); }
.covers-hero .lead {
  margin-top: 16px; max-width: 65ch; color: var(--ink-2); font-size: 17.5px;
}
.covers-hero .quick {
  margin-top: 22px;
  display: flex; gap: 8px; flex-wrap: wrap;
}

/* Compare table — 4-up side by side, no scrolling on desktop */
.compare {
  border: 1px solid var(--line);
  background: var(--paper);
  margin-top: 28px;
}
.compare-head {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}
.compare-head .ch-label {
  padding: 18px 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  border-right: 1px solid var(--line);
}
.compare-col-head {
  padding: 18px 18px 16px;
  border-right: 1px solid var(--line);
  position: relative;
}
.compare-col-head:last-child { border-right: none; }
.compare-col-head .cch-num {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  color: var(--muted); text-transform: uppercase;
}
.compare-col-head .cch-name {
  font-family: var(--sans); font-weight: 700;
  font-size: 26px; letter-spacing: -0.012em; color: var(--navy);
  margin-top: 4px; line-height: 1.1;
}
.compare-col-head .cch-tag {
  margin-top: 6px; font-size: 12.5px; color: var(--teal-deep); font-weight: 600;
}
.compare-col-head.featured {
  background: rgba(45,166,180,0.08);
}
.compare-col-head.hash-selected,
.compare-photos .cp-cell.hash-selected,
.compare-row .cr-cell.hash-selected {
  background-color: rgba(45,166,180,0.14);
  box-shadow: inset 0 0 0 2px rgba(45,166,180,0.42);
}
.compare-photos .cp-cell.hash-selected::after {
  content: "Selected";
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-ink);
  background: var(--teal-bright);
  padding: 4px 6px;
  border-radius: 2px;
}
.compare-col-head .featured-pill {
  position: absolute; top: 10px; right: 12px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--teal-deep);
  border: 1px solid rgba(45,166,180,0.4); padding: 3px 6px; border-radius: 2px;
}

.compare-row {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.compare-row:last-child { border-bottom: none; }
.compare-row .cr-label {
  padding: 12px 18px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  border-right: 1px solid var(--line);
  display: flex; align-items: center;
  background: var(--paper-2);
}
.compare-row .cr-cell {
  padding: 12px 18px;
  border-right: 1px solid var(--line);
  font-size: 15.5px; color: var(--ink); display: flex; align-items: center;
  font-variant-numeric: tabular-nums;
}
.compare-row .cr-cell:last-child { border-right: none; }
.compare-row .cr-cell.strong { font-weight: 600; color: var(--navy); }
.compare-row .cr-cell .dotgood { color: #2C7E3B; }
.compare-row .cr-cell .dotok   { color: var(--teal-deep); }
.compare-row .cr-cell .dotno   { color: #8B95A1; }
.compare-row .cr-cell .dotgood::before,
.compare-row .cr-cell .dotok::before,
.compare-row .cr-cell .dotno::before {
  content: "●"; margin-right: 8px; font-size: 9px; vertical-align: middle;
}

.compare-photos {
  display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}
.compare-photos .cp-label {
  padding: 12px 18px;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  border-right: 1px solid var(--line);
  background: var(--paper-2);
  display: flex; align-items: center;
}
.compare-photos .cp-cell {
  border-right: 1px solid var(--line);
  height: 140px;
  background-size: cover; background-position: center;
  position: relative;
}
.compare-photos .cp-cell:last-child { border-right: none; }
.compare-photos .cp-cell .cp-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(rgba(14,26,43,0), rgba(14,26,43,0.82));
  color: #fff;
  padding: 18px 12px 10px;
  min-height: 44px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
  text-align: left;
  display: flex; align-items: flex-end;
}

/* "Pick a sleeve" decision strip */
.decision {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  margin-top: 28px;
}
.decision .dx {
  background: var(--paper); padding: 16px 18px;
  display: grid; gap: 4px;
}
.decision .dx-k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.decision .dx-q {
  font-family: var(--sans); font-weight: 600; font-size: 17px;
  color: var(--navy); letter-spacing: -0.005em; line-height: 1.3;
}
.decision .dx-a {
  font-size: 15px; color: var(--ink-2); margin-top: 6px; line-height: 1.45;
}

/* =================== CONTACT =================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--paper);
}
.contact-form-wrap {
  padding: 22px 32px 20px;
  border-right: 1px solid var(--line);
}
.contact-form-wrap h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing: -0.022em; line-height: 1; color: var(--navy-ink);
}
.contact-form-wrap h1 em { font-style: italic; color: var(--teal-deep); }
.contact-form-wrap .lead {
  margin-top: 10px; max-width: 52ch; font-size: 16px; color: var(--ink-2);
}

.form-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  font: 500 16px/1.35 var(--sans);
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  transition: border-color .15s, background .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--navy); background: #fff;
}
.form-textarea { min-height: 92px; resize: vertical; }
.form-disclose {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.form-disclose > summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); font-weight: 600;
}
.form-disclose > summary::after {
  content: "＋"; font-family: var(--mono); font-size: 14px; color: var(--teal-deep);
}
.form-disclose[open] > summary::after { content: "−"; }
.form-disclose-body { margin-top: 14px; }

/* Resource picker */
.resource-pick {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-top: 8px;
}
.resource-pick label {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  cursor: pointer; transition: border-color .15s, background .15s;
  background: var(--paper);
}
.resource-pick label:hover { border-color: var(--navy); background: var(--paper-2); }
.resource-pick input { margin-top: 3px; accent-color: var(--navy); }
.resource-pick .r-name {
  font-weight: 600; font-size: 15.5px; color: var(--ink);
}
.resource-pick .r-desc {
  font-size: 12px; color: var(--muted); margin-top: 1px;
}

.form-actions {
  margin-top: 22px;
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap;
}
.form-actions .privacy {
  font-size: 11.5px; color: var(--muted); max-width: 36ch;
}

/* Contact info column */
.contact-info {
  padding: 22px 32px 20px;
  background: var(--paper-2);
}
.contact-info h3 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.contact-block {
  border-top: 1px solid var(--line); padding: 12px 0;
}
.contact-block:first-of-type { border-top: none; padding-top: 0; }
.contact-block .cb-k {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.contact-block .cb-v {
  font-family: var(--sans); font-weight: 600; font-size: 20px;
  color: var(--navy); letter-spacing: -0.005em; line-height: 1.25; margin-top: 4px;
}
.contact-block .cb-sub {
  font-size: 15px; color: var(--ink-2); margin-top: 4px;
}

/* Other Divisions — compact logo buttons.
   Horizontal cards: small logo plate on the left, division label and
   arrow on the right. Logos are capped to a polite max-height so the
   block reads as a button row, not three full-size logo posters. */
.division-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}
.division-btn {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 14px;
  padding: 8px 14px 8px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  min-height: 56px;
  transition: border-color .15s, background .15s, transform .15s;
}
.division-btn:hover {
  border-color: var(--navy);
  background: #fff;
}
.division-btn-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 92px;
}
.division-btn-logo img {
  display: block;
  max-height: 40px;
  max-width: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.division-btn-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.division-btn-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.division-btn-arrow {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--teal-deep, var(--teal));
  transition: transform .15s;
  margin-left: auto;
}
.division-btn:hover .division-btn-arrow {
  transform: translate(2px, -2px);
}
.division-btn--parent .division-btn-label {
  color: var(--navy);
  font-weight: 600;
}

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

@media (max-width: 1080px) {
  .compare-head, .compare-row, .compare-photos {
    grid-template-columns: 140px repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 26px 0 20px; border-right: none; border-bottom: 1px solid var(--line); }
  .hero-photo { min-height: 280px; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); margin-top: 22px; padding-top: 12px; }

  .sleeve-grid { grid-template-columns: repeat(2, 1fr); }
  .sleeve-grid--three { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; }
  .process-copy { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 20px; }
  .apps-clean { grid-template-columns: 1fr 1fr; }
  .industry-proof-copy { padding: 22px 20px; }
  .industry-proof--with-photo { grid-template-columns: 1fr; }
  .industry-proof-photo { border-left: none; border-top: 1px solid var(--line); min-height: 240px; }
  .industry-proof-photo img { min-height: 240px; }
  .industry-board { grid-template-columns: 1fr; }
  .industry-panel { min-height: auto; padding: 22px 20px; }
  .trust-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .diff-photo { min-height: 240px; }
  .diff-bottom { grid-template-columns: 1fr; padding: 16px 20px 20px; gap: 14px; }
  .diff-ba { grid-template-columns: 1fr 1fr; gap: 10px; }
  .diff-side-cta { padding: 18px 18px 20px; }
  .diff-side-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .diff-side-cta-actions .btn { flex: 1 1 auto; }
  .diff-copy { padding: 26px 20px 8px; grid-template-columns: 1fr; row-gap: 4px; }
  .diff-copy h3 { grid-column: 1; max-width: none; }
  .diff-copy p { grid-column: 1; max-width: none; }
  .diff-points { grid-column: 1; grid-row: auto; margin-top: 14px; }

  /* Covers compare: switch to scroll-snap horizontal carousel */
  .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
  .compare { min-width: 880px; }
  .decision { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 20px 18px; border-right: none; border-bottom: 1px solid var(--line); }
  .contact-info { padding: 18px 18px; }
  .form-grid { grid-template-columns: 1fr; gap: 10px; }
  .resource-pick { grid-template-columns: 1fr; }

  .covers-hero { padding: 28px 0 18px; }
}

@media (max-width: 560px) {
  .sleeve-grid { grid-template-columns: 1fr; }
  .sleeve-grid--three { grid-template-columns: 1fr; }
  .apps-clean { grid-template-columns: 1fr; }
  .apps-cta { flex-direction: column; align-items: stretch; }
  .apps-cta .btn { width: 100%; text-align: center; }
  .trust-row { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .decision { grid-template-columns: 1fr; }

  /* Hero: avoid awkward wraps from text-wrap:balance on phones */
  .hero h1 { text-wrap: pretty; max-width: none; }
  .covers-hero h1 { text-wrap: pretty; max-width: none; }
  .hero-copy { padding: 22px 0 18px; }
  .hero-photo { min-height: 220px; }
  .hero-sub { margin-top: 16px; font-size: 16px; }
  .hero-meta { margin-top: 18px; gap: 8px; }
  .hero-meta .m-v { font-size: 17px; }

  /* Sleeve / process cards: tighter on phone */
  .sleeve-card { padding: 16px 16px 14px; }
  .sleeve-card .sc-name { font-size: 22px; }
  .sleeve-grid--three .sleeve-card .sc-name { font-size: 19.5px; }
  .sleeve-card .sc-body { margin-top: 10px; font-size: 15.5px; }
  .process-copy { padding: 18px 16px; }
  .process-steps .step { padding: 12px 16px; gap: 10px; grid-template-columns: 44px 1fr; }
  .process-steps .step-num { font-size: 28px; }

  /* Apps cards & industry panels: tighter */
  .app-card { padding: 16px 16px 14px; min-height: auto; gap: 6px; }
  .app-card .ac-name { font-size: 18px; }
  .industry-panel { padding: 18px 16px; }
  .industry-proof-copy { padding: 18px 16px; }
  .diff-copy { padding: 22px 16px 6px; }
  .diff-photo { min-height: 200px; }
  .diff-ba { grid-template-columns: 1fr; padding: 12px 16px 18px; gap: 10px; }
  .diff-ba-item { aspect-ratio: 4 / 3; }

  /* Covers compare carousel chrome */
  .compare-col-head { padding: 14px 14px 12px; }

  /* Contact: Tier 1 priority, tier 2/3 collapsibles compact */
  .contact-form-wrap { padding: 18px 14px; }
  .contact-info { padding: 18px 14px; }
  .division-btn { grid-template-columns: 76px 1fr; gap: 10px; min-height: 48px; padding: 6px 12px 6px 8px; }
  .division-btn-logo { height: 32px; width: 76px; }
  .division-btn-logo img { max-height: 32px; max-width: 76px; }
  .form-grid { gap: 10px; margin-top: 14px; }
  .fluoron-form-card { padding: 14px 14px; }
  .fluoron-form-card details.fluoron-collapsible { margin-top: 12px; }
  .fluoron-form-card details.fluoron-collapsible > summary.fluoron-collapse-summary { padding: 12px 12px; gap: 10px; }
  .fluoron-form-card .fluoron-collapsible .fluoron-section-body { padding: 4px 12px 14px; }
  .fluoron-form-card .fluoron-section-heading { font-size: 1rem; }
  .fluoron-form-card .fluoron-collapsible .fluoron-section-heading { font-size: 1rem; }
  .fluoron-form-card .fluoron-quote-readiness { padding: 10px 12px 12px; margin: 0 0 14px; }
  .fluoron-form-card .fluoron-quote-readiness-label { font-size: 10.5px; letter-spacing: 0.12em; }
  .fluoron-form-card .fluoron-quote-readiness-percent { font-size: 16px; }
  .fluoron-form-card .fluoron-field > label { font-size: 0.95rem; }
  .fluoron-form-card input,
  .fluoron-form-card select,
  .fluoron-form-card textarea { padding: 9px 11px; font-size: 16px; min-height: 42px; }
  .fluoron-form-card textarea { min-height: 88px; }
  .fluoron-form-card .fluoron-submit { width: 100%; padding: 12px 20px; font-size: 15px; min-height: 46px; }

  /* Form disclosure (non-CRM contact pages) */
  .form-actions { margin-top: 18px; }
  .form-actions .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   WordPress integration overrides
   ========================================================= */

/* Strip Gutenberg vertical block gap that fights our compact density */
.wp-site-blocks > main.wp-block-group,
.wp-site-blocks > main.wp-block-group > .wp-block-group {
  margin-top: 0 !important;
}

/* Ensure full-bleed prototype sections aren't constrained by the editor wrap */
.aegis-fullbleed,
.aegis-fullbleed > .wp-block-group {
  max-width: none;
  padding: 0;
}

/* Active link highlight using body class set by functions.php */
body.page-home    .nav-links a[data-key="home"],
body.page-covers  .nav-links a[data-key="covers"],
body.page-industries .nav-links a[data-key="industries"],
body.page-resources  .nav-links a[data-key="resources"],
body.page-contact .nav-links a[data-key="contact"] {
  color: var(--navy);
}
body.page-home    .nav-links a[data-key="home"]::after,
body.page-covers  .nav-links a[data-key="covers"]::after,
body.page-industries .nav-links a[data-key="industries"]::after,
body.page-resources  .nav-links a[data-key="resources"]::after,
body.page-contact .nav-links a[data-key="contact"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--teal);
}

/* Footer brand hierarchy: Spectrum on top spanning full width,
   three division logos in one row equal columns below. Already handled by
   .foot-rail rules in base.css (rail-parent spans 1/-1, divisions on row 2). */

/* Fluoron CRM lead form on Contact page — match our chrome */
.fluoron-form-card {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 18px 20px;
  margin: 16px auto 0;
  border-radius: var(--r-sm);
}
.fluoron-form-card .fluoron-submit {
  background: var(--navy);
  color: var(--on-navy);
  border: 1px solid var(--navy);
  padding: 11px 22px;
  min-height: 46px;
  font: 600 14px/1 var(--sans);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: background .18s;
}
.fluoron-form-card .fluoron-submit:hover { background: var(--navy-deep); }
/* Field-question labels: direct, readable, sentence-case — defer to form.css
   defaults. We previously forced mono-uppercase here, which made every
   question read like a tiny chip; that override has been removed so the
   form.css label styling (sentence case, 1rem, weight 600) wins.
   NOTE: vertical margin is intentionally NOT set here. The label-to-input
   distance is controlled by the flex `gap` on .fluoron-field (see the
   structural override at the bottom of this file). */
.fluoron-form-card .fluoron-field > label {
  display: block;
  line-height: 1.15;
  padding: 0;
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
}
/* De-emphasise helper text under inputs so it reads as guidance, not as a
   second label. Vertical margin is intentionally NOT set here — the gap
   to the input above is owned by the flex `gap` on .fluoron-field. */
.fluoron-form-card .fluoron-helper-text {
  display: block;
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
  font-style: italic;
}
/* Section headings remain compact and confident, but no longer in mono caps. */
.fluoron-form-card .fluoron-section-heading {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--navy);
}
.fluoron-form-card .fluoron-section-valueprop {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
}
/* Optional indicator (small, subtle) for fields that may stay blank. */
.fluoron-form-card .fluoron-field > label .fluoron-optional {
  margin-left: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  text-transform: none;
  letter-spacing: normal;
}
.fluoron-form-card input,
.fluoron-form-card select,
.fluoron-form-card textarea {
  font: 500 16px/1.35 var(--sans);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 9px 12px;
  min-height: 42px;
}
.fluoron-form-card textarea {
  min-height: 92px;
}

/* Hide the legacy fluoron-affil-rail if any old style remained */
.fluoron-affil-rail { display: none !important; }

/* =========================================================
   CRM form — collapsible Tier 2/3 sections
   Built on native <details>/<summary> so progressive disclosure
   needs no JS. Tier 1 stays visible above; the two collapsibles
   start closed and reveal on click.
   ========================================================= */
.fluoron-form-card details.fluoron-collapsible {
  margin-top: 16px;
  padding: 0;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.fluoron-form-card details.fluoron-collapsible[open] {
  background: var(--paper);
}
.fluoron-form-card details.fluoron-collapsible > summary.fluoron-collapse-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  margin: 0;
  border: 0;
  background: transparent;
  transition: background-color .15s ease;
}
.fluoron-form-card details.fluoron-collapsible > summary::-webkit-details-marker {
  display: none;
}
.fluoron-form-card details.fluoron-collapsible > summary:hover {
  background: rgba(45, 156, 175, 0.06);
}
.fluoron-form-card details.fluoron-collapsible > summary:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--teal);
}
.fluoron-form-card .fluoron-collapse-summary-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
}
.fluoron-form-card .fluoron-collapsible .fluoron-section-heading {
  display: inline;
  margin: 0;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--navy);
}
.fluoron-form-card .fluoron-collapse-optional {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
  letter-spacing: normal;
  text-transform: none;
  margin-left: 4px;
}
.fluoron-form-card .fluoron-collapsible .fluoron-section-valueprop {
  display: block;
  margin: 0;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
}
.fluoron-form-card .fluoron-collapse-icon {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  transition: transform .15s ease, background .15s ease;
}
.fluoron-form-card .fluoron-collapse-icon::before,
.fluoron-form-card .fluoron-collapse-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  transition: transform .15s ease;
}
.fluoron-form-card .fluoron-collapse-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.fluoron-form-card details.fluoron-collapsible[open] .fluoron-collapse-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.fluoron-form-card details.fluoron-collapsible[open] .fluoron-collapse-icon {
  background: var(--teal-deep);
}
.fluoron-form-card .fluoron-collapsible .fluoron-section-body {
  padding: 4px 16px 16px;
}

/* Quote Readiness bar — thicker, teal fill, clearer label.
   Overrides the form.css defaults so this reads as a real progress
   indicator instead of a thin grey strip. */
.fluoron-form-card .fluoron-quote-readiness {
  margin: 0 0 16px;
  padding: 12px 14px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
}
.fluoron-form-card .fluoron-quote-readiness-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.fluoron-form-card .fluoron-quote-readiness-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy-deep);
}
.fluoron-form-card .fluoron-quote-readiness-percent {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: var(--teal-deep);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.fluoron-form-card .fluoron-quote-readiness-track {
  position: relative;
  width: 100%;
  height: 10px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.fluoron-form-card .fluoron-quote-readiness-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-deep) 0%, var(--teal) 60%, var(--teal-bright) 100%);
  border-radius: 999px;
  transition: width 260ms ease;
}

/* Resources form — heading vs. helper-text hierarchy.
   The heading reads as a real question; the intro paragraph reads as
   secondary guidance so it doesn't compete visually with the checkbox
   labels. */
.fluoron-form-card .fluoron-resources-heading {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--navy);
}
.fluoron-form-card .fluoron-resources-intro {
  margin-top: 4px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
}
/* Checkbox row labels stay sentence-case, weight 500, full readable size. */
.fluoron-form-card .fluoron-resources-option {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  align-items: center;
}
.fluoron-form-card .fluoron-resources-label {
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

/* =========================================================
   Structural label-to-field rule (theme-side mirror).

   Root cause of the previously reported gap: the label-to-input distance
   was being controlled by margin on the <label> *and* margin on the
   <input> at multiple selectors across the plugin + theme stylesheets.
   Any one of those rules being overridden by a generic <p>/<label>/<input>
   selector — including WordPress's wp-block-library block-spacing — would
   re-open the gap.

   The structural fix: make .fluoron-field a flex column with `gap: 5px`,
   and zero every direct child's vertical margin. The distance between
   label, control, and helper text is now owned by the flex container and
   cannot be re-introduced by any margin set elsewhere. Both the plugin
   form.css and this theme stylesheet declare the same structural rules
   so the form is correct even if one stylesheet is dequeued.
   ========================================================= */
.fluoron-form-card .fluoron-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}
.fluoron-form-card .fluoron-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 3px;
  min-width: 0;
  margin: 0;
  padding: 0;
}
.fluoron-form-card .fluoron-field--span2 {
  grid-column: 1 / -1;
}
.fluoron-form-card .fluoron-field > label,
.fluoron-form-card .fluoron-field > .fluoron-label,
.fluoron-form-card .fluoron-field > legend,
.fluoron-form-card .fluoron-field > input,
.fluoron-form-card .fluoron-field > select,
.fluoron-form-card .fluoron-field > textarea,
.fluoron-form-card .fluoron-field > .fluoron-helper-text,
.fluoron-form-card .fluoron-field > small {
  margin: 0 !important;
}
.fluoron-form-card .fluoron-field > label,
.fluoron-form-card .fluoron-field > .fluoron-label,
.fluoron-form-card .fluoron-field > legend {
  display: block;
  line-height: 1.15;
  padding-bottom: 0;
}
@media (max-width: 600px) {
  .fluoron-form-card .fluoron-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================================================
   Horizontal overflow safety net
   Eliminate site-wide horizontal scroll on laptop/desktop widths
   where the topbar + nav + CTA, the hero grid image, or the
   comparison table could push the page wider than the viewport.

   Strategy:
   1. Clip horizontal overflow on the root so no descendant can make
      the document scroll sideways, while keeping vertical scroll.
   2. Give intrinsic-min-content grid/flex children `min-width: 0` so
      their content (long words, images, wide grids) can shrink.
   3. Add laptop breakpoints (≤1200, ≤1100) to compact the header
      before it overflows.
   4. Make the comparison table internally scrollable above 900px too,
      so the page can never inherit its 880-column minimum.
   ========================================================= */
html, body {
  overflow-x: clip;
  max-width: 100%;
}

/* Grid/flex children that contain text or images need to allow
   shrinking below their content's intrinsic minimum size, otherwise
   they push the parent wider than the viewport. */
.hero-grid > *,
.covers-hero-grid > *,
.contact-grid > *,
.process > *,
.diff > *,
.industry-board > *,
.industry-proof > *,
.nav-inner > *,
.topbar-inner > * {
  min-width: 0;
}

/* Photos in flex/grid cells: never exceed their cell. */
.hero-photo,
.hero-photo img,
.industry-proof-photo,
.industry-proof-photo img,
.diff-photo,
.diff-ba-item img,
.industry-hero-photo img {
  max-width: 100%;
}

/* Header brand logo: cap to its column so long division names or a
   wider sourced logo can't push the nav out. */
.nav .brand-logo {
  max-width: 100%;
}

/* Topbar: let the family-of-brands links wrap when the laptop is
   narrow rather than overflow off the right edge. */
.topbar-inner {
  flex-wrap: wrap;
  row-gap: 4px;
}
.topbar-links { flex-wrap: wrap; }

/* Compare table: keep desktop's 4-up grid but isolate its overflow
   inside .compare-wrap at every width, so it can never push the
   document wider than the viewport. */
.compare-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Laptop-narrow band: trim the nav so the brand, primary links, and
   the Request a Quote CTA fit without clipping at ~1100–1280px. */
@media (max-width: 1200px) {
  .wrap-wide { padding: 0 24px; }
  .nav-inner { gap: 20px; }
  .nav-links { gap: 22px; }
  .topbar-label { display: none; }
}
@media (max-width: 1100px) {
  .nav-inner { gap: 14px; }
  .nav-links { gap: 16px; font-size: 13.5px; }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
  .brand-logo { height: 34px; }
}


/* =========================================================
   AEGIS-only additions — selectors used by the AEGIS templates
   that have no counterpart in the shared Fluoron base sheet.
   ========================================================= */

/* ---------- Coating systems / applications content blocks ---------- */
.coating-block,
.industry-block {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--teal);
  border-radius: 4px;
  padding: 22px 24px;
  margin: 18px 0;
}
.coating-block h2,
.industry-block h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.018em;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
}
.coating-block p,
.industry-block p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 8px 0 10px;
}
.coating-block ul,
.industry-block ul {
  padding-left: 20px;
  margin: 6px 0 8px;
}
.coating-block ul li,
.industry-block ul li {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 4px 0;
}
.coating-block a,
.industry-block a { color: var(--teal-deep); text-decoration: underline; text-underline-offset: 2px; }
.coating-block a:hover,
.industry-block a:hover { color: var(--teal-bright); }

/* Anchor offset so the sticky header doesn't cover the deep-link target. */
.coating-block,
.industry-block {
  scroll-margin-top: 96px;
}

/* ---------- Spec tables (industrial editorial look) ---------- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  margin: 10px 0 6px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
}
.spec-table thead th {
  background: var(--navy);
  color: var(--on-navy);
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11.5px;
  text-align: left;
  padding: 9px 12px;
  border-bottom: 1px solid var(--navy-deep);
}
.spec-table tbody td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
  color: var(--ink-2);
}
.spec-table tbody tr:nth-child(even) td { background: rgba(0,0,0,0.015); }
.spec-table tbody tr:last-child td { border-bottom: none; }

/* ---------- FAQ ---------- */
details.faq {
  border-top: 1px solid var(--line-soft);
  padding: 10px 0;
}
details.faq:first-of-type { border-top: none; padding-top: 0; }
details.faq > summary {
  font-weight: 600;
  font-size: 15.5px;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  padding-right: 28px;
  position: relative;
}
details.faq > summary::-webkit-details-marker { display: none; }
details.faq > summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--mono);
  font-weight: 500;
  color: var(--teal-deep);
  transition: transform 0.15s;
}
details.faq[open] > summary::after { content: "−"; }
details.faq > p {
  margin: 8px 0 4px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
}

/* ---------- Hero photo — real coating photo with dark overlay for legibility ---------- */
.hero-photo {
  position: relative;
  background:
    linear-gradient(135deg, var(--navy-ink) 0%, var(--navy) 55%, var(--teal-deep) 100%);
  min-height: 360px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
}
.hero-photo::before {
  /* Dark gradient + warm thermal-spray plume tint over the photo so the
     spec card and tag chip stay readable on any image. */
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,16,31,0.20) 0%, rgba(7,16,31,0.55) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(217,135,68,0.22), transparent 55%),
    radial-gradient(ellipse at 20% 90%, rgba(177,106,42,0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-photo > *:not(img) { position: relative; z-index: 2; }
.hero-photo .photo-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 2px;
  z-index: 2;
}
.hero-photo .photo-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(0,0,0,0.45);
  padding: 10px 12px;
  border-radius: 2px;
}
.hero-photo .photo-spec .ps-k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.hero-photo .photo-spec .ps-v {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* ---------- Footer rail — AEGIS active state ---------- */
.rail-division.is-aegis {
  border-color: var(--teal);
  background: rgba(45,166,180,0.08);
}

/* =========================================================
   AEGIS — Premium hero / proof / family rail
   Designed to override the older split hero on the homepage.
   No overlapping text; full-bleed dark image with a controlled
   gradient scrim and constrained copy column.
   ========================================================= */

/* Brand logo in nav — render the real AEGIS wordmark cleanly. */
.brand-logo {
  width: auto;
  height: 44px;
  max-width: 220px;
  display: block;
  object-fit: contain;
}
@media (max-width: 720px) {
  .brand-logo { height: 36px; max-width: 170px; }
  .nav-inner { height: 56px; gap: 12px; }
  .nav-links { display: none; }
}

/* Hide the old text wordmark variant if it lingers. */
.brand-wordmark { display: none; }

/* ---------- aegis-hero ---------- */
.aegis-hero {
  position: relative;
  background: var(--navy-jet);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.aegis-hero-media {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.aegis-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  display: block;
  filter: saturate(0.9) contrast(1.05) brightness(0.85);
}
/* Layered scrim: deep navy on the left for legibility, fading right. */
.aegis-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg,
      rgba(6,17,42,0.96) 0%,
      rgba(10,27,51,0.88) 38%,
      rgba(10,27,51,0.55) 62%,
      rgba(10,27,51,0.30) 100%),
    linear-gradient(180deg,
      rgba(6,17,42,0.20) 0%,
      rgba(6,17,42,0.55) 100%);
}
.aegis-hero-inner {
  position: relative;
  z-index: 1;
  padding: 88px 32px 72px;
  width: 100%;
}
.aegis-hero-copy {
  max-width: 720px;
}
.aegis-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
}
.aegis-hero-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--teal-bright);
}
.aegis-hero-h1 {
  margin-top: 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.028em;
  color: #fff;
  display: block;
  text-wrap: balance;
}
.aegis-hero-h1 > span {
  display: block;
}
.aegis-hero-h1-stop em {
  font-style: normal;
  color: var(--teal-bright);
  font-weight: 700;
}
.aegis-hero-sub {
  margin-top: 26px;
  max-width: 58ch;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(234,240,246,0.86);
}
.aegis-hero-ctas {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-aegis-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1px solid var(--teal);
  transition: background .18s, transform .18s, border-color .18s;
}
.btn-aegis-primary:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
}
.btn-aegis-primary .arr { transition: transform .18s; }
.btn-aegis-primary:hover .arr { transform: translateX(3px); }
.btn-aegis-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.32);
  transition: background .18s, border-color .18s;
}
.btn-aegis-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.55);
}
.aegis-hero-meta {
  margin: 44px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  max-width: 980px;
}
.aegis-hero-meta li {
  display: grid; gap: 4px;
  min-width: 0;
}
.aegis-hero-meta .m-k {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(234,240,246,0.55);
}
.aegis-hero-meta .m-v {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.003em;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .aegis-hero { min-height: 520px; }
  .aegis-hero-inner { padding: 64px 24px 56px; }
  .aegis-hero-meta { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
}
@media (max-width: 640px) {
  .aegis-hero-inner { padding: 48px 20px 44px; }
  .aegis-hero-h1 { font-size: clamp(38px, 11vw, 52px); }
  .aegis-hero-sub { font-size: 16px; margin-top: 20px; }
  .aegis-hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-aegis-primary, .btn-aegis-ghost { justify-content: center; }
  .aegis-hero-meta { grid-template-columns: 1fr 1fr; }
}

/* ---------- Family rail directly under hero ---------- */
.aegis-family-rail {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.86);
}
.aegis-family-rail-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 32px;
  flex-wrap: wrap;
}
.aegis-family-label {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.aegis-family-logos {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.aegis-family-logos li { display: flex; }
.aegis-family-logos a {
  display: inline-flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity .18s;
  padding: 4px 0;
}
.aegis-family-logos a:hover { opacity: 1; }
.aegis-family-logos img {
  height: 30px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: brightness(1.5) saturate(0.4);
}
@media (max-width: 640px) {
  .aegis-family-rail-inner { gap: 16px; padding: 16px 20px; }
  .aegis-family-logos { gap: 20px; }
  .aegis-family-logos img { height: 24px; max-width: 130px; }
}

/* ---------- AEGIS proof section (3 steps + salt-spray result) ---------- */
.aegis-proof {
  padding: 64px 0 48px;
  background: var(--paper);
}
.aegis-proof-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.aegis-proof-card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--teal);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.aegis-proof-step {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  font-weight: 600;
}
.aegis-proof-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.012em;
  line-height: 1.2;
  color: var(--navy);
  margin: 2px 0 0;
}
.aegis-proof-card p {
  margin: 6px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
}
.aegis-proof-result {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
  background: linear-gradient(135deg, var(--navy-jet) 0%, var(--navy) 100%);
  color: #fff;
  border-radius: var(--r-md);
  overflow: hidden;
}
.aegis-proof-result-stat {
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.aegis-proof-result-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  font-weight: 600;
}
.aegis-proof-result-number {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.aegis-proof-result-number small {
  font-size: 0.36em;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.8);
  margin-left: 4px;
}
.aegis-proof-result-label {
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 30ch;
}
.aegis-proof-result-copy {
  padding: 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.aegis-proof-result-copy h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0;
}
.aegis-proof-result-copy p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(234,240,246,0.85);
}
.aegis-proof-result-caveat {
  font-size: 13px !important;
  color: rgba(234,240,246,0.6) !important;
  border-left: 2px solid var(--teal);
  padding-left: 12px;
}
@media (max-width: 900px) {
  .aegis-proof-grid { grid-template-columns: 1fr; gap: 16px; }
  .aegis-proof-result { grid-template-columns: 1fr; }
  .aegis-proof-result-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 28px 24px; }
  .aegis-proof-result-copy { padding: 24px; }
}

/* ---------- Make sure the old .hero rules can't reappear on this page ---------- */
.aegis-fullbleed .hero,
.aegis-fullbleed .hero-grid,
.aegis-fullbleed .hero-photo,
.aegis-fullbleed .hero-copy {
  /* Defensive: if any stray .hero markup is rendered, hide it so it
     never overlaps the new aegis-hero. */
}



/* =========================================================
   AEGIS PROOF DECK — Deck-driven proof under harsh conditions
   ========================================================= */
.aegis-proof-deck {
  background: linear-gradient(180deg, #f7f9fb 0%, #eef3f8 100%);
  padding: 72px 0 88px;
  position: relative;
}
.aegis-proof-deck .wrap-wide { display: flex; flex-direction: column; gap: 56px; }
.aegis-proof-deck-head {
  max-width: 80ch;
  margin: 0;
}
.aegis-proof-deck-eyebrow {
  display: inline-block;
  font-family: var(--display, inherit);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.aegis-proof-deck-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 14px;
}
.aegis-proof-deck-head p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 70ch;
}

/* ----- shared panel chrome ----- */
.proof-panel {
  background: #fff;
  border: 1px solid rgba(11,21,40,0.07);
  border-radius: 12px;
  padding: 36px clamp(20px, 3vw, 40px) 40px;
  box-shadow: 0 24px 56px -32px rgba(11,21,40,0.20);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.proof-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
.proof-panel-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--navy);
  color: #fff;
  font-family: var(--display, inherit);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
  border-radius: 4px;
  flex-shrink: 0;
}
.proof-panel-head h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -0.012em;
}
.proof-panel-lead {
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 80ch;
}
.proof-caveat {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-2);
  background: #f3f6fa;
  border-left: 3px solid var(--teal);
  padding: 12px 16px;
  margin: 0;
  border-radius: 0 6px 6px 0;
}
.proof-caveat strong { color: var(--navy); }

/* ----- Text-only stat row (homepage proof teaser, owned numbers) ----- */
.aegis-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}
.aegis-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 22px 20px;
  border-radius: 8px;
  background: var(--navy-ink);
  color: #fff;
  min-width: 0;
}
.aegis-stat-eyebrow {
  font-family: var(--mono, inherit);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-bright, #5ad1c8);
  font-weight: 600;
}
.aegis-stat-num {
  font-family: var(--display, inherit);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
  color: #fff;
  word-break: break-word;
}
.aegis-stat-num small {
  font-size: 0.5em;
  font-weight: 600;
  margin-left: 2px;
  opacity: 0.9;
}
.aegis-stat-meta {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}

/* ----- 02 / 03 VS panels (before/after grids) ----- */
.proof-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.proof-vs-side {
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #f9fafc;
  border: 1px solid rgba(11,21,40,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.proof-vs-side img {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  object-fit: cover;
  display: block;
  background: #0a1b33;
}
.proof-vs-side figcaption {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-vs-side figcaption strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.proof-vs-side figcaption ul {
  margin: 6px 0 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.45;
}
.proof-vs-side figcaption p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.proof-vs-eyebrow {
  font-family: var(--display, inherit);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.proof-vs-side.is-before { border-top: 3px solid #b14a2c; }
.proof-vs-side.is-before .proof-vs-eyebrow { color: #b14a2c; }
.proof-vs-side.is-after  { border-top: 3px solid var(--teal); }
.proof-vs-side.is-after .proof-vs-eyebrow { color: var(--teal-deep); }

/* ----- 04 COMMERCIAL grid (steel mill) ----- */
.proof-commercial-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}
.proof-commercial-side {
  margin: 0;
  background: #f9fafc;
  border: 1px solid rgba(11,21,40,0.06);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.proof-commercial-side.is-before { border-top: 3px solid #b14a2c; }
.proof-commercial-side.is-before .proof-vs-eyebrow { color: #b14a2c; }
.proof-commercial-side.is-after  { border-top: 3px solid var(--teal); }
.proof-commercial-side.is-after .proof-vs-eyebrow { color: var(--teal-deep); }
.proof-commercial-imgs {
  display: grid;
  gap: 2px;
  background: #0a1b33;
}
.proof-commercial-side.is-before .proof-commercial-imgs { grid-template-columns: 1fr 1fr; }
.proof-commercial-side.is-after  .proof-commercial-imgs { grid-template-columns: 1fr; }
.proof-commercial-imgs img {
  width: 100%;
  height: clamp(240px, 30vw, 380px);
  object-fit: cover;
  display: block;
}
.proof-commercial-side figcaption {
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.proof-commercial-side figcaption strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.01em;
}
.proof-commercial-side figcaption p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.proof-commercial--pump .proof-vs-grid { grid-template-columns: 1fr 1fr; }

/* ----- Closing CTA ----- */
.proof-cta {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: center;
  background: var(--navy-ink);
  color: #fff;
  border-radius: 12px;
  padding: 40px clamp(24px, 3vw, 44px);
  position: relative;
  overflow: hidden;
}
.proof-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(45,166,180,0.25), transparent 50%),
              radial-gradient(circle at 0% 100%, rgba(45,166,180,0.10), transparent 40%);
  pointer-events: none;
}
.proof-cta > div { position: relative; }
.proof-cta-eyebrow {
  display: inline-block;
  font-family: var(--display, inherit);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 10px;
}
.proof-cta h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.012em;
}
.proof-cta p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(234,240,246,0.85);
  max-width: 56ch;
}
.proof-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}
.proof-cta-actions .btn { justify-content: center; }

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .aegis-proof-deck { padding: 56px 0 64px; }
  .aegis-proof-deck .wrap-wide { gap: 36px; }
  .proof-panel { padding: 28px 18px 28px; }
  .proof-panel-head { grid-template-columns: 1fr; gap: 10px; }
  .proof-panel-num { width: 40px; height: 40px; }
  .proof-vs-grid,
  .proof-commercial-grid,
  .proof-cta { grid-template-columns: 1fr; }
  .proof-commercial-side.is-before .proof-commercial-imgs { grid-template-columns: 1fr; }
  .proof-vs-side img,
  .proof-commercial-imgs img { height: clamp(220px, 56vw, 320px); }
  .proof-cta-actions { flex-direction: column; }
  .aegis-stat-row { grid-template-columns: 1fr; gap: 12px; }
  .aegis-stat { padding: 18px 18px 16px; }
}

/* =========================================================
   AEGIS — Mobile pass (≤900 / ≤560 / ≤420)

   Companion to the Fluoron mobile pass; same primitives so the
   two themes feel like one design system on phone. Desktop is
   untouched — every rule here is inside a max-width media query.

   Goals:
   - Add a clean hamburger drawer so primary nav + resources are
     reachable in one tap (previously phones got no nav at all).
   - Eliminate any horizontal scroll: .spec-table gets a
     contained scroll wrapper with a visible cue.
   - Tighten hero / strip / chip-row / proof typography so the
     page reads premium-compact, not airy or shouting.
   - Compact the footer division rail at ≤420 so all three
     division logos read cleanly at 360-class viewports.
   ========================================================= */

/* Document-level overflow safety. */
html, body { overflow-x: clip; }

/* ----- Hamburger toggle button (hidden on desktop) ----- */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 6px 10px 6px 9px;
  color: var(--navy);
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
}
.nav-toggle-bars {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  width: 16px;
  height: 12px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .18s ease, opacity .18s ease;
}
.nav.is-mobile-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
.nav.is-mobile-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}
.nav.is-mobile-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* ----- Slide-down mobile menu ----- */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--paper);
  max-height: calc(100vh - 58px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav.is-mobile-open .mobile-menu { display: block; }
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  padding: 10px 16px 18px;
  gap: 2px;
}
.mobile-menu-link {
  display: block;
  padding: 13px 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu-link.is-active {
  color: var(--navy);
  border-bottom-color: var(--teal);
}
.mobile-menu-group {
  display: flex;
  flex-direction: column;
  margin: 6px 0 2px;
  padding: 8px 0 6px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  gap: 2px;
}
.mobile-menu-group-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 6px 6px;
}
.mobile-menu-sub {
  display: grid;
  gap: 2px;
  padding: 10px 6px;
  border-top: 1px dashed var(--line-soft);
}
.mobile-menu-sub:first-of-type { border-top: none; }
.mobile-menu-sub-k {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.mobile-menu-sub-d {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.4;
}
.mobile-menu-cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--navy);
  color: var(--on-navy);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--r-sm);
}
/* Lock background scroll while the drawer is open. AEGIS-namespaced so
   it does not collide with Fluoron's .fluoron-menu-lock. */
html.aegis-menu-lock,
html.aegis-menu-lock body {
  overflow: hidden;
}

/* ----- Spec table — contained scroll wrapper with a visible cue ----- */
.spec-table-wrap {
  position: relative;
  margin: 10px 0 6px;
}
.spec-table-wrap .spec-table {
  margin: 0;
  min-width: 480px;
}
@media (max-width: 900px) {
  .spec-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--line-soft);
  }
  .spec-table-wrap .spec-table { border: none; }
  .spec-table-wrap::after {
    content: "Swipe to compare →";
    display: block;
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 4px 2px 0;
  }
  /* Wrap raw .spec-table that has not been wrapped at the template level
     so we don't get sideways page scroll either way. */
  .spec-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }
}

/* =========================================================
   ≤900 — phone & small tablet
   ========================================================= */
@media (max-width: 900px) {
  /* Show the hamburger; desktop .nav-links was already hidden under
     the 980px band. Lay the nav-inner as: brand | flex | cta | toggle. */
  .nav-toggle { display: inline-flex; }
  .nav-inner {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    height: 56px;
  }
  .nav-cta {
    padding: 8px 12px;
    font-size: 12.5px;
    gap: 6px;
    white-space: nowrap;
  }
  .brand-logo { height: 34px; max-width: 170px; }

  /* Drop the desktop sticky underline on phone (left a dangling line
     under the shorter mobile bar). */
  .nav-links a.active::after { display: none; }

  /* Sticky FAB CTA — keep it small enough not to cover content. */
  .aegis-fab { left: 12px; right: 12px; bottom: 12px; }
}

/* =========================================================
   ≤560 — tight phone band
   ========================================================= */
@media (max-width: 560px) {
  /* Hero — pull H1 back so it stops dominating; let italic-em break naturally. */
  .hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    letter-spacing: -0.018em;
    line-height: 1.04;
    max-width: none;
    text-wrap: balance;
  }
  .hero-copy {
    padding: 28px 0 22px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .hero-sub {
    margin-top: 14px;
    font-size: 15.5px;
  }
  .hero-ctas {
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-ctas .btn { justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { min-height: 240px; height: clamp(220px, 56vw, 320px); }
  .photo-spec {
    min-width: 0;
    right: 0;
    padding: 12px 14px;
  }
  .photo-spec .ps-v { font-size: 15px; }
  .hero-meta {
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
    padding-top: 12px;
    gap: 10px;
  }
  .hero-meta .m-v { font-size: 16px; }
  .hero-meta .m-k { font-size: 9.5px; }
  .hero-problems {
    margin-top: 12px;
    gap: 5px;
  }
  .hero-problems li {
    font-size: 9.5px;
    padding: 4px 7px;
    line-height: 1.25;
  }

  /* Topbar — tighten so the three division links fit at 375px. */
  .topbar-inner { padding: 0 12px; }
  .topbar-links {
    gap: 6px;
    font-size: 10.5px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .topbar-links a {
    padding: 4px 0;
    white-space: nowrap;
  }

  /* Section strip — section-eyebrow + headline + side meta were a
     three-column grid. The 980 band already collapses to 1 col;
     pull text sizes in tighter at phone widths. */
  .strip h2 {
    font-size: clamp(20px, 5.6vw, 24px);
    line-height: 1.12;
  }
  .strip .strip-meta { font-size: 13.5px; }

  /* Coating-systems blocks — pull body H2 in line with content. */
  .coating-block h2,
  .industry-block h2 {
    font-size: clamp(19px, 5vw, 22px) !important;
    line-height: 1.15;
  }
  .coating-block p,
  .industry-block p { font-size: 15px; }

  /* Compare-table style 4-up grids — let them stack or scroll. */
  .compare,
  .compare-head,
  .compare-row,
  .compare-photos { font-size: 13.5px; }

  /* Spec table — already wrapped to scroll; tighten cell padding. */
  .spec-table thead th { padding: 8px 10px; font-size: 10.5px; }
  .spec-table tbody td { padding: 8px 10px; font-size: 13.5px; }

  /* FAQ summary — tighter font on phone. */
  details.faq > summary { font-size: 14.5px; }

  /* Sticky FAB — slim the conversion CTA so it doesn't eat the form. */
  .aegis-fab-btn { padding: 10px 12px 10px 14px; }
  .aegis-fab-label { font-size: 13px; }
  .aegis-fab-sub { font-size: 9.5px; }
}

/* =========================================================
   ≤420 — narrow phones (iPhone SE / mini, Android 360-class)
   ========================================================= */
@media (max-width: 420px) {
  /* Trim brand + CTA + toggle so all three fit at 360–375px. */
  .nav-cta { padding: 7px 9px; font-size: 11.5px; gap: 4px; }
  .brand-logo { height: 30px; max-width: 140px; }
  .nav-toggle { padding: 5px 8px 5px 7px; font-size: 11px; }
  .nav-toggle-label { display: none; }
  .nav-inner { gap: 6px; }
  .topbar-links a { font-size: 10px; }
  .topbar-sep { font-size: 10px; }

  /* Footer division rail — stack into a single column so the three
     division logos read cleanly at narrow phones. */
  .foot-rail {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
  .foot-rail .rail-parent,
  .foot-rail .rail-division {
    grid-column: 1;
    grid-row: auto;
  }
  .foot-rail .rail-logo-box {
    width: 180px;
    height: 56px;
  }
  .foot-rail .rail-parent .rail-logo-box {
    width: 210px;
    height: 70px;
  }
}

