/* ============================================================
   Solvaris Intelligence — design preview
   Palette and voice from solvarisintel.com:
   navy #09203D, pale gold #F7E6A5, gold #D9AE3A, teal (logo),
   blue #3870E1, greys #FAFAFA / #E7E9EB. DS Sans first in stack.
   ============================================================ */

:root {
  --navy: #09203D;
  --navy-2: #0D2A4E;
  --navy-3: #123765;
  --ink: #17293D;
  --slate: #46586C;
  --paper: #FFFFFF;
  --tint: #FAFAFA;
  --grey: #E7E9EB;
  --line: #DBE1E8;
  --line-dark: rgba(255, 255, 255, 0.16);
  --gold: #D9AE3A;
  --gold-pale: #F7E6A5;
  --teal: #54C4B5;
  --blue: #3870E1;
  --sans: "DS Sans", "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, "Times New Roman", serif;
  --ls-kicker: 0.16em;
  --ls-label: 0.12em;
  --ls-btn: 0.08em;
  --wrap: 1160px;
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

[hidden] { display: none; }
.nav-toggle-bars[hidden], .hero-art[hidden], .arch-link[hidden] { display: none; }

a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--blue); }

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

::selection { background: var(--gold-pale); color: var(--navy); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--navy); color: #fff; padding: 0.7rem 1.2rem;
  font-size: 0.9rem; text-decoration: none;
}
.skip:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------
   Type
   ------------------------------------------------------------ */
h1, h2, h3 { font-weight: 400; color: var(--navy); }

.display-1 {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(2.5rem, 5.4vw, 3.9rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-2 {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  line-height: 1.16;
  letter-spacing: -0.005em;
}
h3, .h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.08rem;
  line-height: 1.35;
}

.kicker {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: var(--ls-kicker);
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 1rem;
}
.kicker-gold { color: var(--gold); }
.kicker-teal { color: var(--teal); }

.lede {
  font-size: 1.13rem;
  line-height: 1.7;
  color: var(--slate);
  max-width: 46em;
}

.statement {
  font-family: var(--serif);
  font-weight: 360;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.35;
  color: var(--navy);
}

.claims-line {
  font-size: 0.74rem;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--slate);
}

/* ------------------------------------------------------------
   Buttons: one fill, one ghost
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: var(--ls-btn);
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9em 1.9em;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-fill { background: var(--gold-pale); color: var(--navy); border-color: var(--gold-pale); }
.btn-fill:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn-ghost { background: transparent; color: var(--navy); border-color: rgba(9, 32, 61, 0.4); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); }
.on-dark .btn-ghost, .btn-ghost.light { color: #fff; border-color: var(--line-dark); }
.on-dark .btn-ghost:hover, .btn-ghost.light:hover { border-color: #fff; color: #fff; }
.btns { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }

/* ------------------------------------------------------------
   Header + nav
   ------------------------------------------------------------ */
.site-head {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 76px; }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { width: 158px; height: auto; }

.site-nav > ul { list-style: none; display: flex; align-items: center; gap: 1.9rem; }
.site-nav > ul > li { position: relative; }
.site-nav a:not(.btn), .dd-btn {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}
.site-nav a:not(.btn):hover { color: var(--blue); }
.site-nav a[aria-current="page"]:not(.btn) { color: var(--blue); }

.dd-btn {
  font-family: var(--sans);
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0;
}
.dd-btn:hover { color: var(--blue); }
.dd-caret { width: 9px; height: 9px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform 0.15s ease; }

.dd {
  position: absolute; top: calc(100% + 14px); left: -1.2rem;
  min-width: 262px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.55rem 0;
  display: none;
  flex-direction: column;
  gap: 0;
}
.dd::before { content: ""; position: absolute; top: -15px; left: 0; right: 0; height: 15px; }
.has-dd:hover .dd, .has-dd.open .dd, .has-dd:focus-within .dd { display: flex; }
.has-dd:hover .dd-caret, .has-dd.open .dd-caret { transform: rotate(225deg) translateY(-2px); }
.dd li { list-style: none; }
.dd a {
  display: block; padding: 0.6rem 1.3rem;
  font-size: 0.92rem; text-decoration: none; color: var(--navy);
}
.dd a:hover { background: var(--tint); color: var(--blue); }

.nav-toggle {
  display: none;
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 500; letter-spacing: var(--ls-btn); text-transform: uppercase;
  color: var(--navy); background: none;
  border: 1px solid var(--line); border-radius: 4px;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  align-items: center; gap: 0.6rem;
}
.nav-toggle-bars { display: block; width: 15px; height: 1.5px; background: currentColor; position: relative; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; display: block; width: 15px; height: 1.5px; background: currentColor; position: absolute; left: 0; }
.nav-toggle-bars::before { top: -5px; }
.nav-toggle-bars::after { top: 5px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); }
  .site-nav.open { display: block; }
  .site-nav > ul { flex-direction: column; align-items: stretch; gap: 0; padding: 0.6rem 0 1.1rem; }
  .site-nav > ul > li { border-top: 1px solid var(--tint); }
  .site-nav a:not(.btn), .dd-btn { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 0.85rem clamp(1.25rem, 4vw, 2.5rem); }
  .dd { position: static; border: 0; padding: 0 0 0.5rem; min-width: 0; display: none; }
  .has-dd:hover .dd { display: none; }
  .has-dd.open .dd, .has-dd:focus-within .dd { display: flex; }
  .dd a { padding: 0.55rem calc(clamp(1.25rem, 4vw, 2.5rem) + 1.1rem); }
  .nav-cta { padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem) 0; }
  .nav-cta .btn { display: block; text-align: center; }
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(4rem, 9vh, 6.5rem) 0 clamp(4.5rem, 10vh, 7rem);
}
.hero .kicker { color: var(--gold); }
.hero h1 { color: #fff; }
.hero-sub {
  font-family: var(--serif);
  font-weight: 340;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  line-height: 1.4;
  color: var(--gold-pale);
  margin-top: 1.1rem;
}
.hero-copy { margin-top: 1.6rem; color: rgba(255, 255, 255, 0.78); max-width: 34em; }
.hero-copy + .hero-copy { margin-top: 0.9rem; }

.hero-art { position: relative; min-height: 380px; display: flex; align-items: center; }
.hero-art svg { width: 100%; height: auto; display: block; }

/* path draw-in */
.hpath {
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: pathdraw 2.4s cubic-bezier(0.5, 0, 0.2, 1) forwards;
}
.hpath.p2 { animation-delay: 0.25s; }
.hpath.p3 { animation-delay: 0.5s; }
.hpath.p4 { animation-delay: 0.75s; }
.hpath.p5 { animation-delay: 1s; }
@keyframes pathdraw { to { stroke-dashoffset: 0; } }

.hdot { animation: dotdrift 11s linear infinite; }
.hdot.d2 { animation-duration: 14s; animation-delay: 2s; }
.hdot.d3 { animation-duration: 17s; animation-delay: 5s; }
@keyframes dotdrift { from { offset-distance: 0%; } to { offset-distance: 100%; } }

.hero-fade { opacity: 0; animation: herofade 0.9s ease 0.15s forwards; }
@keyframes herofade { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .hpath { animation: none; stroke-dashoffset: 0; }
  .hdot { animation: none; visibility: hidden; }
  .hero-fade { animation: none; opacity: 1; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 3.2rem; }
  .hero-art { min-height: 0; max-width: 460px; }
}

/* ------------------------------------------------------------
   Bands and layout
   ------------------------------------------------------------ */
.band { padding: clamp(3.8rem, 8vh, 6rem) 0; }
.band-tint { background: var(--tint); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-grey { background: var(--grey); }
.band-navy { background: var(--navy); color: rgba(255, 255, 255, 0.82); }
.band-navy h2, .band-navy h3 { color: #fff; }
.band-navy .kicker { color: var(--gold); }
.band-navy .lede { color: rgba(255, 255, 255, 0.75); }

.sec-head { max-width: 52em; margin-bottom: clamp(2.2rem, 5vh, 3.4rem); }
.sec-head .display-2 { margin-bottom: 1.1rem; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; } }

.prose p + p { margin-top: 1rem; }
.prose .statement { margin-bottom: 1.6rem; }

.link-more {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: var(--ls-btn); text-transform: uppercase;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1.5px;
}
.link-more:hover { color: var(--blue); }

figure.fig-flat figcaption {
  font-size: 0.85rem; color: var(--slate);
  padding-top: 0.8rem;
}
.figclick { cursor: zoom-in; border: 0; background: none; padding: 0; display: block; width: 100%; }
.fig-frame { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; }
.fig-frame img { transition: transform 0.5s ease; }
.figclick:hover .fig-frame img { transform: scale(1.02); }
@media (prefers-reduced-motion: reduce) { .fig-frame img, .figclick:hover .fig-frame img { transition: none; transform: none; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ------------------------------------------------------------
   For Leaders trio: flat editorial columns
   ------------------------------------------------------------ */
.trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
}
.trio-item {
  border-top: 1px solid var(--line);
  padding-top: 1.7rem;
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.trio-item:hover { color: var(--ink); }
.trio-item img { width: 52px; height: auto; margin-bottom: 1.2rem; }
.trio-item h3 { margin-bottom: 0.55rem; transition: color 0.15s ease; }
.trio-item:hover h3 { color: var(--blue); }
.trio-item p { font-size: 0.97rem; color: var(--slate); margin-bottom: 1.1rem; }
@media (max-width: 820px) { .trio { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   Dashboard mock (illustrative interface concept)
   ------------------------------------------------------------ */
.dash {
  background: var(--navy-2);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  font-size: 0.86rem;
}
.dash-top {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.85rem 1.3rem;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.03);
}
.dash-top img { width: 20px; height: auto; }
.dash-title { font-weight: 700; color: #fff; font-size: 0.9rem; }
.dash-tag {
  margin-left: auto;
  font-size: 0.66rem; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--gold-pale);
  border: 1px solid rgba(247, 230, 165, 0.35);
  border-radius: 3px;
  padding: 0.28em 0.75em;
}
.dash-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.95fr;
}
.dash-col { padding: 1.4rem 1.5rem 1.7rem; }
.dash-col + .dash-col { border-left: 1px solid var(--line-dark); }
.dash-label {
  font-size: 0.66rem; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.1rem;
}
.dash-row { margin-bottom: 1.05rem; }
.dash-row:last-child { margin-bottom: 0; }
.dash-k { color: var(--teal); font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.2rem; }
.dash-v { color: rgba(255, 255, 255, 0.88); line-height: 1.45; }

.path-row { margin-bottom: 1.25rem; }
.path-row:last-child { margin-bottom: 0; }
.path-name { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255, 255, 255, 0.88); margin-bottom: 0.45rem; }
.path-range { color: rgba(255, 255, 255, 0.55); font-variant-numeric: tabular-nums; }
.path-bar { position: relative; height: 6px; background: rgba(255, 255, 255, 0.1); border-radius: 3px; overflow: hidden; }
.path-fill {
  position: absolute; top: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s cubic-bezier(0.25, 0.6, 0.25, 1);
}
.path-row.lead .path-fill { background: var(--gold); }
.path-row.lead .path-name { color: #fff; font-weight: 700; }
.dash.in .path-fill { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .path-fill { transition: none; transform: scaleX(1); } }

.assume-list { list-style: none; }
.assume-list li {
  position: relative;
  padding: 0 0 0.85rem 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.assume-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.5em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--teal);
}
.dash-diverge {
  margin-top: 1.1rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line-dark);
  color: var(--gold-pale);
  line-height: 1.5;
}
.dash-note { margin-top: 1.1rem; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
.dash-note.on-light { color: var(--slate); }

@media (max-width: 880px) {
  .dash-grid { grid-template-columns: 1fr; }
  .dash-col + .dash-col { border-left: 0; border-top: 1px solid var(--line-dark); }
}

/* Product-page mini interface panels reuse .dash */
.dash-mini .dash-col { padding: 1.3rem 1.4rem 1.5rem; }

/* Timeline (crisis page) */
.tl { list-style: none; }
.tl li { display: grid; grid-template-columns: 132px 1fr; gap: 0.4rem 1.1rem; align-items: center; margin-bottom: 1.05rem; }
.tl li:last-child { margin-bottom: 0; }
.tl-when { color: var(--teal); font-size: 0.72rem; letter-spacing: 0.04em; text-transform: uppercase; }
.tl-bar { height: 6px; border-radius: 3px; background: rgba(255, 255, 255, 0.1); position: relative; overflow: hidden; }
.tl-bar span { position: absolute; top: 0; bottom: 0; left: 0; border-radius: 3px; background: var(--gold); }
.tl-desc { grid-column: 1 / -1; color: rgba(255, 255, 255, 0.82); font-size: 0.84rem; }

/* Stakeholder rows (public affairs page) */
.stake { list-style: none; }
.stake li { display: flex; align-items: center; gap: 1rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line-dark); }
.stake li:last-child { border-bottom: 0; }
.stake-name { color: rgba(255, 255, 255, 0.88); flex: 1; }
.stake-dots { display: flex; gap: 5px; }
.stake-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); }
.stake-dots i.on { background: var(--teal); }
.stake-dots i.hot { background: var(--gold); }

/* ------------------------------------------------------------
   Pillars (how it works)
   ------------------------------------------------------------ */
.pillars { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3rem); }
.pillar { border-top: 1px solid var(--line); padding-top: 1.6rem; }
.band-navy .pillar { border-top-color: var(--line-dark); }
.pillar h3 { margin-bottom: 0.6rem; }
.pillar p { font-size: 0.97rem; color: var(--slate); }
.band-navy .pillar p { color: rgba(255, 255, 255, 0.75); }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* Architecture diagram */
.arch { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: clamp(1.5rem, 4vw, 2.8rem); }
.arch-flow { display: grid; grid-template-columns: 1fr auto 1.35fr auto 1fr; gap: 1rem; align-items: stretch; }
.arch-node { border: 1px solid var(--line); border-radius: 6px; padding: 1.1rem 1.2rem; background: var(--tint); }
.arch-node.core { background: var(--navy); border-color: var(--navy); color: rgba(255, 255, 255, 0.85); }
.arch-node.core .arch-h { color: var(--gold-pale); }
.arch-h { font-size: 0.7rem; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--slate); margin-bottom: 0.6rem; }
.arch-item { font-size: 0.88rem; line-height: 1.5; padding: 0.3rem 0; }
.arch-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-top: 0.4rem; }
.arch-cell { border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 4px; padding: 0.55rem 0.7rem; font-size: 0.8rem; line-height: 1.4; }
.arch-cell.private { border-style: dashed; }
.arch-link { display: flex; align-items: center; }
.arch-link svg { width: 26px; height: 12px; display: block; }
.arch-base {
  margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--slate);
}
@media (max-width: 880px) {
  .arch-flow { grid-template-columns: 1fr; }
  .arch-link { justify-content: center; height: 26px; }
  .arch-link svg { transform: rotate(90deg); }
}

/* ------------------------------------------------------------
   Team
   ------------------------------------------------------------ */
.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3rem); }
.member { border-top: 1px solid var(--line); padding-top: 1.7rem; }
.member img { width: min(215px, 62%); height: auto; margin-bottom: 1.3rem; }
.member h3 { margin-bottom: 0.15rem; }
.member .role { font-size: 0.74rem; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--slate); margin-bottom: 0.85rem; }
.member .bio { font-size: 0.95rem; color: var(--slate); }
@media (max-width: 820px) { .team-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   Pathways (use cases page)
   ------------------------------------------------------------ */
.paths3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3rem); }
.path3 { border-top: 1px solid var(--line-dark); padding-top: 1.6rem; }
.path3 .who { font-size: 0.7rem; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; }
.path3 p { font-size: 0.95rem; color: rgba(255, 255, 255, 0.75); margin-bottom: 1rem; }
.path3 .link-more { color: #fff; }
@media (max-width: 820px) { .paths3 { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------
   CTA band (their blue band, verbatim style)
   ------------------------------------------------------------ */
.cta-band { background: var(--blue); color: #fff; padding: clamp(3.6rem, 8vh, 5.5rem) 0; text-align: center; }
.cta-band h2 { color: #fff; max-width: 21em; margin: 0 auto 1.1rem; }
.cta-band p { color: rgba(255, 255, 255, 0.88); max-width: 42em; margin: 0 auto 2rem; font-size: 1.1rem; }

/* ------------------------------------------------------------
   Page hero (interior pages)
   ------------------------------------------------------------ */
.page-hero { padding: clamp(3.4rem, 8vh, 5.2rem) 0; }
.page-hero .lede { margin-top: 1.2rem; }
.page-hero-navy { background: var(--navy); }
.page-hero-navy h1 { color: #fff; }
.page-hero-navy .kicker { color: var(--gold); }
.page-hero-navy .lede { color: rgba(255, 255, 255, 0.78); }
.page-hero-grey { background: var(--grey); }
.page-hero-tint { background: var(--tint); border-bottom: 1px solid var(--line); }
.page-hero .prod-icon { width: 56px; height: auto; margin-bottom: 1.5rem; }

.context-list { list-style: none; margin-top: 1.4rem; }
.context-list li { border-top: 1px solid var(--line); padding: 0.85rem 0; font-size: 1rem; }
.on-dark .context-list li { border-top-color: var(--line-dark); color: rgba(255, 255, 255, 0.85); }

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }

.field label { display: block; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.03em; margin-bottom: 0.45rem; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.97rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--blue); outline-offset: 1px; border-color: var(--blue);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--slate); }

.form-success { border: 1px solid var(--line); border-left: 3px solid var(--teal); border-radius: 4px; padding: 1.6rem 1.8rem; background: var(--tint); }
.form-success h3 { margin-bottom: 0.4rem; }
.form-success p { color: var(--slate); font-size: 0.97rem; }
.form-success[hidden] { display: none; }

/* ------------------------------------------------------------
   Lightbox
   ------------------------------------------------------------ */
.lightbox {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(6, 20, 38, 0.93);
  display: flex; align-items: center; justify-content: center;
  padding: 3.5rem 1.5rem 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 88vh; width: auto; border-radius: 6px; background: #fff; }
.lb-close {
  position: absolute; top: 1rem; right: 1.3rem;
  font-size: 2rem; line-height: 1;
  color: #fff; background: none; border: 0; cursor: pointer;
  padding: 0.4rem 0.7rem;
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-foot { background: var(--navy); color: rgba(255, 255, 255, 0.75); padding: clamp(3rem, 7vh, 4.5rem) 0 2.2rem; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 0.4rem 2rem; margin-bottom: 2.4rem; }
.foot-nav a { color: #fff; text-decoration: none; font-size: 0.92rem; font-weight: 500; }
.foot-nav a:hover { color: var(--gold-pale); }
.foot-logo { width: 148px; height: auto; margin-bottom: 1.3rem; }
.foot-desc { max-width: 44em; font-size: 0.95rem; }
.foot-line { border: 0; border-top: 1px solid var(--line-dark); margin: 2.2rem 0 1.6rem; }
.foot-meta { display: flex; flex-wrap: wrap; gap: 0.5rem 2.5rem; justify-content: space-between; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); }
