*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0a0c0b;
  --bg2:         #0f1210;
  --bg3:         #131714;
  --ink:         #eaefeb;
  --ink2:        #8a9e8d;
  --ink3:        #3d4e3f;
  --ink4:        #253228;
  --teal:        #2d8c6e;
  --teal-hi:     #3db389;
  --teal-lo:     #1a5242;
  --teal-faint:  #0e2e24;
  --rule:        rgba(45,140,110,0.14);
  --rule2:       rgba(234,239,235,0.07);
  --rule3:       rgba(234,239,235,0.04);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --display:     'Bebas Neue', sans-serif;
  --mono:        'IBM Plex Mono', monospace;
  --max:         1280px;
  --pad:         clamp(32px, 5vw, 96px);
  --section-v:   clamp(80px, 10vw, 128px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

/* ── CONTAINER ── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  border-bottom: 1px solid var(--rule);
  background: rgba(10,12,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-inner {
  height: 68px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.nav-mark {
  width: 30px; height: 30px;
  border: 1px solid var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 15px;
  color: var(--teal);
  letter-spacing: .04em;
  flex-shrink: 0;
}
.nav-wordmark {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink2);
}
.nav-links {
  display: flex; gap: 40px; list-style: none;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal-hi); }
.nav-cta {
  padding: 9px 20px;
  border: 1px solid var(--teal-lo);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-hi);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-faint); border-color: var(--teal); }

/* ── BUTTONS ── */
.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
  cursor: pointer;
  border: none;
}
.btn-teal:hover { background: var(--teal-hi); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border: 1px solid var(--rule2);
  color: var(--ink2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .2s;
  background: none;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--ink2); color: var(--ink); }

/* ── SECTION LABEL ── */
.sec-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 56px;
}
.sec-label::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--rule);
}

/* ── SECTIONS ── */
.sec { padding: var(--section-v) 0; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.hero-watermark {
  position: absolute;
  top: 50%; left: -12px;
  transform: translateY(-58%);
  font-family: var(--display);
  font-size: clamp(200px, 28vw, 380px);
  color: rgba(45,140,110,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 8vw, 96px) clamp(32px, 4vw, 72px) clamp(48px, 8vw, 96px) var(--pad);
  border-right: 1px solid var(--rule2);
  position: relative; z-index: 1;
}
.hero-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(48px, 8vw, 96px) var(--pad) clamp(48px, 8vw, 96px) clamp(32px, 4vw, 72px);
  position: relative; z-index: 1;
}
.hero-kicker {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 16px;
}
.hero-kicker::before {
  content: '';
  display: block;
  width: 36px; height: 1px;
  background: var(--teal);
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 66px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 32px;
}
.hero-h1 em { font-style: italic; color: var(--teal-hi); }
.hero-body {
  font-size: 19px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  padding-left: 20px;
  border-left: 1px solid var(--teal-lo);
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-body strong { color: var(--ink); font-weight: 400; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── INSTRUMENT PANEL ── */
.instrument {
  border: 1px solid var(--rule2);
  background: var(--bg2);
  padding: 36px;
  position: relative;
  margin-bottom: 20px;
}
.instrument::before {
  content: 'TQ — Individual Assessment';
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.inst-num {
  font-family: var(--display);
  font-size: 88px;
  color: var(--ink);
  line-height: 1;
  letter-spacing: .02em;
}
.inst-denom {
  font-family: var(--display);
  font-size: 36px;
  color: var(--ink3);
  letter-spacing: .02em;
}
.inst-level {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--teal-hi);
  margin: 8px 0 28px;
  display: block;
}
.gauge-rows { display: flex; flex-direction: column; gap: 14px; }
.gauge-row {
  display: grid;
  grid-template-columns: 140px 1fr 36px;
  align-items: center;
  gap: 16px;
}
.gauge-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
}
.gauge-track {
  height: 1px;
  background: var(--rule2);
  position: relative;
}
.gauge-fill {
  position: absolute; top: 0; left: 0;
  height: 1px;
  background: var(--teal);
  transition: width 1.4s cubic-bezier(.16,1,.3,1);
}
.gauge-pip {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--teal-hi);
  position: absolute;
  top: -2px;
  transition: left 1.4s cubic-bezier(.16,1,.3,1);
}
.gauge-val {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink2);
  text-align: right;
}
.inst-bn {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; gap: 14px; align-items: flex-start;
}
.bn-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--teal-faint);
  color: var(--teal-hi);
  border: 1px solid var(--teal-lo);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}
.bn-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink3);
  line-height: 1.6;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--rule2);
}
.h-stat { padding: 18px 22px; border-right: 1px solid var(--rule2); }
.h-stat:last-child { border-right: none; }
.h-stat-val {
  font-family: var(--display);
  font-size: 30px;
  color: var(--teal-hi);
  letter-spacing: .03em;
  display: block; line-height: 1.1;
}
.h-stat-key {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-top: 4px;
  display: block;
}

/* ── INDEX BANNER ── */
.index-banner {
  background: var(--teal-faint);
  border-top: 1px solid var(--teal-lo);
  border-bottom: 1px solid var(--teal-lo);
}
.banner-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.banner-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-hi);
  white-space: nowrap;
}
.banner-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.4;
  flex: 1;
}
.banner-text em { color: var(--teal-hi); font-style: italic; }
.banner-link {
  padding: 10px 24px;
  border: 1px solid var(--teal);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-hi);
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.banner-link:hover { background: var(--teal); color: var(--bg); }

/* ── DEFINITION ── */
.def-sec { background: var(--bg2); }
.def-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}
.def-aside { padding-top: 6px; }
.def-word {
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 80px);
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 0.95;
  margin-bottom: 16px;
}
.def-pos {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}
.def-phon {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink3);
  display: block;
}
.def-body {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink2);
  padding-left: 36px;
  border-left: 1px solid var(--teal-lo);
  margin-bottom: 52px;
}
.def-body strong { color: var(--ink); font-weight: 400; }
.pillars {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--rule2);
}
.pillar {
  padding: 24px;
  border-right: 1px solid var(--rule2);
}
.pillar:last-child { border-right: none; }
.pillar-n {
  font-family: var(--display);
  font-size: 28px;
  color: var(--teal-hi);
  letter-spacing: .03em;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.pillar-desc {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink3);
  line-height: 1.6;
}

/* ── LAYERS ── */
.layers-sec { background: var(--bg); }
.layers-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--rule2);
}
.layer {
  padding: 52px 44px;
  border-right: 1px solid var(--rule2);
  position: relative;
  transition: background .3s;
}
.layer:last-child { border-right: none; }
.layer:hover { background: var(--bg2); }
.layer-bar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.layer:hover .layer-bar { transform: scaleX(1); }
.layer-n {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--ink3);
  margin-bottom: 36px;
  display: block;
}
.layer-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 20px;
}
.layer-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 36px;
}
.layer-dims { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.layer-dims li {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  display: flex; align-items: center; gap: 12px;
}
.layer-dims li::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--teal-lo);
  flex-shrink: 0;
}

/* ── BOTTLENECKS ── */
.bn-sec { background: var(--bg2); }
.bn-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}
.bn-hed {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}
.bn-sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
}
.bn-list { border-top: 1px solid var(--rule2); }
.bn-item {
  padding: 36px 0;
  border-bottom: 1px solid var(--rule2);
  transition: background .2s;
}
.bn-item:hover {
  background: rgba(45,140,110,0.025);
  padding-left: 12px; padding-right: 12px;
  margin: 0 -12px;
}
.bn-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 14px;
}
.bn-idx {
  font-family: var(--display);
  font-size: 32px;
  color: var(--teal-lo);
  letter-spacing: .04em;
  line-height: 1;
  flex-shrink: 0;
}
.bn-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
}
.bn-freq-inline {
  margin-left: auto;
  font-family: var(--display);
  font-size: 20px;
  color: var(--teal);
  letter-spacing: .04em;
}
.bn-freq-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
  margin-left: 6px;
}
.bn-desc {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.78;
  max-width: 820px;
}

/* ── ASSESSMENT ── */
.assess-sec { background: var(--bg); }
.assess-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}
.assess-left h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.assess-left p {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 36px;
}
.assess-steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.assess-step { display: flex; gap: 18px; align-items: flex-start; }
.step-n {
  font-family: var(--display);
  font-size: 22px;
  color: var(--teal);
  flex-shrink: 0;
  line-height: 1.1;
  letter-spacing: .04em;
  width: 28px;
}
.step-text {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .07em;
  color: var(--ink2);
  line-height: 1.65;
  padding-top: 3px;
}
.assess-panel {
  border: 1px solid var(--rule2);
  background: var(--bg2);
  padding: 40px;
}
.panel-top {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
}
.panel-top span { color: var(--ink3); }
.q-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 24px;
}
.q-opts { display: flex; flex-direction: column; gap: 9px; }
.q-opt {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--rule2);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--ink3);
  transition: all .18s;
  cursor: pointer;
  line-height: 1.5;
}
.q-opt.active {
  border-color: var(--teal);
  background: var(--teal-faint);
  color: var(--teal-hi);
}
.q-opt:hover:not(.active) { border-color: var(--ink3); color: var(--ink2); }
.opt-dot {
  width: 12px; height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.q-opt.active .opt-dot { background: var(--teal); border-color: var(--teal); }

/* ── RESEARCH ── */
.research-sec { background: var(--bg2); }
.r-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}
.r-head h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.r-all {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.r-all:hover { color: var(--teal-hi); }
.r-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--rule2);
}
.r-card {
  padding: 44px 40px 56px;
  border-right: 1px solid var(--rule2);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background .25s;
  overflow: hidden;
}
.r-card:last-child { border-right: none; }
.r-card:hover { background: var(--bg); }
.r-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.r-card:hover::after { transform: scaleX(1); }
.r-type {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}
.r-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}
.r-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.72;
}
.r-arrow {
  position: absolute;
  bottom: 36px; right: 36px;
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink3);
  transition: all .25s;
}
.r-card:hover .r-arrow { color: var(--teal-hi); transform: translate(4px,-4px); }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--rule2); }
.footer-inner {
  padding: 36px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.f-left {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
}
.f-links { display: flex; gap: 32px; list-style: none; }
.f-links a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink3);
  text-decoration: none;
  transition: color .2s;
}
.f-links a:hover { color: var(--teal-hi); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── HERO ENTRY ANIMATIONS ── */
@keyframes fu { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.a1 { opacity:0; animation: fu .7s ease forwards; animation-delay:.25s; }
.a2 { opacity:0; animation: fu .7s ease forwards; animation-delay:.4s; }
.a3 { opacity:0; animation: fu .7s ease forwards; animation-delay:.55s; }
.a4 { opacity:0; animation: fu .7s ease forwards; animation-delay:.7s; }
.a5 { opacity:0; animation: fu .7s ease forwards; animation-delay:.5s; }
.a6 { opacity:0; animation: fu .7s ease forwards; animation-delay:.65s; }
.a7 { opacity:0; animation: fu .7s ease forwards; animation-delay:.8s; }

/* ══════════════════════════════════════
   POST TEMPLATE
═══════════════════════════════════════ */
.post { padding-top: 68px; }

.post-header {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule2);
  max-width: 760px;
  margin: 0 auto;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.post-tag {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 4px 12px;
  border: 1px solid var(--teal-lo);
  background: var(--teal-faint);
}
.post-date {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.post-excerpt {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 1px solid var(--teal-lo);
  margin-bottom: 32px;
}
.post-byline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
}
.byline-name { color: var(--ink2); }

.post-feature-img {
  padding-top: 56px;
  padding-bottom: 56px;
  max-width: 900px;
}
.post-feature-img img {
  width: 100%;
  display: block;
  border: 1px solid var(--rule2);
}

.post-body {
  padding-top: 64px;
  padding-bottom: 80px;
  max-width: 760px;
  margin: 0 auto;
}
.post-body p {
  font-size: 20px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 28px;
}
.post-body h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 56px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.25;
}
.post-body h4 {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 32px;
  margin-bottom: 12px;
}
.post-body blockquote {
  border-left: 2px solid var(--teal);
  padding-left: 28px;
  margin: 36px 0;
  font-style: italic;
  color: var(--ink2);
  font-size: 20px;
  line-height: 1.7;
}
.post-body code {
  font-family: var(--mono);
  font-size: 15px;
  background: var(--bg2);
  padding: 2px 7px;
  border: 1px solid var(--rule2);
  color: var(--teal-hi);
}
.post-body pre {
  background: var(--bg2);
  border: 1px solid var(--rule2);
  padding: 24px;
  overflow-x: auto;
  margin: 28px 0;
}
.post-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
}
.post-body a { color: var(--teal-hi); text-decoration: none; }
.post-body a:hover { text-decoration: underline; }
.post-body ul, .post-body ol {
  padding-left: 28px;
  margin-bottom: 28px;
}
.post-body li {
  font-size: 20px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 8px;
}
.post-body hr {
  border: none;
  border-top: 1px solid var(--rule2);
  margin: 48px 0;
}
.post-body img {
  max-width: 100%;
  border: 1px solid var(--rule2);
  display: block;
  margin: 36px auto;
}

.post-footer {
  padding-top: 64px;
  padding-bottom: 80px;
  border-top: 1px solid var(--rule2);
  max-width: 760px;
  margin: 0 auto;
}
.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.post-nav-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 45%;
}
.post-nav-next { align-items: flex-end; text-align: right; }
.post-nav-dir {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink3);
}
.post-nav-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.3;
  transition: color .2s;
}
.post-nav-link:hover .post-nav-title { color: var(--ink); }

.related-hed {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* POST CARD (reusable) */
.post-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px;
  border: 1px solid var(--rule2);
  position: relative;
  transition: background .2s;
  overflow: hidden;
}
.post-card:hover { background: var(--bg2); }
.post-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.post-card:hover::after { transform: scaleX(1); }
.card-type {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 14px;
}
.card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 12px;
}
.card-excerpt {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 20px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink3);
}
.card-arrow {
  position: absolute;
  bottom: 20px; right: 20px;
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink3);
  transition: all .2s;
}
.post-card:hover .card-arrow { color: var(--teal-hi); transform: translate(3px,-3px); }

/* CASE STUDY CARD */
.case-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--rule2);
  transition: background .2s;
  overflow: hidden;
  position: relative;
}
.case-card:hover { background: var(--bg2); }
.case-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.case-card:hover::after { transform: scaleX(1); }
.case-card-img img { width: 100%; display: block; border-bottom: 1px solid var(--rule2); }
.case-card-body { padding: 32px; }
.case-card-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.case-card-desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════
   PAGE TEMPLATE
═══════════════════════════════════════ */
.page-wrap { padding-top: 68px; }
.page-header {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule2);
}
.page-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.page-excerpt {
  font-size: 20px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.6;
  max-width: 680px;
}
.page-body {
  padding-top: 56px;
  padding-bottom: 80px;
}
.page-body p {
  font-size: 19px;
  line-height: 1.78;
  color: var(--ink);
  margin-bottom: 24px;
  max-width: 720px;
}
.page-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
}
.page-body a { color: var(--teal-hi); text-decoration: none; }
.page-body a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   TAG ARCHIVE
═══════════════════════════════════════ */
.tag-archive { padding-top: 68px; }
.tag-header {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule2);
}
.tag-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.tag-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 640px;
}
.tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 56px;
  padding-bottom: 80px;
}
.pagination-wrap {
  padding-bottom: 80px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
}
.pagination a { color: var(--teal-hi); text-decoration: none; }
.pagination a:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   ERROR PAGE
═══════════════════════════════════════ */
.error-page {
  padding-top: 68px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.error-inner {
  padding-top: 80px;
  padding-bottom: 80px;
}
.error-code {
  font-family: var(--display);
  font-size: clamp(120px, 20vw, 200px);
  color: rgba(45,140,110,0.08);
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: -24px;
}
.error-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 20px;
}
.error-body {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.error-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   SCORE PAGE
═══════════════════════════════════════ */
.score-page { padding-top: 68px; }
.score-header {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule2);
}
.score-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 12px;
}
.score-subtitle {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink3);
}
.navigator-wrap {
  padding-top: 64px;
  padding-bottom: 96px;
}

/* ══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-page { padding-top: 68px; }
.about-header {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 56px;
}
.about-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.1;
}
.about-sec { background: var(--bg2); border-top: 1px solid var(--rule2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 80px;
  align-items: start;
}
.about-lead {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 28px;
  padding-left: 28px;
  border-left: 1px solid var(--teal-lo);
}
.about-main p {
  font-size: 19px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.78;
  margin-bottom: 24px;
}
.about-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; }
.about-aside { padding-top: 4px; }
.about-stat-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--rule2);
}
.about-stat-block:first-child { padding-top: 0; }
.about-stat-val {
  font-family: var(--display);
  font-size: 48px;
  color: var(--teal-hi);
  letter-spacing: .03em;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-key {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink3);
}
.researcher-sec { background: var(--bg); border-top: 1px solid var(--rule2); }
.researcher-block { max-width: 640px; }
.researcher-name {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.15;
}
.researcher-bio {
  font-size: 19px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.78;
  margin-bottom: 24px;
}
.researcher-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal-hi);
  text-decoration: none;
}
.researcher-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════
   FRAMEWORK PAGE
═══════════════════════════════════════ */
.framework-page { padding-top: 68px; }
.fw-header {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule2);
}
.fw-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.fw-subtitle {
  font-size: 19px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 640px;
}
.fw-intro-p {
  font-size: 19px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 40px;
}
.fw-dims-sec { background: var(--bg); }
.dims-table { border: 1px solid var(--rule2); }
.dims-row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule2);
}
.dims-row:last-child { border-bottom: none; }
.dims-row > * {
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.6;
  border-right: 1px solid var(--rule2);
}
.dims-row > *:last-child { border-right: none; }
.dims-header > * {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--bg2);
  font-weight: 400;
}
.dim-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
}
.fw-improve-sec { background: var(--bg2); }
.fw-improve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.fw-improve-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}
.fw-improve-intro {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.fw-improve-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fw-improve-list li {
  font-size: 16px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  padding-left: 20px;
  border-left: 1px solid var(--teal-lo);
}
.fw-improve-list li strong { color: var(--ink); font-weight: 400; }
.fw-compare-sec { background: var(--bg); }
.compare-table { border: 1px solid var(--rule2); }
.compare-row {
  display: grid;
  grid-template-columns: 180px 1fr 120px 120px 160px;
  gap: 0;
  border-bottom: 1px solid var(--rule2);
}
.compare-row:last-child { border-bottom: none; }
.compare-row > * {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.55;
  border-right: 1px solid var(--rule2);
}
.compare-row > *:last-child { border-right: none; }
.compare-header > * {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--bg2);
  font-weight: 400;
}
.compare-fw { font-family: var(--mono); font-size: 11px; color: var(--ink); letter-spacing: .04em; }
.compare-yes { color: var(--teal-hi); }
.compare-no { color: var(--ink3); }
.fw-cta-sec { background: var(--bg2); }
.fw-cta-block {
  border: 1px solid var(--rule2);
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.fw-cta-block h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
}
.fw-cta-block p {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.7;
  max-width: 520px;
}
.fw-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   TQ BIBLE PAGE
═══════════════════════════════════════ */
.bible-page { padding-top: 68px; }
.bible-header {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule2);
}
.bible-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 16px;
}
.bible-subtitle {
  font-size: 19px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 640px;
}
.bible-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  padding-top: 64px;
  padding-bottom: 96px;
  align-items: start;
}
.bible-toc {
  position: sticky;
  top: 88px;
}
.toc-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}
.toc-list {
  list-style: none;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.toc-list li { counter-increment: toc; }
.toc-list a {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--ink3);
  text-decoration: none;
  line-height: 1.6;
  display: block;
  padding: 6px 0;
  border-left: 1px solid var(--rule2);
  padding-left: 14px;
  transition: color .2s, border-color .2s;
}
.toc-list a:hover {
  color: var(--teal-hi);
  border-left-color: var(--teal);
}
.bible-body { min-width: 0; }
.bible-section {
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--rule2);
}
.bible-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.bible-section h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule2);
}
.bible-section h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 40px;
  margin-bottom: 14px;
}
.bible-section p {
  font-size: 18px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 680px;
}
.bible-section ul {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bible-section ul li {
  font-size: 17px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.75;
  padding-left: 20px;
  border-left: 1px solid var(--teal-lo);
}
.bible-section ul li strong { color: var(--ink); font-weight: 400; }
.bible-levels {
  border: 1px solid var(--rule2);
  margin-top: 28px;
}
.level-row {
  display: grid;
  grid-template-columns: 80px 120px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--rule2);
  padding: 16px 20px;
  align-items: baseline;
}
.level-row:last-child { border-bottom: none; }
.level-range {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--teal);
  letter-spacing: .04em;
}
.level-name {
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  letter-spacing: .06em;
}
.level-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink2);
  line-height: 1.5;
}
.bible-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ══════════════════════════════════════
   GHOST KOENIG EDITOR — required classes
═══════════════════════════════════════ */

.kg-width-wide {
  position: relative;
  width: 85vw;
  min-width: 100%;
  margin: 36px auto;
}
.kg-width-full {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 36px;
  margin-bottom: 36px;
}
.kg-card { margin: 36px 0; }
.kg-image-card img,
.kg-gallery-image img { max-width: 100%; display: block; }
.kg-gallery-container { display: flex; flex-direction: column; gap: 8px; }
.kg-gallery-row { display: flex; flex-direction: row; justify-content: center; gap: 8px; }
.kg-bookmark-card {
  border: 1px solid var(--rule2);
  padding: 24px;
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: background .2s;
  margin: 28px 0;
}
.kg-bookmark-card:hover { background: var(--bg2); }
.kg-bookmark-title { font-family: var(--mono); font-size: 13px; color: var(--ink); margin-bottom: 6px; }
.kg-bookmark-description { font-size: 14px; color: var(--ink2); line-height: 1.5; }
.kg-bookmark-thumbnail img { width: 140px; object-fit: cover; flex-shrink: 0; }
.kg-callout-card {
  display: flex; gap: 16px;
  padding: 24px;
  border-left: 2px solid var(--teal);
  background: var(--teal-faint);
  margin: 28px 0;
}
.kg-callout-text { font-size: 17px; color: var(--ink); line-height: 1.7; }
.kg-toggle-card { border: 1px solid var(--rule2); padding: 20px 24px; margin: 20px 0; }
.kg-toggle-heading { font-family: var(--serif); font-size: 20px; font-weight: 300; color: var(--ink); cursor: pointer; }
.kg-toggle-content { font-size: 17px; color: var(--ink2); line-height: 1.75; margin-top: 12px; }
.kg-video-card video { width: 100%; }
.kg-audio-card { border: 1px solid var(--rule2); padding: 20px; margin: 20px 0; }
.kg-button-card { text-align: center; margin: 28px 0; }
.kg-button-card-button {
  display: inline-flex;
  padding: 14px 32px;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.kg-button-card-button:hover { background: var(--teal-hi); }
.kg-divider { border: none; border-top: 1px solid var(--rule2); margin: 40px 0; }
.kg-code-card pre { background: var(--bg2); border: 1px solid var(--rule2); padding: 24px; overflow-x: auto; margin: 20px 0; }
.kg-code-card code { font-family: var(--mono); font-size: 13px; color: var(--teal-hi); }
.kg-header-card { padding: var(--section-v) var(--pad); text-align: center; background: var(--bg2); }
.kg-header-card-heading { font-family: var(--serif); font-size: clamp(32px, 5vw, 60px); font-weight: 300; color: var(--ink); }

/* ══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { border-right: none; padding: 100px var(--pad) 40px; }
  .hero-right { padding: 0 var(--pad) 64px; }
  .def-grid { grid-template-columns: 1fr; gap: 40px; }
  .def-body { font-size: 20px; }
  .layers-grid { grid-template-columns: 1fr; }
  .layer { border-right: none; border-bottom: 1px solid var(--rule2); }
  .layer:last-child { border-bottom: none; }
  .bn-intro { grid-template-columns: 1fr; gap: 28px; }
  .assess-grid { grid-template-columns: 1fr; gap: 48px; }
  .r-grid { grid-template-columns: 1fr; }
  .r-card { border-right: none; border-bottom: 1px solid var(--rule2); }
  .r-card:last-child { border-bottom: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .fw-improve-grid { grid-template-columns: 1fr; gap: 48px; }
  .bible-layout { grid-template-columns: 1fr; gap: 0; }
  .bible-toc { position: static; margin-bottom: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--rule2); }
  .dims-row { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .tag-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .tag-grid { grid-template-columns: 1fr; }
  .fw-cta-block { padding: 40px 32px; }
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .h-stat:nth-child(2) { border-right: none; }
  .h-stat:nth-child(3) { border-top: 1px solid var(--rule2); border-right: none; grid-column: 1 / -1; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(3), .pillar:nth-child(4) { border-top: 1px solid var(--rule2); }
  .pillar:nth-child(4) { border-right: none; }
  .bn-name { font-size: 24px; }
  .compare-row { grid-template-columns: 1fr; }
  .post-nav-link { max-width: 100%; }
  .gauge-row { grid-template-columns: 110px 1fr 28px; }
}
