/* ==========================================================================
   PostScriptFlow — design system v8 "Foundry"
   A modern, professional direction: clean neutral-graphite surfaces,
   a warm apricot accent (#eb9955), geometric sans display type, crisp
   card systems and confident asymmetric grids. Every section on the
   homepage uses a distinct compositional pattern; shared components
   (CTA banner, module rows, phase cards, accordion, legal, footer)
   are restyled site-wide from this single system.
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  /* --- Apricot accent, anchored on #eb9955 --- */
  --accent-900: #6e3c17;
  --accent-800: #8c4c1c;
  --accent-700: #b05f21;
  --accent-600: #d17527;
  --accent:     #eb9955;   /* anchor */
  --accent-500: #eb9955;
  --accent-400: #f0ac72;
  --accent-300: #f4c297;
  --accent-200: #f8d8bd;
  --accent-100: #fcebdb;
  --accent-50:  #fdf5ec;

  /* --- Graphite / navy scale (structure) --- */
  --ink-950: #14171c;
  --ink-900: #1b1f26;
  --ink-800: #262b34;
  --ink-700: #3a404b;
  --ink-600: #4c525e;
  --ink-500: #6b7280;
  --ink-400: #8b93a1;
  --ink-300: #b4bac4;
  --ink-200: #d9dce2;
  --ink-100: #eceef2;
  --ink-50:  #f5f6f8;

  --surface:   #ffffff;
  --paper:     #faf9f7;
  --white:     #ffffff;
  --border:    #e5e3de;

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

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(20, 23, 28, 0.05), 0 4px 12px rgba(20, 23, 28, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 23, 28, 0.08), 0 20px 48px rgba(20, 23, 28, 0.06);
  --shadow-lg: 0 24px 64px rgba(20, 23, 28, 0.18);

  --container: 1240px;
  --section-y: clamp(4.5rem, 3rem + 6vw, 7.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
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: 2rem;
}
@media (max-width: 560px) { .wrap { padding-inline: 1.25rem; } }

/* ---------- Micro-label ---------- */
.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(--accent-700);
  padding: 0.35rem 0.85rem 0.35rem 0.2rem;
  background: var(--accent-50);
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-left: 0.35rem;
}
.eyebrow.blue, .eyebrow.green { color: var(--ink-800); background: var(--ink-100); }
.eyebrow.blue::before, .eyebrow.green::before { background: var(--ink-700); }
.eyebrow.red { color: var(--accent-800); background: var(--accent-100); }
.eyebrow.on-dark { color: var(--accent-200); background: rgba(255, 255, 255, 0.08); }
.eyebrow.on-dark::before { background: var(--accent); }
.eyebrow.center { justify-content: center; }

/* ---------- Headings ---------- */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  font-size: clamp(2.3rem, 1.5rem + 3.4vw, 3.9rem);
  color: var(--ink-950);
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-size: clamp(1.6rem, 1.35rem + 1.2vw, 2.35rem);
  color: var(--ink-950);
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.008em;
  color: var(--ink-950);
}
.lede {
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--ink-500);
}
.text-muted { color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}
.btn-gold, .btn-orange {
  background: var(--accent);
  color: var(--ink-950);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover, .btn-orange:hover { background: var(--accent-600); color: #fff; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-navy, .btn-blue, .btn-green {
  background: var(--ink-900);
  color: var(--white);
}
.btn-navy:hover, .btn-blue:hover, .btn-green:hover { background: var(--ink-800); transform: translateY(-2px); }
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
.btn-outline-navy {
  border-color: var(--ink-300);
  color: var(--ink-900);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--ink-900); color: var(--white); border-color: var(--ink-900); }
.btn-block { width: 100%; }

/* ==========================================================================
   Header — floating pill nav on a clean surface
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--ink-950);
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 3px;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.35rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.primary-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  color: var(--ink-600);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  transition: color 0.15s ease, background-color 0.15s ease;
}
.primary-nav a:hover { color: var(--ink-950); background: var(--ink-50); }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
}
#mobile-nav { display: none; }

@media (max-width: 1040px) {
  .site-header .wrap { height: auto; flex-wrap: wrap; padding-block: 0.9rem; gap: 0.75rem 2rem; }
  .primary-nav { width: 100%; overflow-x: auto; gap: 0.1rem; padding-bottom: 0.35rem; border-radius: var(--radius-md); }
  .primary-nav a { white-space: nowrap; padding-inline: 0.85rem; }
}

/* ==========================================================================
   Inner-page hero — dark graphite band, centred, radial accent glow
   ========================================================================== */
.page-hero {
  position: relative;
  background: var(--ink-950);
  color: var(--white);
  overflow: hidden;
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 5.5rem);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 0%, rgba(235, 153, 85, 0.22), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(235, 153, 85, 0.08), transparent 45%);
}
.page-hero .wrap { position: relative; }
.page-hero-inner {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.15rem;
}
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: var(--ink-300); }
.page-hero .eyebrow { color: var(--accent-200); background: rgba(235, 153, 85, 0.14); }
.page-hero .eyebrow::before { background: var(--accent); }

.crumb-trail {
  display: flex;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink-400);
}
.page-hero .crumb-trail { justify-content: center; color: var(--ink-400); }
.crumb-trail a { color: var(--ink-400); }
.crumb-trail a:hover { color: var(--white); }

/* ==========================================================================
   Home hero — centred statement, oversized headline, stat rail beneath
   ========================================================================== */
.home-hero {
  position: relative;
  background: var(--ink-950);
  color: var(--white);
  padding-block: clamp(4rem, 2.5rem + 7vw, 7rem) 0;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -20%;
  width: 900px;
  height: 900px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 153, 85, 0.16), transparent 65%);
  opacity: 0.9;
}
.home-hero .wrap {
  position: relative;
  display: block;
}
.home-hero-copy {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.home-hero-copy .eyebrow { color: var(--accent-200); background: rgba(235, 153, 85, 0.14); margin-inline: auto; }
.home-hero-copy h1 { color: var(--white); margin-block: 1.3rem 1.4rem; }
.home-hero-copy .lede { color: var(--ink-300); max-width: 620px; margin-inline: auto; }
.home-hero-actions { display: flex; gap: 1rem; margin-top: 2.25rem; flex-wrap: wrap; justify-content: center; }

.hero-chip-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(3rem, 2rem + 4vw, 4.5rem);
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.hero-chip-row::before { content: none; }
.hero-chip {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 0.4rem;
  flex: none;
  padding: 1.75rem 1.75rem 1.75rem 0;
  border-bottom: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-chip:last-child { border-right: none; }
.hero-chip .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-chip p { font-size: 0.82rem; color: var(--ink-300); line-height: 1.45; }

@media (max-width: 900px) {
  .hero-chip-row { grid-template-columns: 1fr 1fr; }
  .hero-chip:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .hero-chip-row { grid-template-columns: 1fr; }
  .hero-chip { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-inline: 0; }
}

/* ==========================================================================
   Visual strip — two-column: copy card overlapping a full-bleed image
   ========================================================================== */
.home-visual-strip { position: relative; padding-block: clamp(3rem, 2rem + 4vw, 5rem); background: var(--ink-950); }
.home-visual-strip .wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.home-visual-strip .frame { position: relative; padding: 0; border: none; order: 2; min-height: 340px; }
.home-visual-strip .frame::before { content: none; }
.home-visual-strip img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.visual-note {
  position: relative;
  order: 1;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
  padding: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  background: var(--paper);
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.visual-note .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-700);
}
.visual-note p { color: var(--ink-600); font-size: 1rem; line-height: 1.75; max-width: 420px; }
@media (max-width: 780px) {
  .home-visual-strip .wrap { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .home-visual-strip .frame { order: 1; min-height: 260px; }
  .visual-note { order: 2; }
}

/* ==========================================================================
   Feature block — 3-up icon card row + wide highlight strip beneath
   ========================================================================== */
.bento { padding-block: var(--section-y); }
.bento-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3.25rem;
}
.bento-primary {
  order: 1;
  background: var(--ink-950);
  color: var(--white);
  border: none;
  border-top: none;
  border-radius: var(--radius-xl);
  padding: clamp(2.25rem, 1.6rem + 2.5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.bento-primary::before {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 153, 85, 0.18), transparent 70%);
}
.bento-primary .bento-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--ink-950);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 1.2rem;
}
.bento-primary h3 { font-size: 1.55rem; margin-bottom: 0.9rem; color: var(--white); position: relative; }
.bento-primary p { color: var(--ink-300); line-height: 1.8; position: relative; }
.bento-primary ul {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 0;
  border-top: none;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
  padding-left: 1.75rem;
  justify-content: center;
  position: relative;
}
.bento-primary li { display: flex; gap: 0.75rem; font-size: 0.92rem; color: var(--ink-200); align-items: flex-start; }
.bento-primary li::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 0.5rem;
  flex-shrink: 0;
}
.bento-side {
  order: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.bento-card {
  background: var(--white);
  color: var(--ink-800);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.bento-card:nth-child(2) { background: var(--white); }
.bento-card::before {
  content: "";
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-100);
  margin-bottom: 1.25rem;
}
.bento-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
  color: var(--ink-950);
}
.bento-card p { font-size: 0.9rem; line-height: 1.75; color: var(--ink-500); }

@media (max-width: 900px) {
  .bento-primary { grid-template-columns: 1fr; }
  .bento-primary ul { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; }
  .bento-side { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Zigzag row — framed image on tint pad, copy on accent rule
   ========================================================================== */
.zigzag { padding-block: var(--section-y); }
.zigzag-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 1rem + 5vw, 4.5rem);
  align-items: center;
}
.zigzag-media { position: relative; padding: 0 0 1.5rem 1.5rem; }
.zigzag-media::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 58%;
  height: 66%;
  background: var(--accent-100);
  border-radius: var(--radius-lg);
  z-index: 0;
}
.zigzag-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.zigzag-copy {
  border-left: 3px solid var(--accent);
  padding-left: clamp(1.25rem, 0.75rem + 2vw, 2.25rem);
}
.zigzag-copy h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; letter-spacing: -0.015em; margin-bottom: 1.1rem; }
.zigzag-copy p { color: var(--ink-500); line-height: 1.8; }
.zigzag-copy p + p { margin-top: 1.1rem; }
.zigzag-copy ul { margin-top: 1.4rem; display: flex; flex-direction: column; gap: 0.8rem; }
.zigzag-copy ul li {
  position: relative;
  display: flex;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-700);
  align-items: flex-start;
  padding-left: 1.4rem;
}
.zigzag-copy ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent-700); font-weight: 700; }
@media (max-width: 820px) {
  .zigzag-row { grid-template-columns: 1fr; gap: 2rem; }
  .zigzag-media { order: -1; padding: 0 0 1rem 1rem; max-width: 620px; }
}

/* ==========================================================================
   Steps — horizontal numbered card row with connecting rail
   ========================================================================== */
.steps-section { background: var(--paper); padding-block: var(--section-y); color: var(--ink-800); }
.steps-section .eyebrow { color: var(--accent-700); }
.steps-section h2 { color: var(--ink-950); }
.steps-section .lede { color: var(--ink-500); }

.steps-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-left: 0;
  border-left: none;
}
.steps-track::before {
  content: "";
  position: absolute;
  top: 1.85rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step-card {
  position: relative;
  padding: 0;
  border-bottom: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.9rem;
}
.step-card:last-child { border-bottom: 1px solid var(--border); padding-bottom: 1.9rem; }
.step-card .step-num {
  position: static;
  transform: none;
  width: 2.5rem;
  height: 2.5rem;
  text-align: center;
  line-height: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink-950);
  background: var(--accent);
  border-radius: 50%;
  padding-block: 0;
  margin-bottom: 1.1rem;
}
.step-card h3 { font-size: 1rem; margin-bottom: 0.55rem; color: var(--ink-950); }
.step-card p { font-size: 0.87rem; color: var(--ink-500); line-height: 1.65; max-width: none; }
@media (max-width: 980px) {
  .steps-track { grid-template-columns: 1fr 1fr; }
  .steps-track::before { content: none; }
}
@media (max-width: 560px) {
  .steps-track { grid-template-columns: 1fr; padding-left: 0; }
  .step-card .step-num { left: auto; transform: none; width: 2.5rem; background: var(--accent); }
}

/* ==========================================================================
   Section shell + skills as an alternating split list
   ========================================================================== */
.section { padding-block: var(--section-y); }
.section-head { max-width: 660px; margin-bottom: 3.25rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 0.85rem; }
.section-head .lede { margin-top: 1rem; }

.skills-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}
.skill-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1.4rem;
  flex-direction: unset;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  padding-bottom: 0.25rem;
  counter-increment: skill;
}
.skill-row .icon-badge {
  width: auto; height: auto;
  border-radius: 0;
  background: none;
  color: var(--accent-700);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  -webkit-text-stroke: 0;
  grid-row: 1 / 3;
}
.skill-row .icon-badge svg { display: none; }
.skill-row .icon-badge::before { content: counter(skill, decimal-leading-zero); }
.skills-columns { counter-reset: skill; }
.skill-row h3 { font-size: 1.04rem; margin-bottom: 0.5rem; }
.skill-row p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.65; }
@media (max-width: 700px) { .skills-columns { grid-template-columns: 1fr; } }

/* Card grid (about) — even trio, accent top edge */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  border: none;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 2.2rem;
}
.info-card .icon-badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-50);
  border: none;
  color: var(--accent-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.info-card h3 { margin-bottom: 0.6rem; font-size: 1.02rem; }
.info-card p { color: var(--ink-500); font-size: 0.9rem; line-height: 1.65; }

/* ==========================================================================
   Fit-check — side-by-side comparison cards, accent divider between
   ========================================================================== */
.fit-check {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
}
.fit-card {
  padding: clamp(2rem, 1.5rem + 2vw, 3rem);
  border-radius: 0;
  display: block;
  gap: 0;
}
.fit-card.yes { background: var(--ink-950); border: none; }
.fit-card.no { background: var(--white); border: none; border-left: 1px solid var(--border); }
.fit-card h3 { display: flex; align-items: center; gap: 0.6rem; font-size: 1.1rem; margin: 0 0 1.5rem; }
.fit-card.yes h3 { color: var(--white); }
.fit-card.no h3 { color: var(--ink-900); }
.fit-card ul { display: flex; flex-direction: column; gap: 1rem; }
.fit-card li { display: flex; gap: 0.8rem; font-size: 0.92rem; align-items: flex-start; }
.fit-card.yes li { color: var(--ink-200); }
.fit-card.no li { color: var(--ink-500); }
.fit-card.yes li::before { content: "+"; color: var(--accent); font-weight: 800; }
.fit-card.no li::before { content: "–"; color: var(--ink-300); font-weight: 800; }
@media (max-width: 720px) {
  .fit-check { grid-template-columns: 1fr; border-radius: var(--radius-lg); }
  .fit-card.no { border-left: none; border-top: 1px solid var(--border); }
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}
.compare-col { padding: 2.25rem; }
.compare-col + .compare-col { border-left: 1px solid var(--border); }

.callout {
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.9rem 2.1rem;
}
.callout h2 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; color: var(--accent-800); }
.callout p { margin-top: 0.6rem; color: var(--ink-600); font-size: 0.94rem; line-height: 1.75; }

/* ==========================================================================
   CTA banner — split panel: dark copy left, offset accent action card right
   ========================================================================== */
.cta-banner {
  position: relative;
  background: var(--ink-950);
  color: #fff;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.cta-banner::before { content: none; }
.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235, 153, 85, 0.28), transparent 70%);
}
.cta-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  justify-content: normal;
  gap: 0;
  flex-wrap: unset;
}
.cta-banner-inner > div:first-child {
  padding: clamp(2.5rem, 1.8rem + 3vw, 3.75rem);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: var(--ink-300); margin-top: 0.6rem; }
.cta-banner .actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.05);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: clamp(2rem, 1.6rem + 2vw, 3rem);
  height: 100%;
  justify-content: center;
}
.cta-banner .btn { width: 100%; }
.cta-banner .btn-outline-light { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.cta-banner .btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }
@media (max-width: 760px) {
  .cta-banner-inner { grid-template-columns: 1fr; }
  .cta-banner .actions { border-left: none; border-top: 1px solid rgba(255, 255, 255, 0.12); }
}

/* ==========================================================================
   Contact — accent sidebar (left) + form (right)
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 2rem;
  align-items: start;
}
.contact-layout > div:first-child { order: 1; }
.contact-layout > div:last-child { order: 2; }
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--ink-950);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field label { font-size: 0.8rem; font-weight: 700; color: var(--ink-900); }
.field input, .field textarea {
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.94rem;
  color: var(--ink-900);
  background: var(--paper);
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent-600); background: var(--white); box-shadow: 0 0 0 3px var(--accent-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(--ink-900); }
.required { color: var(--accent-700); }

.form-alert {
  gap: 0.65rem;
  align-items: flex-start;
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  color: var(--accent-800);
  border-radius: var(--radius-sm);
  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: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink-950);
  color: var(--accent);
  display: flex; align-items: center; justify-content: 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.65; max-width: 380px; margin-inline: auto; }
.form-success .btn { margin-top: 1.5rem; }

.side-card {
  background: var(--white);
  color: var(--ink-700);
  border: 1px solid var(--border);
  border-left: 4px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 1.85rem;
  margin-bottom: 1.25rem;
}
.side-card:first-child {
  background: var(--ink-950);
  color: var(--ink-200);
  border: none;
}
.side-card::before { content: none; }
.side-card h3 {
  margin-bottom: 0.9rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--accent-700);
}
.side-card:first-child h3 { color: var(--accent); }
.side-card address { font-style: normal; font-size: 0.88rem; line-height: 1.8; color: inherit; }
.side-card:first-child address strong { color: #fff; }
.side-card ul { display: flex; flex-direction: column; gap: 0.6rem; }
.side-card a { font-size: 0.88rem; color: var(--ink-900); text-decoration: underline; text-underline-offset: 3px; }
.side-card:first-child a { color: #fff; }
.side-card a:hover { opacity: 0.82; }

/* ==========================================================================
   Accordion — card rows, accent open state
   ========================================================================== */
.accordion-group + .accordion-group { margin-top: 2.75rem; }
.accordion-group h2 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  color: var(--accent-700);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.accordion-group h2::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.accordion-item {
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: 0.75rem;
}
.accordion-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink-950);
}
.accordion-item[open] summary { color: var(--accent-800); }
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "";
  width: 11px; height: 11px;
  border-right: 2px solid var(--accent-600);
  border-bottom: 2px solid var(--accent-600);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-right: 0.4rem;
  transition: transform 0.18s ease;
}
.accordion-item[open] summary::after { transform: rotate(225deg); }
.accordion-item .accordion-body {
  padding: 0 2rem 1.4rem 1.4rem;
  color: var(--ink-500);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ==========================================================================
   Legal pages — article first, sticky index rail on the right
   ========================================================================== */
.legal-hero {
  background: var(--ink-950);
  color: #fff;
  padding-block: 3.5rem;
  position: relative;
  overflow: hidden;
}
.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(235, 153, 85, 0.2), transparent 55%);
}
.legal-hero .wrap { position: relative; }
.legal-hero .eyebrow { color: var(--accent-200); background: rgba(235, 153, 85, 0.14); }
.legal-hero .eyebrow::before { background: var(--accent); }
.legal-hero h1 {
  color: #fff;
  font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem);
  margin-top: 0.7rem;
}
.legal-hero p { color: var(--ink-300); margin-top: 0.5rem; font-size: 0.88rem; }
.legal-hero .crumb-trail { margin-bottom: 0.25rem; }

.legal-layout {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 3.5rem;
  padding-block: 4rem;
  align-items: start;
}
.legal-toc {
  order: 2;
  position: sticky;
  top: 100px;
  border: none;
  border-left: 2px solid var(--border);
  padding: 0 0 0 1.4rem;
}
.legal-toc p.label {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin: 0 0 0.9rem;
}
.legal-toc ul { display: flex; flex-direction: column; gap: 0; }
.legal-toc ul li { padding: 0; }
.legal-toc ul li::before { content: none; }
.legal-toc a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-500);
  padding: 0.5rem 0;
  display: block;
}
.legal-toc a:hover { color: var(--ink-950); }
.legal-toc .divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

.legal-body {
  order: 1;
  background: none;
  border: none;
  border-left: 3px solid var(--accent-200);
  border-radius: 0;
  padding: 0 0 0 clamp(1.25rem, 0.75rem + 2vw, 2.25rem);
  max-width: none;
  margin-inline: 0;
}
.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.2rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 0.8rem; scroll-margin-top: 100px; }
.legal-body h2.h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; }
.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(--accent-50);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--ink-900);
  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(--ink-50); color: var(--ink-950); font-weight: 700; }

.consent-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.consent-toggle:last-child { border-bottom: none; }
.consent-toggle .switch {
  width: 40px; height: 24px;
  border-radius: 999px;
  background: var(--ink-200);
  border: none;
  position: relative;
  flex-shrink: 0;
}
.consent-toggle .switch::before {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.consent-toggle .switch.on { background: var(--accent-700); }
.consent-toggle .switch.on::before { left: 19px; }
.tag-pill { font-size: 0.68rem; font-weight: 700; color: var(--accent-800); background: var(--accent-100); padding: 0.28rem 0.65rem; border-radius: 999px; }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; gap: 2rem; }
  .legal-toc { order: 1; position: static; border-left: none; border-top: 1px solid var(--border); padding: 1.5rem 0 0; }
  .legal-body { order: 2; }
}

/* ==========================================================================
   Module list (program) — numbered cards, accent index tab
   ========================================================================== */
.module-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 3.25rem; }
.module-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 2rem;
  align-items: start;
  padding: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-left: none;
  border-radius: var(--radius-lg);
}
.module-num {
  grid-row: 1 / 3;
  grid-column: 1;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink-950);
  -webkit-text-stroke: 0;
  background: var(--accent);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.module-row h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.015em; margin-bottom: 0.85rem; grid-column: 2; }
.module-row > div:first-child > p.lede { font-size: 0.95rem; margin-bottom: 1.2rem; color: var(--ink-500); }
.module-row .outcomes {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin-bottom: 0.7rem;
}
.module-row ul { display: flex; flex-direction: column; gap: 0.55rem; }
.module-row li { font-size: 0.88rem; color: var(--ink-700); display: flex; gap: 0.6rem; }
.module-row li::before { content: "—"; color: var(--accent-700); font-weight: 700; }
@media (max-width: 640px) {
  .module-row { grid-template-columns: 1fr; }
  .module-num { grid-row: auto; grid-column: auto; order: -1; margin-bottom: 0.75rem; }
  .module-row h3 { grid-column: auto; }
}

/* ==========================================================================
   Phase grid (learning-path) — level cards, accent step ribbon
   ========================================================================== */
.phase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.5rem; align-items: stretch; }
.phase-card {
  position: relative;
  padding: 2rem 1.7rem;
  color: var(--ink-800);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.phase-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ink-300);
}
.phase-card:nth-child(2)::before { background: var(--ink-500); }
.phase-card:nth-child(3)::before { background: var(--ink-800); }
.phase-card:nth-child(4)::before { background: var(--accent); }
.phase-card:nth-child(4) { box-shadow: var(--shadow-md); }
.phase-card .phase-meta { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.phase-card .phase-num { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; color: var(--ink-950); }
.phase-card .phase-duration { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-500); }
.phase-card h3 { color: var(--ink-950); margin-bottom: 1.1rem; font-size: 1rem; }
.phase-card ol { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.phase-card li { font-size: 0.85rem; display: flex; gap: 0.5rem; color: var(--ink-500); }
.phase-card li span.n { font-weight: 700; color: var(--accent-700); }
@media (max-width: 900px) { .phase-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .phase-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Project showcase (practice-projects) — accent spine card, inline code tag
   ========================================================================== */
.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3.25rem; }
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.project-card-head {
  background: var(--ink-950);
  color: #fff;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: static;
}
.project-card-head .code {
  position: static;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--ink-950);
  border-radius: var(--radius-sm);
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.project-card-head h3 { font-size: 0.98rem; line-height: 1.35; color: #fff !important; padding-left: 0; }
.project-card-body { padding: 1.9rem; 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.7; }
.project-card-body h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-700);
  margin-bottom: 0.6rem;
}
.project-card-body ul { display: flex; flex-direction: column; gap: 0.45rem; }
.project-card-body li { font-size: 0.85rem; color: var(--ink-700); display: flex; gap: 0.5rem; }
.project-card-body li::before { content: "—"; color: var(--accent-700); font-weight: 700; }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; }
.pill { font-size: 0.7rem; font-weight: 700; background: var(--accent-50); border: 1px solid var(--accent-200); color: var(--accent-800); padding: 0.3rem 0.75rem; border-radius: 999px; }
@media (max-width: 780px) { .project-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Footer — top identity bar, three-tab link cluster on a raised panel,
   inline disclaimer ribbon, split sign-off row
   ========================================================================== */
.site-footer { background: var(--ink-950); color: var(--ink-300); }
.footer-top { padding-block: clamp(3rem, 2rem + 4vw, 4.5rem) clamp(2.5rem, 2rem + 2vw, 3.5rem); }
.footer-grid {
  display: grid;
  gap: clamp(2rem, 1.5rem + 2vw, 3rem) 3rem;
}
.footer-brand {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 1.5rem 3rem;
  padding-bottom: clamp(2rem, 1.5rem + 2vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .brand { color: #fff; font-size: 1.3rem; grid-column: 1; grid-row: 1; }
.footer-brand > p { grid-column: 1; grid-row: 2; font-size: 0.92rem; line-height: 1.8; color: var(--ink-300); max-width: 460px; }
.footer-brand address {
  grid-column: 2;
  grid-row: 1 / 3;
  font-style: normal;
  font-size: 0.83rem;
  line-height: 1.9;
  color: var(--ink-400);
  text-align: right;
  align-self: end;
}
.footer-brand address strong { color: #fff; display: block; margin-bottom: 0.3rem; }
.footer-brand address a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.footer-col { padding-bottom: 0; }
.footer-col h3 {
  color: var(--accent-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0;
  font-family: var(--font-body);
  position: relative;
}
.footer-col h3::after { content: none; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; list-style: none; }
.footer-col li { position: relative; padding-left: 0; }
.footer-col li::before { content: none; }
.footer-col a { font-size: 0.87rem; color: var(--ink-300); }
.footer-col a:hover { color: var(--accent); }

/* brand spans both columns; the two link columns sit side by side, disclaimer spans beneath */
.footer-grid {
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "brand      brand"
    "links1     links2"
    "disclaimer disclaimer";
}
.footer-brand { grid-area: brand; }
.footer-col:nth-of-type(1) { grid-area: links1; }
.footer-col:nth-of-type(2) { grid-area: links2; }
.footer-col:nth-of-type(3) { grid-area: disclaimer; }

.footer-disclaimer {
  background: rgba(235, 153, 85, 0.08);
  border: 1px solid rgba(235, 153, 85, 0.22);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--ink-300);
}
.footer-disclaimer a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
  margin-top: 0;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.8rem;
  color: var(--ink-400);
}
.footer-bottom strong { color: var(--accent); font-weight: 700; }

@media (max-width: 900px) {
  .footer-brand { grid-template-columns: 1fr; }
  .footer-brand address { grid-column: 1; grid-row: 3; text-align: left; }
  .footer-grid { grid-template-areas: "brand brand" "links1 links2" "disclaimer disclaimer"; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-areas: "brand" "links1" "links2" "disclaimer"; grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   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; }
