/* ==========================================================================
   Nucleus Growth Systems - styles.css
   Lightweight, mobile-first stylesheet. No frameworks.
   Contents:
     1. Fonts
     2. Design tokens
     3. Base and reset
     4. Typography helpers
     5. Layout
     6. Buttons
     7. Header and navigation
     8. Hero
     9. Section shells and headings
    10. Problem cards
    11. System stages and example workflows
    12. Support cards
    13. Comparison columns (before/after, fit)
    14. How it works steps
    15. Resources
    16. About
    17. Audit CTA band
    18. FAQ accordion
    19. Final CTA
    20. Footer
    21. Utility pages (privacy, thank-you, 404)
    22. Reveal animation and reduced motion
   ========================================================================== */

/* 1. Fonts (self-hosted, variable, latin subset) */
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/manrope-var-latin.woff2") format("woff2");
  font-weight: 500 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/fonts/inter-var-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* 2. Design tokens */
:root {
  --navy: #071B4A;
  --ink: #080D18;
  --blue: #087CF0;
  --blue-bright: #1598FF;
  --orange: #FF720F;
  --white: #FFFFFF;
  --bg-soft: #F5F7FA;
  --line: #DDE4ED;
  --muted: #68768A;
  --text: #172033;

  --blue-tint: #EAF3FE;
  --navy-soft: #9FB2D6;

  --font-head: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  --radius: 14px;
  --radius-lg: 18px;
  --radius-sm: 10px;

  --shadow-soft: 0 6px 24px rgba(7, 27, 74, 0.07);
  --shadow-card: 0 2px 10px rgba(7, 27, 74, 0.05);

  --header-h: 64px;
  --container: 1120px;
  --gutter: clamp(20px, 5vw, 32px);

  --transition: 180ms ease;
}
@media (min-width: 960px) {
  :root { --header-h: 80px; }
}

/* 3. Base and reset */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 0.5em;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2rem, 5.4vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.25rem); font-weight: 800; letter-spacing: -0.015em; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: var(--blue); }
a:hover { color: var(--blue-bright); }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 2px;
  border-radius: 4px;
}
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; color: var(--white); }

/* 4. Typography helpers */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow--orange { color: var(--orange); }
.lead {
  font-size: 1.09rem;
  color: var(--muted);
  max-width: 46em;
}
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.note {
  font-size: 0.95rem;
  color: var(--muted);
}

/* 5. Layout */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 104px); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--navy); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark p { color: var(--navy-soft); }

/* 6. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 12px;
  border: 1.5px solid transparent;
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--blue);
  color: var(--white);
}
.btn--primary:hover { background: var(--blue-bright); color: var(--white); }
.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }
.btn--light {
  background: var(--white);
  color: var(--navy);
}
.btn--light:hover { background: var(--bg-soft); color: var(--navy); }
.btn--orange {
  background: var(--orange);
  color: var(--white);
}
.btn--orange:hover { background: #FF8630; color: var(--white); }
.btn--block { width: 100%; }
@media (min-width: 640px) {
  .btn--block { width: auto; }
}

/* 7. Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand { gap: 10px; text-decoration: none; }
.brand__mark { height: 38px; width: auto; }
.brand__text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--navy);
  white-space: nowrap;
}
@media (min-width: 960px) {
  .brand__mark { height: 42px; }
  .brand__text { font-size: 1.12rem; }
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  padding: 0;
}
.nav-toggle__bars {
  position: relative;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: background-color var(--transition);
}
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), top var(--transition);
}
.nav-toggle__bars::before { top: -6px; }
.nav-toggle__bars::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { top: 0; transform: rotate(-45deg); }

.site-nav {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 12px var(--gutter) 24px;
  display: none;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.site-nav.is-open { display: block; }
.site-nav__list { display: flex; flex-direction: column; }
.site-nav__list a {
  display: block;
  padding: 13px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--bg-soft);
}
.site-nav__list a:hover { color: var(--blue); }
.site-nav .btn { margin-top: 16px; width: 100%; }

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 28px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    overflow: visible;
    max-height: none;
  }
  .site-nav__list { flex-direction: row; gap: 26px; }
  .site-nav__list a {
    padding: 6px 0;
    border-bottom: 0;
    font-size: 0.96rem;
  }
  .site-nav .btn {
    margin-top: 0;
    width: auto;
    min-height: 44px;
    padding: 10px 20px;
    font-size: 0.92rem;
  }
}

/* 8. Hero */
.hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  padding-block: clamp(56px, 8vw, 96px);
}
.hero__grid {
  display: grid;
  gap: 44px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; gap: 56px; }
}
.hero__copy .lead { margin-bottom: 26px; }
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; flex-wrap: wrap; }
}
.hero__reassure {
  font-size: 0.92rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.hero__reassure::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
}
.hero__visual { position: relative; }
.workflow-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(20px, 3.4vw, 30px);
}
.workflow-card__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--blue-tint);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 8px;
}
.workflow-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  margin: 0 0 18px;
}

/* 9. Section shells and headings: covered by helpers above */

/* 10. Problem cards */
.card-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 640px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-card);
}
.card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 0.96rem; }
.closing-line {
  margin: 36px auto 0;
  max-width: 620px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
}
.closing-line span { color: var(--orange); }

/* 11. System stages and example workflows */
.stages {
  display: grid;
  gap: 14px;
  counter-reset: stage;
}
@media (min-width: 1024px) {
  .stages { grid-template-columns: repeat(5, 1fr); gap: 0; }
}
.stage {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  padding-left: 58px;
}
.stage::before {
  counter-increment: stage;
  content: counter(stage, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 24px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--blue);
}
.stage::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 52px;
  bottom: -15px;
  width: 2px;
  background: var(--line);
}
.stage:last-child::after { display: none; }
.stage h3 { font-size: 1.05rem; margin-bottom: 6px; }
.stage p { margin: 0; font-size: 0.92rem; color: var(--muted); }
@media (min-width: 1024px) {
  .stage {
    border-radius: 0;
    border-right-width: 0;
    padding: 26px 20px 24px;
  }
  .stage:first-child { border-radius: var(--radius) 0 0 var(--radius); }
  .stage:last-child { border-radius: 0 var(--radius) var(--radius) 0; border-right-width: 1px; }
  .stage::before { position: static; display: block; margin-bottom: 10px; }
  .stage::after {
    left: auto;
    right: -9px;
    top: 50%;
    bottom: auto;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    z-index: 1;
  }
  .stage { padding-left: 20px; }
}
.example-flows {
  display: grid;
  gap: 20px;
  margin-top: 44px;
}
@media (min-width: 860px) { .example-flows { grid-template-columns: 1fr 1fr; } }
.example-flow {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.example-flow__label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 6px;
}
.example-flow h3 { font-size: 1.05rem; margin-bottom: 16px; }
.example-flow img { width: 100%; max-width: 440px; }

/* 12. Support cards */
.support-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .support-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .support-grid { grid-template-columns: repeat(3, 1fr); } }
.support-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
}
.support-card__dot {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.support-card__dot svg { width: 19px; height: 19px; }
.support-note {
  margin: 30px auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--muted);
}

/* 13. Comparison columns */
.compare {
  display: grid;
  gap: 20px;
}
@media (min-width: 860px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__col {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 28px 26px;
}
.compare__col--good {
  border-color: rgba(8, 124, 240, 0.35);
  box-shadow: var(--shadow-soft);
}
.compare__col h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--bg-soft);
}
.compare__badge {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}
.compare__badge--off { background: var(--bg-soft); color: var(--muted); border: 1px solid var(--line); }
.compare__badge--on { background: var(--blue); color: var(--white); }
.compare__badge--warn { background: #FFF0E3; color: var(--orange); border: 1px solid #FFD9B8; }
.compare__list li {
  position: relative;
  padding: 9px 0 9px 26px;
  color: var(--text);
  font-size: 0.97rem;
}
.compare__list li + li { border-top: 1px solid var(--bg-soft); }
.compare__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
}
.compare__col--good .compare__list li::before { background: var(--blue); }
.compare__col--warn .compare__list li::before { background: var(--orange); }

/* 14. How it works steps */
.steps {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}
@media (min-width: 640px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  margin-bottom: 16px;
}
.step:last-child .step__num { background: var(--orange); }
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.steps-cta { text-align: center; }

/* 15. Resources */
.resource-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) { .resource-grid { grid-template-columns: repeat(3, 1fr); } }
.resource-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), transform var(--transition);
}
.resource-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-2px); }
.resource-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(120% 140% at 85% 10%, #123268 0%, var(--navy) 45%, #041232 100%);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.resource-cover__brand {
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.resource-cover__title {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}
.resource-cover__title span { color: var(--orange); }
.resource-cover__title span.is-blue { color: var(--blue-bright); }
.resource-cover__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-soft);
}
.resource-cover__meta::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.resource-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 22px 24px 26px;
}
.resource-card__body h3 { font-size: 1.08rem; margin-bottom: 8px; }
.resource-card__body p {
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.resource-card__body .btn { align-self: flex-start; }
.resource-type {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  border-radius: 999px;
  padding: 4px 10px;
  margin-bottom: 12px;
}

/* 16. About */
.about-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}
@media (min-width: 960px) { .about-grid { grid-template-columns: 1.1fr 0.9fr; gap: 64px; } }
.about-visual {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  justify-content: center;
}
.about-visual img { width: 100%; max-width: 340px; }

/* 17. Audit CTA band */
.cta-band {
  position: relative;
  background:
    radial-gradient(90% 130% at 90% 0%, rgba(21, 152, 255, 0.28) 0%, rgba(21, 152, 255, 0) 55%),
    linear-gradient(140deg, var(--navy) 0%, #0A2560 60%, var(--navy) 100%);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--blue-bright) 55%, transparent 100%);
}
.cta-band__inner {
  max-width: 760px;
  text-align: center;
  margin-inline: auto;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--navy-soft); }
.cta-band .lead { margin-inline: auto; margin-bottom: 28px; }
.cta-band__small {
  margin: 18px 0 0;
  font-size: 0.9rem;
  color: var(--navy-soft);
}

/* 18. FAQ accordion */
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-size: 1rem; }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 22px;
  background: var(--white);
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
}
.faq-trigger:hover { color: var(--blue); }
.faq-trigger__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  transition: transform var(--transition), background-color var(--transition);
}
.faq-trigger__icon svg { width: 14px; height: 14px; }
.faq-trigger[aria-expanded="true"] .faq-trigger__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-panel { padding: 0 22px 22px; }
.faq-panel p { margin: 0; color: var(--muted); }
.faq-panel[hidden] { display: none; }

/* 19. Final CTA */
.final-cta { text-align: center; }
.final-cta .lead { margin-inline: auto; margin-bottom: 28px; }

/* 20. Footer */
.site-footer {
  background: var(--ink);
  color: var(--navy-soft);
  padding: clamp(52px, 7vw, 76px) 0 32px;
}
.site-footer__grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(221, 228, 237, 0.14);
}
@media (min-width: 860px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; }
}
.footer-logo-tile {
  display: inline-block;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 18px;
}
.footer-logo-tile img { height: 92px; width: auto; }
.site-footer p { color: var(--navy-soft); font-size: 0.95rem; max-width: 30em; }
.site-footer h3 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--navy-soft);
  text-decoration: none;
  font-size: 0.96rem;
}
.footer-links a:hover { color: var(--white); }
.site-footer__bottom {
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(159, 178, 214, 0.75);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}

/* 21. Utility pages */
.page-hero {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--white) 100%);
  padding-block: clamp(52px, 7vw, 84px);
}
.page-hero--center { text-align: center; }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.35rem; margin-top: 2.2em; }
.prose h2:first-child { margin-top: 0; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.prose li { margin-bottom: 6px; color: var(--text); }
.prose p, .prose li { font-size: 0.99rem; }
.action-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
@media (min-width: 640px) { .action-row { flex-direction: row; flex-wrap: wrap; } }
.big-code {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4rem, 14vw, 7rem);
  line-height: 1;
  color: var(--line);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

/* 22. Reveal animation and reduced motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ------- Audit band checklist columns ------- */
.cta-band__cols {
  display: grid;
  gap: 22px;
  margin: 30px 0 34px;
  text-align: left;
}
.cta-band__col {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px 26px;
}
.cta-band__col h3 {
  color: var(--white);
  font-size: 1.02rem;
  margin: 0 0 14px;
}
.cta-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  color: var(--navy-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}
.cta-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>')
    center / 9px no-repeat, var(--blue-bright);
}
.cta-list--orange li::before { background-color: var(--orange); background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>'); }
@media (min-width: 760px) {
  .cta-band__cols { grid-template-columns: 1.06fr 1fr; gap: 26px; }
  .cta-band__inner { max-width: 900px; }
}

/* ------- Point of contact card ------- */
.person-card {
  display: grid;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.person-card__photo img {
  width: 100%;
  height: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius);
  display: block;
}
.person-card__body h2 { margin-bottom: 14px; }
.person-card__body p { color: var(--muted); margin-bottom: 14px; max-width: 56ch; }
.person-card__body .btn { margin-top: 8px; }
@media (min-width: 760px) {
  .person-card {
    grid-template-columns: 300px 1fr;
    align-items: center;
    padding: 34px;
  }
}
@media (max-width: 759px) {
  .person-card__photo { max-width: 320px; margin-inline: auto; width: 100%; }
}
