/* =========================================================================
   Century Products Group — design system
   Pattern: Enterprise Gateway · Style: Trust & Authority
   ========================================================================= */

:root {
  /* Brand */
  --navy-900: #071528;
  --navy-800: #0b1f3a;
  --navy-700: #102a4c;
  --navy-600: #1a3a63;
  --navy-500: #2d5285;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-3: #52627a;
  --line: #e2e6ec;
  --line-2: #cfd6e0;
  --bg: #ffffff;
  --bg-tint: #f5f7fa;
  --bg-tint-2: #eef1f6;
  /* 4.95:1 on white — safe for small bold text */
  --gold: #8f6a16;

  /* Division accents — each ≥4.5:1 against white and against #fff text */
  --create: #1b4f8a;
  --promote: #2f6b45;
  --preserve: #5b3e8e;
  --collect: #86641a;

  /* Type */
  --font-display: 'Lexend', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  --font-logo: 'Cinzel', 'Times New Roman', serif;
  --font-script: 'Parisienne', 'Brush Script MT', cursive;

  /* Space + shape */
  --shell: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow: 0 4px 16px rgba(15, 23, 42, .07), 0 1px 3px rgba(15, 23, 42, .05);
  --shadow-lg: 0 18px 48px rgba(7, 21, 40, .16);

  /* Z-scale */
  --z-header: 30;
  --z-mega: 40;
  --z-overlay: 50;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ------------------------------------------------------------------ reset */

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; }
ul, ol { list-style: none; padding: 0; }

:where(h1, h2, h3, h4) {
  font-family: var(--font-display);
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 600;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 100; background: var(--navy-800); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none; font-weight: 600;
}
.skip:focus { top: 0; }

/* ---------------------------------------------------------------- layout */

.shell { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: 1.5rem; }
.shell--narrow { max-width: 760px; }

.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--navy-800); color: #cbd6e4; }
.section--dark :where(h2, h3) { color: #fff; }
.section--dark .kicker { color: #8fb0d8; }
.section--dark .lead { color: #b6c5d8; }

.section__head { max-width: 780px; margin-bottom: clamp(2rem, 4vw, 3rem); }

.kicker {
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy-600); margin-bottom: .75rem;
}

.h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: .75rem; }
.h3 { font-size: 1.2rem; }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-3); max-width: 68ch; }
.section p + p { margin-top: 1rem; }
.shell--narrow p { max-width: 70ch; }

.pull {
  margin-top: 2rem; padding: 1.25rem 0 1.25rem 1.5rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display); font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.45; color: var(--navy-700); font-weight: 300;
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .8rem 1.4rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  border: 1.5px solid transparent;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
  min-height: 44px;
}
.btn--primary { background: var(--navy-700); color: #fff; }
.btn--primary:hover { background: var(--navy-800); box-shadow: var(--shadow); }
.btn--ghost { border-color: var(--line-2); color: var(--navy-700); background: #fff; }
.btn--ghost:hover { border-color: var(--navy-700); background: var(--bg-tint); }
.btn--sm { padding: .6rem 1.1rem; font-size: .875rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }
.btn .icon { transition: transform .2s var(--ease); }
.btn:hover .icon { transform: translateX(2px); }

.btnrow { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.icon { width: 1.5rem; height: 1.5rem; flex: none; }
.icon--sm { width: 1.1rem; height: 1.1rem; }
.icon--xs { width: .9rem; height: .9rem; }

.iconbtn {
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: var(--radius); color: var(--navy-700);
  transition: background-color .2s var(--ease);
}
.iconbtn:hover { background: var(--bg-tint-2); }

/* ----------------------------------------------------------------- header */

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 4px 20px rgba(7, 21, 40, .08); }

.site-header__inner {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 84px;
}

.logo { display: flex; align-items: center; gap: .7rem; text-decoration: none; flex: none; }
.logo__mark { width: 38px; height: 38px; color: var(--navy-700); flex: none; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__type { display: grid; line-height: 1; }
.logo__name {
  font-family: var(--font-logo); font-weight: 600; font-size: 1.4rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--navy-800);
}
.logo__sub {
  font-family: var(--font-logo); font-size: .6rem; letter-spacing: .22em;
  text-transform: uppercase; color: var(--navy-600); margin-top: .28rem;
}
.logo__sub sup { font-size: .7em; }
.logo__tag {
  font-family: var(--font-body); font-size: .62rem; letter-spacing: .04em;
  color: var(--ink-3); margin-top: .3rem;
}
.logo--footer .logo__name, .logo--footer .logo__sub { color: #fff; }
.logo--footer .logo__tag { color: #93a6bf; }
.logo--footer .logo__mark { color: #fff; }
.logo--footer .logo__mark rect { fill: rgba(255,255,255,.12); }
.logo--footer .logo__mark path { stroke: #fff; }

.primary { margin-left: auto; }
.primary__list { display: flex; gap: .25rem; }
.primary__item { position: static; }

.primary__link {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .65rem .85rem; border-radius: var(--radius);
  font-family: var(--font-display); font-weight: 500; font-size: .95rem;
  color: var(--navy-800); text-decoration: none;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.primary__link:hover, .primary__link.is-active { background: var(--bg-tint-2); }
.primary__link .icon { transition: transform .2s var(--ease); }
.primary__item.is-open .primary__link { background: var(--bg-tint-2); }
.primary__item.is-open .primary__link .icon { transform: rotate(180deg); }

.site-header__actions { display: flex; align-items: center; gap: .35rem; flex: none; }
.iconbtn--menu { display: none; }

/* mega menu */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-lg); z-index: var(--z-mega);
  animation: megaIn .18s var(--ease);
}
@keyframes megaIn { from { opacity: 0; transform: translateY(-6px); } }

.mega__inner {
  display: grid; grid-template-columns: 1fr 300px; gap: 2.5rem;
  padding-block: 2.25rem;
}
.mega__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
.mega--wide .mega__cols { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem; }

.mega__title {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy-700);
  padding-bottom: .6rem; margin-bottom: .75rem; border-bottom: 2px solid var(--line);
}
.mega__col.is-create .mega__title { border-color: var(--create); color: var(--create); }
.mega__col.is-promote .mega__title { border-color: var(--promote); color: var(--promote); }
.mega__col.is-preserve .mega__title { border-color: var(--preserve); color: var(--preserve); }
.mega__col.is-collect .mega__title { border-color: var(--collect); color: var(--collect); }

.mega__note { font-size: .85rem; color: var(--ink-3); margin: -.35rem 0 .9rem; }

.mega__list li + li { margin-top: .15rem; }
.mega__list a {
  display: flex; gap: .7rem; padding: .6rem; border-radius: var(--radius);
  text-decoration: none; transition: background-color .16s var(--ease);
}
.mega__list a:hover { background: var(--bg-tint); }
.mega__ico { color: var(--navy-600); }
.mega__ico .icon { width: 1.25rem; height: 1.25rem; }
.mega__label { display: block; font-family: var(--font-display); font-weight: 500; font-size: .93rem; color: var(--navy-800); }
.mega__text { display: block; font-size: .82rem; color: var(--ink-3); line-height: 1.45; margin-top: .1rem; }

.mega__feature {
  display: flex; flex-direction: column; gap: .5rem; justify-content: center;
  padding: 1.75rem; border-radius: var(--radius-lg); text-decoration: none;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-600));
  color: #cbd6e4;
  transition: box-shadow .2s var(--ease);
}
.mega__feature:hover { box-shadow: var(--shadow-lg); }
.mega__feature-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: #fff; line-height: 1.25; }
.mega__feature-text { font-size: .88rem; line-height: 1.5; }
.mega__feature-cta { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-size: .85rem; font-weight: 500; color: #fff; margin-top: .35rem; }

/* --------------------------------------------------------------- drawer */

.drawer { position: fixed; inset: 0; z-index: var(--z-overlay); background: rgba(7, 21, 40, .5); }
.drawer__panel {
  position: absolute; inset-block: 0; right: 0; width: min(400px, 100%);
  background: #fff; padding: 1.25rem 1.5rem 2rem; overflow-y: auto;
  display: flex; flex-direction: column; gap: 1.25rem;
  animation: drawerIn .22s var(--ease);
}
@keyframes drawerIn { from { transform: translateX(100%); } }

.drawer__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.drawer__nav { flex: 1; }
.drawer__group { border-bottom: 1px solid var(--line); }
.drawer__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 1rem 0; font-family: var(--font-display); font-weight: 500; font-size: 1.05rem;
  color: var(--navy-800); min-height: 44px;
}
.drawer__toggle[aria-expanded="true"] .icon { transform: rotate(180deg); }
.drawer__toggle .icon { transition: transform .2s var(--ease); color: var(--ink-3); }
.drawer__panel-body { padding-bottom: 1rem; }
.drawer__overview { display: inline-block; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy-600); text-decoration: none; font-weight: 600; margin-bottom: .75rem; }
.drawer__coltitle { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 1rem 0 .5rem; }
.drawer__panel-body ul li a { display: block; padding: .55rem 0; text-decoration: none; color: var(--ink-2); min-height: 44px; display: flex; align-items: center; }
.drawer__panel-body ul li a:hover { color: var(--navy-700); }

/* --------------------------------------------------------------- search */

.searchbox { position: fixed; inset: 0; z-index: var(--z-overlay); background: rgba(7, 21, 40, .55); padding: 6vh 1.5rem; }
.searchbox__panel {
  max-width: 680px; margin-inline: auto; background: #fff;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden;
}
.searchbox__field { display: flex; align-items: center; gap: .75rem; padding: .75rem 1rem; border-bottom: 1px solid var(--line); color: var(--ink-3); }
.searchbox__field input { flex: 1; border: 0; outline: none; font-size: 1.05rem; padding: .6rem 0; background: none; }
.searchbox__results { max-height: 55vh; overflow-y: auto; }
.searchbox__results a {
  display: block; padding: .85rem 1.25rem; text-decoration: none; border-bottom: 1px solid var(--line);
}
.searchbox__results a:hover, .searchbox__results a:focus-visible { background: var(--bg-tint); }
.searchbox__results strong { display: block; font-family: var(--font-display); color: var(--navy-800); font-weight: 500; }
.searchbox__results span { display: block; font-size: .85rem; color: var(--ink-3); margin-top: .15rem; }
.searchbox__empty { padding: 1.5rem 1.25rem; color: var(--ink-3); font-size: .92rem; }

/* ------------------------------------------------------------------ hero */

.hero { position: relative; overflow: hidden; background: var(--navy-800); color: #c7d3e2; isolation: isolate; }
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.hero__glow {
  position: absolute; z-index: -1; inset: -40% -10% auto -10%; height: 130%;
  background: radial-gradient(ellipse 50% 55% at 30% 20%, rgba(45, 82, 133, .55), transparent 70%),
              radial-gradient(ellipse 40% 45% at 78% 10%, rgba(169, 118, 30, .22), transparent 70%);
}
.hero__inner { position: relative; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero--home .hero__inner { text-align: center; padding-block: clamp(4rem, 9vw, 7.5rem); }
.hero--home .hero__lead, .hero--home .hero__stats { margin-inline: auto; }

.hero__eyebrow {
  font-family: var(--font-display); font-size: .78rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: #8fb0d8; margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(2.3rem, 5.2vw, 4.1rem); color: #fff; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.08;
}
.hero__title em {
  display: block; font-family: var(--font-script); font-style: normal; font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem); color: #e8c37a; letter-spacing: 0;
  line-height: 1.3; margin-top: .15rem;
}
.hero__title--page { font-size: clamp(2rem, 4.2vw, 3.35rem); max-width: 18ch; }
.hero--home .hero__title--page { max-width: none; }
.hero__sub {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: #d8b876; margin-top: 1rem; max-width: 60ch;
}
.hero__lead { margin-top: 1.35rem; font-size: clamp(1.02rem, 1.5vw, 1.18rem); line-height: 1.65; color: #b9c8da; max-width: 62ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.hero--home .hero__actions { justify-content: center; }
.hero .btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .32); }
.hero .btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }
.hero .btn--primary { background: #fff; color: var(--navy-800); }
.hero .btn--primary:hover { background: #e8c37a; color: var(--navy-900); }

.hero__stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem; margin-top: 3.5rem; padding-top: 2.25rem; max-width: 860px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero__stats dt { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: #8fb0d8; order: 2; margin-top: .3rem; }
.hero__stats dd { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; color: #fff; margin: 0; order: 1; }
.hero__stats > div { display: flex; flex-direction: column; }

/* division accents on page hero */
.hero.is-create .hero__glow { background: radial-gradient(ellipse 55% 55% at 25% 15%, rgba(45, 110, 190, .5), transparent 70%); }
.hero.is-promote .hero__glow { background: radial-gradient(ellipse 55% 55% at 25% 15%, rgba(47, 130, 85, .45), transparent 70%); }
.hero.is-preserve .hero__glow { background: radial-gradient(ellipse 55% 55% at 25% 15%, rgba(116, 80, 172, .45), transparent 70%); }
.hero.is-collect .hero__glow { background: radial-gradient(ellipse 55% 55% at 25% 15%, rgba(180, 138, 45, .42), transparent 70%); }

.crumbs { margin-bottom: 1.75rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .5rem; font-size: .84rem; color: #8fb0d8; }
.crumbs li + li::before { content: '/'; margin-right: .5rem; opacity: .5; }
.crumbs a { text-decoration: none; color: #b9c8da; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current] { color: #fff; }

/* --------------------------------------------------------------- pillars */

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); }
.pillar {
  position: relative; display: flex; flex-direction: column; gap: .6rem;
  padding: clamp(1.75rem, 3vw, 2.75rem) clamp(1.25rem, 2vw, 2rem) clamp(2.5rem, 3vw, 3rem);
  color: rgba(255, 255, 255, .92); text-decoration: none; overflow: hidden;
  transition: background-color .25s var(--ease);
}
.pillar.is-create { background: var(--create); }
.pillar.is-promote { background: var(--promote); }
.pillar.is-preserve { background: var(--preserve); }
.pillar.is-collect { background: var(--collect); }
.pillar::before {
  content: ''; position: absolute; inset: 0; background: rgba(7, 21, 40, .18); opacity: 0;
  transition: opacity .25s var(--ease);
}
.pillar:hover::before { opacity: 1; }
.pillar > * { position: relative; }
.pillar__icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .45); color: #fff; margin-bottom: .5rem;
}
.pillar__name { font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 600; color: #fff; letter-spacing: .01em; }
.pillar__text { font-size: .92rem; line-height: 1.5; }
.pillar__brands { display: flex; flex-direction: column; gap: .2rem; margin-top: .5rem; font-size: .84rem; color: rgba(255, 255, 255, .88); }
.pillar__brands span::before { content: '·'; margin-right: .45rem; }
.pillar__cta { position: absolute; right: clamp(1.25rem, 2vw, 2rem); bottom: clamp(1.25rem, 2vw, 1.75rem); color: #fff; transition: transform .25s var(--ease); }
.pillar:hover .pillar__cta { transform: translateX(4px); }

/* ------------------------------------------------------------ brand strip */

.strip { border-bottom: 1px solid var(--line); background: #fff; }
.strip__inner {
  display: grid; grid-template-columns: repeat(9, minmax(0, 1fr));
  padding-block: 1.5rem;
}
.strip__item {
  display: grid; place-items: center; align-content: center; gap: .15rem;
  padding: .85rem .5rem; text-decoration: none; text-align: center;
  border-left: 1px solid var(--line);
  transition: background-color .2s var(--ease);
}
.strip__item:first-child { border-left: 0; }
.strip__item:hover { background: var(--bg-tint); }
.strip__century {
  font-family: var(--font-logo); font-size: .9rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy-800);
}
.strip__word {
  font-family: var(--font-display); font-size: .62rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--accent);
  line-height: 1.35;
}

/* ----------------------------------------------------------------- cards */

.grid { display: grid; gap: 1.25rem; }
.grid--1 { grid-template-columns: minmax(0, 720px); justify-content: center; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.75rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); text-decoration: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease);
}
.section--tint .card { background: #fff; }
.card--link { cursor: pointer; }
.card--link:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  background: transparent; transition: background-color .2s var(--ease);
}
.card.is-create::before { background: var(--create); }
.card.is-promote::before { background: var(--promote); }
.card.is-preserve::before { background: var(--preserve); }
.card.is-collect::before { background: var(--collect); }

.card__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--radius);
  background: var(--bg-tint-2); color: var(--accent, var(--navy-700)); margin-bottom: 1rem;
}
.card__eyebrow {
  font-family: var(--font-display); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .45rem;
}
.card__title { font-size: 1.2rem; margin-bottom: .5rem; }
.card__text { font-size: .95rem; color: var(--ink-3); line-height: 1.6; }
.card__list { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: .35rem; }
.card__list li {
  font-size: .78rem; padding: .28rem .6rem; border-radius: 100px;
  background: var(--bg-tint-2); color: var(--ink-2);
}
.card__cta {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: auto; padding-top: 1.25rem;
  font-family: var(--font-display); font-size: .875rem; font-weight: 500; color: var(--navy-700);
}
.card__cta .icon { transition: transform .2s var(--ease); }
.card--link:hover .card__cta .icon { transform: translateX(3px); }

/* ------------------------------------------------------------- list cards */

.listcard { padding: 1.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.listcard__title { font-size: 1.1rem; margin-bottom: .4rem; }
.listcard__intro { font-size: .9rem; color: var(--ink-3); margin-bottom: 1rem; line-height: 1.55; }

.ticks { display: grid; gap: .5rem; }
.ticks li { display: flex; align-items: flex-start; gap: .6rem; font-size: .92rem; line-height: 1.5; }
.ticks .icon { color: var(--gold); margin-top: .35rem; }

/* ----------------------------------------------------------------- split */

.split { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split__aside {
  padding: 1.75rem; border-radius: var(--radius-lg);
  background: var(--bg-tint); border: 1px solid var(--line);
}
.section--tint .split__aside { background: #fff; }
.split__aside-title {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--navy-700);
  padding-bottom: .75rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line);
}

/* ----------------------------------------------------------------- chips */

.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  padding: .55rem 1.05rem; border-radius: 100px; background: #fff;
  border: 1px solid var(--line-2); font-size: .92rem; color: var(--ink-2);
  font-family: var(--font-display); font-weight: 400;
}

/* ----------------------------------------------------------------- steps */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 1.5rem; border-top: 2px solid var(--line); }
.step__num { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .1em; color: var(--gold); }
.step__title { font-size: 1.08rem; margin: .5rem 0 .5rem; }
.step p { font-size: .93rem; color: var(--ink-3); line-height: 1.6; }

/* ----------------------------------------------------------------- stats */

.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat { padding: 1.75rem; border: 1px solid rgba(255, 255, 255, .13); border-radius: var(--radius-lg); background: rgba(255,255,255,.03); }
.stat dd { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 600; color: #fff; margin: 0 0 .35rem; letter-spacing: -.02em; }
.stat dt { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: #8fb0d8; }

/* ----------------------------------------------------------------- quote */

.section--quote { padding-block: clamp(3rem, 6vw, 5rem); background: var(--bg-tint); text-align: center; }
.bigquote {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.3rem, 2.8vw, 2rem); line-height: 1.4; color: var(--navy-800);
  letter-spacing: -.01em;
}
.bigquote::before, .bigquote::after { content: '"'; color: var(--gold); }
.bigquote__cite { margin-top: 1.25rem; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }

/* --------------------------------------------------------------- ctaband */

.ctaband { background: linear-gradient(140deg, var(--navy-800) 0%, var(--navy-600) 100%); color: #c7d3e2; }
.ctaband__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 2.5rem;
  padding-block: clamp(2.75rem, 5vw, 4rem); flex-wrap: wrap;
}
.ctaband .h2 { color: #fff; }
.ctaband .lead { color: #b6c5d8; max-width: 56ch; }
.ctaband .btnrow { margin-top: 0; }
.ctaband .btn--primary { background: #fff; color: var(--navy-800); }
.ctaband .btn--primary:hover { background: #e8c37a; }
.ctaband .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.32); }
.ctaband .btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* --------------------------------------------------------------- contact */

.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact form { margin-top: 2rem; display: grid; gap: 1.25rem; }
.field { display: grid; gap: .4rem; }
.field label { font-family: var(--font-display); font-size: .88rem; font-weight: 500; color: var(--navy-800); }
.field .opt { color: var(--ink-3); font-weight: 400; }
.field input, .field select, .field textarea {
  padding: .8rem .9rem; border: 1.5px solid var(--line-2); border-radius: var(--radius);
  background: #fff; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  min-height: 44px; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 3px rgba(45, 82, 133, .15);
}
.field.is-invalid input, .field.is-invalid textarea { border-color: #b3242c; }
.field__err { font-size: .82rem; color: #b3242c; min-height: 0; }
.form__status { font-size: .92rem; margin-top: .25rem; }
.form__status.is-ok { color: var(--promote); font-weight: 600; }

.infocard { padding: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
.infocard + .infocard { margin-top: 1.25rem; }
.infocard--tint { background: var(--bg-tint); }
.infocard h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.infocard p { font-size: .93rem; color: var(--ink-3); }
.infolist { display: grid; gap: 1.1rem; }
.infolist li { display: flex; gap: .85rem; }
.infolist .icon { color: var(--navy-600); margin-top: .15rem; }
.infolist div { display: grid; gap: .1rem; font-size: .95rem; }
.infolist span:first-child { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.infolist a { color: var(--navy-700); text-decoration: none; font-weight: 600; }
.infolist a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------ footer */

.site-footer { background: var(--navy-900); color: #93a6bf; padding-top: clamp(3rem, 6vw, 4.5rem); font-size: .93rem; }
.footer__lead { display: grid; grid-template-columns: 320px 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; }
.footer__blurb { margin: 1.5rem 0; line-height: 1.65; max-width: 42ch; }
.footer__contact { display: grid; gap: .75rem; }
.footer__contact li { display: flex; gap: .6rem; align-items: flex-start; }
.footer__contact .icon { color: #6b8bb3; margin-top: .2rem; }
.footer__contact a { color: #cbd6e4; text-decoration: none; }
.footer__contact a:hover { color: #fff; text-decoration: underline; }

.footer__cols { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.5rem; }
.footer__title { font-family: var(--font-display); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer__cols ul { display: grid; gap: .55rem; }
.footer__cols a { text-decoration: none; font-size: .88rem; transition: color .18s var(--ease); }
.footer__cols a:hover { color: #fff; }

.footer__bar {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-block: 1.75rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .84rem;
}
.footer__legal a { color: #cbd6e4; text-decoration: none; }
.footer__legal a:hover { color: #fff; text-decoration: underline; }

/* ---------------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 1100px) {
  .primary { display: none; }
  .iconbtn--menu { display: grid; }
  .logo__tag { display: none; }
  .footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__lead { grid-template-columns: 1fr; }
  .strip__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: .5rem; }
  .strip__item { border-left: 0; }
}

@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem 1rem; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .shell { padding-inline: 1.25rem; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .statgrid { grid-template-columns: 1fr; }
  .site-header__inner { min-height: 72px; gap: .75rem; }
  .site-header__actions .btn { display: none; }
  .strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ctaband__inner { flex-direction: column; align-items: flex-start; }
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__bar { flex-direction: column; }
  .hero__title--page { max-width: none; }
}

/* --------------------------------------------------------- reduced motion */

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

/* ------------------------------------------------------------------ print */

@media print {
  .site-header, .site-footer, .ctaband, .drawer, .searchbox { display: none; }
  .hero { background: none; color: #000; }
  .hero__title, .hero__title em { color: #000; }
}
