/* ==========================================================================
   Strategiz — shared stylesheet
   ========================================================================== */

:root {
  --navy: #1B3A6B;
  --navy-deep: #0B1E3F;
  --amber: #F59E0B;
  --slate: #3F4B5B;
  --muted: #5A6777;
  --light-bg: #F4F5F7;
  --hairline: #E4E6EB;
  --white: #FFFFFF;
  --sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', Consolas, 'Courier New', monospace;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); font-weight: 400;
  color: var(--slate); background: var(--white);
  line-height: 1.55; font-size: 16px;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; transition: color .15s; }
a:hover { color: var(--amber); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; border-top: 1px solid var(--hairline); }
section:first-of-type { border-top: none; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { height: 35px; width: auto; }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 2px;
  color: var(--slate); text-transform: uppercase;
}
.nav-links a.current { color: var(--amber); }
.nav-links a.cta {
  background: var(--navy); color: var(--white);
  padding: 10px 18px; border-radius: 4px;
  letter-spacing: 1.5px; font-size: 11px;
}
.nav-links a.cta:hover { background: var(--amber); color: var(--white); }
.nav-links a.cta.current { background: var(--amber); color: var(--white); }
@media (max-width: 860px) {
  .nav-links a:not(.cta) { display: none; }
}

/* ---------- TYPE ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; text-transform: uppercase;
  margin: 0 0 18px;
}
h1, h2, h3 { font-family: var(--sans); color: var(--navy); margin: 0; line-height: 1.08; }
h1 { font-size: clamp(40px, 6vw, 72px); font-weight: 700; letter-spacing: -2.5px; }
h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -1.5px; margin-bottom: 18px; }
h3 { font-size: 20px; font-weight: 700; letter-spacing: -.3px; }
p { margin: 0 0 16px; }
.lede { font-size: 18px; color: var(--muted); max-width: 720px; line-height: 1.55; }

/* ---------- HERO ---------- */
.hero { padding: 110px 0 120px; position: relative; }
.hero h1 { color: var(--navy); max-width: 920px; }
.hero h1 .amber { color: var(--amber); }
.hero .lede { margin-top: 24px; font-size: 20px; max-width: 720px; }
.hero-cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.page-hero { padding: 72px 0 56px; background: var(--white); }
.page-hero h1 { font-size: clamp(36px, 5vw, 56px); max-width: 880px; }
.page-hero .lede { margin-top: 18px; font-size: 18px; }

.btn {
  display: inline-block; font-family: var(--mono); font-weight: 700;
  font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px 24px; border-radius: 4px; transition: all .15s;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--amber); color: var(--white); }
.btn-ghost { border: 1px solid var(--hairline); color: var(--navy); }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn-amber { background: var(--amber); color: var(--navy-deep); }
.btn-amber:hover { background: var(--white); color: var(--navy-deep); }

.section-head { max-width: 820px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 14px; }
.section-head .lede { color: var(--muted); font-size: 17px; }

/* ---------- ABOUT ---------- */
.about-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--hairline);
}
.about-row:first-child { border-top: none; padding-top: 0; }
.about-label {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; text-transform: uppercase;
}
.about-body { color: var(--slate); font-size: 16px; }
@media (max-width: 720px) {
  .about-row { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- GRIDS ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: 8px; padding: 28px; transition: all .2s;
}
.card:hover { border-color: var(--amber); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(27,58,107,.06); }
.card-num {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; margin-bottom: 8px;
}
.card h3 { margin-bottom: 10px; font-size: 16px; text-transform: uppercase; letter-spacing: .3px; }
.card-divider { width: 32px; height: 2px; background: var(--amber); margin: 14px 0; }
.card p { color: var(--slate); font-size: 14px; line-height: 1.55; margin: 0; }

/* ---------- APPROACH / LEVERS ---------- */
.levers { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-bottom: 36px; }
@media (max-width: 820px) { .levers { grid-template-columns: repeat(3, 1fr); } }
.lever {
  background: var(--light-bg); border-radius: 6px; padding: 22px 10px;
  text-align: center; font-family: var(--mono);
}
.lever.active { background: var(--amber); }
.lever .n { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 2px; display: block; margin-bottom: 8px; }
.lever .l { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 2px; }
.lever.active .n, .lever.active .l { color: var(--white); }

.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 720px) { .paths { grid-template-columns: 1fr; } }
.path { padding: 28px; border: 1px solid var(--hairline); border-radius: 8px; border-top: 3px solid var(--navy); }
.path.b { border-top-color: var(--amber); }
.path .tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--muted); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px; display: block;
}
.path h3 { font-size: 22px; margin-bottom: 14px; text-transform: none; letter-spacing: -.4px; }
.path p { font-size: 15px; color: var(--slate); margin: 0 0 14px; }
.path .meta { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--amber); letter-spacing: 2px; }

.alt-bg { background: var(--light-bg); }

/* ---------- MEASUREMENT ---------- */
.measure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
@media (max-width: 820px) { .measure-grid { grid-template-columns: 1fr; gap: 40px; } }
.big-stat .n { font-size: 120px; font-weight: 700; color: var(--navy); letter-spacing: -6px; line-height: 1; margin: 0; }
.big-stat .bar { width: 48px; height: 4px; background: var(--amber); margin: 18px 0; }
.big-stat p { font-size: 16px; color: var(--slate); line-height: 1.55; max-width: 360px; margin: 0 0 12px; }
.big-stat .pull {
  font-size: 18px; color: var(--navy); font-weight: 600;
  font-style: italic; line-height: 1.4; margin: 18px 0 0;
  padding-left: 16px; border-left: 3px solid var(--amber);
}
.measured-list { list-style: none; padding: 0; margin: 0; }
.measured-list li {
  position: relative; padding: 14px 0 14px 22px;
  border-top: 1px solid var(--hairline);
  font-size: 15px; color: var(--slate);
}
.measured-list li:first-child { border-top: none; }
.measured-list li::before {
  content: ""; position: absolute; left: 0; top: 21px;
  width: 10px; height: 10px; background: var(--amber);
}
.measured-label {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- TRAINING ---------- */
.programs { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 64px; }
@media (max-width: 720px) { .programs { grid-template-columns: 1fr; } }
.program { background: var(--white); border-radius: 8px; padding: 36px; border: 1px solid var(--hairline); }
.program .tag {
  display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--amber); letter-spacing: 2px; margin-bottom: 12px;
}
.program h3 { font-size: 24px; margin-bottom: 14px; text-transform: none; letter-spacing: -.5px; }
.program ul { list-style: none; padding: 0; margin: 18px 0 0; }
.program li {
  position: relative; padding: 10px 0 10px 22px;
  border-top: 1px solid var(--hairline);
  font-size: 14px; color: var(--slate);
}
.program li:first-child { border-top: none; }
.program li::before { content: ""; position: absolute; left: 0; top: 18px; width: 10px; height: 2px; background: var(--amber); }
.modules-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.modules-head h3 { font-size: 22px; text-transform: none; letter-spacing: -.5px; }
.modules-head .caption { font-size: 14px; color: var(--muted); }
.modules { display: flex; flex-wrap: wrap; gap: 10px; }
.module-chip {
  display: inline-block; padding: 10px 16px;
  background: var(--white); border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--navy); letter-spacing: 1px; transition: all .15s;
}
.module-chip:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-1px); }

.frameworks-head { margin: 80px 0 32px; padding-top: 48px; border-top: 1px solid var(--hairline); }
.frameworks-head h3 { font-size: 22px; text-transform: none; letter-spacing: -.5px; margin-bottom: 10px; }
.frameworks-head .caption { font-size: 14px; color: var(--muted); max-width: 620px; }
.frameworks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .frameworks { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .frameworks { grid-template-columns: 1fr; } }
.fw { background: var(--white); border: 1px solid var(--hairline); border-radius: 8px; padding: 22px; }
.fw-name { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 2px; margin-bottom: 6px; }
.fw-origin { font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 1.5px; margin-bottom: 14px; }
.fw-desc { font-size: 13px; color: var(--slate); line-height: 1.55; margin: 0; }

/* ---------- AUDIENCE ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 820px) { .audience-grid { grid-template-columns: 1fr; } }
.audience-card {
  padding: 32px; border: 1px solid var(--hairline); border-radius: 8px;
  border-top: 3px solid var(--amber); background: var(--white);
}
.audience-card .role {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.audience-card h3 { font-size: 20px; margin-bottom: 12px; text-transform: none; letter-spacing: -.3px; }
.audience-card p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.55; }
.audience-card .meta {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--muted); letter-spacing: 2px; margin-top: 14px; display: block;
}

/* ---------- TIMELINE ---------- */
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 16px; position: relative; }
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr; } }
.step { padding: 28px 24px 28px 0; position: relative; }
.step:not(:last-child)::after { content: ""; position: absolute; top: 52px; right: 0; width: 24px; height: 2px; background: var(--hairline); }
@media (max-width: 900px) {
  .step:not(:last-child)::after { display: none; }
  .step { padding: 20px 0; border-top: 1px solid var(--hairline); }
  .step:first-child { border-top: none; }
}
.step-num { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--amber); letter-spacing: 3px; margin-bottom: 8px; }
.step-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.step-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--amber); flex-shrink: 0; }
.step h3 { font-size: 16px; text-transform: none; letter-spacing: -.2px; margin: 0; }
.step .dur { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 2px; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--slate); line-height: 1.5; margin: 0; }

/* ---------- CASE STUDIES ---------- */
.case-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 8px;
  padding: 40px; margin-bottom: 32px; position: relative; overflow: hidden;
}
.case-card .case-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 14px;
}
.case-card h3 { font-size: 26px; margin-bottom: 18px; text-transform: none; letter-spacing: -.6px; color: var(--navy); }
.case-card .case-body p { font-size: 15px; color: var(--slate); line-height: 1.65; margin: 0 0 14px; }
.case-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  margin-top: 28px; padding-top: 28px; border-top: 1px solid var(--hairline);
}
@media (max-width: 720px) { .case-grid { grid-template-columns: 1fr; gap: 24px; } }
.case-col-label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 10px;
}
.case-col p, .case-col li {
  font-size: 14px; color: var(--slate); line-height: 1.6;
}
.case-col ul { list-style: none; padding: 0; margin: 0; }
.case-col li { padding-left: 18px; position: relative; margin-bottom: 6px; }
.case-col li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 2px; background: var(--amber);
}
.case-outcome {
  margin-top: 28px; padding: 24px; background: var(--light-bg);
  border-left: 4px solid var(--amber); border-radius: 0 4px 4px 0;
}
.case-outcome .stat-n {
  font-family: var(--sans); font-size: 48px; font-weight: 700;
  color: var(--navy); letter-spacing: -2px; line-height: 1; margin: 0 0 8px;
}
.case-outcome p { font-size: 14px; color: var(--slate); margin: 0; line-height: 1.55; }
.case-outcome .pull {
  font-size: 16px; color: var(--navy); font-weight: 600;
  font-style: italic; margin: 12px 0 0;
}
.case-mini-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin: 24px 0 16px;
  padding: 24px 0 0;
  border-top: 1px solid var(--hairline);
}
@media (max-width: 720px) { .case-mini-grid { grid-template-columns: 1fr; gap: 18px; } }
.case-mini-grid .mini-n {
  font-family: var(--sans); font-size: 32px; font-weight: 700;
  color: var(--navy); letter-spacing: -1px; line-height: 1; margin: 0 0 8px;
}
.case-mini-grid .mini-d {
  font-size: 13px; color: var(--slate); line-height: 1.55; margin: 0;
}

/* ==========================================================================
   HOMEPAGE PEPS VARIANTS
   ========================================================================== */

/* VARIANT A — stat strip in hero + rotating tagline */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 48px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--hairline);
  max-width: 720px;
}
@media (max-width: 720px) { .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px; } }
.hero-stats .item .n {
  font-family: var(--sans); font-size: 40px; font-weight: 700;
  color: var(--navy); letter-spacing: -1.5px; line-height: 1; margin: 0 0 6px;
}
.hero-stats .item .l {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--muted); letter-spacing: 2px; text-transform: uppercase;
}
.tag-rotator {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; text-transform: uppercase;
  display: inline-block; min-height: 16px;
}
.tag-rotator .rot {
  display: inline-block; animation: rotIn 12s infinite;
}

/* VARIANT B — manifesto pull-quote sub-hero */
.manifesto {
  padding: 96px 0;
  background: var(--navy-deep); color: var(--white);
  position: relative; overflow: hidden;
}
.manifesto::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 6px; background: var(--amber);
}
.manifesto h2 {
  color: var(--white); font-size: clamp(36px, 5vw, 60px);
  font-style: italic; font-weight: 600; letter-spacing: -1.5px;
  max-width: 880px; line-height: 1.15;
}
.manifesto h2 .amber { color: var(--amber); font-style: normal; }
.manifesto .cite {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: #94A3B8; letter-spacing: 3px; text-transform: uppercase;
  margin-top: 28px; display: block;
}

/* VARIANT C — geometric mark motif as hero centrepiece */
.hero-c {
  position: relative; overflow: hidden;
  padding: 90px 0 100px;
  background:
    radial-gradient(ellipse 1100px 600px at 80% 60%, #F7F8FA 0%, transparent 70%),
    var(--white);
}
.hero-c .mark-motif {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  width: 540px; height: 540px;
  pointer-events: none;
}
@media (max-width: 1280px) { .hero-c .mark-motif { width: 460px; height: 460px; right: -80px; } }
@media (max-width: 1080px) { .hero-c .mark-motif { width: 380px; height: 380px; right: -120px; opacity: 0.7; } }
@media (max-width: 820px)  { .hero-c .mark-motif { width: 300px; height: 300px; right: -160px; opacity: 0.45; } }
@media (max-width: 600px)  { .hero-c .mark-motif { display: none; } }
.hero-c .wrap { position: relative; z-index: 2; }

/* kinetic entry: squares assemble */
.hero-c .sq-1, .hero-c .sq-2, .hero-c .sq-3, .hero-c .dot {
  opacity: 0;
  transform-origin: center;
  transform: translate(24px, 24px) scale(0.92);
  animation: heroSqIn 900ms cubic-bezier(.2,.7,.25,1) forwards;
}
.hero-c .sq-1 { animation-delay: 200ms; }
.hero-c .sq-2 { animation-delay: 400ms; }
.hero-c .sq-3 { animation-delay: 600ms; }
.hero-c .dot {
  animation: heroDotIn 800ms cubic-bezier(.2,.7,.25,1) forwards 900ms,
             heroDotPulse 4s ease-in-out infinite 2200ms;
  transform-origin: center;
}
.hero-c .ring {
  opacity: 0; transform-origin: center;
  animation: heroRingIn 900ms ease forwards 1100ms,
             heroRingPulse 4s ease-out infinite 2200ms;
}
@keyframes heroSqIn {
  to { opacity: var(--sq-op, 1); transform: translate(0,0) scale(1); }
}
@keyframes heroDotIn {
  to { opacity: 1; transform: scale(1); }
}
@keyframes heroDotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.10); }
}
@keyframes heroRingIn {
  to { opacity: 0.55; }
}
@keyframes heroRingPulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* hero-c keeps the standard hero headline size */
.hero-c .principle-tag {
  display: inline-block;
  margin-top: 32px;
  padding: 10px 18px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--navy); letter-spacing: 2px; text-transform: uppercase;
  background: var(--white);
}
.hero-c .principle-tag .dot-mini {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--amber); margin-right: 10px; vertical-align: 1px;
  animation: heroDotPulse 2.5s ease-in-out infinite;
}

/* draw-in amber rule under the headline accent */
.hero-c .amber-rule {
  display: block; height: 4px; background: var(--amber);
  width: 0; margin: 28px 0 0;
  animation: heroRuleDraw 1100ms cubic-bezier(.2,.7,.25,1) forwards 1200ms;
}
@keyframes heroRuleDraw {
  to { width: 96px; }
}

/* respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-c .sq-1, .hero-c .sq-2, .hero-c .sq-3, .hero-c .dot, .hero-c .ring,
  .hero-c .amber-rule, .hero-c .principle-tag .dot-mini {
    animation: none !important; opacity: 1 !important; transform: none !important; width: auto !important;
  }
  .hero-c .amber-rule { width: 96px; }
}

/* ---------- LOGO WALL (references) ---------- */
.logo-wall {
  display: flex; flex-wrap: wrap; justify-content: center;
  align-items: center; gap: 28px 56px;
  padding: 36px 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.logo-wall span {
  font-family: var(--mono); font-size: 18px; font-weight: 700;
  color: var(--navy); letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.65;
  transition: opacity .15s;
}
.logo-wall span:hover { opacity: 1; }
.logo-wall img.logo-img {
  height: 30px; width: auto; max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.65;
  transition: all .2s;
}
.logo-wall img.logo-img:hover { filter: grayscale(0); opacity: 1; }
@media (max-width: 720px) { .logo-wall img.logo-img { height: 22px; max-width: 110px; } }
.logo-wall img.logo-img.logo-bigger { height: 38px; max-width: 200px; }
@media (max-width: 720px) { .logo-wall img.logo-img.logo-bigger { height: 28px; max-width: 140px; } }
.logo-wall span.logo-grey {
  color: var(--muted);
  opacity: 1;
  font-weight: 500;
}

/* ---------- BIO (about page) ---------- */
.bio-prose { max-width: 760px; }
.bio-prose p {
  font-size: 17px; line-height: 1.7; color: var(--slate);
  margin: 0 0 22px;
}
.bio-prose p:first-of-type {
  font-size: 19px; line-height: 1.65; color: var(--navy); font-weight: 500;
}
.bio-prose .bio-signature {
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--amber); letter-spacing: 2px; text-transform: uppercase;
  margin-top: 32px;
}

/* ---------- POLLEN CALLOUT ---------- */
.pollen-callout {
  display: flex; align-items: center; gap: 28px;
  margin: 40px auto 0; max-width: 720px;
  padding: 24px 28px;
  background: var(--white); border: 1px solid var(--hairline);
  border-left: 4px solid var(--amber);
  border-radius: 8px; transition: all .2s;
  text-decoration: none;
}
.pollen-callout:hover {
  border-color: var(--amber);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(27,58,107,.06);
}
.pollen-callout .pollen-stat {
  font-family: var(--sans); font-size: 44px; font-weight: 700;
  color: var(--navy); letter-spacing: -2px; line-height: 1; flex-shrink: 0;
}
.pollen-callout .pollen-text { color: var(--slate); font-size: 14px; line-height: 1.5; }
.pollen-callout .pollen-text .head {
  display: block; font-size: 16px; font-weight: 600;
  color: var(--navy); margin-bottom: 2px; letter-spacing: -.2px;
}
.pollen-callout .pollen-text .arrow {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 2px;
  display: block; margin-top: 6px; text-transform: uppercase;
}
@media (max-width: 600px) {
  .pollen-callout { flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px 22px; }
  .pollen-callout .pollen-stat { font-size: 36px; }
}
@media (max-width: 720px) {
  .logo-wall { gap: 20px 32px; padding: 24px 0; }
  .logo-wall span { font-size: 14px; }
}
.case-link {
  display: inline-block; margin-top: 20px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--amber); letter-spacing: 2px; text-transform: uppercase;
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px; transition: all .15s;
}
.case-link:hover { color: var(--navy); border-bottom-color: var(--navy); }

/* ---------- CREDENTIALS ---------- */
.proof-top { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; margin-bottom: 56px; }
@media (max-width: 820px) { .proof-top { grid-template-columns: 1fr; gap: 40px; } }
.stat-num { font-size: 96px; font-weight: 700; color: var(--navy); letter-spacing: -4px; line-height: 1; margin: 0; }
.stat-bar { width: 48px; height: 4px; background: var(--amber); margin: 16px 0; }
.stat-label { font-size: 14px; color: var(--muted); line-height: 1.55; max-width: 320px; }
.quotes { display: grid; gap: 22px; }
.quote { padding-left: 18px; position: relative; }
.quote::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 12px; width: 3px; background: var(--amber); }
.quote p { font-size: 17px; color: var(--navy); font-style: italic; line-height: 1.5; margin: 0 0 10px; }
.quote .cite { font-family: var(--mono); font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }
.clients-head { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--amber); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.clients { display: flex; flex-wrap: wrap; gap: 8px 32px; padding-top: 28px; border-top: 1px solid var(--hairline); }
.clients span { font-family: var(--mono); font-size: 13px; font-weight: 700; color: var(--slate); letter-spacing: 1px; padding: 8px 0; }

/* ---------- HOME TEASERS ---------- */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .teaser-grid { grid-template-columns: 1fr; } }
.teaser-card {
  background: var(--white); border: 1px solid var(--hairline); border-radius: 8px;
  padding: 32px; transition: all .2s; display: block; color: var(--slate);
}
.teaser-card:hover {
  border-color: var(--amber); transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(27,58,107,.06); color: var(--slate);
}
.teaser-card .tag {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; margin-bottom: 14px; display: block;
}
.teaser-card h3 { font-size: 22px; text-transform: none; letter-spacing: -.4px; margin-bottom: 10px; }
.teaser-card p { font-size: 14px; color: var(--muted); margin: 0 0 18px; }
.teaser-card .arrow {
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  color: var(--amber); letter-spacing: 2px; text-transform: uppercase;
}

.summary-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 56px 0; margin: 0;
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
}
@media (max-width: 720px) { .summary-stats { grid-template-columns: 1fr; gap: 20px; } }
.summary-stats .stat-item { }
.summary-stats .n { font-size: 56px; font-weight: 700; color: var(--navy); letter-spacing: -2px; line-height: 1; margin: 0 0 8px; }
.summary-stats .l { font-family: var(--mono); font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details { border-top: 1px solid var(--hairline); padding: 20px 0; }
.faq details:last-child { border-bottom: 1px solid var(--hairline); }
.faq summary {
  font-family: var(--sans); font-size: 17px; font-weight: 600;
  color: var(--navy); cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 4px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); font-size: 22px; color: var(--amber); font-weight: 700; transition: transform .2s; }
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { color: var(--amber); }
.faq .faq-body { padding: 12px 0 4px; font-size: 15px; color: var(--slate); line-height: 1.6; max-width: 700px; }

/* ---------- CONTACT ---------- */
.contact { background: var(--navy-deep); color: var(--white); border-top: none; }
.contact h2 { color: var(--white); font-size: clamp(40px, 5vw, 64px); letter-spacing: -2px; }
.contact .lede { color: #CBD5E1; font-size: 18px; margin-top: 18px; max-width: 680px; }
.contact-cta { margin: 40px 0 56px; }
.contact-cta a.btn-amber { padding: 20px 32px; font-size: 14px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 720px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }
.contact-item .label {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--amber); letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-item .value { font-weight: 600; font-size: 16px; color: var(--white); word-break: break-word; }
.contact-item a { color: var(--white); }
.contact-item a:hover { color: var(--amber); }

.contact.standalone { min-height: 100vh; display: flex; align-items: center; padding: 120px 0; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy-deep); color: #94A3B8;
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px;
}
.footer-logo img { height: 22px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #94A3B8; }
.footer-links a:hover { color: var(--amber); }
