/* UX Economics — Design System v1.0 · 2026 */
/* ux-economics.com */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #111111;
  --white:      #ffffff;
  --red:        #c8392b;
  --red-dark:   #e05a4e;
  --red-warm:   #e03030;
  --muted:      #555555;
  --faint:      #999999;
  --rule:       #e4e4e4;
  --surface:    #f7f7f7;
  --font:       Arial, Helvetica, sans-serif;
  --dark-bg:    #1c1917;
  --dark-text:  #d4cfc8;
  --dark-muted: rgba(212,207,200,0.45);
  --dark-rule:  rgba(212,207,200,0.1);
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* red keyword — light backgrounds: red + bold */
.rk { color: var(--red); font-weight: 700; }

/* red pill — dark backgrounds only */
.rk-pill {
  background: #c8392b;
  color: #ffffff;
  padding: 1px 7px 2px;
  border-radius: 2px;
  display: inline;
  vertical-align: baseline;
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark-bg);
  padding: 0 4rem;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dark-rule);
}

.wordmark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-text);
  text-decoration: none;
}

.wordmark .econ { color: var(--red-warm); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--dark-text); }

.nav-cta {
  background: var(--red-warm) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  transition: opacity 0.2s !important;
}

.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  padding: 7rem 4rem 6rem;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.hero-left { animation: fadeUp 0.8s ease 0.1s both; }
.hero-right { animation: fadeUp 0.8s ease 0.3s both; }

.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.kicker::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--red);
  flex-shrink: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 2rem;
}

h1 em { font-style: normal; color: var(--red); }

.hero-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  text-decoration: none;
  transition: background 0.2s;
}

.hero-cta:hover { background: var(--red); }

.def-card { background: var(--dark-bg); padding: 2.25rem; border: 1px solid var(--dark-rule); }

.def-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-warm);
  margin-bottom: 1.25rem;
}

.def-text {
  font-family: var(--font);
  font-size: 1.1rem;
  font-style: normal;
  color: var(--dark-text);
  line-height: 1.8;
}
  font-size: 1.25rem;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.8;
}

.def-source {
  font-size: 13px;
  color: var(--dark-muted);
  margin-top: 1.25rem;
  letter-spacing: 0.06em;
}

/* ── STATS ── */
.stats {
  background: var(--dark-bg);
  border-top: 3px solid var(--red);
}

.stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat { text-align: center; }

.stat-n {
  font-size: 3rem;
  font-weight: 700;
  color: var(--red-warm);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-l {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-top: 0.6rem;
  line-height: 1.6;
}

.stats-footnotes {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 4rem 1.5rem;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
}

.stats-footnotes span {
  font-size: 12px;
  color: rgba(212,207,200,0.25);
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.5;
}

/* ── CASE STUDY ── */
.cs-wrap {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cs-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.cs-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cs-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

.cs-stats { display: flex; flex-direction: column; gap: 0; }

.cs-stat-row {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}

.cs-stat-row:first-child { padding-top: 0; }
.cs-stat-row:last-child { border-bottom: none; }

.cs-n {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: right;
  padding-top: 2px;
}

.cs-l {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  text-align: left;
  padding-top: 6px;
  border-left: 1px solid var(--rule);
  padding-left: 1.25rem;
}

.cs-right { }

h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

h2 em { font-style: normal; color: var(--red); }

.cs-intro {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.cs-highlight {
  border-left: 3px solid var(--red);
  padding: 1rem 1.25rem;
  background: #fdf5f4;
  margin: 1.25rem 0;
}

.cs-highlight p {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.75;
}

.cs-highlight strong { color: var(--red); }

.cs-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 0.75rem;
}

.cs-source {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.06em;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
}

/* ── SCORECARD ── */
.scorecard-wrap { background: var(--surface); }

.scorecard-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-eyebrow::after { content: ''; flex: 1; height: 1px; background: #d8d8d8; }

.section-intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 2rem;
}

.scorecard-quote {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--muted);
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #d8d8d8;
  line-height: 1.75;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #d8d8d8;
}

.sc-col { background: var(--white); padding: 1.5rem; }

.sc-header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sc-header.wrong { color: var(--faint); }
.sc-header.right { color: var(--red); }

.dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.dot-gray { background: var(--faint); }
.dot-red  { background: var(--red); }

.sc-item {
  font-size: 13px;
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule);
  line-height: 1.5;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  text-align: left;
}

.sc-item:last-child { border-bottom: none; }

.sc-item::before {
  content: '—';
  color: var(--rule);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
  display: block;
  min-width: 14px;
}

.sc-col:last-child .sc-item::before { color: var(--red); }

.sc-item span,
.sc-item .rk {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  display: inline;
}

.sc-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  display: block;
}

/* ── DIAGNOSTIC ── */
.diagnostic-strip {
  background: var(--dark-bg);
  padding: 5rem 4rem;
}

.diagnostic-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.diagnostic-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-warm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.diagnostic-label::after { content: ''; flex: 1; height: 1px; background: var(--dark-rule); }

.diagnostic-text {
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.65;
  max-width: 820px;
}

.diagnostic-text em { font-style: italic; }

/* ── PROOF POINT ── */
.proof-wrap { border-top: 1px solid var(--rule); }

.proof-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.proof-q {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}

.proof-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
}

.proof-body strong { color: var(--ink); font-weight: 700; }

.proof-right h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

.proof-list { list-style: none; display: flex; flex-direction: column; gap: 0; }

.proof-list li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: flex-start;
}

.proof-list li:last-child { border-bottom: none; }

.proof-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
  display: block;
}

.proof-list li .pl-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  display: block;
}

/* ── CONTACT ── */
.contact-wrap { background: var(--surface); }

.contact-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left h2 { margin-bottom: 0.75rem; }

.contact-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 360px;
  margin-top: 0.25rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: 0.4rem; }

.field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.field input {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.field input:focus { border-color: var(--ink); }
.field input::placeholder { color: #ccc; }

/* radio group */
.radio-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  padding: 0.75rem 0 0.25rem;
}

.radio-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-right: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
}

.radio-option span {
  font-size: 14px;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.submit-btn {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.95rem 1.75rem;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-start;
  text-decoration: none;
  transition: background 0.2s;
}

.submit-btn:hover { background: var(--red); }

/* ── FOOTER ── */
footer {
  background: var(--dark-bg);
  border-top: 3px solid var(--red);
  padding: 2.25rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer-wordmark {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dark-text);
}

.footer-wordmark span { color: var(--red-warm); }

.footer-mid {
  font-size: 12px;
  color: var(--dark-muted);
  letter-spacing: 0.06em;
  text-align: center;
}

.footer-right {
  font-size: 12px;
  color: var(--dark-muted);
  letter-spacing: 0.06em;
  text-align: right;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links li:not(:last-child) { display: none; }

  .hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .hero-right { display: block; }
  h1 { font-size: 2.2rem; }

  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 0; padding: 2rem 1.5rem; text-align: center; }
  .stat { padding: 0 0.5rem; }
  .stat-n { font-size: 2rem; }
  .stat-l { font-size: 12px; }

  .cs-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 1.5rem; }
  .cs-stat-row { grid-template-columns: 1fr 1.4fr; gap: 1rem; }
  .cs-n { font-size: 1.8rem; }
  .cs-l { font-size: 12px; padding-left: 0.9rem; }

  .scorecard-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .scorecard-grid { grid-template-columns: 1fr; }
  .sc-col:first-child { border-bottom: 2px solid #d8d8d8; }

  .diagnostic-strip { padding: 3rem 1.5rem; }
  .diagnostic-text { font-size: 1.2rem; }

  .proof-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }

  .contact-inner { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .contact-sub { max-width: 100%; }

  h2 { font-size: 1.6rem; }

  footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.75rem; text-align: center; }
  .footer-right { text-align: center; }
  .methodology-pillars { grid-template-columns: repeat(2,1fr) !important; }
  .methodology-outcomes { grid-template-columns: 1fr !important; }
  .methodology-inner { padding: 0 1.5rem 3rem !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }
  [style*="max-width:1080px"][style*="padding:6rem 4rem"] { padding: 3rem 1.5rem !important; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .stat-n { font-size: 2.4rem; }
  .stat-l { font-size: 12px; }
  .cs-stat-row { grid-template-columns: 100px 1fr; }
  .cs-n { font-size: 1.6rem; }
  nav { height: 52px; }
}

/* ── MANIFESTO PAGE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --ink:       #111111;
  --white:     #ffffff;
  --red:       #c8392b;
  --red-warm:  #e03030;
  --red-dark:  #e05a4e;
  --muted:     #555555;
  --faint:     #999999;
  --rule:      #e4e4e4;
  --surface:   #f7f7f7;
  --dark-bg:   #1c1917;
  --dark-text: #d4cfc8;
  --dark-muted:rgba(212,207,200,0.45);
  --dark-rule: rgba(212,207,200,0.1);
  --font:      Arial, Helvetica, sans-serif;
  --serif:     Georgia, 'Times New Roman', serif;
}
html { font-size: 16px; }
body { background: var(--white); color: var(--ink); font-family: var(--font); line-height: 1.7; -webkit-font-smoothing: antialiased; }

nav { background: var(--dark-bg); border-bottom: 1px solid var(--dark-rule); padding: 0 4rem; height: 58px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.wordmark { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--dark-text); text-decoration: none; }
.wordmark .econ { color: var(--red-dark); }
.nav-back { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-muted); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.nav-back:hover { color: var(--dark-text); }
.nav-back::before { content: '←'; }

.m-hero { background: var(--dark-bg); padding: 5rem 4rem 4rem;  }
.m-hero-inner { max-width: 760px; margin: 0 auto; }
.m-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dark-muted); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.m-eyebrow::after { content: ''; flex: 1; height: 1px; background: var(--dark-rule); }
.m-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; color: var(--dark-text); margin-bottom: 2rem; }
.m-title span { color: var(--red-warm); }
.m-opening { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-style: italic; color: var(--dark-muted); line-height: 1.8; max-width: 640px; }
.m-opening em { color: var(--dark-text); }

.m-body { max-width: 760px; margin: 0 auto; padding: 5rem 4rem; }

.m-p { font-size: 1.05rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.5rem; }
.m-p strong { color: var(--ink); }
.rk { color: var(--red); font-weight: 700; }

.m-h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; margin: 3rem 0 1.25rem; }
.m-rule { border: none; border-top: 1px solid var(--rule); margin: 3rem 0; }

.m-pull { background: var(--dark-bg); padding: 2.5rem 3rem; margin: 2.5rem 0; border-left: 3px solid var(--red); }
.m-pull p { font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.25rem); font-style: italic; color: var(--dark-text); line-height: 1.75; }
.rk-pill { background: #c8392b; color: #fff; padding: 1px 7px 2px; border-radius: 2px; font-style: normal; font-family: var(--font); }

.m-list { list-style: none; margin: 1rem 0 1.5rem; }
.m-list li { font-size: 1rem; color: var(--muted); line-height: 1.75; display: flex; gap: 0.9rem; padding: 0.6rem 0; border-bottom: 1px solid var(--rule); align-items: flex-start; }
.m-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 8px; }
.m-list li strong { color: var(--ink); }

.m-criteria { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); margin: 2rem 0; }
.m-col { background: var(--white); padding: 1.75rem 1.5rem; }
.m-col.econ-col { background: var(--surface); }
.m-col-label { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--rule); }
.m-col-label.traditional { color: var(--faint); }
.m-col-label.economics { color: var(--red); }
.m-col ul { list-style: none; }
.m-col ul li { font-size: 13px; color: var(--muted); line-height: 1.65; padding: 0.4rem 0; border-bottom: 1px solid var(--rule); display: flex; gap: 0.6rem; align-items: flex-start; }
.m-col ul li::before { content: '—'; color: var(--rule); flex-shrink: 0; font-size: 12px; margin-top: 1px; }

.m-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--rule); margin: 2rem 0; }
.m-pillar { background: var(--white); padding: 1.5rem 1.25rem; }
.m-pillar-n { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; color: var(--faint); margin-bottom: 10px; }
.m-pillar-name { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.m-pillar-bridge { width: 18px; height: 2px; background: var(--red); margin-bottom: 8px; }
.m-pillar-sub { font-size: 12px; color: var(--muted); line-height: 1.6; }
.m-pillar-sub strong { color: var(--red); font-weight: 700; }

.m-closing { background: var(--dark-bg); padding: 4rem; margin-top: 4rem; }
.m-closing-inner { max-width: 680px; margin: 0 auto; }
.m-closing p { font-size: 1.05rem; color: var(--dark-muted); line-height: 1.9; margin-bottom: 1rem; }
.m-closing p strong { color: var(--dark-text); }
.m-sig { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--dark-rule); }
.m-sig p { font-size: 14px; font-weight: 700; color: var(--dark-text); }
.m-sig span { color: var(--red-warm); }
.m-sig small { display: block; font-size: 12px; color: var(--dark-muted); margin-top: 0.25rem; font-weight: 400; }

footer { background: var(--dark-bg); border-top: 1px solid var(--dark-rule); padding: 1.5rem 4rem; display: flex; justify-content: space-between; align-items: center; }
.footer-wordmark { font-size: 14px; font-weight: 700; color: var(--dark-text); }
.footer-wordmark span { color: var(--red-dark); }
.footer-right { font-size: 12px; color: var(--dark-muted); }

@media (max-width: 768px) {
  nav { padding: 0 1.5rem; }
  .m-hero { padding: 3.5rem 1.5rem 3rem; }
  .m-body { padding: 3rem 1.5rem; }
  .m-pull { padding: 1.75rem 1.5rem; }
  .m-criteria { grid-template-columns: 1fr; }
  .m-pillars { grid-template-columns: 1fr 1fr; }
  .m-closing { padding: 3rem 1.5rem; }
  footer { padding: 1.5rem; flex-direction: column; gap: 0.75rem; text-align: center; }
}