/* =========================================================
   Pivotrix — Outcome-Based Consulting
   Design system (colors sourced from the Pivotrix pitch deck)
   ========================================================= */

:root{
  /* --- Brand palette --- */
  --ink:#0A0A0F;              /* black bars / dark sections */
  --navy-900:#0F1229;         /* headline text on light bg */
  --navy-700:#1B1E3C;
  --blue-600:#2B39E0;         /* primary blue */
  --blue-500:#3B4CF0;
  --purple-600:#8B3FE8;       /* primary purple */
  --purple-500:#A855F7;
  --mint:#5EEAB0;             /* positive accent (Pay Us Later) */
  --coral:#FF6B4A;            /* alert / negative accent (RED) */
  --amber:#F5B537;            /* book / warm accent */
  --bg:#F5F6FB;                /* off-white page background */
  --bg-alt:#EEF0FA;
  --white:#FFFFFF;
  --text:#171933;
  --text-muted:#5B5E78;
  --border:#E2E4F1;

  --gradient-brand: linear-gradient(120deg,#1B24B0 0%, #5B33D6 50%, #A855F7 100%);
  --gradient-brand-dark: linear-gradient(120deg,#0C0F3D 0%, #3A22A8 55%, #7C3FE0 100%);
  --gradient-mint: linear-gradient(120deg,#2B39E0 0%, #5EEAB0 100%);

  --radius-sm:10px;
  --radius-md:16px;
  --radius-lg:24px;
  --shadow-sm: 0 2px 10px rgba(15,18,41,0.06);
  --shadow-md: 0 10px 30px rgba(20,20,60,0.10);
  --shadow-lg: 0 20px 60px rgba(20,20,60,0.16);

  --font-head: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --maxw: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-head);
  color:var(--navy-900);
  line-height:1.15;
  margin:0 0 .5em;
  font-weight:700;
}
h1{ font-size:clamp(2.2rem,4.4vw,3.6rem); letter-spacing:-0.02em; }
h2{ font-size:clamp(1.7rem,3vw,2.4rem); letter-spacing:-0.01em; }
h3{ font-size:1.25rem; }
p{ margin:0 0 1em; color:var(--text-muted); }
.container{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
section{ padding:88px 0; }
.section-tight{ padding:56px 0; }

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-head); font-weight:700;
  font-size:.75rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--purple-600);
  margin-bottom:14px;
}
.eyebrow.on-dark{ color:#C9B8FF; }

.framework-badge{ display:flex; align-items:center; gap:10px; width:fit-content; margin:0 auto 22px; padding:8px 22px 8px 10px; border-radius:40px; background:var(--gradient-brand); box-shadow:var(--shadow-md); }
.framework-badge .fw-num{ display:flex; align-items:center; justify-content:center; width:32px; height:32px; border-radius:50%; background:rgba(255,255,255,.22); color:#fff; font-family:var(--font-head); font-weight:800; font-size:.8rem; flex-shrink:0; }
.framework-badge .fw-text{ font-family:var(--font-head); font-weight:800; font-size:.95rem; color:#fff; white-space:nowrap; }

/* --- Buttons --- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-head); font-weight:600; font-size:.95rem;
  padding:14px 26px; border-radius:999px; border:2px solid transparent;
  cursor:pointer; transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--gradient-brand); color:#fff; box-shadow:var(--shadow-md); }
.btn-primary:hover{ box-shadow:var(--shadow-lg); }
.btn-dark{ background:var(--navy-900); color:#fff; }
.btn-outline{ background:transparent; border-color:var(--navy-900); color:var(--navy-900); }
.btn-outline.on-dark{ border-color:rgba(255,255,255,.5); color:#fff; }
.btn-mint{ background:var(--mint); color:#0A2A20; }
.btn-sm{ padding:10px 20px; font-size:.85rem; }
.btn-block{ width:100%; }

.btn-diagnostic{
  position:relative;
  box-shadow:0 6px 0 #1B9F6E, 0 8px 18px rgba(94,234,176,.35);
  transition:transform .15s ease, box-shadow .15s ease;
}
.btn-diagnostic:hover{
  transform:translateY(-3px);
  box-shadow:0 9px 0 #1B9F6E, 0 16px 30px rgba(94,234,176,.55), 0 0 22px rgba(94,234,176,.85);
}
.btn-diagnostic:active{
  transform:translateY(1px);
  box-shadow:0 3px 0 #1B9F6E, 0 6px 14px rgba(94,234,176,.4);
}

/* --- Top utility bar + Nav --- */
.topbar{ background:var(--ink); color:#c9cbe0; font-size:.78rem; }
.topbar .container{ display:flex; justify-content:space-between; align-items:center; padding-top:8px; padding-bottom:8px; }
.topbar a{ color:#c9cbe0; }
.topbar a:hover{ color:#fff; }
.topbar-links{ display:flex; gap:18px; }
@media (max-width:680px){ .topbar{ display:none; } }

.navbar{
  position:sticky; top:0; z-index:100;
  background:rgba(245,246,251,.92); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.navbar .container{ display:flex; align-items:center; justify-content:space-between; height:76px; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand-logo{ height:32px; width:auto; display:block; }
.brand-logo-footer{ height:30px; }

.nav-links{ display:flex; align-items:center; gap:6px; }
.nav-links > li{ position:relative; }
.nav-links > li > a, .nav-links > li > button{
  font-family:var(--font-head); font-weight:600; font-size:.92rem;
  padding:10px 14px; border-radius:8px; color:var(--navy-900);
  background:none; border:none; cursor:pointer; display:flex; align-items:center; gap:5px;
}
.nav-links > li > a:hover, .nav-links > li > button:hover{ background:var(--bg-alt); }
.caret{ font-size:.65em; opacity:.6; }

.dropdown{
  position:absolute; top:calc(100% + 8px); left:0; min-width:260px;
  background:#fff; border-radius:var(--radius-md); box-shadow:var(--shadow-lg);
  border:1px solid var(--border); padding:10px; opacity:0; visibility:hidden;
  transform:translateY(6px); transition:all .18s ease; z-index:50;
}
.nav-links > li:hover .dropdown, .nav-links > li:focus-within .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a{ display:flex; flex-direction:row; align-items:center; gap:12px; padding:9px 12px; border-radius:8px; }
.dropdown a:hover{ background:var(--bg-alt); }
.dropdown a .dd-text{ display:flex; flex-direction:column; gap:2px; }
.dropdown a strong{ font-family:var(--font-head); font-size:.9rem; color:var(--navy-900); }
.dropdown a span{ font-size:.78rem; color:var(--text-muted); }
.dropdown a .dd-icon{
  width:34px; height:34px; border-radius:9px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  background:var(--bg-alt); color:var(--purple-600);
  transition:filter .2s ease, background .2s ease;
}
.dropdown a .dd-icon.direction{ background:#E4E7FD; color:var(--blue-600); }
.dropdown a .dd-icon.demand{ background:#F1E4FD; color:var(--purple-600); }
.dropdown a .dd-icon.discipline{ background:#DFFBEF; color:#0F9A62; }
.dropdown a:hover .dd-icon{
  filter:drop-shadow(0 0 5px currentColor) drop-shadow(0 0 10px currentColor);
}

.cta-arrow{ display:inline-block; transition:text-shadow .2s ease, transform .2s ease; }
a:hover .cta-arrow, button:hover .cta-arrow{
  text-shadow:0 0 8px currentColor, 0 0 16px currentColor;
  transform:translateX(3px);
}

.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-toggle{ display:none; background:none; border:none; font-size:1.6rem; cursor:pointer; }

@media (max-width: 960px){
  .nav-links{ display:none; }
  .nav-toggle{ display:block; }
  .nav-cta .btn{ display:none; }
}

/* Mobile drawer */
.mobile-menu{ position:fixed; inset:0; background:var(--ink); z-index:200; color:#fff; padding:24px; transform:translateX(100%); transition:transform .25s ease; overflow-y:auto; }
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu .close-btn{ background:none; border:none; color:#fff; font-size:1.8rem; float:right; cursor:pointer; }
.mobile-menu ul{ margin-top:60px; display:flex; flex-direction:column; gap:6px; }
.mobile-menu a{ font-family:var(--font-head); font-weight:700; font-size:1.3rem; padding:12px 0; display:block; border-bottom:1px solid rgba(255,255,255,.1); }
.mobile-menu .sub{ padding-left:16px; }
.mobile-menu .sub a{ font-size:1rem; font-weight:600; color:#c9cbe0; border-bottom:none; padding:8px 0; }

/* --- Hero band (gradient) --- */
.hero{ background:var(--gradient-brand); color:#fff; position:relative; overflow:hidden; padding:96px 0 84px; }
.hero::after{
  content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
  background:radial-gradient(circle at 85% 10%, rgba(255,255,255,.18), transparent 45%);
}
.hero .container{ position:relative; z-index:2; }
.hero p.lede{ color:rgba(255,255,255,.85); font-size:1.15rem; max-width:640px; }
.hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:28px; }
.hero-cta .btn{ padding:13px 20px; font-size:.85rem; white-space:nowrap; }
@media (min-width:901px){ .hero-flex .hero-cta{ flex-wrap:nowrap; } }
.hero .accent{ color:var(--mint); }
.hero h1,.hero h2,.hero h3,.hero h4,
.section-dark h1,.section-dark h2,.section-dark h3,.section-dark h4{ color:#fff; }

.badge-row{ display:flex; flex-wrap:wrap; gap:28px; align-items:center; margin-top:56px; padding-top:28px; border-top:1px solid rgba(255,255,255,.18); }
.badge-row span{ font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.6); }
.logo-strip{ display:flex; flex-wrap:wrap; gap:14px; margin-top:12px; }
.logo-strip div{ background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.18); border-radius:8px; padding:8px 16px; font-size:.8rem; font-weight:600; }

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

.card{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); padding:28px; box-shadow:var(--shadow-sm); }
.checklist-card{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); padding:24px; box-shadow:var(--shadow-sm); display:flex; flex-direction:column; gap:8px; transition:box-shadow .15s ease, transform .15s ease; }
.checklist-card:hover{ box-shadow:var(--shadow-md); transform:translateY(-2px); }
.checklist-card h3{ font-size:1.05rem; margin:6px 0 0; }
.checklist-card p{ font-size:.88rem; margin:0 0 6px; }
.checklist-card .readmore{ margin-top:auto; font-family:var(--font-head); font-weight:700; font-size:.85rem; }
.checklist-card.direction .readmore{ color:var(--blue-600); }
.checklist-card.demand .readmore{ color:var(--purple-600); }
.checklist-card.discipline .readmore{ color:#0F9A62; }
.card .num{ font-family:var(--font-head); font-weight:700; color:var(--purple-600); font-size:.85rem; }
.who-icon{ width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:var(--bg-alt); color:var(--purple-600); margin-bottom:14px; }
.who-icon svg{ display:block; }
.card-dark{ background:var(--navy-900); color:#fff; }
.card-dark p{ color:#c9cbe0; }
.card-dark h3, .card-dark h4{ color:#fff; }
.card-gradient{ background:var(--gradient-brand); color:#fff; }
.card-gradient p{ color:rgba(255,255,255,.85); }

.pillar-card{ border-top:4px solid var(--blue-600); display:flex; flex-direction:column; height:100%; }
.pillar-card.demand{ border-top-color:var(--purple-600); }
.pillar-card.discipline{ border-top-color:var(--mint); }
.pillar-card p{ flex-grow:1; }
.pillar-card .btn{ align-self:flex-start; margin-top:18px; }

/* --- Sections helpers --- */
.section-dark{ background:var(--ink); color:#fff; }
.section-dark p{ color:#c9cbe0; }
.section-dark h2,.section-dark h3{ color:#fff; }
.section-alt{ background:var(--bg-alt); }
.center{ text-align:center; margin-left:auto; margin-right:auto; }
.max-640{ max-width:640px; }
.max-780{ max-width:780px; }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.before-after-shell{ margin-top:28px; background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-md); border:1px solid var(--border); overflow:hidden; }
.before-after-img{ width:75%; display:block; margin:0 auto; }
.ba-cols{ display:grid; grid-template-columns:1fr 1fr; gap:0; }
@media (max-width:760px){ .ba-cols{ grid-template-columns:1fr; } }
.ba-col{ padding:22px 32px; }
.ba-col.ba-before{ background:var(--bg-alt); }
.ba-col.ba-after{ color:#fff; background:var(--gradient-brand); }
.ba-col.ba-after.demand{ background:linear-gradient(120deg,#5B33D6,#A855F7); }
.ba-col.ba-after.discipline{ background:linear-gradient(120deg,#0F9A62,#2B39E0); }
.ba-label{ display:block; font-family:var(--font-head); font-weight:800; font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; margin-bottom:16px; color:var(--text-muted); }
.ba-col.ba-after .ba-label{ color:rgba(255,255,255,.8); }
.ba-col ul{ display:flex; flex-direction:column; gap:14px; }
.ba-col li{ display:flex; gap:10px; align-items:flex-start; font-size:.92rem; line-height:1.5; }
.ba-col.ba-before li{ color:var(--navy-900); }
.ba-col.ba-before li::before{ content:"–"; color:var(--text-muted); font-weight:700; flex-shrink:0; }
.ba-col.ba-after li{ color:rgba(255,255,255,.95); }
.ba-col.ba-after li::before{ content:"✓"; color:#fff; font-weight:800; flex-shrink:0; }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; } }

.tag{ display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; padding:5px 12px; border-radius:999px; background:var(--bg-alt); color:var(--navy-900); }
.tag.direction{ background:#E4E7FD; color:var(--blue-600); }
.tag.demand{ background:#F1E4FD; color:var(--purple-600); }
.tag.discipline{ background:#DFFBEF; color:#0F9A62; }

/* --- Stat --- */
.stat{ font-family:var(--font-head); font-weight:700; font-size:2.6rem; color:var(--navy-900); }
.stat.gradient-text{ background:var(--gradient-brand); -webkit-background-clip:text; background-clip:text; color:transparent; }

/* --- Timeline / process --- */
.step{ display:flex; gap:18px; }
.step .dot{ width:34px; height:34px; border-radius:50%; background:var(--gradient-brand); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:700; flex-shrink:0; }

/* --- Survey --- */
.survey-shell{ background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); overflow:hidden; border:1px solid var(--border); }
.survey-head{ background:var(--gradient-brand); color:#fff; padding:32px 36px; }
.survey-progress-track{ height:6px; background:rgba(255,255,255,.25); border-radius:999px; margin-top:18px; overflow:hidden; }
.survey-progress-bar{ height:100%; background:var(--mint); width:0%; transition:width .3s ease; }
.survey-body{ padding:36px; }
.survey-q{ display:none; }
.survey-q.active{ display:block; animation:fadein .25s ease; }
@keyframes fadein{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }
.survey-q h3{ font-size:1.3rem; margin-bottom:6px; }
.survey-q .dim-tag{ margin-bottom:14px; }
.opt-list{ display:flex; flex-direction:column; gap:10px; margin-top:18px; }
.opt{ display:flex; align-items:center; gap:14px; padding:16px 18px; border:2px solid var(--border); border-radius:var(--radius-sm); cursor:pointer; transition:all .15s ease; background:#fff; }
.opt:hover{ border-color:var(--purple-500); background:#FBF9FF; }
.opt.selected{ border-color:var(--blue-600); background:#EEF1FF; }
.opt .radio{ width:20px; height:20px; border-radius:50%; border:2px solid var(--border); flex-shrink:0; position:relative; }
.opt.selected .radio{ border-color:var(--blue-600); }
.opt.selected .radio::after{ content:""; position:absolute; inset:3px; background:var(--blue-600); border-radius:50%; }
.survey-nav{ display:flex; justify-content:space-between; align-items:center; margin-top:30px; }
.survey-nav .step-count{ font-size:.82rem; color:var(--text-muted); }

.survey-intro{ padding:36px; text-align:center; }
.survey-results{ display:none; padding:36px; }
.survey-results.active{ display:block; }
.result-bar{ margin-bottom:22px; }
.result-bar-label{ display:flex; justify-content:space-between; font-family:var(--font-head); font-weight:700; margin-bottom:8px; }
.result-bar-track{ height:14px; background:var(--bg-alt); border-radius:999px; overflow:hidden; }
.result-bar-fill{ height:100%; border-radius:999px; width:0%; transition:width 1s ease; }
.result-bar-fill.direction{ background:var(--blue-600); }
.result-bar-fill.demand{ background:var(--purple-600); }
.result-bar-fill.discipline{ background:linear-gradient(90deg,#2B39E0,#5EEAB0); }
.result-diagnosis{ background:var(--bg-alt); border-radius:var(--radius-md); padding:24px; margin:24px 0; }
.result-diagnosis h4{ font-family:var(--font-head); margin-bottom:8px; color:var(--navy-900); }

/* --- Footer --- */
footer{ background:var(--ink); color:#c9cbe0; padding:70px 0 30px; }
footer h4{ color:#fff; font-family:var(--font-head); font-size:.95rem; margin-bottom:16px; }
footer a{ color:#a6a9c9; display:block; padding:6px 0; font-size:.92rem; }
footer a:hover{ color:#fff; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr; gap:24px; }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.12); margin-top:50px; padding-top:24px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-size:.8rem; color:#7d80a0; }
.footer-brand p{ color:#7d80a0; max-width:280px; }
.social-row{ display:flex; gap:10px; margin-top:14px; flex-wrap:wrap; }
.social-row a{ padding:8px 14px; border-radius:20px; background:rgba(255,255,255,.08); font-size:.8rem; font-weight:600; }
.social-row a:hover{ background:rgba(255,255,255,.16); }

/* --- Blog --- */
.blog-card{ background:#fff; border:1px solid var(--border); border-radius:var(--radius-md); overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow-sm); }
.blog-card .thumb{ height:150px; background:var(--gradient-brand); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--font-head); font-weight:700; padding:20px; text-align:center; }
.blog-card .thumb.demand{ background:linear-gradient(120deg,#5B33D6,#A855F7); }
.blog-card .thumb.discipline{ background:linear-gradient(120deg,#0F9A62,#5EEAB0); }
.blog-card .body{ padding:22px; flex:1; display:flex; flex-direction:column; }
.blog-card .meta{ font-size:.75rem; color:var(--text-muted); margin-bottom:8px; }
.blog-card h3{ font-size:1.05rem; margin-bottom:10px; }
.blog-card .readmore{ margin-top:auto; font-family:var(--font-head); font-weight:700; font-size:.85rem; color:var(--blue-600); }

article.post{ background:#fff; }
article.post .post-hero{ background:var(--gradient-brand); color:#fff; padding:64px 0 48px; }
article.post .post-content{ max-width:760px; margin:0 auto; padding:56px 24px; }
article.post .post-content h2{ margin-top:1.6em; font-size:1.5rem; }
article.post .post-content h3{ margin-top:1.3em; }
article.post .post-content p, article.post .post-content li{ color:var(--text); font-size:1.05rem; }
article.post .post-content ul, article.post .post-content ol{ margin:0 0 1.2em 1.4em; }
article.post .post-content li{ margin-bottom:.5em; }
article.post .post-content blockquote{ border-left:4px solid var(--purple-500); margin:1.6em 0; padding:6px 0 6px 20px; font-style:italic; color:var(--navy-900); font-size:1.15rem; }
article.post .post-content .cta-inline{ background:var(--bg-alt); border-radius:var(--radius-md); padding:28px; margin:2em 0; text-align:center; }
article.post .post-meta{ display:flex; gap:16px; flex-wrap:wrap; color:rgba(255,255,255,.8); font-size:.85rem; margin-top:16px; }

/* --- Checklist --- */
.checklist-item{ display:flex; gap:14px; align-items:flex-start; padding:16px 0; border-bottom:1px solid var(--border); }
.checklist-item .box{ width:22px; height:22px; border:2px solid var(--blue-600); border-radius:6px; flex-shrink:0; margin-top:2px; }

/* --- Utility --- */
.mt-0{ margin-top:0 !important; }
.mb-0{ margin-bottom:0 !important; }
.flex{ display:flex; }
.gap-10{ gap:10px; }
.flex-wrap{ flex-wrap:wrap; }
.text-center{ text-align:center; }
.on-dark{ color:#fff; }
hr.divider{ border:none; border-top:1px solid var(--border); margin:40px 0; }

@media (max-width:640px){
  section{ padding:56px 0; }
  .hero{ padding:64px 0 56px; }
}

/* --- Hero with visual column --- */
.hero-flex{ display:grid; grid-template-columns:1.2fr 0.8fr; gap:40px; align-items:center; }
@media (max-width:900px){ .hero-flex{ grid-template-columns:1fr; } }
.hero-visual{ display:flex; align-items:center; justify-content:center; }
.hero-visual svg{ width:100%; height:auto; max-width:420px; }
.hero-visual-card{ background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:var(--radius-lg); padding:24px; backdrop-filter:blur(6px); }

/* --- Pillar word styling: differentiate Direction/Demand/Discipline from plain English --- */
.pillar-word{ font-weight:800; border-radius:6px; padding:0 6px; white-space:nowrap; }
.pillar-word.direction{ background:#E4E7FD; color:var(--blue-600); }
.pillar-word.demand{ background:#F1E4FD; color:var(--purple-600); }
.pillar-word.discipline{ background:#DFFBEF; color:#0F9A62; }
.pillar-word.on-dark{ background:rgba(255,255,255,.16); color:#fff; }

/* --- Blog post hero banner --- */
.post-banner{ height:220px; display:flex; align-items:center; justify-content:center; margin-top:24px; border-radius:var(--radius-lg); overflow:hidden; }
.post-banner svg{ width:100%; height:100%; }
@media (max-width:640px){ .post-banner{ height:150px; } }
