/* ==========================================================================
   Master Repurpose — design system v37 "Signal"
   Direction: structured, editorial-professional. Sharp-edged panels, split
   asymmetric layouts, left-rule typography, flat colour blocks instead of
   soft glassy gradients. Palette anchored on #3999ce.
   ========================================================================== */

:root {
  /* Brand blue */
  --blue-900: #0d2c3d;
  --blue-800: #123c53;
  --blue-700: #1b567a;
  --blue-600: #2678a3;
  --blue-500: #3999ce;   /* anchor */
  --blue-400: #5cb0dc;
  --blue-300: #8ecbe6;
  --blue-200: #bfe0f0;
  --blue-100: #dcedf7;
  --blue-50:  #eff7fb;

  /* Neutral ink */
  --ink-950: #0f1a22;
  --ink-900: #16242e;
  --ink-800: #24333e;
  --ink-700: #3c4c58;
  --ink-500: #64757f;
  --ink-400: #8b9aa3;
  --ink-300: #b6c2c8;
  --ink-200: #dbe3e7;
  --ink-100: #eef2f4;

  /* Warm accent — used sparingly, for emphasis marks only */
  --accent: #d9762f;
  --accent-600: #b85f21;
  --accent-100: #fbe7d5;

  --surface: #ffffff;
  --bg: #f6f8f9;
  --border: #dfe6ea;

  --brand-50:  #eff7fb;
  --brand-700: var(--blue-700);
  --brand-800: var(--blue-800);

  --font-display: "Manrope", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --r-full: 999px;

  --sh-sm: 0 1px 2px rgba(15, 26, 34, 0.05), 0 2px 8px rgba(15, 26, 34, 0.04);
  --sh-md: 0 14px 34px rgba(18, 60, 83, 0.10);
  --sh-lg: 0 26px 60px rgba(18, 60, 83, 0.16);

  --container: 1240px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.legal-body ul { list-style: disc; }
h1, h2, h3, h4, p, dl, dd { margin: 0; }
button { font-family: inherit; cursor: pointer; }
main { flex: 1; }

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.75rem;
}

/* ---------- Typography ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
  padding-left: 0.9rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--blue-500);
}
.eyebrow.blue, .eyebrow.green { color: var(--blue-700); }
.eyebrow.red { color: var(--accent-600); }
.eyebrow.red::before { background: var(--accent); }
.eyebrow.on-dark { color: var(--blue-200); }
.eyebrow.on-dark::before { background: var(--blue-300); }
.eyebrow.center { padding-left: 0; }
.eyebrow.center::before { content: none; }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-size: clamp(2rem, 1.45rem + 2.5vw, 3.2rem);
  color: var(--ink-950);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-size: clamp(1.6rem, 1.32rem + 1.25vw, 2.3rem);
  color: var(--ink-950);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.32;
  color: var(--ink-950);
}
.lede {
  font-size: 1.06rem;
  line-height: 1.72;
  color: var(--ink-500);
}
.text-muted { color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-sm { padding: 0.65rem 1.2rem; font-size: 0.82rem; }
.btn-gold, .btn-orange {
  background: var(--blue-500);
  color: #fff;
  box-shadow: var(--sh-sm);
}
.btn-gold:hover, .btn-orange:hover { background: var(--blue-700); box-shadow: var(--sh-md); }
.btn-navy, .btn-blue {
  background: var(--ink-950);
  color: #fff;
}
.btn-navy:hover, .btn-blue:hover { background: var(--blue-800); }
.btn-green { background: var(--blue-500); color: #fff; }
.btn-green:hover { background: var(--blue-700); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.14); border-color: #fff; }
.btn-outline-navy {
  border-color: var(--ink-950);
  color: var(--ink-950);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--ink-950); color: #fff; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header — flat bar, square logo mark, left nav after brand, thin rule
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); }
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink-950);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.brand::before {
  content: "";
  width: 10px;
  height: 28px;
  background: var(--blue-500);
  flex-shrink: 0;
}
.brand > span { white-space: nowrap; }
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 3px;
}
.primary-nav-wrap { margin-left: auto; margin-right: 0.5rem; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
}
.primary-nav a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--ink-700);
  padding: 0.3rem 0;
  transition: color 0.15s ease;
}
.primary-nav a:hover { color: var(--blue-600); }
.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header-actions .btn { flex-shrink: 0; border-radius: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  width: 44px;
  height: 44px;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink-800);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
#mobile-nav { display: none; }

@media (max-width: 1120px) {
  .primary-nav-wrap { display: none; }
  .header-actions .btn-sm { display: none; }
  .nav-toggle { display: inline-flex; }
  #mobile-nav.is-open {
    display: block;
    background: var(--surface);
    border-top: 1px solid var(--border);
    box-shadow: var(--sh-md);
    padding: 0.5rem 0 1rem;
  }
  #mobile-nav ul { list-style: none; display: flex; flex-direction: column; }
  #mobile-nav a {
    display: block;
    padding: 0.95rem 1.75rem;
    color: var(--ink-700);
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border);
  }
  #mobile-nav a:hover { color: var(--blue-700); background: var(--blue-50); }
  #mobile-nav .btn { margin: 1rem 1.75rem 0.5rem; width: calc(100% - 3.5rem); }
}

/* ==========================================================================
   Inner-page hero — flat two-tone split band with vertical rule
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--ink-950);
  color: #fff;
  overflow: hidden;
  padding-block: 4rem 3.5rem;
}
.page-hero::after {
  content: "";
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  background: var(--blue-700);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.9;
}
.page-hero .wrap { position: relative; }
.page-hero-inner { max-width: 720px; display: flex; flex-direction: column; align-items: flex-start; gap: 1.1rem; border-left: 3px solid var(--blue-500); padding-left: 1.5rem; }
.page-hero h1 { color: #fff; }
.page-hero .lede { color: var(--blue-100); max-width: 600px; }
.page-hero .eyebrow { color: var(--blue-200); }
.page-hero .eyebrow::before { background: var(--blue-300); }

.crumb-trail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-200);
  width: fit-content;
  max-width: 100%;
}
.crumb-trail a { color: #fff; }
.crumb-trail a:hover { color: var(--blue-200); }
.crumb-trail span { color: var(--blue-400); }

/* ==========================================================================
   Home hero — asymmetric split: copy left, stat ledger right
   ========================================================================== */
.home-hero {
  position: relative;
  background: var(--ink-950);
  color: #fff;
  padding-block: 5rem 0;
  overflow: hidden;
}
.home-hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4rem;
}
.home-hero-copy { border-left: 3px solid var(--blue-500); padding-left: 1.75rem; }
.home-hero-copy .eyebrow { margin-bottom: 1.4rem; color: var(--blue-200); }
.home-hero-copy .eyebrow::before { background: var(--blue-300); }
.home-hero-copy h1 { color: #fff; margin-bottom: 1.3rem; text-align: left; }
.home-hero-copy .lede { color: var(--blue-100); max-width: 540px; }
.home-hero-actions { display: flex; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; justify-content: flex-start; }
.home-hero-actions .btn-outline-light {
  border-color: var(--blue-400);
  color: #fff;
}
.home-hero-actions .btn-outline-light:hover { background: var(--blue-500); border-color: var(--blue-500); }

.hero-chip-row {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
  background: var(--blue-800);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-chip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: left;
}
.hero-chip:last-child { border-bottom: none; }
.hero-chip .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--blue-300);
}
.hero-chip p { font-size: 0.82rem; color: var(--blue-100); line-height: 1.45; }
@media (max-width: 980px) {
  .home-hero .wrap { grid-template-columns: 1fr; padding-bottom: 3rem; }
}

/* visual strip — text-beside-image split panel, not overlapping card */
.home-visual-strip { position: relative; z-index: 2; padding-block: 5rem; background: var(--surface); overflow: hidden; }
.home-visual-strip .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  padding-block: 0;
  min-height: 460px;
}
.home-visual-strip .frame {
  position: relative;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  order: 2;
  overflow: hidden;
  min-height: 320px;
}
.home-visual-strip img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.visual-note {
  position: relative;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--blue-900);
  border: none;
  border-radius: 0;
  padding: 3rem 3rem;
  color: #fff;
  order: 1;
  justify-content: center;
}
.visual-note .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-300);
  padding: 0;
  border-radius: 0;
  white-space: nowrap;
  background: none;
}
.visual-note p { color: var(--blue-100); font-size: 1rem; line-height: 1.75; }
@media (max-width: 900px) {
  .home-visual-strip .wrap { grid-template-columns: 1fr; min-height: 0; }
  .home-visual-strip .frame { order: 1; height: 320px; min-height: 320px; }
  .visual-note { order: 2; padding: 2.5rem 1.75rem; }
}

/* ==========================================================================
   Section shell
   ========================================================================== */
.section { padding-block: 6rem; }
.section-head { max-width: 640px; margin-bottom: 3.25rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { margin-inline: auto; }
.section-head h2 { margin-top: 1rem; }
.section-head .lede { margin-top: 0.9rem; }

/* ==========================================================================
   Feature section — three-up flat ledger row instead of bento
   ========================================================================== */
.bento { padding-block: 6rem; background: var(--bg); }
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  margin-top: 3.25rem;
  align-items: stretch;
  border: 1px solid var(--border);
}
.bento-primary {
  grid-column: 1 / 3;
  background: var(--ink-950);
  color: #fff;
  border-radius: 0;
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: none;
  border-right: 1px solid var(--border);
}
.bento-primary .bento-icon {
  width: 44px; height: 44px;
  border-radius: 0;
  background: var(--blue-500);
  color: #fff;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.bento-primary h3 { font-size: 1.5rem; margin-bottom: 0.8rem; color: #fff; }
.bento-primary p { color: var(--blue-100); line-height: 1.75; }
.bento-primary ul {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.bento-primary li { display: flex; gap: 0.7rem; font-size: 0.92rem; color: #fff; align-items: flex-start; }
.bento-primary li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 8px;
  flex-shrink: 0;
  border-radius: 0;
  background: var(--blue-400);
}
.bento-side { grid-column: 3 / 4; display: flex; flex-direction: column; gap: 0; }
.bento-card {
  background: var(--surface);
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 2.25rem 2rem;
  box-shadow: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background-color 0.18s ease;
}
.bento-card:last-child { border-bottom: none; }
.bento-card:hover { background: var(--blue-50); }
.bento-card::before {
  content: "";
  display: block;
  width: 26px; height: 3px;
  border-radius: 0;
  background: var(--blue-500);
  margin-bottom: 1.1rem;
}
.bento-card:nth-child(2)::before { background: var(--accent); }
.bento-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; margin-bottom: 0.6rem; color: var(--ink-950); }
.bento-card p { font-size: 0.89rem; line-height: 1.7; color: var(--ink-500); }
@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-primary { grid-column: auto; grid-row: auto; border-right: none; border-bottom: 1px solid var(--border); }
  .bento-side { grid-column: auto; }
}

/* ==========================================================================
   Zigzag feature row — flush edge-to-edge media, flat copy panel
   ========================================================================== */
.zigzag { padding-block: 6rem; background: var(--surface); }
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
}
.zigzag-media { position: relative; }
.zigzag-media::before { content: none; }
.zigzag-media img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.zigzag-copy { padding: 3rem; display: flex; flex-direction: column; justify-content: center; }
.zigzag-copy h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.zigzag-copy p { color: var(--ink-500); line-height: 1.8; }
.zigzag-copy p + p { margin-top: 1rem; }
.zigzag-copy ul { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.zigzag-copy ul li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.94rem;
  color: var(--ink-700);
  align-items: flex-start;
  background: none;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.zigzag-copy ul li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 0;
  background: var(--blue-500);
}
@media (max-width: 820px) {
  .zigzag-row { grid-template-columns: 1fr; }
  .zigzag-media { order: -1; }
  .zigzag-copy { padding: 2rem; }
}

/* ==========================================================================
   Steps — vertical ledger list with large index numerals
   ========================================================================== */
.steps-section { background: var(--ink-950); padding-block: 6rem; color: #fff; }
.steps-section .section-head .eyebrow { color: var(--blue-200); }
.steps-section .section-head .eyebrow::before { background: var(--blue-300); }
.steps-section .section-head h2 { color: #fff; }
.steps-section .section-head .lede { color: var(--blue-100); }
.steps-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.steps-track::before { content: none; }
.step-card {
  position: relative;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  border-radius: 0;
  padding: 2rem 0;
  margin-top: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.step-card .step-num {
  position: static;
  transform: none;
  width: auto; height: auto;
  display: block;
  border-radius: 0;
  background: none;
  color: var(--blue-400);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  box-shadow: none;
  line-height: 1;
}
.step-card h3 { font-size: 1.15rem; margin-bottom: 0.55rem; color: #fff; }
.step-card p { font-size: 0.92rem; color: var(--blue-100); line-height: 1.65; max-width: 620px; }
@media (max-width: 620px) {
  .step-card { grid-template-columns: 56px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .step-card .step-num { font-size: 1.5rem; }
}

/* ==========================================================================
   Skills — single-column stacked ledger, number left rail
   ========================================================================== */
.skills-columns {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}
.skill-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.9rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  transition: background-color 0.18s ease;
  counter-increment: skill;
}
.skills-columns { counter-reset: skill; }
.skill-row:hover { background: var(--blue-50); }
.skill-row .icon-badge {
  width: 44px; height: 44px;
  border-radius: 0;
  background: none;
  color: var(--blue-500);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1.5px solid var(--blue-200);
}
.skill-row .icon-badge svg { display: none; }
.skill-row .icon-badge::before { content: counter(skill, decimal-leading-zero); }
.skill-row h3 { margin-bottom: 0.45rem; font-size: 1.05rem; }
.skill-row p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.65; }
@media (max-width: 720px) {
  .skill-row { grid-template-columns: 44px 1fr; gap: 1rem; }
}

/* Info card grid (about page) — flat bordered ledger cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0;
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-left: none;
}
.info-card {
  background: var(--surface);
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  padding: 2.1rem;
  box-shadow: none;
  transition: background-color 0.18s ease;
}
.info-card:hover { background: var(--blue-50); }
.info-card .icon-badge {
  width: 40px; height: 40px;
  border-radius: 0;
  background: var(--blue-500);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 1.1rem;
}
.info-card h3 { margin-bottom: 0.55rem; font-size: 1.05rem; }
.info-card p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.65; }

/* ==========================================================================
   Fit-check — stacked comparison ledger, no card chrome
   ========================================================================== */
.fit-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.fit-card { padding: 2.5rem; border-radius: 0; }
.fit-card.yes {
  background: var(--blue-900);
  color: #fff;
  box-shadow: none;
  border-right: 1px solid var(--border);
}
.fit-card.no {
  background: var(--surface);
  border: none;
}
.fit-card h3 { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1.5rem; font-size: 1.08rem; }
.fit-card.yes h3 { color: #fff; }
.fit-card.no h3 { color: var(--ink-800); }
.fit-card ul { display: flex; flex-direction: column; gap: 0; }
.fit-card li { display: flex; gap: 0.75rem; font-size: 0.93rem; align-items: flex-start; line-height: 1.55; padding: 0.65rem 0; }
.fit-card.yes li { color: var(--blue-100); border-bottom: 1px solid rgba(255,255,255,0.12); }
.fit-card.no li { color: var(--ink-600, var(--ink-700)); border-bottom: 1px solid var(--border); }
.fit-card li:last-child { border-bottom: none; }
.fit-card li::before {
  content: "";
  width: 16px; height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: center;
}
.fit-card.yes li::before {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235cb0dc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
}
.fit-card.no li::before {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%2364757f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}
@media (max-width: 760px) { .fit-check { grid-template-columns: 1fr; } .fit-card.yes { border-right: none; border-bottom: 1px solid var(--border); } }

/* ==========================================================================
   Callout — left-rule flat notice bar
   ========================================================================== */
.callout {
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 1.9rem 2.1rem;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--blue-500);
}
.callout h2 { font-size: 1.05rem; color: var(--blue-800); }
.callout p { margin-top: 0.6rem; color: var(--ink-700); }

/* ==========================================================================
   CTA banner — split flat panel, solid colour block right
   ========================================================================== */
.cta-banner {
  position: relative;
  background: var(--ink-950);
  color: #fff;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr auto;
}
.cta-banner::before { content: none; }
.cta-banner::after { content: none; }
.cta-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3.25rem 3rem;
  grid-column: 1 / -1;
  border-left: 6px solid var(--blue-500);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--blue-100); margin-top: 0.6rem; }
.cta-banner .actions { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.cta-banner .btn-orange {
  background: var(--blue-500);
  color: #fff;
  box-shadow: none;
  border-radius: 0;
}
.cta-banner .btn-orange:hover { background: var(--blue-400); }
.cta-banner .btn-outline-light { border-color: rgba(255, 255, 255, 0.6); color: #fff; border-radius: 0; }

/* ==========================================================================
   Contact — flat ledger form + info rail
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0;
  align-items: start;
  border: 1px solid var(--border);
}
@media (max-width: 880px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--surface);
  border: none;
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 2.75rem;
  box-shadow: none;
}
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-size: 0.8rem; font-weight: 600; color: var(--ink-900); }
.field input, .field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--ink-200);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink-900);
  background: var(--bg);
  transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  background: var(--surface);
  box-shadow: 0 0 0 3px var(--blue-100);
}
.field-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--ink-500); }
.field-consent input { margin-top: 0.2rem; accent-color: var(--blue-500); }
.required { color: var(--accent-600); }

.form-alert {
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--accent-100);
  border: 1px solid #edc7ab;
  color: #8a4318;
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.form-alert:not([hidden]) { display: flex; }
.form-alert svg { flex-shrink: 0; margin-top: 0.1rem; }

.form-success { text-align: center; padding: 2rem 1rem; }
.form-success .icon-badge {
  width: 54px; height: 54px;
  border-radius: 0;
  background: var(--blue-500);
  color: #fff;
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
}
.form-success h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--ink-500); font-size: 0.92rem; line-height: 1.6; max-width: 380px; margin-inline: auto; }
.form-success .btn { margin-top: 1.5rem; }

.side-card {
  background: var(--blue-50);
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  padding: 1.9rem 2rem;
  margin-bottom: 0;
}
.side-card h3 {
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--blue-700);
}
.side-card address { font-style: normal; font-size: 0.88rem; color: var(--ink-700); line-height: 1.8; }
.side-card ul { display: flex; flex-direction: column; gap: 0.55rem; }
.side-card a { font-size: 0.88rem; color: var(--blue-700); }
.side-card a:hover { text-decoration: underline; }

/* ==========================================================================
   Accordion FAQ — flat ledger rows, plus-marker toggle
   ========================================================================== */
.accordion-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 0.5rem 1.75rem;
  box-shadow: none;
}
.accordion-group + .accordion-group { margin-top: 2rem; }
.accordion-group h2 {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--blue-700);
  padding: 1.25rem 0 0.75rem;
}
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 0.98rem;
  color: var(--ink-950);
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "";
  width: 22px; height: 22px;
  flex-shrink: 0;
  border-radius: 0;
  background: none;
  border: 1.5px solid var(--blue-300);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231b567a' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.accordion-item[open] summary::after { transform: rotate(135deg); background-color: var(--blue-500); border-color: var(--blue-500); }
.accordion-item[open] summary { color: var(--blue-800); }
.accordion-item .accordion-body {
  padding: 0 0 1.3rem;
  color: var(--ink-500);
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ==========================================================================
   Legal pages — top TOC bar (not sidebar) + flat article
   ========================================================================== */
.legal-hero {
  background: var(--ink-950);
  color: #fff;
  padding-block: 3.25rem;
  position: relative;
  overflow: hidden;
}
.legal-hero .wrap { position: relative; border-left: 3px solid var(--blue-500); padding-left: 1.5rem; }
.legal-hero h1 { color: #fff; font-size: clamp(1.7rem, 1.4rem + 1.4vw, 2.4rem); margin-top: 0.8rem; }
.legal-hero p { color: var(--blue-100); margin-top: 0.5rem; font-size: 0.88rem; }
.legal-hero .crumb-trail { margin-bottom: 1rem; }

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding-block: 0 4.5rem;
  align-items: start;
}
.legal-toc {
  position: static;
  background: var(--blue-50);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0;
  padding: 1.5rem 1.75rem;
  box-shadow: none;
  margin-bottom: 3rem;
}
.legal-toc p.label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin: 0 0 0.9rem;
}
.legal-toc ul { display: flex; flex-wrap: wrap; gap: 0.3rem 0.4rem; }
.legal-toc ul li::before { content: none; }
.legal-toc a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-700);
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--blue-200);
  border-radius: var(--r-full);
  display: block;
  background: var(--surface);
  transition: color 0.15s ease, background-color 0.15s ease;
}
.legal-toc a:hover { color: #fff; background: var(--blue-500); border-color: var(--blue-500); }
.legal-toc .divider { display: none; }

.legal-body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 2.75rem 3rem;
  max-width: none;
  margin-inline: 0;
  box-shadow: none;
  counter-reset: legalsec;
}
.legal-body section { padding-block: 1.9rem; border-bottom: 1px solid var(--border); }
.legal-body section:first-of-type { padding-top: 0; }
.legal-body section:last-of-type { border-bottom: none; padding-bottom: 0; }
.legal-body h2 {
  font-size: 1.12rem;
  margin-bottom: 0.8rem;
  scroll-margin-top: 100px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.legal-body section > h2::before {
  counter-increment: legalsec;
  content: counter(legalsec);
  width: 26px; height: 26px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
}
.legal-body p { color: var(--ink-500); font-size: 0.94rem; line-height: 1.8; }
.legal-body ul { margin-top: 0.6rem; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.45rem; }
.legal-body li { color: var(--ink-500); font-size: 0.92rem; line-height: 1.65; }
.legal-body address {
  font-style: normal;
  background: var(--blue-50);
  border-radius: 0;
  border-left: 3px solid var(--blue-500);
  padding: 1.1rem 1.3rem;
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.85;
  margin-top: 0.6rem;
}
.legal-body table { width: 100%; border-collapse: collapse; margin-top: 1.1rem; font-size: 0.82rem; }
.legal-body th, .legal-body td { text-align: left; padding: 0.7rem 0.8rem; border: 1px solid var(--border); }
.legal-body th { background: var(--blue-50); color: var(--ink-950); font-weight: 700; }

.legal-body .callout h2::before { content: none; counter-increment: none; }

.consent-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--blue-100);
}
.consent-toggle:last-child { border-bottom: none; }
.consent-toggle .switch {
  width: 42px; height: 24px;
  border-radius: var(--r-full);
  background: var(--ink-200);
  border: none;
  position: relative;
  flex-shrink: 0;
  transition: background-color 0.15s ease;
}
.consent-toggle .switch::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--sh-sm);
  transition: left 0.15s ease;
}
.consent-toggle .switch.on { background: var(--blue-500); }
.consent-toggle .switch.on::before { left: 21px; }
.tag-pill {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--blue-800);
  background: var(--blue-100);
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
}

@media (max-width: 880px) {
  .legal-body { padding: 2rem 1.5rem; }
}

/* ==========================================================================
   Module list (program.php) — flat ledger rows, square numeral rail
   ========================================================================== */
.module-list { display: flex; flex-direction: column; gap: 0; margin-top: 3.25rem; border-top: 1px solid var(--border); }
.module-row {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 2rem;
  padding: 2.25rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  transition: background-color 0.18s ease;
}
.module-row:hover { background: var(--blue-50); }
.module-row .module-num { order: -1; }
.module-row:nth-child(even) { grid-template-columns: 96px 1fr; }
.module-row:nth-child(even) .module-num { order: -1; }
.module-num {
  align-self: start;
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: none;
}
.module-row h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.module-row > div:first-child > p.lede { font-size: 0.95rem; margin-bottom: 1.1rem; color: var(--ink-500); }
.module-row .outcomes {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 0.7rem;
}
.module-row ul { display: flex; flex-direction: column; gap: 0.5rem; }
.module-row li { font-size: 0.88rem; color: var(--ink-700); display: flex; gap: 0.6rem; align-items: flex-start; }
.module-row li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.5rem;
  flex-shrink: 0;
  border-radius: 0;
  background: var(--blue-500);
}
@media (max-width: 720px) {
  .module-row, .module-row:nth-child(even) { grid-template-columns: 56px 1fr; gap: 1.1rem; padding: 1.75rem 0; }
  .module-num { width: 44px; height: 44px; font-size: 1.05rem; }
}

/* ==========================================================================
   Phase list (learning-path.php) — single horizontal rail, numbered ticks
   ========================================================================== */
.phase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  border: 1px solid var(--border);
}
.phase-card {
  position: relative;
  padding: 2rem 1.7rem;
  background: var(--surface);
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}
.phase-card:first-child { border-left: none; }
.phase-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: 0;
  background: var(--blue-500);
}
.phase-card:nth-child(4)::before { background: var(--accent); }
.phase-card .phase-meta { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.phase-card .phase-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-700);
}
.phase-card .phase-duration {
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-400);
}
.phase-card h3 { color: var(--ink-950); margin-bottom: 1rem; font-size: 1rem; }
.phase-card ol { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.phase-card li { font-size: 0.85rem; display: flex; gap: 0.5rem; color: var(--ink-500); line-height: 1.5; }
.phase-card li span.n { font-weight: 700; color: var(--blue-600); }
@media (max-width: 880px) {
  .phase-grid { grid-template-columns: 1fr 1fr; }
  .phase-card:nth-child(2) { border-left: 1px solid var(--border); }
  .phase-card:nth-child(odd) { border-left: none; }
}
@media (max-width: 560px) { .phase-grid { grid-template-columns: 1fr; } .phase-card { border-left: none !important; border-top: 1px solid var(--border); } .phase-card:first-child { border-top: none; } }

/* ==========================================================================
   Project showcase (practice-projects.php) — flat file-card layout
   ========================================================================== */
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 3.25rem; border: 1px solid var(--border); }
.project-card {
  position: relative;
  background: var(--surface);
  border: none;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: background-color 0.18s ease;
}
.project-card:nth-child(odd) { border-right: 1px solid var(--border); }
.project-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.project-card:hover { background: var(--blue-50); }
.project-card-head {
  position: relative;
  background: none;
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 1.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.project-card-head .code {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  background: var(--blue-500);
  color: #fff;
  border-radius: 0;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  box-shadow: none;
}
.project-card-head h3 { font-size: 1.02rem; line-height: 1.35; color: var(--ink-950) !important; }
.project-card-body { padding: 1.8rem 1.9rem 2rem; flex: 1; display: flex; flex-direction: column; gap: 1.1rem; }
.project-card-body p { font-size: 0.9rem; color: var(--ink-500); line-height: 1.65; }
.project-card-body h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-700);
  margin-bottom: 0.6rem;
}
.project-card-body ul { display: flex; flex-direction: column; gap: 0.4rem; }
.project-card-body li { font-size: 0.85rem; color: var(--ink-700); display: flex; gap: 0.5rem; align-items: flex-start; }
.project-card-body li::before {
  content: "";
  width: 6px; height: 6px;
  margin-top: 0.45rem;
  flex-shrink: 0;
  border-radius: 0;
  background: var(--blue-500);
}
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.pill {
  font-size: 0.7rem;
  font-weight: 600;
  background: none;
  border: 1px solid var(--blue-200);
  color: var(--blue-700);
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-full);
}
@media (max-width: 800px) {
  .project-grid { grid-template-columns: 1fr; }
  .project-card:nth-child(odd) { border-right: none; }
  .project-card:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
}

/* ==========================================================================
   Footer — brand-centred top strip, horizontal link bar, split base row.
   Structure (brand/address, programme links, legal links, disclaimer,
   copyright) kept, arrangement rebuilt.
   ========================================================================== */
.site-footer {
  position: relative;
  background: var(--ink-950);
  color: var(--blue-200);
  overflow: hidden;
  border-top: 4px solid var(--blue-500);
}
.site-footer::before { content: none; }
.footer-top { position: relative; padding-block: 4rem 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.footer-brand {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-brand .brand { color: #fff; font-size: 1.15rem; }
.footer-brand .brand > span { display: flex; align-items: center; gap: 0.7rem; }
.footer-brand-intro p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--blue-200);
  max-width: 420px;
  margin-top: 1.25rem;
}
.footer-brand address {
  font-style: normal;
  font-size: 0.86rem;
  line-height: 2;
  color: var(--blue-300);
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--blue-500);
}
.footer-brand address strong { color: #fff; }
.footer-brand address a { color: var(--blue-200); }
.footer-brand address a:hover { color: #fff; }

.footer-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-block: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-col h3 {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.86rem;
  color: var(--blue-200);
  transition: color 0.15s ease, padding-left 0.15s ease;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 1.25rem 1.4rem;
  font-size: 0.78rem;
  line-height: 1.75;
  color: var(--blue-200);
}
.footer-disclaimer a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
  position: relative;
  padding-block: 1.6rem;
  margin-top: 0;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  text-align: left;
  font-size: 0.78rem;
  color: var(--blue-300);
}
.footer-bottom p { position: relative; padding: 0; }
.footer-bottom p + p::before { content: none; }
.footer-bottom strong { color: #fff; }

@media (max-width: 960px) {
  .footer-brand { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-links-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-links-row { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ==========================================================================
   Utility
   ========================================================================== */
.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; }
.mt-lg { margin-top: 3rem; }
.center-text { text-align: center; }
.max-w-prose { max-width: 640px; }
.mx-auto { margin-inline: auto; }
