/* ─── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:         #0c1729;
  --dark-2:       #102138;
  --dark-card:    #172d4a;
  --dark-card-2:  #1d3858;
  --coral:        #E8755F;
  --coral-light:  #F0927C;
  --peri:         #6B7CD9;
  --peri-light:   #8B9CE4;
  --peri-dim:     rgba(107,124,217,0.15);
  --peri-bg:      #f0f2fb;
  --plum:         #5E3A7A;
  --cream:        #FAF7F0;
  --cream-mid:    #F0EAD9;
  --cream-dark:   #EBE1CD;
  --ink:          #0e1a2b;
  --text-on-dark: #EEE9E1;
  --text-muted:   rgba(238,233,225,0.55);
  --text-dim:     rgba(238,233,225,0.32);
  --border-dark:  rgba(255,255,255,0.07);
  --border-light: rgba(14,26,43,0.09);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-head:    'Oswald', sans-serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:    8px;
  --radius-lg: 16px;
  --max-w:     1200px;
  --gutter:    clamp(20px, 5vw, 60px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ─── NAV ───────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(12, 23, 41, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.nav-logo-mark {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--coral);
  letter-spacing: -0.01em;
}
.nav-logo-mark span { color: var(--text-on-dark); }
.nav-logo-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-on-dark);
  margin-top: 4px;
}
.nav-logo-tag strong { font-weight: 600; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-on-dark); }
.nav-links a.active { color: var(--text-on-dark); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.5;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after { transform: rotate(180deg); opacity: 0.8; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(12, 23, 41, 0.98);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  backdrop-filter: blur(16px);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-radius: 0;
  color: var(--text-muted) !important;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark) !important;
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark) !important;
  background: var(--coral);
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--coral-light); transform: translateY(-1px); }

/* ─── HOMEPAGE HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--dark);
  padding: 160px var(--gutter) 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-bg-circle-1 {
  width: 700px; height: 700px;
  right: -180px; top: -160px;
  background: radial-gradient(circle, rgba(107,124,217,0.07) 0%, transparent 70%);
  border: 1px solid rgba(107,124,217,0.09);
}
.hero-bg-circle-2 {
  width: 500px; height: 500px;
  right: -60px; top: -60px;
  background: radial-gradient(circle, rgba(107,124,217,0.05) 0%, transparent 70%);
  border: 1px solid rgba(107,124,217,0.06);
}
.hero-bg-circle-3 {
  width: 300px; height: 300px;
  left: -100px; bottom: 80px;
  background: radial-gradient(circle, rgba(232,117,95,0.04) 0%, transparent 70%);
}
.hero-grid-line {
  position: absolute;
  background: var(--border-dark);
  pointer-events: none;
}
.hero-grid-line.v { width: 1px; top: 0; bottom: 0; }
.hero-grid-line.h { height: 1px; left: 0; right: 0; }

.hero-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--coral);
  opacity: 0.8;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 28px;
}
.hero h1 .accent { color: var(--coral); }

.hero-elevations {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  color: rgba(238,233,225,0.75);
  line-height: 2.1;
  margin-bottom: 28px;
  border-left: 2px solid rgba(107,124,217,0.5);
  padding-left: 16px;
}
.hero-elevations span { color: var(--peri-light); }

.hero-body {
  color: rgba(238,233,225,0.85);
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--coral);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,117,95,0.3);
}
.btn-primary:hover {
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(232,117,95,0.4);
}
.btn-outline {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  border: 1px solid rgba(240,237,232,0.2);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline:hover {
  border-color: rgba(240,237,232,0.45);
  background: rgba(240,237,232,0.05);
  transform: translateY(-2px);
}
.btn-outline-dark {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(14,26,43,0.2);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.btn-outline-dark:hover {
  border-color: rgba(14,26,43,0.4);
  background: rgba(14,26,43,0.04);
  transform: translateY(-2px);
}

/* Hero Intelligence Card */
.hero-card {
  background: var(--dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(107,124,217,0.06);
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(107,124,217,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
}
.card-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
  margin-top: 4px;
}
.card-badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--peri-light);
  background: rgba(107,124,217,0.12);
  border: 1px solid rgba(107,124,217,0.2);
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.card-divider {
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 20px;
}

.card-metric { margin-bottom: 14px; }
.card-metric-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.card-metric-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.card-metric-score {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
}
.card-metric-score.high { color: var(--peri-light); }
.card-metric-score.mid  { color: var(--coral-light); }
.card-metric-score.teal   { color: #5FB6B0; }
.card-metric-score.copper { color: #E29A63; }
.card-metric-score.brick  { color: #E0705F; }

.bar-track {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.8s ease;
}
.bar-fill.peri   { background: linear-gradient(90deg, var(--peri), var(--peri-light)); }
.bar-fill.coral  { background: linear-gradient(90deg, var(--coral), var(--coral-light)); }
.bar-fill.plum   { background: linear-gradient(90deg, var(--plum), #7B52A2); }
.bar-fill.green  { background: linear-gradient(90deg, #4a9e8a, #6bbfac); }
.bar-fill.low    { background: linear-gradient(90deg, #B5443A, #D46A52); }
.card-metric-score.low { color: #E08A74; }
/* Circumplex score-band colours: teal >=75, copper 50-74, brick <50 */
.bar-fill.teal   { background: linear-gradient(90deg, #2F6E6B, #46938F); }
.bar-fill.copper { background: linear-gradient(90deg, #B7693B, #D58E5C); }
.bar-fill.brick  { background: linear-gradient(90deg, #8C2424, #B5443A); }

/* Dual Quantity / Quality bars for a single behaviour */
.fb-behaviour { margin-bottom: 16px; }
.fb-behaviour:last-child { margin-bottom: 0; }
.fb-dual { margin-top: 8px; display: flex; flex-direction: column; gap: 7px; }
.fb-row { display: grid; grid-template-columns: 58px 1fr 26px; align-items: center; gap: 10px; }
.fb-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
/* Behaviour name pops on the dark card */
.fb-behaviour .card-metric-name { color: var(--text-on-dark); font-weight: 500; }
/* Support / Stretch tag */
.fb-tag {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 50px;
  white-space: nowrap;
}
.fb-tag.support { color: var(--peri-light); background: rgba(107,124,217,0.14); border: 1px solid rgba(107,124,217,0.22); }
.fb-tag.stretch { color: var(--coral-light); background: rgba(232,117,95,0.14); border: 1px solid rgba(232,117,95,0.22); }
.fb-val {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-align: right;
  color: var(--text-muted);
}
.fb-val.high { color: var(--peri-light); }
.fb-val.mid  { color: var(--coral-light); }
.fb-val.low  { color: #E08A74; }
.fb-val.teal   { color: #5FB6B0; }
.fb-val.copper { color: #E29A63; }
.fb-val.brick  { color: #E0705F; }

.card-insight {
  margin-top: 22px;
  background: rgba(107,124,217,0.06);
  border: 1px solid rgba(107,124,217,0.12);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.insight-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peri-light);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.insight-label::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--peri);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.insight-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
}
.card-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-footer > span {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(238,233,225,0.72);
}
.card-priorities {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.card-dot-row { display: flex; gap: 5px; }
.card-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.3;
}
.card-dot.active { opacity: 1; }


/* ─── STATS BAND ────────────────────────────────────────────────────────────── */
.stats-band {
  background: var(--cream);
  padding: 60px var(--gutter);
  border-top: 1px solid var(--cream-dark);
}
.stats-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.stats-trusted {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  text-align: center;
  margin-bottom: 48px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
}
.stat-item {
  background: var(--cream);
  padding: 32px 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(24,24,31,0.45);
}
.stats-sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(24,24,31,0.5);
  max-width: 600px;
  margin-inline: auto;
}


/* ─── SECTION EYEBROW ───────────────────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--coral);
  opacity: 0.8;
  flex-shrink: 0;
}
.section-eyebrow.peri { color: var(--peri); }
.section-eyebrow.peri::before { background: var(--peri); }
.section-eyebrow.centered {
  justify-content: center;
}
.section-eyebrow.centered::before { display: none; }


/* ─── WHY SECTION ───────────────────────────────────────────────────────────── */
.why-section {
  background: var(--cream);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--cream-dark);
}
.why-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.why-left h2 .accent { color: var(--coral); }
.why-left p {
  color: rgba(14,26,43,0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 16px;
}
.why-left p strong { color: var(--ink); font-weight: 600; }

.why-right { padding-top: 8px; }
.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pillar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  background: white;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pillar-item:hover {
  background: white;
  border-color: rgba(107,124,217,0.25);
  box-shadow: 0 4px 16px rgba(14,26,43,0.07);
}
.pillar-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--peri-dim);
  border: 1px solid rgba(107,124,217,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.pillar-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}
.pillar-desc {
  font-size: 0.8rem;
  color: rgba(14,26,43,0.55);
  margin-top: 2px;
}
.pillar-arrow {
  margin-left: auto;
  color: rgba(14,26,43,0.25);
  font-size: 0.8rem;
}


/* ─── ELEVATIONS ────────────────────────────────────────────────────────────── */
.elevations-section {
  background: var(--cream);
  padding: 120px var(--gutter);
  overflow: hidden;
}
.elevations-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.elevations-header {
  text-align: center;
  margin-bottom: 72px;
}
.elevations-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.elevations-header h2 .accent { color: var(--peri); }
.elevations-header p {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.75);
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
}

.elevations-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: start;
}

.elevations-diagram {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.elev-rings {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
  flex-shrink: 0;
}
.elev-svg {
  display: block;
  width: 100%;
  height: auto;
}

.elev-nodes { position: absolute; inset: 0; }
.elev-node {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--peri);
  transform: translate(-50%, -50%);
}
.elev-connector {
  position: absolute;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(107,124,217,0.4), transparent);
  transform-origin: top center;
}

.elev-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.elev-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-dark);
  cursor: default;
}
.elev-item:last-child { border-bottom: none; }
.elev-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--peri);
  padding-top: 3px;
  min-width: 24px;
  opacity: 0.7;
}
.elev-content h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.elev-content p {
  font-size: 0.92rem;
  color: rgba(24,24,31,0.6);
  line-height: 1.6;
}
.elev-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peri);
  background: rgba(107,124,217,0.08);
  border: 1px solid rgba(107,124,217,0.15);
  padding: 3px 8px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 8px;
}


/* ─── SYSTEM ─────────────────────────────────────────────────────────────────── */
.system-section {
  background: var(--peri-bg);
  padding: 120px var(--gutter);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(107,124,217,0.1);
  border-bottom: 1px solid rgba(107,124,217,0.1);
}
.system-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.system-header {
  text-align: center;
  margin-bottom: 72px;
}
.system-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.system-header h2 span { color: var(--peri); }
.system-header p {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.75);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.system-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.system-step {
  background: white;
  border: 1px solid rgba(107,124,217,0.14);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.system-step:hover { border-color: rgba(107,124,217,0.35); box-shadow: 0 6px 24px rgba(107,124,217,0.12); }
.system-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--peri), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.system-step:hover::before { opacity: 1; }
.step-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(107,124,217,0.55);
  margin-bottom: 16px;
}
.step-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.step-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.82rem;
  color: rgba(14,26,43,0.6);
  line-height: 1.55;
}

.system-callout {
  background: white;
  border: 1px solid rgba(107,124,217,0.15);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.system-callout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,124,217,0.03) 0%, transparent 50%);
}
.system-callout p {
  font-family: var(--font-body);
  font-size: 1.12rem;
  color: rgba(14,26,43,0.65);
  line-height: 1.7;
  max-width: 680px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.system-callout strong { color: var(--ink); }


/* ─── PRODUCTS GRID ──────────────────────────────────────────────────────────── */
.products-section {
  background: var(--cream);
  padding: 120px var(--gutter);
}
.products-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.products-header {
  margin-bottom: 56px;
  display: block;
}
.products-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.products-header p {
  font-size: 1rem;
  color: rgba(24,24,31,0.6);
  max-width: 480px;
  line-height: 1.65;
  margin-top: 12px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.products-grid .product-card:last-child:nth-child(3n+1) {
  grid-column: 1 / -1;
  max-width: calc(33.333% - 11px);
  margin-inline: auto;
}
.product-card {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  box-shadow: 0 16px 48px rgba(24,24,31,0.1);
  transform: translateY(-3px);
  border-color: rgba(107,124,217,0.25);
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-card:hover::before { opacity: 1; }
.product-card:nth-child(1)::before { background: linear-gradient(90deg, var(--peri), var(--peri-light)); }
.product-card:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), var(--coral-light)); }
.product-card:nth-child(3)::before { background: linear-gradient(90deg, var(--plum), #7B52A2); }
.product-card:nth-child(4)::before { background: linear-gradient(90deg, #4a9e8a, #6bbfac); }
.product-card:nth-child(5)::before { background: linear-gradient(90deg, var(--peri), var(--plum)); }
.product-card:nth-child(6)::before { background: linear-gradient(90deg, var(--coral), var(--plum)); }
.product-card:nth-child(7)::before { background: linear-gradient(90deg, #4a9e8a, var(--peri)); }

.product-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 14px;
}
.product-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.product-card p {
  font-size: 0.88rem;
  color: rgba(24,24,31,0.6);
  line-height: 1.6;
}
.product-card-arrow {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--peri);
  opacity: 0;
  transition: opacity 0.2s;
  text-transform: uppercase;
}
.product-card:hover .product-card-arrow { opacity: 1; }


/* ─── ABOUT SECTION (homepage) ───────────────────────────────────────────────── */
.about-section {
  background: var(--cream);
  padding: 120px var(--gutter);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--cream-dark);
}
.about-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-left h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.about-left h2 .accent { color: var(--peri); }
.about-left p {
  color: rgba(14,26,43,0.65);
  font-size: 1.02rem;
  line-height: 1.72;
  margin-bottom: 16px;
}
.about-left p:last-child { margin-bottom: 0; }

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-year {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--coral);
  min-width: 44px;
  padding-top: 3px;
}
.timeline-content h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.timeline-content p {
  font-size: 0.84rem;
  color: rgba(14,26,43,0.6);
  line-height: 1.55;
}


/* ─── CLIENT LOGOS ───────────────────────────────────────────────────────────── */
.clients-section {
  background: var(--cream);
  padding: 80px var(--gutter);
  border-top: 1px solid var(--cream-dark);
}
.clients-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.clients-label {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  text-align: center;
  margin-bottom: 48px;
  opacity: 0.8;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.client-logo {
  background: var(--cream);
  padding: 28px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.client-logo:hover { background: white; }
.client-logo span {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(24,24,31,0.35);
  transition: color 0.2s;
  text-align: center;
}
.client-logo:hover span { color: rgba(24,24,31,0.65); }
.client-logo img {
  max-width: 118px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.client-logo:hover img { opacity: 0.8; }


/* ─── FINAL CTA ──────────────────────────────────────────────────────────────── */
.cta-section {
  background: var(--dark);
  padding: 76px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,95,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.cta-inner {
  max-width: 720px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text-on-dark);
  margin-bottom: 24px;
}
.cta-headline span { color: var(--coral); display: block; }
.cta-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 48px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Split CTA: Influence Engine (platform) vs People of Influence (consultancy) */
.cta-eyebrow {
  color: var(--text-on-dark);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.cta-eyebrow::before { background: var(--text-on-dark); }
.cta-split {
  max-width: 1000px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
.cta-card {
  padding: 8px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-card:first-child { border-right: 1px solid var(--border-dark); }
.cta-card-logo {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}
.cta-card-logo img { width: auto; max-width: 100%; display: block; }
.cta-card--il  .cta-card-logo img { height: 44px; }
.cta-card--poi .cta-card-logo img { height: 86px; }
.cta-card-text {
  font-size: 1.22rem;
  color: var(--text-on-dark);
  line-height: 1.6;
  margin-bottom: 32px;
  flex: 1;
  max-width: 430px;
}
.cta-card-text strong { font-weight: 700; }
.cta-card--il  .cta-card-text strong { color: var(--coral); }
.cta-card--poi .cta-card-text strong { color: var(--peri-light); }
.btn-peri {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--peri);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(107,124,217,0.3);
}
.btn-peri:hover {
  background: var(--peri-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(107,124,217,0.4);
}
@media (max-width: 760px) {
  .cta-split { grid-template-columns: 1fr; }
  .cta-card { padding: 0 16px; }
  .cta-card:first-child { border-right: none; border-bottom: 1px solid var(--border-dark); padding-bottom: 44px; }
  .cta-card:last-child { padding-top: 44px; }
}


/* ─── FOOTER ─────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dark);
  padding: 48px var(--gutter) 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--coral);
  text-decoration: none;
}
.footer-logo span { color: var(--text-on-dark); }
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-muted); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.footer-poi {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-poi a { color: var(--text-muted); text-decoration: none; }
.footer-poi a:hover { color: var(--text-on-dark); }


/* ─── PAGE HERO (inner pages) ────────────────────────────────────────────────── */
.page-hero {
  background: var(--dark);
  padding: 130px var(--gutter) 56px;
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
}
.page-hero-bg-1 {
  position: absolute;
  width: 600px; height: 600px;
  right: -140px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,124,217,0.07) 0%, transparent 70%);
  border: 1px solid rgba(107,124,217,0.08);
  pointer-events: none;
}
.page-hero-bg-2 {
  position: absolute;
  width: 300px; height: 300px;
  left: -80px; bottom: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,95,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.page-hero-inner.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.page-hero-eyebrow {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--coral);
  opacity: 0.8;
}
.page-hero-eyebrow.peri { color: var(--peri); }
.page-hero-eyebrow.peri::before { background: var(--peri); }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-on-dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.page-hero h1 .accent { color: var(--coral); }
.page-hero h1 .accent-peri { color: var(--peri); }
.page-hero-sub {
  font-size: 1.08rem;
  color: rgba(238,233,225,0.78);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 36px;
}
.page-hero-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.page-hero-breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.page-hero-breadcrumb a:hover { color: var(--text-muted); }
.page-hero-breadcrumb span { color: var(--text-muted); margin: 0 8px; }


/* ─── INNER PAGE SECTIONS ────────────────────────────────────────────────────── */
.inner-section {
  padding: 100px var(--gutter);
}
.inner-section.dark {
  background: var(--dark);
  color: var(--text-on-dark);
}
.inner-section.cream { background: var(--cream); }
.inner-section.white { background: white; }
.inner-section.peri-bg {
  background: var(--peri-bg);
  border-top: 1px solid rgba(107,124,217,0.1);
  border-bottom: 1px solid rgba(107,124,217,0.1);
}
.inner-section-inner {
  max-width: var(--max-w);
  margin-inline: auto;
}
.inner-section-inner.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.inner-section-inner.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.section-header {
  margin-bottom: 60px;
}
.section-header.centered {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 60px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-header.dark-bg h2 { color: var(--text-on-dark); }
.section-header h2 .accent { color: var(--coral); }
.section-header h2 .accent-peri { color: var(--peri); }
.section-header p {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.72);
  line-height: 1.7;
  max-width: 560px;
}
.section-header.centered p { margin-inline: auto; }

/* Feature card */
.feature-card {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(14,26,43,0.08);
  transform: translateY(-2px);
  border-color: rgba(107,124,217,0.2);
}
.feature-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--peri-dim);
  border: 1px solid rgba(107,124,217,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.feature-card-icon.coral-bg {
  background: rgba(232,117,95,0.1);
  border-color: rgba(232,117,95,0.2);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: rgba(14,26,43,0.62);
  line-height: 1.65;
}

/* Criteria card */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.criteria-card {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.criteria-card:hover {
  box-shadow: 0 8px 32px rgba(14,26,43,0.08);
  border-color: rgba(107,124,217,0.2);
}
.criteria-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(107,124,217,0.5);
  margin-bottom: 12px;
}
.criteria-card h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.criteria-card p {
  font-size: 0.88rem;
  color: rgba(14,26,43,0.6);
  line-height: 1.6;
}

/* Outcome list */
.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
}
.outcome-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(107,124,217,0.1);
  border: 1px solid rgba(107,124,217,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.65rem;
  color: var(--peri);
}
.outcome-text {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.72);
  line-height: 1.55;
}
.outcome-text strong { color: var(--ink); font-weight: 600; }

/* Audience tags */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.audience-tag {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: white;
  border: 1px solid var(--cream-dark);
  padding: 8px 18px;
  border-radius: 50px;
}

/* ─── FOUNDERS ────────────────────────────────────────────────────────────────── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.founder-card {
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.founder-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.founder-role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.founder-bio {
  font-size: 0.92rem;
  color: rgba(14,26,43,0.65);
  line-height: 1.7;
}
.founder-bio p { margin-bottom: 12px; }
.founder-bio p:last-child { margin-bottom: 0; }

/* ─── DIAGNOSTIC PAGE TEMPLATE ────────────────────────────────────────────────── */
/* Big section titles - matched to the home-page eyebrow size ("Why Influence
   Lab Exists" / "Our Platform Combines"): 1.35rem Oswald 700, coral, with dash. */
.diag-section-title {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.diag-section-title::before {
  content: '';
  display: block;
  width: 36px; height: 2px;
  background: var(--coral);
  opacity: 0.8;
  flex-shrink: 0;
}
.diag-section-title.peri { color: var(--peri); }
.diag-section-title.peri::before { background: var(--peri); }

/* Column / sub-titles inside a section */
.diag-col-title {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.diag-col-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 18px;
}
.diag-text {
  font-size: 1.05rem;
  color: rgba(14,26,43,0.78);
  line-height: 1.75;
  max-width: 760px;
}
.diag-text + .diag-text { margin-top: 18px; }
.diag-text em { font-style: italic; }

/* Large Oswald sub-heading (What you get) - matches the home/about big heading */
.whatyouget-sub {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
}
.whatyouget-sub.peri { color: var(--peri); }
.wyg-for {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin: -10px 0 22px;
}
.wyg-for.peri { color: var(--peri); }
.wyg-also-label { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(14,26,43,0.45); margin-bottom: 12px; }
.wyg-founders { display: flex; flex-wrap: wrap; gap: 44px; margin-top: 32px; }
.wyg-founder { display: flex; align-items: center; gap: 16px; }
.wyg-founder img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; box-shadow: 0 8px 22px rgba(14,26,43,0.14); flex-shrink: 0; }
.wyg-founder-name { font-family: var(--font-head); font-weight: 700; font-size: 1.18rem; color: var(--ink); }
.wyg-founder-role { font-size: 0.88rem; color: rgba(14,26,43,0.6); margin-top: 2px; }
.wyg-experts-card { background: #fff; border: 1px solid var(--cream-dark); border-radius: var(--radius-lg); padding: 32px 30px; display: flex; flex-direction: column; gap: 26px; box-shadow: 0 12px 36px rgba(14,26,43,0.07); }
.wyg-guidance-cols { column-count: 2; column-gap: 48px; }
.wyg-guidance-cols .diag-text { break-inside: avoid; margin: 0 0 16px; }
@media (max-width: 760px) { .wyg-guidance-cols { column-count: 1; } }
/* Cohort dashboard cluster (shared with homepage "Under the Hood") */
.eng-cluster { background:linear-gradient(160deg,#15233A,#1E2C49); border-radius:14px; padding:20px 20px 18px; }
.eng-cluster-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:18px; gap:10px; }
.eng-cluster-label { font-family:var(--font-mono); font-size:.6rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(238,233,225,.65); }
.eng-cluster-cohort { font-family:var(--font-head); font-weight:700; font-size:1.05rem; color:#fff; margin-top:2px; }
.eng-warn { font-family:var(--font-mono); font-size:.56rem; letter-spacing:.07em; text-transform:uppercase; color:#1E2C49; background:#E6A23C; padding:5px 9px; border-radius:99px; font-weight:700; white-space:nowrap; }
.eng-bars { display:flex; flex-direction:column; gap:14px; margin-bottom:16px; }
.eng-bar-top { display:flex; justify-content:space-between; font-size:.72rem; margin-bottom:6px; color:rgba(238,233,225,.85); font-family:var(--font-mono); letter-spacing:.04em; }
.eng-bar-track { height:9px; background:rgba(255,255,255,.1); border-radius:99px; overflow:hidden; }
.eng-bar-fill { height:100%; border-radius:99px; }
.eng-bar-fill.teal { background:#5FB6B0; }
.eng-bar-fill.copper { background:#E6A23C; }
.eng-bar-fill.brick { background:#C2553F; }
.eng-insight { font-size:.78rem; color:rgba(238,233,225,.82); line-height:1.45; border-top:1px solid rgba(255,255,255,.12); padding-top:12px; }
.eng-insight b { color:#fff; }

/* Bordered card to match the assessment box (used to box intro text for symmetry) */
.info-box {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 28px;
}
.info-box .diag-text { margin: 0; max-width: none; }

/* Image placeholders (reusable on diagnostic pages) */
.img-ph {
  border: 2px dashed rgba(94,58,122,0.35);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--cream-mid), var(--cream-dark));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 24px;
  width: 100%;
}
.img-ph-landscape { aspect-ratio: 16 / 9; }
.img-ph-wide      { aspect-ratio: 5 / 4; }
.img-ph-square    { aspect-ratio: 1 / 1; }
.img-ph-icon { font-size: 2rem; opacity: 0.4; }
.img-ph-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(14,26,43,0.55);
  max-width: 340px;
  line-height: 1.5;
}

/* Founder headshots (small circular placeholders) */
.founder-shots {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}
.founder-shot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.founder-shot-circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 2px dashed rgba(94,58,122,0.4);
  background: linear-gradient(135deg, var(--cream-mid), var(--cream-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: rgba(14,26,43,0.45);
}
.founder-shot-photo {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.founder-shot-name {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(14,26,43,0.6);
}

/* Vertical pill stack (Who's it for) */
.pill-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  max-width: 320px;
}
.pill-stack .audience-tag {
  text-align: center;
  padding: 14px 18px;
  font-size: 0.85rem;
  background: rgba(232,117,95,0.10);
  border-color: rgba(232,117,95,0.45);
  color: var(--coral);
}

/* Team structure diagram (How it works) */
.team-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
  margin-bottom: 36px;
}
.team-node {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--ink);
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 10px 22px;
}
.team-node-leader { border-color: rgba(232,117,95,0.5); color: var(--coral); }
.team-connector { width: 2px; height: 26px; background: rgba(107,124,217,0.35); }
.team-circle {
  width: 75px; height: 75px;
  border-radius: 50%;
  background: rgba(107,124,217,0.1);
  border: 2px solid rgba(107,124,217,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 1.55rem;
  line-height: 1;
  padding: 4px;
  color: var(--peri);
}
.team-members {
  display: flex;
  gap: 16px;
  position: relative;
  padding-top: 24px;
}
/* horizontal bar joining the member branches (spans first→last member centre) */
.team-members::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  right: 8px;
  height: 2px;
  background: rgba(107,124,217,0.35);
}
.team-member {
  position: relative;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(107,124,217,0.18);
  border: 1px solid rgba(107,124,217,0.45);
}
.team-member::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 50%;
  width: 2px; height: 24px;
  background: rgba(107,124,217,0.35);
  transform: translateX(-50%);
}
.team-members-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-top: 16px;
}
/* 360-style compass diagram (manager top, self-assess left, peers right, reports below) */
.dx-compass {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 300px;
  margin: 0 auto;
}
.dx-compass .team-circle {
  position: absolute;
  left: 50%; top: 112px;
  transform: translateX(-50%);
  font-size: 0.92rem;
}
.dxc-label {
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
  text-align: center;
}
.dxc-bubble { position: absolute; }
.dxc-line { position: absolute; background: rgba(107,124,217,0.35); }
.dxc-line.coral { background: rgba(232,117,95,0.65); }
/* Manager (top) */
.dxc-manager-label { left: 50%; top: 12px; transform: translateX(-50%); white-space: nowrap; }
.dxc-manager-bubble { left: 50%; top: 50px; transform: translateX(-50%); }
.dxc-manager-line { left: 50%; top: 66px; transform: translateX(-50%); width: 2px; height: 46px; }
/* Self-assess (left) */
.dxc-self-bubble { left: 40px; top: 142px; }
.dxc-self-line { left: 56px; top: 149px; width: 66px; height: 2px; }
.dxc-self-label { left: 0; top: 168px; width: 96px; }
/* Peers (right) */
.dxc-peers-bubble { right: 40px; top: 142px; }
.dxc-peers-line { right: 56px; top: 149px; width: 66px; height: 2px; }
.dxc-peers-label { right: 0; top: 168px; width: 96px; }
/* Reports (bottom) */
.dxc-reports {
  position: absolute;
  left: 50%; top: 188px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Single node bubbles + labels (no-hierarchy diagram nodes) */
.node-bubble {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(107,124,217,0.2);
  border: 1.5px solid rgba(107,124,217,0.5);
  flex-shrink: 0;
}
.node-bubble.coral {
  background: rgba(232,117,95,0.2);
  border-color: rgba(232,117,95,0.55);
}
.dx-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.dx-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  max-width: 120px;
  line-height: 1.3;
}

/* Assessment box + diagram side by side inside the How-it-works column */
.howitworks-split {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 28px;
}
.howitworks-split .team-diagram { margin-top: 0; margin-bottom: 0; }
.howitworks-split .assess-box { padding: 24px 22px; }
@media (max-width: 980px) {
  .howitworks-split { grid-template-columns: 1fr; gap: 32px; }
}

/* Chart nested inside the full-width assessment-sources box */
.assess-chart {
  margin-top: 22px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-dark);
}
.assess-chart .team-diagram { margin-top: 8px; margin-bottom: 8px; }
.assess-chart .dx-compass { margin-top: 10px; }

/* Bigger-title variant of the white assessment-sources box */
.assess-box {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.assess-box-title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 20px;
}
.assess-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 10px;
}
.assess-row:last-child { margin-bottom: 0; }
.assess-row-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.assess-row-text { font-size: 0.98rem; color: rgba(14,26,43,0.82); }

/* ─── ANIMATED HERO GLYPHS ──────────────────────────────────────────────────────
   Subtle formula/matrix glyphs drifting across the page-hero background. Light
   blue-grey, tilted onto a 3D plane, drifting slowly from bottom-right toward
   upper-left and fading in/out so the loop is seamless. */
.hero-glyphs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-glyph {
  position: absolute;
  color: #b4bfdb;
  opacity: 0;
  animation: hero-glyph-drift 32s linear infinite;
  will-change: transform, opacity;
}
/* inner wrapper holds the static 3D tilt so it doesn't fight the drift */
.hero-glyph > span {
  display: block;
  transform: perspective(820px) rotateX(34deg) rotateZ(-20deg);
}
.hero-glyph svg { display: block; }
@keyframes hero-glyph-drift {
  0%   { transform: translate3d(48px, 48px, 0);   opacity: 0; }
  14%  { opacity: var(--o, 0.13); }
  86%  { opacity: var(--o, 0.13); }
  100% { transform: translate3d(-72px, -72px, 0); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glyph { animation: none; opacity: var(--o, 0.12); }
}

/* ─── UTILITY ─────────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mb-0 { margin-bottom: 0 !important; }


/* ─── DIAGNOSTIC 2×2 MATRIX (square-cell visual; proportions match Motivation Finder) ─── */
/* Set the accent per page via inline style="--mx-accent:#xxxxxx" on .mx-fig */
.mx-fig {
  --mx-sq: clamp(112px, 13vw, 170px);
  --mx-gap: 10px;
  --mx-accent: #2F8B8B;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  column-gap: 6px; row-gap: 4px;
  align-items: stretch; justify-content: center;
  max-width: 580px;
}
.mx-ylabel { grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-end; text-align: right; width: clamp(92px, 15vw, 140px); }
.mx-xlabel { grid-column: 3; grid-row: 3; width: calc(var(--mx-sq)*2 + var(--mx-gap)); text-align: center; margin-top: 2px; }
.mx-xlabel .mx-axis-sub { max-width: 215px; margin-inline: auto; text-wrap: balance; }
.mx-axis { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.3rem, 4.4vw, 2rem); line-height: 1; color: var(--mx-accent); letter-spacing: .01em; }
.mx-axis-sub { margin-top: 6px; font-family: var(--font-body); font-size: clamp(.56rem, 1.9vw, .7rem); line-height: 1.34; color: var(--mx-accent); }
.mx-hilo { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; justify-content: space-between; align-items: center; }
.mx-hilo span { display: inline-flex; flex-direction: column; align-items: center; gap: 1px; line-height: 1.05; }
.mx-hilo span i { font-style: normal; font-size: .82rem; line-height: 1; }
.mx-lohi { grid-column: 3; grid-row: 2; width: calc(var(--mx-sq)*2 + var(--mx-gap)); display: flex; justify-content: space-between; align-items: center; }
.mx-hilo span, .mx-lohi span { font-family: var(--font-body); font-weight: 600; font-size: .6rem; letter-spacing: .02em; color: rgba(14,26,43,.5); white-space: nowrap; }
.mx-cells { grid-column: 3; grid-row: 1; display: grid; grid-template-columns: repeat(2, var(--mx-sq)); gap: var(--mx-gap); }
.mx-cell { width: var(--mx-sq); height: var(--mx-sq); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 9px 5px; border-radius: 8px; overflow: hidden; }
.mx-cell--plain { background: #fff; border: 2px solid var(--ink); }
.mx-cell--driven { background: var(--mx-accent); border-radius: 14px; color: #fff; box-shadow: 0 12px 26px rgba(14,26,43,.18); }
.mx-cell-title { font-family: var(--font-head); font-weight: 700; font-size: clamp(1.12rem, 3.4vw, 1.55rem); line-height: 1.04; letter-spacing: .005em; }
.mx-cell--plain .mx-cell-title { color: var(--ink); }
.mx-cell--driven .mx-cell-title { color: #fff; }
.mx-cell-text { margin-top: 5px; font-family: var(--font-body); font-size: clamp(.56rem, 1.7vw, .7rem); line-height: 1.26; text-wrap: balance; }
.mx-cell--plain .mx-cell-text { color: rgba(14,26,43,.82); }
.mx-cell--driven .mx-cell-text { color: rgba(255,255,255,.92); }
@media (max-width: 960px) { .mx-fig { margin-inline: auto; } }

/* Matrix scroll-reveal "build-in" — only active once matrix-reveal.js adds .mx-anim
   (so no-JS / reduced-motion users always see the finished matrix). */
.mx-reveal.mx-anim .mx-cell,
.mx-reveal.mx-anim .mx-ylabel,
.mx-reveal.mx-anim .mx-xlabel,
.mx-reveal.mx-anim .mx-hilo,
.mx-reveal.mx-anim .mx-lohi {
  opacity: 0;
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
/* each part starts offset toward where it belongs, then settles home */
.mx-reveal.mx-anim .mx-cell   { transform: translateY(14px) scale(.92); }
.mx-reveal.mx-anim .mx-ylabel { transform: translateX(-22px); }
.mx-reveal.mx-anim .mx-xlabel { transform: translateY(22px); }
.mx-reveal.mx-anim .mx-hilo   { transform: translateX(-10px); }
.mx-reveal.mx-anim .mx-lohi   { transform: translateY(12px); }
.mx-reveal.mx-anim.in .mx-cell,
.mx-reveal.mx-anim.in .mx-ylabel,
.mx-reveal.mx-anim.in .mx-xlabel,
.mx-reveal.mx-anim.in .mx-hilo,
.mx-reveal.mx-anim.in .mx-lohi { opacity: 1; transform: none; }
/* sequence: draw the axis frame, drop in the quadrants, winner lands last */
.mx-fig.mx-anim.in .mx-ylabel { transition-delay: .05s; }
.mx-fig.mx-anim.in .mx-hilo   { transition-delay: .12s; }
.mx-fig.mx-anim.in .mx-cells .mx-cell:nth-child(1) { transition-delay: .26s; }
.mx-fig.mx-anim.in .mx-cells .mx-cell:nth-child(3) { transition-delay: .36s; }
.mx-fig.mx-anim.in .mx-cells .mx-cell:nth-child(4) { transition-delay: .46s; }
.mx-fig.mx-anim.in .mx-lohi   { transition-delay: .5s; }
.mx-fig.mx-anim.in .mx-xlabel { transition-delay: .56s; }
/* the "good" (driven) quadrant arrives last with a gentle pop */
.mx-fig.mx-anim.in .mx-cells .mx-cell--driven {
  transition-delay: .66s;
  transition-timing-function: cubic-bezier(.34,1.56,.64,1);
}
@media (prefers-reduced-motion: reduce) {
  .mx-reveal.mx-anim .mx-cell,
  .mx-reveal.mx-anim .mx-ylabel,
  .mx-reveal.mx-anim .mx-xlabel,
  .mx-reveal.mx-anim .mx-hilo,
  .mx-reveal.mx-anim .mx-lohi { opacity: 1 !important; transform: none !important; transition: none !important; }
}


/* ─── DIAGNOSTIC ARCHITECTURE TREE (Master/Specialist tiers; shared with the homepage Diagnostic Suite) ─── */
.diag-arch { margin-top: 8px; }
.arch-tier {
  --conn: rgba(107,124,217,0.55);
  --conn-w: 2px;
  --gutter-w: 56px;
  --trunk-x: 26px;
  --gap: 18px;
  --row-offset: 38px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  position: relative;
}
.arch-tier + .arch-tier { margin-top: 88px; }
.arch-tier--master { --gap: 16px; --row-offset: 35px; }
.arch-tier--spec { --gap: 28px; --row-offset: 38px; }
.arch-tier-root {
  position: relative;
  padding: 26px 28px;
  border-radius: var(--radius);
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 0 14px 34px rgba(14,26,43,0.28);
}
.arch-root-label {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--coral);
  margin-bottom: 10px;
}
.arch-root-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.35;
  color: var(--cream);
}
.arch-tier-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
  padding-left: var(--gutter-w);
}
.arch-tier-stack::before {
  content: '';
  position: absolute;
  top: var(--row-offset);
  left: 0;
  width: var(--trunk-x);
  height: var(--conn-w);
  background: var(--conn);
}
.arch-tier-row { position: relative; }
.arch-tier-row::before {
  content: '';
  position: absolute;
  top: var(--row-offset);
  left: calc(var(--trunk-x) - var(--gutter-w));
  width: calc((var(--gutter-w) - var(--trunk-x)) / 2);
  height: var(--conn-w);
  background: var(--conn);
}
.arch-tier-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: calc(-1 * var(--gap));
  left: calc(var(--trunk-x) - var(--gutter-w));
  width: var(--conn-w);
  background: var(--conn);
}
.arch-tier-row:first-child::after { top: var(--row-offset); }
.arch-tier-row:last-child::after { bottom: auto; height: var(--row-offset); }
.arch-tier--master .arch-tier-row::after { display: none; }
.arch-tier--master .arch-cards { position: relative; }
.arch-tier--master .arch-cards::before {
  content: '';
  position: absolute;
  top: -16px;
  bottom: 0;
  left: calc(var(--trunk-x) - var(--gutter-w));
  width: var(--conn-w);
  background: var(--conn);
}
.arch-tier--master .arch-master-card { position: relative; }
.arch-tier--master .arch-master-card::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(var(--trunk-x) - var(--gutter-w));
  width: calc(var(--gutter-w) - var(--trunk-x));
  height: var(--conn-w);
  background: var(--conn);
}
.arch-tier--master .arch-master-card:last-child::after {
  content: '';
  position: absolute;
  top: calc(50% + 1px);
  bottom: -1px;
  left: calc(var(--trunk-x) - var(--gutter-w) - 2px);
  width: calc(var(--conn-w) + 4px);
  background: var(--cream);
}
.arch-tier-stack .arch-master-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
  align-items: stretch;
  padding: 24px 28px;
}
.arch-master-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.arch-master-main h4 { margin-bottom: 6px; }
.arch-master-col .arch-identify { margin-top: 0; }
.arch-tier--spec .arch-cards,
.arch-tier--master .arch-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.arch-col-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.arch-col-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--peri);
  opacity: 0.7;
}
.arch-col-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.arch-tier--spec .arch-col-head,
.arch-tier--master .arch-col-head {
  border-bottom-color: var(--conn);
}
@media (max-width: 780px) {
  .arch-tier { grid-template-columns: 1fr; }
  .arch-tier-root { margin-bottom: 20px; }
  .arch-tier-stack { padding-left: 0; }
  .arch-tier-stack::before,
  .arch-tier-row::before,
  .arch-tier-row::after { display: none; }
  .arch-tier--master .arch-cards::before,
  .arch-tier--master .arch-master-card::before,
  .arch-tier--master .arch-master-card:last-child::after { display: none; }
  .arch-tier-stack .arch-master-card { grid-template-columns: 1fr; gap: 14px; }
}
.arch-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.arch-card {
  background: white;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.arch-card:hover {
  border-color: rgba(107,124,217,0.3);
  box-shadow: 0 8px 24px rgba(14,26,43,0.08);
  transform: translateY(-2px);
}
.arch-tier .arch-card:hover { transform: none; }
.arch-master-card {
  background: white;
  border-color: var(--cream-dark);
}
.arch-card h4 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  line-height: 1.22;
}
.arch-card p {
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.6;
}
.arch-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--peri);
  background: rgba(107,124,217,0.1);
  border: 1px solid rgba(107,124,217,0.25);
  border-radius: 50px;
  padding: 4px 12px;
  margin-bottom: 14px;
}
.arch-identify {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-top: 14px;
  margin-bottom: 8px;
}
.arch-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}
.arch-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.7;
}
.arch-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peri);
}
.arch-explore {
  display: inline-block;
  align-self: flex-start;
  margin-top: 16px;
  padding: 11px 20px;
  border-radius: 50px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(232,117,95,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.arch-card:hover .arch-explore {
  background: var(--coral-light, #f08e7a);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(232,117,95,0.4);
}
.arch-master-main .arch-explore { margin-top: auto; }


/* ─── ELEVATIONS "what they measure" tables (one per elevation: Self / Others / Team) ─── */
.eoi-mt-block + .eoi-mt-block { margin-top: 64px; }
.eoi-mt-title {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-bottom: 14px;
}
.eoi-mt-wrap {
  border: 1px solid rgba(107,124,217,0.22);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 44px rgba(14,26,43,0.06);
}
.eoi-mt { width: 100%; border-collapse: collapse; table-layout: fixed; font-family: var(--font-body); }
.eoi-mt th, .eoi-mt td { text-align: left; vertical-align: top; padding: 15px 18px; }
.eoi-mt td { border-top: 1px solid rgba(107,124,217,0.16); }
.eoi-mt th + th, .eoi-mt td + td { border-left: 1px solid rgba(107,124,217,0.16); }
.eoi-mt-cat {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eoi-mt-cat .eoi-mt-desc {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-style: italic;
  line-height: 1.35;
  color: rgba(14,26,43,0.62);
}
.eoi-cat-a { color: var(--coral); background: rgba(232,117,95,0.10); }
.eoi-cat-b { color: var(--peri);  background: rgba(107,124,217,0.10); }
.eoi-mt-sub {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.eoi-mt-list { list-style: none; margin: 0; padding: 0; }
.eoi-mt-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(14,26,43,0.82);
}
.eoi-mt-list li + li { margin-top: 6px; }
.eoi-mt-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--peri);
}
.eoi-col-a .eoi-mt-list li::before { background: var(--coral); }
.eoi-mt-metrics { background: rgba(107,124,217,0.06); border-top: 1px solid rgba(107,124,217,0.22); }
.eoi-mt-metrics-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--peri);
  margin-bottom: 8px;
}
.eoi-mt-metrics p { font-size: 0.92rem; line-height: 1.55; color: rgba(14,26,43,0.82); }
.eoi-mt-metrics p + p { margin-top: 6px; }
/* 3-column variant: a left descriptor column + two category columns (Influence Others / Team) */
.eoi-mt--3col col.eoi-mt-c1 { width: 22%; }
.eoi-mt--3col th, .eoi-mt--3col td { border-top: 1px solid rgba(107,124,217,0.16); border-left: 1px solid rgba(107,124,217,0.16); }
.eoi-mt--3col tr:first-child th, .eoi-mt--3col tr:first-child td { border-top: none; }
.eoi-mt--3col th:first-child, .eoi-mt--3col td:first-child { border-left: none; }
.eoi-mt-rowhead span { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; line-height: 1.3; color: var(--ink); }
.eoi-mt-rowhead span + span { margin-top: 14px; }
.eoi-mt-note { max-width: 760px; margin-top: 14px; font-size: 1rem; line-height: 1.65; color: rgba(14,26,43,0.82); }
/* Each elevation block: table + note on the left, sample dashboard on the right */
.eoi-mt-twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 6px; }
@media (max-width: 860px) { .eoi-mt-twocol { grid-template-columns: 1fr; gap: 28px; } }
.eoi-dash-group + .eoi-dash-group { margin-top: 16px; }
.eoi-dash-grouplabel { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 9px; }
.eoi-dash-metric + .eoi-dash-metric { margin-top: 11px; }

/* Building Extraordinary Teams behaviour table (reused in the Elevations "Influence Team" block) */
.bet-wrap { border: 1px solid rgba(107,124,217,.22); border-radius: 14px; overflow: hidden; background: #fff; box-shadow: 0 14px 44px rgba(14,26,43,.06); }
.bet-scroll { overflow-x: auto; }
.bet-matrix { width: 100%; border-collapse: collapse; table-layout: fixed; font-family: var(--font-body); }
.bet-matrix th, .bet-matrix td { text-align: left; vertical-align: top; padding: 14px 13px; }
.bet-matrix tbody tr + tr { border-top: 1px solid rgba(107,124,217,.16); }
.bet-axis { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding-top: 14px; padding-bottom: 14px; }
.bet-axis.bet-rel { color: var(--peri); background: rgba(107,124,217,.10); }
.bet-axis.bet-res { color: var(--coral); background: rgba(232,117,95,.10); border-left: 1px solid rgba(107,124,217,.16); }
.bet-rowhead { font-family: var(--font-head); font-weight: 600; font-size: 1rem; letter-spacing: .01em; background: rgba(14,26,43,.02); }
.bet-rowhead-rel { color: var(--peri); }
.bet-rowhead-res { color: var(--coral); border-left: 1px solid rgba(107,124,217,.16); }
.bet-cell { border-left: 1px solid rgba(107,124,217,.16); }
.bet-subgroup { font-family: var(--font-mono); font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(14,26,43,.55); margin-bottom: 8px; }
.bet-subgroup + .bet-list { margin-bottom: 16px; }
.bet-list { list-style: none; margin: 0; padding: 0; }
.bet-list li { position: relative; padding-left: 16px; font-size: .9rem; line-height: 1.5; color: #0E1A2B; }
.bet-list li + li { margin-top: 6px; }
.bet-list li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px; border-radius: 50%; }
.bet-list-rel li::before { background: var(--peri); }
.bet-list-res li::before { background: var(--coral); }
@media (max-width: 900px) { .bet-matrix { min-width: 560px; } }
