*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
:root {
  --ink: #0a0a0a;
  --paper: #f5f2eb;
  --cream: #ede9de;
  --lime: #c8f23a;
  --lime-dark: #a8d020;
  --muted: #6b6560;
  --link-underline: rgba(10,10,10,.3);
  --border: rgba(10, 10, 10, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width:768px) {
  .container {
    padding: 0 20px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
header.scrolled {
  padding: 12px 0;
}
/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
}
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 6px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--cream);
}
.nav-cta {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 22px;
  border-radius: 40px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--lime);
  color: var(--ink);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.hamburger.active span {
  background: var(--ink);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}
@media (max-width:1064px) {
  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--ink);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--paper);
  transition: color 0.2s;
  line-height: 1;
}
.mobile-nav a:hover {
  color: var(--lime);
}
.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 40px;
  font-size: 2rem;
  color: var(--paper);
  background: none;
  border: none;
  cursor: pointer;
}
/* ── Breadcrumbs ── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 40px
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--muted);
  transition: color .2s
}
.breadcrumbs a:hover {
  color: var(--ink)
}
.breadcrumbs .sep {
  opacity: .4
}
.breadcrumbs .active {
  color: var(--ink);
  font-weight: 600;
  position: relative;
}
.breadcrumbs .active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: var(--lime);
  border-radius: 999px;
}
/* ── Hero ── */
.hero {
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden
}
.hero-bg-text {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(40px, 9vw, 130px);
  font-weight: 800;
  letter-spacing: -.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(10, 10, 10, .05);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 24px
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--muted)
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -.04em;
  line-height: 1.02;
  margin-bottom: 22px
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink)
}
.hero-sub {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px;
}
.hero-sub a {
  color: var(--ink);
  text-decoration-color: var(--link-underline);
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted)
}
.hero-meta strong {
  color: var(--ink);
  font-weight: 600
}
.hero-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lime)
}
.hero strong,
.hero b {
  font-weight: 600;
  color: var(--ink);
}

/* ── HERO ABOUT── */

.hero-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr;
  gap: 80px; 
  align-items: center; 
  position: relative; 
  z-index: 1;
  }
  @media (max-width: 900px) { 
  .hero-grid { grid-template-columns: 1fr; } }

  .hero-languages {
  font-size: 0.88rem; 
  color: var(--muted); 
  margin-bottom: 36px; 
  line-height: 1.8;
  }

/* ── HERO INDEX── */

    .hero-marquee-wrap {
      overflow: hidden; border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border); padding: 14px 0;
      margin-top: 80px;
    }
    .hero-marquee {
      display: flex; gap: 60px; animation: marquee 22s linear infinite;
      white-space: nowrap;
    }
    .hero-marquee span {
      font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
      text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted);
      display: flex; align-items: center; gap: 20px;
    }
    .hero-marquee span::after {
      content: '●'; color: var(--lime); font-size: 0.5rem;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

/* ── ABOUT Header card ── */
.profile-card {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
}

.profile-card-body {
  padding: 28px 32px;
}

.profile-card-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 6px;
}

.profile-card-role {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime);
}

.profile-card-tag {
  display: inline-block;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 12px;
}

/* ── About  Stats Banner ── */
.stats-section {
  background: var(--ink);
  color: var(--paper);
  padding: 60px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

@media (max-width: 768px) {
  .stats-row {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.stat-tile {
  padding: 40px 32px;
  border-right: 1px solid rgba(245, 242, 235, 0.08);
}

@media (max-width: 768px) {
  .stat-tile {
    border-right: unset;
  }
}

.stat-tile:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lime);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(245, 242, 235, 0.5);
  margin-top: 8px;
}

/* ── ABOUT Clients logo grid ── */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 48px;
}

.client-logo-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  border-radius: 18px;
  background: #fff;
}

.client-logo-card img {
  max-width: 120px;
  max-height: 44px;
  object-fit: contain;
  display: block;
}

.clients-note {
  margin-top: 24px;
  max-width: 820px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Article layout ── */
.article-wrap {
  padding: 60px 0 110px
}
.article-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start
}
@media(max-width:1024px) {
  .article-inner {
    grid-template-columns: 1fr
  }
}
/* ── TOC ── */
.toc {
  position: sticky;
  top: 90px;
  background: var(--cream);
  border-radius: 12px;
  padding: 28px 24px;
  max-height: calc(100vh - 120px);
  overflow-y: auto
}
@media(max-width:1024px) {
  .toc {
    position: static;
    max-height: none
  }
}
.toc-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px
}
.toc-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--muted)
}
.toc ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  counter-reset: toc-counter
}
.toc ol li {
  counter-increment: toc-counter
}
.toc ol a {
  display: flex;
  gap: 10px;
  align-items: baseline;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: .8rem;
  line-height: 1.4;
  text-decoration: none;
  color: var(--muted);
  transition: background .2s, color .2s
}
.toc ol a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  color: var(--lime-dark);
  flex-shrink: 0
}
.toc ol a:hover {
  background: var(--paper);
  color: var(--ink)
}
.toc ol a.toc-active {
  background: var(--ink);
  color: var(--paper)
}
.toc ol a.toc-active::before {
  color: var(--lime)
}

    /* Audit sample CTA card inside sidebar */
    .toc-cta {
      margin-top: 24px; background: var(--ink); border-radius: 10px; padding: 22px 20px;
    }
    .toc-cta p {
      font-size: 0.82rem; line-height: 1.6; color: rgba(245,242,235,0.7); margin-bottom: 14px;
    }
    .toc-cta a {
      display: inline-flex; align-items: center; gap: 6px;
      font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.06em;
      background: var(--lime); color: var(--ink);
      padding: 10px 16px; border-radius: 30px; text-decoration: none;
      transition: opacity 0.2s;
    }
    .toc-cta a:hover { opacity: 0.85; }

/* ── Article body ── */
.article-body {
  min-width: 0;
}

.article-body > .lede {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  margin: 70px 0 24px;
  padding-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-body h2:first-child,
.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body h2 .section-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime-dark);
  flex-shrink: 0;
}

.article-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 36px 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-body h3::before {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--lime);
  flex-shrink: 0;
}

.article-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: #3a3632;
  margin-bottom: 16px;
}

.article-body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(10, 10, 10, 0.3);
  transition: text-decoration-color 0.2s;
}

.article-body a:hover {
  text-decoration-color: var(--ink);
}

.article-body strong,
.article-body b {
  font-weight: 600;
  color: var(--ink);
}

.article-body em,
.article-body i {
  font-style: italic;
  color: var(--muted);
}

.article-body ul {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-body ul li {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #3a3632;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.article-body ul li::before {
  content: '→';
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 24px 0;
}
/* ── Phase label ── */
.phase-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lime-dark);
  margin-bottom: 8px;
}

.phase-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--lime-dark);
}

/* ── Result badge ── */
.result-note {
  background: var(--cream);
  border-left: 3px solid var(--lime);
  padding: 14px 18px;
  border-radius: 0 6px 6px 0;
  margin: 16px 0 24px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #3a3632;
}

.result-note strong {
  font-weight: 600;
  color: var(--ink);
}
/* ── Tables ── */
.table-wrap {
  overflow-x: auto;
  margin: 16px 0 28px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

thead th {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 15px;
  text-align: left;
  white-space: nowrap;
}

tbody td {
  padding: 11px 15px;
  border-bottom: 1px solid var(--border);
  color: #3a3632;
  vertical-align: top;
  line-height: 1.55;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:nth-child(even) td {
  background: var(--cream);
}

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

/* ── Disclaimer ── */
.disclaimer {
  margin-top: 28px;
  padding: 18px 20px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.86rem;
  line-height: 1.7;
  color: var(--muted);
}

.disclaimer a {
  color: var(--muted);
  text-decoration: underline;
}

/* ── FAQ ── */
.faq-item {
  margin-bottom: 16px;
  padding: 22px 24px 24px;
  background: var(--cream);
  border-radius: 8px;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.97rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.faq-a {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #3a3632;
}

/* ── Pull quote ── */
.pull-quote {
  border-left: 3px solid var(--lime);
  padding: 20px 24px;
  background: var(--cream);
  margin: 28px 0;
  border-radius: 0 8px 8px 0;
}

.pull-quote p {
  font-size: 1.02rem !important;
  font-style: italic;
  color: var(--ink) !important;
  margin: 0 !important;
}

/* ── Conclusion ── */
.conclusion {
  margin-top: 60px;
  padding: 28px 28px 30px;
  background: var(--ink);
  border-radius: 12px;
  color: var(--paper)
}
.conclusion h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -.03em;
  color: var(--lime);
  margin-bottom: 14px
}
.conclusion p {
  font-size: .95rem;
  line-height: 1.8;
  color: rgba(245, 242, 235, .75);
  margin-bottom: 10px
}
.conclusion p:last-child {
  margin-bottom: 0
}
/* ── References ── */
.references {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border)
}
.references h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 12px
}
.references p {
  font-size: .86rem;
  line-height: 1.9;
  color: var(--muted)
}
.references a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: rgba(107, 101, 96, .3);
  transition: color .2s
}
.references a:hover {
  color: var(--ink)
}
/* ── Article footer ── */
.article-footer {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted)
}
.article-footer strong {
  color: var(--ink)
}
/* ── Contact band ── */
.contact-band {
  background: var(--ink);
  color: var(--paper);
  padding: 90px 0;
  text-align: center
}
.contact-band-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 600;
  color: rgba(245, 242, 235, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px
}
.contact-band-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: rgba(245, 242, 235, .4)
}
.contact-band .section-title-display {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--paper);
  max-width: 640px;
  margin: 0 auto 20px
}
.contact-band>div>p {
  color: rgba(245, 242, 235, .6);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8
}
.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  background: var(--lime);
  color: var(--ink);
  padding: 16px 32px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .22s, transform .22s
}
.btn-primary:hover {
  background: #dffb50;
  transform: translateY(-2px)
}


.btn-primary--black {
  font-family: var(--font-display); 
  font-weight: 700; font-size: 0.88rem;
  text-transform: uppercase; 
  letter-spacing: 0.06em; 
  text-decoration: none;
  background: var(--ink); 
  color: var(--paper);
  padding: 16px 32px; 
  border-radius: 40px; 
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  transition: background 0.22s, transform 0.22s;
  }
  .btn-primary--black:hover { 
  background: var(--lime); 
  color: var(--ink); 
  transform: translateY(-2px); 
  }
  .btn-primary--black .arrow { 
  transition: transform 0.22s; 
  }
  .btn-primary--black:hover .arrow { 
  transform: translateX(4px); 
  }
/* Tablet + mobile */
@media (max-width:768px) {
  .btn-primary {
    font-size: 0.74rem;
    padding: 13px 22px;
    letter-spacing: 0.04em;
    gap: 8px;
  }
}
/* ── Footer ── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(245, 242, 235, .08);
  padding: 60px 0 30px;
  color: rgba(245, 242, 235, .5)
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px
}
@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
}
@media (max-width:600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
.footer-brand .logo {
  color: var(--paper);
  margin-bottom: 14px;
  display: block
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(245, 242, 235, .3);
  margin-bottom: 16px
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px
}
.footer-col a {
  font-size: .88rem;
  text-decoration: none;
  color: rgba(245, 242, 235, .5);
  transition: color .2s
}
.footer-col a:hover {
  color: var(--paper)
}
.footer-sub {
  position: relative;
  padding-left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 0;
}
.footer-sub::before {
  content: '›';
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}
.footer-sub a {
  display: inline-block;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 242, 235, .08);
  font-size: .8rem
}
.footer-bottom a {
  color: rgba(245, 242, 235, .4);
  text-decoration: none
}
.footer-bottom a:hover {
  color: var(--paper)
}
/* ─── Misc ─── */
/* ─── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--paper);
}
::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 2px;
}
/* ─── SELECTION ──────────────────────────────── */
::selection {
  background: var(--lime);
  color: var(--ink);
}
/* ─── TOC ──────────────────────────────── */
.toc ol a.toc-active {
  background: var(--ink);
  color: var(--paper);
}
.toc ol a.toc-active::before {
  color: var(--lime);
}

/* ── Outcomes grid ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 20px 0 28px;
}

@media (max-width: 560px) {
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
}

.outcome-card {
  background: var(--cream);
  padding: 20px 22px;
}

.outcome-card:first-child {
  border-radius: 8px 0 0 0;
}

.outcome-card:nth-child(2) {
  border-radius: 0 8px 0 0;
}

.outcome-card:nth-child(3) {
  border-radius: 0 0 0 8px;
}

.outcome-card:last-child {
  border-radius: 0 0 8px 0;
}

@media (max-width: 560px) {
  .outcome-card:first-child {
    border-radius: 8px 8px 0 0;
  }

  .outcome-card:last-child {
    border-radius: 0 0 8px 8px;
  }

  .outcome-card:nth-child(n) {
    border-radius: 0;
  }
}

.outcome-card__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
}

.outcome-card__label {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ── Image captions ── */
.chart-wrap {
  margin: 24px 0 36px;
}

.chart-wrap figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.5;
}

.chart-wrap figcaption strong {
  color: var(--ink);
  font-weight: 600;
}

.chart-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.chart-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

/* ── Stats banner ── */
.stats-banner {
  background: var(--ink);
  padding: 52px 0;
  margin-bottom: 0;
}

.stats-banner-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

@media (max-width: 640px) {
  .stats-banner-inner {
    grid-template-columns: 1fr;
  }
}

.stat-block {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-block:not(:last-child) {
  border-right: 1px solid rgba(245, 242, 235, 0.08);
}

@media (max-width: 640px) {
  .stat-block:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(245, 242, 235, 0.08);
  }
}

.stat-block__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.05em;
  color: var(--lime);
  line-height: 1;
}

.stat-block__label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(245, 242, 235, 0.6);
}

.stat-block__delta {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 235, 0.35);
  margin-top: 2px;
}

  /* SERVICE PAGE */


    /* Deliverables two-col list */
    .deliverables-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin: 24px 0 32px;
    }
    @media (max-width: 640px) { .deliverables-grid { grid-template-columns: 1fr; } }

    .deliverable-card {
      background: var(--cream); padding: 24px 24px 28px;
      transition: background 0.22s;
    }
    .deliverable-card:hover { background: var(--lime); }
    .deliverable-card__num {
      font-family: var(--font-display); font-size: 0.7rem; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em; color: var(--lime-dark);
      margin-bottom: 10px;
    }
    .deliverable-card:hover .deliverable-card__num { color: rgba(10,10,10,0.5); }
    .deliverable-card p {
      font-size: 0.88rem; line-height: 1.7; color: var(--ink); margin: 0 !important;
    }

        /* ─── Advantage checklist cards ─── */
    .advantage-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 2px; margin: 28px 0 40px;
    }
    @media (max-width: 640px) { .advantage-grid { grid-template-columns: 1fr; } }

    .advantage-card {
      background: var(--cream); padding: 28px 28px 32px;
      transition: background 0.22s;
    }
    .advantage-card:hover { background: var(--lime); }

    .advantage-icon {
      width: 36px; height: 36px; border-radius: 8px;
      background: var(--ink); color: var(--lime);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 700; margin-bottom: 16px;
    }
    .advantage-card:hover .advantage-icon { background: var(--ink); }

    .advantage-card h4 {
      font-family: var(--font-display); font-weight: 700; font-size: 1rem;
      letter-spacing: -0.02em; margin-bottom: 10px; color: var(--ink);
    }
    .advantage-card p {
      font-size: 0.88rem; line-height: 1.7; color: var(--muted); margin: 0 !important;
    }
    .advantage-card:hover p { color: rgba(10,10,10,0.7); }

        /* ═══════════════════════════════════════
       INTRO BAND  (dark)
    ═══════════════════════════════════════ */
    .intro-band {
      background: var(--ink); color: var(--paper);
      padding: 70px 0;
    }
    .intro-band-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    @media (max-width: 900px) { .intro-band-inner { grid-template-columns: 1fr; gap: 32px; } }

    .intro-band h2 {
      font-family: var(--font-display); font-weight: 800;
      font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.03em;
      color: var(--paper); line-height: 1.1; margin-bottom: 0;
    }
    .intro-band p {
      font-size: 1rem; line-height: 1.8; color: rgba(245,242,235,0.65);
    }
    .intro-band strong { color: var(--paper); font-weight: 600; }
    .intro-band a { color: var(--lime); text-decoration: none; }
    .intro-band a:hover { text-decoration: underline; }


