/* ==========================================================================
   Firmbinder — marketing site design system
   One stylesheet, mobile-first, no build step.
   Palette: graphite primary, brass/gold accent, warm off-white.
   ========================================================================== */

:root {
  /* Color */
  --navy-950: #0c0f15;
  --navy-900: #12161f;
  --navy-800: #1b2330;
  --ink: #1b2435;
  --ink-soft: #44506a;
  --muted: #67718a;
  --indigo: #33508f;
  --indigo-deep: #25407a;
  --indigo-bright: #5d8df0;
  --accent: #b3924e;
  --accent-deep: #927539;
  --accent-soft: #f2ecdd;
  --bg: #faf8f4;
  --surface: #ffffff;
  --line: #e6e1d7;
  --line-strong: #d4cdc0;
  --ok: #2e7d54;
  --ok-soft: #e3f1e9;
  --warn: #a33d2e;

  /* Type */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg: clamp(1.15rem, 1rem + 0.6vw, 1.35rem);
  --fs-h3: clamp(1.2rem, 1.05rem + 0.7vw, 1.5rem);
  --fs-h2: clamp(1.65rem, 1.35rem + 1.4vw, 2.35rem);
  --fs-h1: clamp(2.1rem, 1.6rem + 2.6vw, 3.4rem);

  /* Shape & space */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 3px rgba(16, 29, 51, 0.07);
  --shadow-md: 0 6px 24px -8px rgba(16, 29, 51, 0.16);
  --shadow-lg: 0 18px 48px -16px rgba(16, 29, 51, 0.25);
  --space-section: clamp(3.5rem, 2.5rem + 5vw, 7rem);
  --container: 72rem;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

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

ul, ol { padding-left: 1.25rem; }

strong { font-weight: 650; color: var(--ink); }

::selection { background: var(--accent-soft); }

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

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-narrow { width: min(100% - 2.5rem, 46rem); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  z-index: 200;
  background: var(--navy-900);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
}
.skip-link:focus { left: 0.5rem; color: #fff; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font: 600 1rem/1.2 var(--font);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); color: #fff; }

.btn-navy { background: var(--navy-800); color: #fff; }
.btn-navy:hover { background: var(--navy-900); color: #fff; }

.btn-ghost { background: transparent; color: var(--indigo); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--indigo); color: var(--indigo-deep); background: #fff; }

.btn-light { background: rgba(255, 255, 255, 0.12); color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn-light:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }

.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: var(--fs-sm); }

.cta-note { font-size: var(--fs-xs); color: var(--muted); margin-top: 0.6rem; }

/* --------------------------------------------------------------------------
   Header & nav
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4rem;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
  white-space: nowrap;
}
.brand:hover { color: var(--navy-800); }
.brand svg { width: 28px; height: 28px; flex: none; }

.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a:not(.btn) {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 550;
  padding: 0.25rem 0;
}
.site-nav a:not(.btn):hover { color: var(--ink); }
.site-nav a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Quick exit — discreet but always reachable (header is sticky) */
.quick-exit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--ink-soft);
  font: 600 var(--fs-xs)/1 var(--font);
  cursor: pointer;
  white-space: nowrap;
}
.quick-exit:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.quick-exit svg { width: 12px; height: 12px; }

@media (max-width: 56rem) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -1.25rem;
    right: -1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 1.25rem 1.25rem;
  }
  .site-nav.open { display: flex; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav ul a:not(.btn) {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }
  .site-nav a[aria-current="page"] { box-shadow: none; color: var(--accent-deep); }
  .nav-cta { margin-top: 1rem; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  background:
    radial-gradient(60rem 32rem at 85% -20%, rgba(179, 146, 78, 0.16), transparent 60%),
    radial-gradient(40rem 26rem at -10% 110%, rgba(179, 146, 78, 0.10), transparent 60%),
    linear-gradient(170deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
  color: #e8edf7;
  padding: var(--space-section) 0;
}

.hero h1 { color: #fff; max-width: 22ch; }
.hero .lede {
  font-size: var(--fs-lg);
  color: #b9c4da;
  max-width: 54ch;
  margin-bottom: 1.8rem;
}
.hero .lede strong { color: #fff; }

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 56rem) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }
.hero .cta-note { color: #93a1bd; width: 100%; }

.hero-art { margin-inline: auto; width: min(100%, 26rem); }
.art-float { filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35)); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}
.hero .eyebrow { color: #d9bd86; }
.hero .eyebrow::before { background: #d9bd86; }

/* Page hero (product/inner pages) — lighter variant */
.page-hero {
  padding: clamp(3rem, 2rem + 4vw, 5.5rem) 0;
  background:
    radial-gradient(50rem 28rem at 90% -30%, rgba(179, 146, 78, 0.10), transparent 60%),
    linear-gradient(180deg, #f2ede4 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 24ch; }
.page-hero .lede { font-size: var(--fs-lg); color: var(--ink-soft); max-width: 56ch; margin-bottom: 1.6rem; }

.product-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 1.2rem;
  background: var(--navy-800);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.product-mark svg { width: 30px; height: 30px; }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section { padding: var(--space-section) 0; }
.section-tint { background: #f2ede4; border-block: 1px solid var(--line); }
.section-navy {
  background: linear-gradient(170deg, var(--navy-900), var(--navy-800));
  color: #dde4f0;
}
.section-navy h2, .section-navy h3 { color: #fff; }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 1.5rem + 2vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head p { color: var(--ink-soft); font-size: var(--fs-lg); }
.section-navy .section-head p { color: #b9c4da; }

/* --------------------------------------------------------------------------
   Cards & grids
   -------------------------------------------------------------------------- */

.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 42rem) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 62rem) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 0.4rem; }
.card p { color: var(--ink-soft); font-size: var(--fs-sm); }

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  margin-bottom: 1.1rem;
}
.icon-chip svg { width: 24px; height: 24px; }
.icon-chip.indigo { background: #e7edfb; color: var(--indigo); }
.icon-chip.green { background: var(--ok-soft); color: var(--ok); }

/* Product cards (home) */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
  color: inherit;
}
.product-card h3 { display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap; margin-bottom: 0.4rem; font-size: 1.2rem; }
.product-card p { color: var(--ink-soft); font-size: var(--fs-sm); flex-grow: 1; }
.product-card .card-link {
  margin-top: 1.1rem;
  font-weight: 650;
  font-size: var(--fs-sm);
  color: var(--indigo);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.product-card:hover .card-link { color: var(--accent-deep); }

.status-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--ok-soft);
  color: var(--ok);
  white-space: nowrap;
}
.status-pill.soon { background: #eef1f7; color: var(--muted); }

/* Checklist */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.8rem; }
.checklist li { display: flex; gap: 0.7rem; align-items: flex-start; color: var(--ink-soft); }
.checklist li strong { color: var(--ink); }
.checklist svg { width: 22px; height: 22px; flex: none; margin-top: 0.15rem; color: var(--ok); }
.section-navy .checklist li { color: #c4cee2; }
.section-navy .checklist li strong { color: #fff; }
.section-navy .checklist svg { color: #7fd4a8; }

/* Numbered steps */
.steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.25rem; counter-reset: step; }
@media (min-width: 56rem) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps.steps-4 { grid-template-columns: repeat(4, 1fr); }
}
.steps li {
  counter-increment: step;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-sm);
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.steps h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
.steps p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* Comparison cards (navy section) */
.compare-cards { display: grid; gap: 1.25rem; }
@media (min-width: 56rem) { .compare-cards { grid-template-columns: repeat(3, 1fr); } }
.compare-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
}
.compare-card .who { font-weight: 700; color: #fff; margin-bottom: 0.2rem; }
.compare-card .what { font-size: var(--fs-sm); color: #b9c4da; }
.compare-card .price { font-size: 1.3rem; font-weight: 800; color: #d9bd86; margin: 0.4rem 0; letter-spacing: -0.01em; }

/* Founder block */
.founder-quote {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--ink);
  border-left: 4px solid var(--accent);
  padding-left: 1.4rem;
  margin: 0 0 1rem;
  font-style: italic;
}
blockquote { margin: 0; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

.price-grid { display: grid; gap: 1.25rem; align-items: stretch; }
@media (min-width: 56rem) { .price-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-lg);
}
.price-flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-card h3 { margin-bottom: 0.2rem; }
.price-card .price-for { color: var(--muted); font-size: var(--fs-sm); min-height: 2.6em; }
.price-amount { font-size: 2.4rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin: 0.9rem 0 0.15rem; }
.price-amount .per { font-size: 1rem; font-weight: 550; color: var(--muted); letter-spacing: 0; }
.price-alt { font-size: var(--fs-sm); color: var(--accent-deep); font-weight: 650; margin-bottom: 1.2rem; }
.price-card .checklist { font-size: var(--fs-sm); margin-bottom: 1.6rem; }
.price-card .checklist svg { width: 19px; height: 19px; }
.price-card .btn { margin-top: auto; }

.mini-price {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
}
.mini-price h3 { font-size: 1.05rem; margin: 0; }
.mini-price .tag { font-weight: 800; color: var(--accent-deep); white-space: nowrap; }
.mini-price p { width: 100%; font-size: var(--fs-sm); color: var(--ink-soft); margin: 0.3rem 0 0; }

/* Comparison table */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
table.compare { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); min-width: 38rem; }
table.compare th, table.compare td { text-align: left; padding: 0.9rem 1.1rem; border-bottom: 1px solid var(--line); vertical-align: top; }
table.compare thead th { background: var(--navy-900); color: #fff; font-weight: 650; border-bottom: none; }
table.compare tbody tr:last-child td { border-bottom: none; }
table.compare td.yes { color: var(--ok); font-weight: 650; }
table.compare td.no { color: var(--warn); }
table.compare .us { background: var(--accent-soft); }
.table-note { font-size: var(--fs-xs); color: var(--muted); margin-top: 0.8rem; }

/* Pricing strip on product pages */
.price-strip {
  display: grid;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  box-shadow: var(--shadow-md);
}
@media (min-width: 56rem) { .price-strip { grid-template-columns: 1fr auto; align-items: center; } }
.price-strip .nums { display: flex; flex-wrap: wrap; gap: 0.5rem 2rem; }
.price-strip .num strong { display: block; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.price-strip .num span { font-size: var(--fs-xs); color: var(--muted); }

/* --------------------------------------------------------------------------
   FAQ (native details/summary)
   -------------------------------------------------------------------------- */

.faq { display: grid; gap: 0.8rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  font-weight: 650;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 11px;
  height: 11px;
  border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  margin-top: -4px;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: 4px; }
.faq details > div { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   Callouts & notices
   -------------------------------------------------------------------------- */

.callout {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.6rem 1.75rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.callout svg { width: 26px; height: 26px; flex: none; margin-top: 0.15rem; color: var(--indigo); }
.callout p, .callout li { font-size: var(--fs-sm); color: var(--ink-soft); }
.callout h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.callout.amber { background: var(--accent-soft); border-color: #ecd2bb; }
.callout.amber svg { color: var(--accent-deep); }

.draft-banner {
  background: var(--accent-soft);
  border: 1.5px dashed var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  font-weight: 650;
  color: var(--accent-deep);
  margin-bottom: 2rem;
}

/* Legal prose pages */
.prose h2 { font-size: 1.35rem; margin-top: 2.2em; }
.prose h2:first-of-type { margin-top: 1em; }
.prose p, .prose li { color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Final CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  background:
    radial-gradient(45rem 26rem at 110% -30%, rgba(179, 146, 78, 0.22), transparent 55%),
    linear-gradient(165deg, var(--navy-950), var(--navy-800));
  color: #dde4f0;
  text-align: center;
  padding: var(--space-section) 0;
}
.cta-band h2 { color: #fff; max-width: 26ch; margin-inline: auto; }
.cta-band p { color: #b9c4da; max-width: 52ch; margin-inline: auto; margin-bottom: 1.8rem; font-size: var(--fs-lg); }
.cta-band .hero-actions { justify-content: center; }
.cta-band .cta-note { color: #93a1bd; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-950);
  color: #9aa7c0;
  padding: 3.5rem 0 2.5rem;
  font-size: var(--fs-sm);
}
.footer-grid { display: grid; gap: 2.5rem; margin-bottom: 2.5rem; }
@media (min-width: 56rem) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 0.8rem; }
.site-footer h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.site-footer a { color: #b9c4da; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.8rem;
  display: grid;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: #7e8aa6;
}
.footer-legal p { margin: 0; max-width: 78ch; }
.footer-legal strong { color: #b9c4da; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: var(--fs-sm); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* lead paragraph used on corporate sections */
.section-lead{ font-size: var(--fs-lg); color: var(--ink-soft); }
