/* ─── AXIALENT 2030 — Recursive Teams ───────────────────── */

:root {
  --navy: #1d2f5e;
  --navy-deep: #152247;
  --navy-darker: #0d1a3a;
  --navy-light: #2a4080;
  --gold: #f3b230;
  --gold-light: #f8d078;
  --gold-deep: #d99a1c;
  --warm-bg: #faf9f6;
  --warm-card: #ffffff;
  --warm-soft: #f4f1ea;
  --text: #2c3e50;
  --text-muted: #5a6c7d;
  --text-soft: #8a96a3;
  --border: #e8e4de;
  --border-soft: #f0ece4;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(29, 47, 94, 0.04);
  --shadow: 0 4px 24px rgba(29, 47, 94, 0.08);
  --shadow-lg: 0 12px 40px rgba(29, 47, 94, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Albert Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--warm-bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; letter-spacing: -0.005em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; }
a { color: var(--navy); text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-tight { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ─── HEADER ─── */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.site-header .logo { display: flex; align-items: center; }
.site-header .logo img { height: 32px; }
.site-header nav { display: flex; gap: 28px; align-items: center; }
.site-header nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.site-header nav a:hover { color: var(--navy); }
.site-header nav a.active { color: var(--navy); }
.site-header nav a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}

/* ─── NAV DIVIDER + TECHNOLOGY SIDEBAR ENTRY ─── */
.primary-nav { display: flex; align-items: center; gap: 24px; }
.nav-divider {
  display: inline-block;
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 4px;
}
.nav-tech {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  padding: 6px 0;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.nav-tech-line-1,
.nav-tech-line-2 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.nav-tech-line-1 { color: var(--text); font-weight: 600; }
.nav-tech:hover .nav-tech-line-1,
.nav-tech:hover .nav-tech-line-2 { color: var(--navy); }
.nav-tech.active .nav-tech-line-1 { color: var(--gold-deep); }
.nav-tech.active .nav-tech-line-2 { color: var(--navy); font-weight: 600; }
.nav-tech.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  border-radius: 2px 2px 0 0;
}
@media (max-width: 920px) {
  .nav-divider { display: none; }
  .nav-tech { flex-direction: row; gap: 4px; }
  .nav-tech-line-1, .nav-tech-line-2 { font-size: 0.78rem; }
}

/* ─── KEY-IDEA WIDE (4th card on Recursive Team Performance) ─── */
.key-idea-wide {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: center;
  margin-top: 26px;
  padding: 32px 40px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.key-idea-wide::before {
  content: '';
  position: absolute;
  top: 0; right: -10%;
  width: 320px; height: 100%;
  background: radial-gradient(circle, rgba(243, 178, 48, 0.22) 0%, transparent 65%);
  pointer-events: none;
}
.key-idea-wide:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(13, 26, 58, 0.35);
}
.key-idea-wide .ki-wide-num {
  font-family: 'DM Serif Display', serif;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.key-idea-wide .ki-wide-body { position: relative; z-index: 1; }
.key-idea-wide .ki-wide-body h3 {
  font-family: 'DM Serif Display', serif;
  color: white;
  font-size: 1.55rem;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.key-idea-wide .ki-wide-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
  max-width: 60ch;
}
.key-idea-wide .ki-wide-cta {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.key-idea-wide .ki-wide-arrow { transition: transform 0.2s ease; display: inline-block; }
.key-idea-wide:hover .ki-wide-arrow { transform: translateX(6px); }
@media (max-width: 720px) {
  .key-idea-wide {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 28px 24px;
    gap: 14px;
  }
}

/* ─── TECHNOLOGY PAGE — WOVEN GRID ─── */
.woven-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
@media (max-width: 920px) { .woven-grid { grid-template-columns: 1fr; } }
.woven-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  border-top: 4px solid var(--gold);
}
.woven-card .woven-num {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
  display: block;
}
.woven-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.woven-card .woven-where {
  font-family: 'Albert Sans', sans-serif;
  font-style: italic;
  font-size: 0.85rem;
  color: var(--gold-deep);
  margin: 0 0 12px 0;
}
.woven-card p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── TECHNOLOGY PAGE — HOW IT WORKS subsection ─── */
.how-it-works {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.how-it-works .how-eyebrow {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: center;
  margin-bottom: 24px;
}

/* ─── CONSCIOUS-IFY TOGGLE ─── */
.conscious-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--warm-soft);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.conscious-toggle:hover {
  background: white;
  border-color: var(--gold);
  color: var(--navy);
}
.conscious-toggle .ct-icon {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-soft);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
body.conscious-on .conscious-toggle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
body.conscious-on .conscious-toggle .ct-icon {
  background: var(--navy);
  box-shadow: 0 0 0 3px rgba(29, 47, 94, 0.2);
}
.conscious-toggle .ct-label-on { display: none; }
body.conscious-on .conscious-toggle .ct-label-off { display: none; }
body.conscious-on .conscious-toggle .ct-label-on { display: inline; }

/* The injected highlight tags */
.conscious-tag {
  background: linear-gradient(180deg, transparent 55%, rgba(243, 178, 48, 0.55) 55%);
  padding: 0 4px;
  border-radius: 2px;
  font-style: italic;
  color: var(--navy);
  display: inline-block;
  animation: consciousIn 0.5s ease;
}
section.section-navy .conscious-tag,
.hero .conscious-tag {
  color: var(--gold-light);
  background: linear-gradient(180deg, transparent 55%, rgba(243, 178, 48, 0.25) 55%);
}
@keyframes consciousIn {
  0% { transform: translateY(-4px) scale(0.92); opacity: 0; }
  60% { transform: translateY(0) scale(1.04); opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@media (max-width: 720px) {
  .site-header .container { height: auto; padding-top: 12px; padding-bottom: 12px; flex-wrap: wrap; gap: 12px; }
  .site-header nav { gap: 14px; flex-wrap: wrap; }
  .site-header nav a { font-size: 0.78rem; }
  .site-header .logo img { height: 24px; }
  .conscious-toggle { font-size: 0.74rem; padding: 6px 11px; }
}

/* ─── HERO ─── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 55%, var(--navy-darker) 100%);
  color: white;
  padding: 110px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(243, 178, 48, 0.14) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60%;
  left: -15%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(243, 178, 48, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero h1 { color: white; margin-bottom: 22px; position: relative; z-index: 1; max-width: 14ch; }
.hero-center h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.22rem;
  max-width: 680px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.hero-center { text-align: center; }
.hero-center .lead { margin-left: auto; margin-right: auto; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 14px 28px;
  border-radius: 100px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(243, 178, 48, 0.35);
}
.hero-cta::after { content: '→'; transition: transform 0.2s ease; }
.hero-cta:hover::after { transform: translateX(4px); }

/* ─── HERO SPLIT (new home hero — copy left, visual right) ─── */
.hero.hero-split { padding: 96px 0 84px; }
.hero-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 920px) { .hero-split-grid { grid-template-columns: 1fr; gap: 36px; } }

.hero-copy { text-align: left; position: relative; z-index: 1; }
.hero-copy h1 { max-width: none; margin-bottom: 14px; }
.hero-copy .lead { margin-left: 0; margin-right: 0; }
.hero-eyebrow {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  color: var(--gold-light);
  margin-bottom: 22px;
  line-height: 1.35;
}
.hero .hero-tagline { color: var(--gold-light); }
section:not(.hero) .hero-tagline { color: var(--gold-deep); }

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: block;
}
.hero-visual:has(.hero-image[src]:not([src=""])) .hero-visual-fallback { display: none; }
.hero-visual-fallback {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
}
.hero-visual-fallback svg { width: 100%; height: 100%; display: block; }
/* If image fails to load, JS will hide it via onerror; fallback then shows */
.hero-image[style*="display: none"] + .hero-visual-fallback,
.hero-image:not([src]) + .hero-visual-fallback { display: block; }

/* ─── INTEGRATED VISUAL (replaces iceberg+side-list pair) ─── */
.integrated-visual {
  margin: 24px auto 0;
  max-width: 780px;
  text-align: center;
}
.integrated-visual-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.integrated-visual-on-navy .integrated-visual-img {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.integrated-visual-caption {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.5;
}
section.section-navy .integrated-visual-caption { color: rgba(255, 255, 255, 0.78); }

/* Fallback when generated image hasn't arrived yet */
.integrated-visual.image-missing {
  background: rgba(255, 255, 255, 0.04);
  border: 1px dashed rgba(243, 178, 48, 0.4);
  border-radius: var(--radius);
  padding: 64px 32px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.integrated-visual.image-missing .integrated-visual-img { display: none; }
.integrated-visual.image-missing::before {
  content: 'Generated visual loading…';
  font-family: 'Albert Sans', sans-serif;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.integrated-visual.image-missing::after {
  content: '';
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(243, 178, 48, 0.2);
  border-top-color: var(--gold);
  animation: visualSpin 1.4s linear infinite;
  margin-bottom: 18px;
}
@keyframes visualSpin { to { transform: rotate(360deg); } }
section:not(.section-navy) .integrated-visual.image-missing {
  background: var(--warm-soft);
  border-color: rgba(243, 178, 48, 0.6);
}
section:not(.section-navy) .integrated-visual.image-missing::before { color: var(--gold-deep); }

/* ─── LAYER DRILL-DOWN (click a layer header to reveal sub-items) ─── */
.layer-drill {
  margin: 36px auto 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.layer-row {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}
section:not(.section-navy) .layer-row {
  background: white;
  border-color: var(--border);
}
.layer-row:hover {
  border-color: rgba(243, 178, 48, 0.55);
}
.layer-toggle {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 18px 24px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background 0.2s ease;
}
.layer-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.layer-toggle:hover { background: rgba(243, 178, 48, 0.06); }
.layer-toggle-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
.layer-label {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
section:not(.section-navy) .layer-label { color: var(--gold-deep); }
.layer-meta {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
}
section:not(.section-navy) .layer-meta { color: var(--text-muted); }
.layer-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.layer-toggle[aria-expanded="true"] .layer-chevron { transform: rotate(45deg); }

.layer-body {
  padding: 4px 24px 22px;
  animation: layerExpand 0.4s ease;
}
.layer-body[hidden] { display: none; }
@keyframes layerExpand {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.layer-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 22px;
}
@media (max-width: 600px) { .layer-items { grid-template-columns: 1fr; } }
.layer-items li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1.5;
}
section:not(.section-navy) .layer-items li { color: var(--text); }
.layer-items li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--gold);
  font-size: 0.72rem;
}
.layer-body p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}
section:not(.section-navy) .layer-body p { color: var(--text); }

/* ─── TECH BUILDING-BLOCK CARDS (Supported by cutting-edge technology) ─── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
@media (max-width: 920px) { .tech-grid { grid-template-columns: 1fr; } }
.tech-card {
  all: unset;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  cursor: pointer;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  box-sizing: border-box;
}
.tech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.tech-card:hover, .tech-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(243, 178, 48, 0.5);
}
.tech-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.tech-card:hover::before, .tech-card:focus-visible::before { transform: scaleX(1); }
.tech-card-glyph {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  background: var(--warm-soft);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
}
.tech-card-glyph svg { width: 100%; height: 100%; display: block; }
.tech-card-stage {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.tech-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.tech-card-summary {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 22px 0;
  flex: 1;
}
.tech-card-more {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.tech-card-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-weight: 700;
  transition: transform 0.2s ease;
}
.tech-card:hover .tech-card-chevron, .tech-card:focus-visible .tech-card-chevron {
  transform: translateX(4px);
}

/* ─── TECH MODAL ─── */
.tech-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-sizing: border-box;
}
.tech-modal[hidden] { display: none; }
.tech-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 26, 58, 0.78);
  backdrop-filter: blur(6px);
  animation: modalOverlayIn 0.25s ease;
  cursor: pointer;
}
@keyframes modalOverlayIn { from { opacity: 0; } to { opacity: 1; } }
.tech-modal-panel {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: 88vh;
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  animation: modalPanelIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
@keyframes modalPanelIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.tech-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.tech-modal-close:hover {
  background: var(--gold);
  transform: rotate(90deg);
}
.tech-modal-body {
  overflow-y: auto;
  padding: 48px 56px 44px;
}
@media (max-width: 720px) { .tech-modal-body { padding: 40px 24px 32px; } }
.tech-modal-head { margin-bottom: 36px; }
.tech-modal-stage {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 10px;
}
.tech-modal-head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.tech-modal-idea {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}
.tech-modal-idea strong {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--gold-deep);
  margin-right: 6px;
}
.tech-modal-section { margin-top: 32px; }
.tech-modal-eyebrow {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tech-modal-eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.tech-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 720px) { .tech-outcomes { grid-template-columns: 1fr; } }
.tech-outcome {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tech-outcome svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 14px;
}
.tech-outcome strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.3;
}
.tech-outcome span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.tech-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
}
@media (max-width: 720px) {
  .tech-flow { grid-template-columns: 1fr; }
  .tech-flow-arrow { transform: rotate(90deg); }
}
.tech-flow-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.tech-flow-n {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.tech-flow-step strong {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 400;
  margin-bottom: 6px;
}
.tech-flow-step span {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.tech-flow-arrow {
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  font-size: 1.5rem;
  align-self: center;
}
body.modal-open { overflow: hidden; }

/* ─── EXPAND-ON-CLICK CAPABILITY CARDS ─── */
.capability-card.is-expandable {
  padding: 0;
  background: linear-gradient(180deg, var(--warm-soft), white);
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.capability-card.is-expandable:hover {
  border-color: rgba(243, 178, 48, 0.5);
  box-shadow: var(--shadow);
}
.capability-card .cap-toggle {
  all: unset;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 28px 26px;
  cursor: pointer;
  box-sizing: border-box;
  text-align: left;
}
.capability-card .cap-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.capability-card .cap-summary {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0 0 14px 0;
}
.capability-card .cap-more {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.capability-card .cap-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease;
}
.capability-card .cap-toggle[aria-expanded="true"] .cap-chevron { transform: rotate(45deg); }
.capability-card .cap-toggle[aria-expanded="true"] .cap-more::before { content: 'Hide details'; }
.capability-card .cap-toggle[aria-expanded="true"] .cap-more {
  font-size: 0;
}
.capability-card .cap-toggle[aria-expanded="true"] .cap-more::before {
  font-size: 0.78rem;
}
.capability-card .cap-toggle[aria-expanded="true"] .cap-more .cap-chevron { font-size: 1rem; }

.cap-body {
  background: white;
  border-top: 1px solid var(--border);
  padding: 26px 26px 30px;
  animation: capExpand 0.4s ease;
}
.cap-body[hidden] { display: none; }
@keyframes capExpand {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cap-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 720px) { .cap-body-grid { grid-template-columns: 1fr; } }
.cap-body h5 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.cap-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cap-points li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.cap-points li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 6px;
}
.cap-visual {
  background: var(--warm-soft);
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid var(--border-soft);
}
.cap-visual svg { width: 100%; height: auto; display: block; }

/* The why → how → precondition stepper inside the hero */
.hero-sequence {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
  position: relative;
  z-index: 1;
}
.hero-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 190px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.hero-step .label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.hero-step .text { font-family: 'DM Serif Display', serif; font-size: 1.05rem; }
.hero-step.is-precondition {
  background: rgba(243, 178, 48, 0.14);
  border-color: rgba(243, 178, 48, 0.4);
}
.hero-arrow {
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  font-size: 1.5rem;
  opacity: 0.7;
}

/* ─── SECTIONS ─── */
section { padding: 96px 0; }
section.section-alt { background: white; }
section.section-warm { background: var(--warm-soft); }
section.section-navy { background: linear-gradient(180deg, var(--navy-deep), var(--navy-darker)); color: white; }
section.section-navy h2, section.section-navy h3, section.section-navy h4 { color: white; }
section.section-navy p { color: rgba(255, 255, 255, 0.78); }

.section-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
section.section-navy .section-label { color: var(--gold); }

.section-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
section.section-navy .section-intro { color: rgba(255, 255, 255, 0.78); }

.page-section-head {
  text-align: center;
  margin-bottom: 56px;
}

/* Section flourish */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--gold-deep);
}
.flourish::before, .flourish::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.flourish svg { width: 14px; height: 14px; flex-shrink: 0; }
section.section-navy .flourish::before, section.section-navy .flourish::after { background: var(--gold); }
section.section-navy .flourish { color: var(--gold-light); }

/* ─── PILLAR CARDS (home — the three sections) ─── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 16px;
}
@media (max-width: 920px) {
  .pillar-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(29, 47, 94, 0.14);
}
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card .pillar-num {
  font-family: 'DM Serif Display', serif;
  font-size: 0.9rem;
  color: var(--gold-deep);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pillar-card .pillar-role {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--navy);
  background: var(--warm-soft);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pillar-card h3 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  line-height: 1.25;
}
.pillar-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.pillar-card .pillar-cta {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pillar-card .pillar-cta::after {
  content: '→';
  transition: transform 0.2s ease;
}
.pillar-card:hover .pillar-cta::after { transform: translateX(4px); }

/* Sequence arrows visual on home */
.sequence-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 56px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.sequence-flow .flow-step {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  line-height: 1.3;
  position: relative;
  border: 2px solid var(--navy);
}
.sequence-flow .flow-step.is-outcome {
  background: var(--warm-soft);
  color: var(--navy);
  border-color: var(--gold);
}
.sequence-flow .flow-step .role-tag {
  display: block;
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.sequence-flow .flow-step.is-outcome .role-tag { color: var(--gold-deep); }
.sequence-flow .flow-arrow {
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  font-size: 1.6rem;
  text-align: center;
}
@media (max-width: 720px) {
  .sequence-flow { grid-template-columns: 1fr; }
  .sequence-flow .flow-arrow { transform: rotate(90deg); padding: 4px 0; }
}

/* ─── KEY IDEAS — 3-card row used on subpages ─── */
.key-ideas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 8px;
}
@media (max-width: 920px) { .key-ideas { grid-template-columns: 1fr; } }
.key-idea {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.key-idea:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.key-idea .ki-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.key-idea h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.25;
}
.key-idea p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── DRAG CARDS (Org Performance page) ─── */
.drag-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 720px) { .drag-grid { grid-template-columns: 1fr; } }
.drag-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  border-top: 4px solid var(--drag-accent, var(--gold));
}
.drag-card.drag-1 { --drag-accent: #5e8db5; }
.drag-card.drag-2 { --drag-accent: #2f7a72; }
.drag-card.drag-3 { --drag-accent: var(--gold-deep); }
.drag-card.drag-4 { --drag-accent: #3f8a55; }
.drag-card .drag-num {
  font-family: 'DM Serif Display', serif;
  color: var(--drag-accent);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.drag-card h3 {
  font-family: 'DM Serif Display', serif;
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 8px;
  line-height: 1.25;
}
.drag-card .drag-driven-by {
  font-family: 'Albert Sans', sans-serif;
  font-style: italic;
  color: var(--drag-accent);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.drag-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── ICEBERG MODEL (Recursive Teams page) ─── */
.iceberg-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 24px;
}
@media (max-width: 920px) { .iceberg-wrap { grid-template-columns: 1fr; gap: 32px; } }
.iceberg-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  margin: 0 auto;
}
.iceberg-list h4 {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.iceberg-list h4:not(:first-child) { margin-top: 28px; }
.iceberg-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
}
.iceberg-list ul li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}
section.section-navy .iceberg-list ul li { color: rgba(255, 255, 255, 0.92); }
section.section-navy .iceberg-list h4 { color: var(--gold-light); }
.iceberg-list ul li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 6px;
}

/* ─── RECURSIVE CYCLE (Recursive Teams page) ─── */
.recursive-cycle {
  display: block;
  width: 100%;
  height: auto;
  max-width: 720px;
  margin: 24px auto 0;
}

/* ─── INTEGRATED CAPABILITIES (Recursive Teams page) ─── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
@media (max-width: 920px) { .capabilities-grid { grid-template-columns: 1fr; } }
.capability-card {
  background: linear-gradient(180deg, var(--warm-soft), white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.capability-card .cap-stage {
  font-family: 'Albert Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-deep);
  margin-bottom: 8px;
}
.capability-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.capability-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}
.capability-card .cap-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(243, 178, 48, 0.18);
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 14px;
  align-self: flex-start;
}

/* ─── STATS STRIP ─── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 24px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}
.stats-strip .stat {
  padding: 28px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.stats-strip .stat:last-child { border-right: none; }
.stats-strip .stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.stats-strip .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.4;
}
.stats-strip .stat-source {
  display: block;
  margin-top: 6px;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}
@media (max-width: 920px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-strip .stat:nth-child(2) { border-right: none; }
  .stats-strip .stat:nth-child(1), .stats-strip .stat:nth-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
}
@media (max-width: 520px) {
  .stats-strip { grid-template-columns: 1fr; }
  .stats-strip .stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .stats-strip .stat:last-child { border-bottom: none; }
}

/* ─── OUTCOME LIST (subpage closers) ─── */
.outcome-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.outcome-list .outcome {
  background: white;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.outcome-list .outcome svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--gold);
  margin-top: 4px;
}
.outcome-list .outcome strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
  margin-bottom: 4px;
}
.outcome-list .outcome span {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ─── CALLOUT ─── */
.callout {
  background: white;
  border-left: 4px solid var(--gold);
  padding: 32px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--navy);
  font-style: italic;
  margin: 32px 0 0;
  box-shadow: var(--shadow-sm);
}
.callout::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 8px;
}

/* ─── CTA BLOCK ─── */
.cta-block {
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: white;
  padding: 64px 32px;
  border-radius: var(--radius-lg);
  margin-top: 56px;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(243, 178, 48, 0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-block h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.84);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  max-width: 580px;
}
.cta-block .cta-pill {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 14px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  position: relative;
  z-index: 1;
}

/* ─── DIFFERENTIATORS (home closer) ─── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 16px;
}
@media (max-width: 720px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.diff-card h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.diff-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--navy-darker);
  color: rgba(255, 255, 255, 0.6);
  padding: 56px 0 32px;
  font-size: 0.9rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.site-footer .foot-brand { flex: 1; min-width: 240px; }
.site-footer img { height: 26px; margin-bottom: 12px; }
.site-footer .tagline {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
}
.site-footer .foot-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.site-footer .foot-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.site-footer .foot-links a:hover { color: var(--gold); }
.site-footer .copyright {
  flex-basis: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42);
}

/* ─── V2 BENEFIT-ILLUSTRATED CARDS (used on technology page) ─── */
.benefit-grid-illustrated {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.benefit-illustrated {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.benefit-illustrated:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(243, 178, 48, 0.4);
}
.benefit-illustrated .illustration {
  background: linear-gradient(135deg, #f7f4ec 0%, #faf9f6 100%);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  border-bottom: 1px solid var(--border-soft);
  position: relative;
  overflow: hidden;
}
.benefit-illustrated .illustration svg {
  max-width: 100%;
  height: auto;
  display: block;
}
.benefit-illustrated .body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.benefit-illustrated h3 {
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.benefit-illustrated p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.benefit-illustrated .benefit-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

/* Steps used on technology page how-it-works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.step {
  background: white;
  border-radius: var(--radius);
  padding: 22px 20px;
  border-left: 3px solid var(--gold);
  position: relative;
}
.step .step-n {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.step h4 {
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1rem;
  font-family: 'Albert Sans', sans-serif;
  font-weight: 600;
}
.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ─── UTILITIES ─── */
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; }
.mt-8 { margin-top: 3.5rem; }
.muted { color: var(--text-muted); }
