/* ED3 — Shared Stylesheet (Direction B: The Framework) */

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

:root {
  --ink: #0e0d0b;
  --ink-mid: #3a3830;
  --ink-muted: #7a7872;
  --cream: #f7f4ef;
  --page: #faf8f5;
  --red: #c8321a;
  --red-deep: #9e2614;
  --red-pale: #fff9f7;
  --rule: #d4d0c8;
  --async-accent: #1a5c3a;
  --async-light: #f0f7f3;
  --chaos-bg: #1a1714;
}

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

body {
  background: var(--page);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

.page { max-width: 800px; margin: 0 auto; padding: 0 48px; }
.page-wide { max-width: 1060px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 600px) { .page { padding: 0 24px; } .page-wide { padding: 0 24px; } }

/* ═══════════════════════════════════
   NAV — sticky header
   ═══════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  padding: 0 48px;
}
.site-nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.site-nav-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: -.02em;
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav-links a {
  font-size: 12px;
  letter-spacing: .04em;
  font-weight: 500;
  color: #7a7870;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 3px;
  transition: all .15s;
}
.site-nav-links a:hover { color: #f0ece4; background: #1e1c18; }
.site-nav-links a.active { color: #f0ece4; }

@media (max-width: 700px) {
  .site-nav { padding: 0 20px; }
  .site-nav-links a { font-size: 11px; padding: 6px 8px; }
}

/* ═══════════════════════════
   HOMEPAGE SECTIONS
   ═══════════════════════════ */

/* HERO — big, bold, centered */
.hero {
  background: var(--ink);
  padding: 80px 48px 72px;
  text-align: center;
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #bcb7a2;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.1;
  color: #f0ece4;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.hero-title em { font-style: italic; color: var(--red); }
.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: #bcb7a2;
  max-width: 540px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  border: none;
}
.hero-btn.primary { background: var(--red); color: #fff; }
.hero-btn.primary:hover { background: var(--red-deep); }
.hero-btn.secondary { background: #1e1c18; color: #a09888; border: 1px solid #3a3830; }
.hero-btn.secondary:hover { color: #f0ece4; border-color: #bcb7a2; }

@media (max-width: 600px) {
  .hero { padding: 48px 24px 56px; }
}

/* ═══════════════════════════════════
   PRINCIPLE PAGE HERO
   ═══════════════════════════════════ */
.principle-hero {
  background: var(--ink);
  padding: 56px 48px 48px;
}
@media (max-width: 600px) { .principle-hero { padding: 40px 24px 36px; } }

.principle-hero-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.principle-hero-phase {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
}
.principle-hero-phase.define { color: var(--red); background: rgba(200,50,26,.1); }
.principle-hero-phase.discipline { color: #a09888; background: rgba(160,152,136,.1); }
.principle-hero-phase.displace { color: #6ab88a; background: rgba(106,184,138,.1); }

.principle-hero-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.principle-hero-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(56px, 10vw, 80px);
  font-weight: 900;
  color: #2a2820;
  line-height: .85;
  flex-shrink: 0;
}

.principle-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  color: #f0ece4;
  padding-top: 8px;
}
.principle-hero-title em { font-style: italic; color: var(--red); }

.principle-hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #bcb7a2;
  margin-top: 16px;
  max-width: 560px;
}

/* Manifesto page hero */
.manifesto-hero {
  background: var(--ink);
  padding: 56px 48px 48px;
  text-align: center;
}
@media (max-width: 600px) { .manifesto-hero { padding: 40px 24px 36px; } }

.manifesto-hero-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.manifesto-hero-eyebrow {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #bcb7a2;
  font-weight: 500;
  margin-bottom: 16px;
}

.manifesto-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 6vw, 48px);
  font-weight: 900;
  color: #f0ece4;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.manifesto-hero-title em { font-style: italic; color: var(--red); }

.manifesto-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #bcb7a2;
  max-width: 520px;
  margin: 0 auto;
}

/* JOURNEY — horizontal steps */
.journey-section {
  padding: 64px 48px;
}
.journey-section-label {
  text-align: center;
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 32px;
}
.journey-cards {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: stretch;
  gap: 0;
}
.journey-card {
  padding: 32px 24px;
  border-radius: 6px;
  text-align: center;
}
.journey-card.chaos { background: #1a1714; }
.journey-card.awakening { background: #f5edd8; border: 1px solid #d9cdaa; }
.journey-card.sync { background: var(--red-pale); border: 1px solid #e8c4ba; }
.journey-card.async { background: var(--async-light); border: 1px solid #b8d9c6; }

.journey-card-level {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.journey-card.chaos .journey-card-level { color: #bcb7a2; }
.journey-card.awakening .journey-card-level { color: #8a7a4a; }
.journey-card.sync .journey-card-level { color: var(--red); }
.journey-card.async .journey-card-level { color: var(--async-accent); }

.journey-card-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}
.journey-card.chaos .journey-card-name { color: #f0ece4; }
.journey-card.awakening .journey-card-name { color: #5a4d24; }
.journey-card.sync .journey-card-name { color: var(--red-deep); }
.journey-card.async .journey-card-name { color: #0f3d27; }

.journey-card-desc {
  font-size: 13px;
  line-height: 1.6;
}
.journey-card.chaos .journey-card-desc { color: #bcb7a2; }
.journey-card.awakening .journey-card-desc { color: #7a6d44; }
.journey-card.sync .journey-card-desc { color: #7a5a52; }
.journey-card.async .journey-card-desc { color: #3d6b52; }

.journey-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #5b503a;
}

@media (max-width: 700px) {
  .journey-section { padding: 48px 24px; }
  .journey-cards { grid-template-columns: 1fr; gap: 12px; }
  .journey-arrow { display: none; }
}

/* PRINCIPLES — cards in a grid */
.principles-section {
  padding: 0 48px 64px;
}
.principles-header {
  text-align: center;
  margin-bottom: 48px;
}
.principles-header-kicker {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 16px;
}
.principles-header-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(24px, 4vw, 36px);
  color: var(--ink);
  line-height: 1.2;
}
.principles-header-title em { font-style: italic; color: var(--red); }

.principles-arc {
  margin-bottom: 16px;
}
.arc-label {
  font-size: 9.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.arc-label.define { color: var(--red); }
.arc-label.discipline { color: var(--ink-muted); }
.arc-label.displace { color: var(--async-accent); }
.arc-label::after { content: ''; flex: 1; height: 1px; background: var(--rule); }

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .principles-grid { grid-template-columns: 1fr; }
  .principles-section { padding: 0 24px 48px; }
}

.principle-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  transition: all .2s;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.principle-card:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(200,50,26,.08);
  transform: translateY(-2px);
}
.card-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--rule);
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}
.principle-card:hover .card-num { color: var(--red); }
.card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 6px;
}
.card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.card-tool {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--async-accent);
}
.card-tool-dot {
  width: 6px;
  height: 6px;
  background: var(--async-accent);
  border-radius: 50%;
}

/* MANIFESTO TEASER */
.manifesto-teaser {
  padding: 0 48px 64px;
}
.manifesto-teaser-inner {
  background: var(--ink);
  border-radius: 8px;
  padding: 56px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.manifesto-teaser-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 900;
  color: #f0ece4;
  line-height: 1.3;
  margin-bottom: 12px;
}
.manifesto-teaser-title em { font-style: italic; color: var(--red); }
.manifesto-teaser-body {
  font-size: 15px;
  line-height: 1.7;
  color: #bcb7a2;
}
.manifesto-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.manifesto-teaser-btn:hover { background: var(--red-deep); }

@media (max-width: 640px) {
  .manifesto-teaser { padding: 0 24px 48px; }
  .manifesto-teaser-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }
}

/* PRACTICE TEASER — homepage */
.practice-teaser-section {
  padding: 0 48px 64px;
}
.practice-teaser-card {
  background: #fff9f7;
  border: 1px solid #e8c4ba;
  border-radius: 8px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.practice-teaser-kicker {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}
.practice-teaser-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 12px;
}
.practice-teaser-title em { font-style: italic; color: var(--red); }
.practice-teaser-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.practice-teaser-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.practice-teaser-btn:hover { background: var(--red-deep); }

@media (max-width: 640px) {
  .practice-teaser-section { padding: 0 24px 48px; }
  .practice-teaser-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
}

/* ASYNC PREVIEW */
.async-section {
  padding: 0 48px 64px;
}
.async-card {
  background: var(--async-light);
  border: 1px solid #b8d9c6;
  border-radius: 8px;
  padding: 48px;
  text-align: center;
}
.async-card-kicker {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--async-accent);
  margin-bottom: 16px;
}
.async-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  color: #0a2e1c;
  max-width: 500px;
  margin: 0 auto 16px;
}
.async-card-title em { font-style: italic; color: var(--async-accent); }
.async-card-body {
  font-size: 15px;
  line-height: 1.7;
  color: #2d5a40;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .async-section { padding: 0 24px 48px; }
  .async-card { padding: 36px 24px; }
}

/* ═══════════════════
   FOOTER
   ═══════════════════ */
.site-footer {
  background: var(--ink);
  padding: 32px 48px;
}
.site-footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--red);
}
.site-footer-tagline {
  font-size: 12px;
  color: #bcb7a2;
  letter-spacing: .04em;
}

/* ═══════════════════════════════════
   MANIFESTO & PRINCIPLE PAGE STYLES
   ═══════════════════════════════════ */

/* Masthead */
.masthead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  padding: 80px 0 14px;
  margin-bottom: 64px;
}
.masthead-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.masthead-label a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
.masthead-label a:hover {
  color: var(--red);
}

/* Logotype — manifesto only */
.logotype-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(96px, 18vw, 148px);
  line-height: .88;
  color: var(--red);
  letter-spacing: -.04em;
  display: block;
}
.logotype-subtitle {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(13px, 2.2vw, 16px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 500;
  margin-top: 8px;
  display: block;
}

/* Type */
.lede {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 4vw, 27px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 24px;
}
.lede em { font-style: italic; color: var(--red); }

.body-copy { font-size: 16px; line-height: 1.8; color: var(--ink-mid); }
.body-copy + .body-copy { margin-top: 16px; }
@media (max-width: 600px) { .body-copy + .body-copy { margin-top: 18px; } }

.pull-quote {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 28px;
  margin: 40px 0;
}
@media (max-width: 600px) { .pull-quote { padding: 6px 0 6px 28px; } }
.pull-quote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 3.2vw, 22px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
}

/* Rules */
.rule { border: none; border-top: 1px solid var(--rule); margin: 52px 0; }
.rule-heavy { border: none; border-top: 2px solid var(--ink); margin: 20px 0 52px; }

/* Kicker */
.kicker {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 600px) { .kicker { margin-bottom: 28px; } }
.kicker.red { color: var(--red); }
.kicker.amber { color: #8a7a4a; }
.kicker.green { color: var(--async-accent); }
.kicker.dark { color: #bcb7a2; }
.kicker::after { content: ''; flex: 1; height: 1px; background: var(--rule); }
.kicker.dark::after { background: #2a2820; }
.kicker.green::after { background: #b8d9c6; }

/* Bridge — manifesto only */
.bridge {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 32px 36px;
  margin: 52px 0;
  border-radius: 4px;
}
.bridge-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.bridge-body { font-size: 15px; line-height: 1.75; color: var(--ink-mid); }

/* Journey — manifesto only */
.journey {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  align-items: center;
  margin: 0 0 64px;
}
@media (max-width: 560px) {
  .journey { grid-template-columns: 1fr; }
  .journey-arrow { transform: rotate(90deg); text-align: center; padding: 4px 0; }
}
.journey-stage { padding: 22px 18px; text-align: center; border-radius: 4px; min-height: 184px; }
.journey-stage.chaos { background: var(--chaos-bg); }
.journey-stage.awakening { background: #f5edd8; border: 1px solid #d9cdaa; }
.journey-stage.sync { background: #fff9f7; border: 1px solid #e8c4ba; }
.journey-stage.async { background: var(--async-light); border: 1px solid #b8d9c6; }

.journey-level {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 7px;
  display: block;
}
.journey-stage.chaos .journey-level { color: #bcb7a2; }
.journey-stage.awakening .journey-level { color: #8a7a4a; }
.journey-stage.sync .journey-level { color: var(--red); }
.journey-stage.async .journey-level { color: var(--async-accent); }

.journey-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 900;
  display: block;
  margin-bottom: 7px;
}
.journey-stage.chaos .journey-name { color: #f0ece4; }
.journey-stage.awakening .journey-name { color: #5a4d24; }
.journey-stage.sync .journey-name { color: var(--red-deep); }
.journey-stage.async .journey-name { color: #0f3d27; }

.journey-desc { font-size: 12px; line-height: 1.5; }
.journey-stage.chaos .journey-desc { color: #bcb7a2; }
.journey-stage.awakening .journey-desc { color: #7a6d44; }
.journey-stage.sync .journey-desc { color: #7a5a52; }
.journey-stage.async .journey-desc { color: #3d6b52; }

.journey-arrow { text-align: center; font-size: 16px; color: #5b503a; }

/* Chaos block — manifesto only */
.chaos-block { background: var(--chaos-bg); padding: 48px; margin: 0 0 64px; border-radius: 4px; }
@media (max-width: 600px) { .chaos-block { padding: 36px 24px; } }

.chaos-lede {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  color: #f0ece4;
  margin-bottom: 18px;
}
.chaos-lede em { font-style: italic; color: #9e8a7a; }
.chaos-body { font-size: 15px; line-height: 1.8; color: #bcb7a2; }

.chaos-symptoms { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 28px; }
@media (max-width: 480px) { .chaos-symptoms { grid-template-columns: 1fr; } }

.symptom { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: #bcb7a2; line-height: 1.5; }
.symptom-dot { width: 5px; height: 5px; border-radius: 50%; background: #3a3830; flex-shrink: 0; margin-top: 6px; }

/* Awakening block — manifesto only */
.awakening-block { background: #f5edd8; padding: 48px; margin: 0 0 64px; border-radius: 4px; }
@media (max-width: 600px) { .awakening-block { padding: 36px 24px; } }

.awakening-lede {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 3.5vw, 24px);
  font-weight: 700;
  line-height: 1.35;
  color: #3d3520;
  margin-bottom: 18px;
}
.awakening-lede em { font-style: italic; color: #8a7a4a; }
.awakening-body { font-size: 15px; line-height: 1.8; color: #5a4d24; }

.awakening-signals { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 28px; }
@media (max-width: 480px) { .awakening-signals { grid-template-columns: 1fr; } }
.awakening-block .symptom { color: #5a4d24; }
.symptom-dot.awakening-dot { background: #8a7a4a; }
.kicker.amber::after { background: #d9cdaa; }

/* Sync intro — manifesto only */
.sync-intro {
  background: #fff9f7;
  border-left: 3px solid var(--red);
  padding: 28px 32px;
  margin-bottom: 48px;
  border-radius: 0 4px 4px 0;
}
.sync-intro-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(17px, 3vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.sync-intro-title em { font-style: italic; color: var(--red); }
.sync-intro-body { font-size: 15px; line-height: 1.75; color: var(--ink-mid); }

/* Principles — manifesto only */
.principles { display: flex; flex-direction: column; }
.principle {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}
.principle:first-child { border-top: 1px solid var(--rule); }
.principle-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--rule);
  line-height: 1;
  padding-top: 4px;
}
.principle-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 9px;
}
.principle-desc { font-size: 15px; line-height: 1.75; color: var(--ink-mid); }

/* Principle link styling */
.principle a {
  color: inherit;
  text-decoration: none;
  transition: all .2s;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0 24px;
  padding: 32px 0;
  margin: -32px 0;
  border-bottom: 1px solid var(--rule);
}
.principle a:first-child {
  border-top: 1px solid var(--rule);
}
.principle:first-child a {
  border-top: 1px solid var(--rule);
}
.principle a:hover {
  background: rgba(200, 50, 26, 0.03);
  border-left: 3px solid var(--red);
  padding-left: 12px;
  margin-left: -12px;
}

/* Async block — manifesto only */
.async-block {
  background: var(--async-light);
  border: 1px solid #b8d9c6;
  padding: 48px;
  margin-top: 64px;
  border-radius: 4px;
}
@media (max-width: 600px) { .async-block { padding: 36px 24px; } }

.async-lede {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(19px, 3.5vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  color: #0a2e1c;
  margin-bottom: 18px;
}
.async-lede em { font-style: italic; color: var(--async-accent); }
.async-body { font-size: 15px; line-height: 1.8; color: #2d5a40; margin-bottom: 32px; }

.async-principles { display: flex; flex-direction: column; border-top: 1px solid #b8d9c6; }
.async-principle { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid #d4eadc; align-items: flex-start; }

.async-check {
  width: 22px;
  height: 22px;
  border: 1.5px solid #4a9966;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.async-check::after { content: ''; width: 8px; height: 8px; background: var(--async-accent); border-radius: 50%; }

.async-principle-text { font-size: 15px; line-height: 1.7; color: #1a4a2e; }
.async-principle-text strong { font-weight: 500; color: #0a2e1c; }

/* CTA block — manifesto only */
.cta-block { background: var(--ink); padding: 52px 48px; margin-top: 64px; border-radius: 4px; }
@media (max-width: 600px) { .cta-block { padding: 40px 24px; } }

.cta-eyebrow { font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: #6ab88a; font-weight: 500; margin-bottom: 20px; }
.cta-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  color: #f0ece4;
  margin-bottom: 20px;
}
.cta-statement em { font-style: italic; color: #6ab88a; }
.cta-body { font-size: 15px; line-height: 1.8; color: #7a7870; }

/* Footer */
.footer {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-bottom: 120px;
}
.footer-brand { font-family: 'Playfair Display', Georgia, serif; font-size: 18px; font-weight: 900; color: var(--red); }
.footer-tagline { font-size: 12px; color: var(--ink-muted); letter-spacing: .04em; }

/* ============================================ */
/* Principle page specific styles */
/* ============================================ */

/* Principle header */
.principle-header {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0 28px;
  align-items: start;
  margin-bottom: 40px;
}
.principle-header .principle-number {
  font-size: 72px;
  padding-top: 0;
  margin-top: 0;
}
.principle-header .principle-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0;
  padding-top: 10px;
}

/* Section label */
.section-label {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: block;
}

/* Examples table — shared */
.examples-section {
  margin: 48px 0;
}
.examples-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
}
.examples-col-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 16px;
}
.examples-col-label.bad { background: #f5f0ee; color: #9a6a5a; }
.examples-col-label.good { background: #eef5f0; color: #3a6b4a; }

.example-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
}
.example-cell {
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.6;
}
.example-cell.bad {
  background: #fdf9f8;
  color: #6a4a40;
  border-left: 3px solid #e8c4ba;
}
.example-cell.good {
  background: #f7fcf9;
  color: #2a4a35;
  border-left: 3px solid #b8d9c6;
}
.example-verb-bad {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #bf6a52;
  margin-bottom: 5px;
}
.example-verb-good {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3a7a52;
  margin-bottom: 5px;
}
.example-text { font-family: 'DM Sans', sans-serif; }
@media (max-width: 520px) {
  .examples-header, .example-row { grid-template-columns: 1fr; }
  .examples-col-label.bad, .examples-col-label.good { display: block; }
}

/* Framework grid — shared */
.framework-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 36px 0;
}
@media (max-width: 500px) { .framework-grid { grid-template-columns: 1fr; } }

.framework-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 22px 24px;
  border-radius: 3px;
}
.framework-card-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--rule);
  line-height: 1;
  margin-bottom: 8px;
}
.framework-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.framework-card-body { font-size: 13px; line-height: 1.7; color: var(--ink-muted); }
.framework-card-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 10px;
  display: block;
}

/* AI Tool Block — shared */
.tool-block {
  background: var(--ink);
  padding: 48px;
  border-radius: 4px;
  margin-top: 64px;
}
@media (max-width: 600px) { .tool-block { padding: 36px 24px; } }

.tool-eyebrow {
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6ab88a;
  font-weight: 500;
  margin-bottom: 16px;
}
.tool-eyebrow.consensus { color: #bcb7a2; }
.tool-eyebrow.readout { color: #bcb7a2; }

.tool-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 3.5vw, 27px);
  font-weight: 900;
  line-height: 1.25;
  color: #f0ece4;
  margin-bottom: 12px;
}
.tool-title em { font-style: italic; color: #6ab88a; }
.tool-desc { font-size: 14px; line-height: 1.8; color: #7a7870; margin-bottom: 28px; }

.tool-input-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #bcb7a2;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.tool-textarea {
  width: 100%;
  background: #141210;
  border: 1px solid #3a3830;
  color: #d0ccc4;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  padding: 16px 18px;
  resize: vertical;
  min-height: 88px;
  border-radius: 3px;
  outline: none;
  transition: border-color .2s;
  margin-bottom: 14px;
}
.tool-textarea:focus { border-color: #5a7a68; }
.tool-textarea::placeholder { color: #4a4840; }

.examples-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.chip {
  font-size: 12px;
  padding: 5px 12px;
  background: #1e1c18;
  color: #bcb7a2;
  border: 1px solid #2a2820;
  border-radius: 2px;
  cursor: pointer;
  transition: all .15s;
  font-family: 'DM Sans', sans-serif;
}
.chip:hover { background: #2a2820; color: #9a9888; border-color: #3a3830; }
.chip.transparent {
  background: transparent;
  border: 1px solid #2a2820;
}
.chip.transparent:hover { border-color: #4a4840; color: #9a9890; }

.tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a5c3a;
  color: #a8d8ba;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 12px 24px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s;
  text-transform: uppercase;
}
.tool-btn:hover { background: #225040; }
.tool-btn:disabled { opacity: .5; cursor: not-allowed; }
.tool-btn-icon { font-size: 14px; }
.tool-btn.red-btn {
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
}
.tool-btn.red-btn:hover { background: var(--red-deep); }

/* Result */
.tool-result { margin-top: 28px; border-top: 1px solid #2a2820; padding-top: 28px; display: none; }
.tool-result.visible { display: block; }

.result-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.score-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.score-dot.red { background: #c8321a; }
.score-dot.amber { background: #b87a18; }
.score-dot.green { background: #3a9a5a; }
.score-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
}
.score-label.red { color: #c8321a; }
.score-label.amber { color: #b87a18; }
.score-label.green { color: #6ab88a; }

.result-section { margin-bottom: 24px; }
.result-section-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4a4840;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.reframed-statement {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(16px, 2.8vw, 20px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.45;
  color: #f0ece4;
  padding: 20px 24px;
  background: #1a5c3a22;
  border-left: 3px solid #3a9a5a;
  border-radius: 0 3px 3px 0;
}

.missing-list { list-style: none; }
.missing-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #7a7870;
  padding: 6px 0;
  border-bottom: 1px solid #1e1c18;
}
.missing-item:last-child { border-bottom: none; }
.missing-item::before { content: '—'; color: #4a4840; flex-shrink: 0; }

.tips-text { font-size: 14px; line-height: 1.8; color: #bcb7a2; }

.loading-state {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}
.loading-state.visible { display: flex; }
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #2a2820;
  border-top-color: #3a9a5a;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  flex-shrink: 0;
}
.loading-state.consensus-spinner .spinner {
  border-top-color: var(--red);
}
.loading-state.readout-spinner .spinner {
  border-top-color: var(--red);
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { font-size: 13px; color: #bcb7a2; }

/* Test badge */
.test-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.test-badge {
  background: #1e1c18;
  border: 1px solid #3a3830;
  color: #6ab88a;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 2px;
  white-space: nowrap;
}
.test-badge.red-badge {
  color: var(--red);
}
.test-rule { flex: 1; height: 1px; background: #2a2820; }

/* Principle-specific styles */

/* Principle 2: Committee diffusion callout */
.diffusion-block {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--red);
  padding: 28px 32px;
  margin: 40px 0;
  border-radius: 0 4px 4px 0;
}
.diffusion-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.diffusion-body { font-size: 15px; line-height: 1.75; color: var(--ink-mid); }

/* Principle 2: Responsibility spectrum */
.spectrum-block {
  margin: 40px 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.spectrum-header {
  background: var(--ink);
  padding: 14px 24px;
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 12px;
}
.spectrum-header span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}
.spectrum-header .sh-role { color: #bcb7a2; }
.spectrum-header .sh-does { color: #9a9888; }
.spectrum-header .sh-not { color: #4a4840; }

.spectrum-row {
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.spectrum-row:last-child { border-bottom: none; }
.spectrum-row:nth-child(odd) { background: var(--page); }
.spectrum-row:nth-child(even) { background: var(--cream); }

.sr-role {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}
.sr-role.owner { color: var(--red-deep); }
.sr-does { font-size: 13px; line-height: 1.55; color: var(--ink-mid); }
.sr-not { font-size: 13px; line-height: 1.55; color: var(--ink-muted); font-style: italic; }

@media (max-width: 540px) {
  .spectrum-header, .spectrum-row { grid-template-columns: 1fr; gap: 4px; }
  .spectrum-header .sh-not, .sr-not { display: none; }
}

/* Principle 3: Fear callout block */
.fear-block {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--red);
  padding: 28px 32px;
  margin: 40px 0;
  border-radius: 0 4px 4px 0;
}
.fear-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.fear-body { font-size: 15px; line-height: 1.75; color: var(--ink-mid); }

/* Principle 3: Timeline */
.timeline {
  margin: 40px 0;
  border-left: 2px solid var(--rule);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-entry {
  position: relative;
  padding: 0 0 32px;
}
.timeline-entry:last-child { padding-bottom: 0; }
.timeline-entry::before {
  content: '';
  position: absolute;
  left: -35px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rule);
  border: 2px solid var(--page);
}
.timeline-entry.bad::before { background: var(--red); }
.timeline-entry.worse::before { background: #8a2010; }
.timeline-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 5px;
}
.timeline-entry.bad .timeline-label { color: var(--red); }
.timeline-entry.worse .timeline-label { color: #8a2010; }
.timeline-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.timeline-text strong { color: var(--ink); font-weight: 500; }

/* Principle 3: Delay types */
.delay-types {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  margin: 36px 0;
}
@media (max-width: 560px) { .delay-types { grid-template-columns: 1fr; } }

.delay-card {
  border: 1px solid var(--rule);
  border-radius: 3px;
  overflow: hidden;
}
.delay-card-header {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.delay-card.legitimate .delay-card-header { background: var(--async-light); border-bottom: 1px solid #b8d9c6; }
.delay-card.conditional .delay-card-header { background: #fff9f0; border-bottom: 1px solid #e8d4a8; }
.delay-card.fear .delay-card-header { background: #fff9f7; border-bottom: 1px solid #e8c4ba; }

.delay-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.delay-card.legitimate .delay-dot { background: var(--async-accent); }
.delay-card.conditional .delay-dot { background: #b87a18; }
.delay-card.fear .delay-dot { background: var(--red); }

.delay-card-type {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}
.delay-card.legitimate .delay-card-type { color: var(--async-accent); }
.delay-card.conditional .delay-card-type { color: #8a5a10; }
.delay-card.fear .delay-card-type { color: var(--red-deep); }

.delay-card-body {
  padding: 16px 18px;
  background: var(--page);
}
.delay-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}
.delay-card-desc { font-size: 12px; line-height: 1.65; color: var(--ink-muted); }
.delay-card-signal {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  font-size: 11px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.delay-card-signal strong {
  font-weight: 500;
  color: var(--ink-mid);
  display: block;
  margin-bottom: 2px;
  letter-spacing: .04em;
}

/* Principle 4: Contrast block */
.contrast-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 40px 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 520px) { .contrast-block { grid-template-columns: 1fr; } }

.contrast-panel {
  padding: 28px 30px;
}
.contrast-panel.bad {
  background: #fdf9f8;
  border-right: 1px solid var(--rule);
}
.contrast-panel.good {
  background: #f7fcf9;
}
@media (max-width: 520px) {
  .contrast-panel.bad { border-right: none; border-bottom: 1px solid var(--rule); }
}

.contrast-eyebrow {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
}
.contrast-panel.bad .contrast-eyebrow { color: #bf6a52; }
.contrast-panel.good .contrast-eyebrow { color: #3a7a52; }

.contrast-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.contrast-panel.bad .contrast-title { color: var(--red-deep); }
.contrast-panel.good .contrast-title { color: #0a3d22; }

.contrast-body { font-size: 14px; line-height: 1.7; color: var(--ink-muted); }

.contrast-example {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 3px;
  font-size: 13px;
  line-height: 1.6;
}
.contrast-panel.bad .contrast-example {
  background: #f5eeeb;
  color: #7a4a3a;
  border-left: 2px solid #e8c4ba;
}
.contrast-panel.good .contrast-example {
  background: #eaf5ee;
  color: #2a5a38;
  border-left: 2px solid #9ad4b2;
}

/* Principle 4: Verb table */
.verb-table {
  margin: 36px 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.verb-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--ink);
  padding: 12px 20px;
  gap: 12px;
}
.verb-table-header span {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}
.verb-table-header .vth-1 { color: #c8321a; }
.verb-table-header .vth-2 { color: #b87a18; }
.verb-table-header .vth-3 { color: #6ab88a; }

.verb-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.verb-row:last-child { border-bottom: none; }
.verb-row:nth-child(odd) { background: var(--page); }
.verb-row:nth-child(even) { background: var(--cream); }

.vr-dead {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #c8321a;
}
.vr-weak {
  font-size: 14px;
  color: var(--ink-muted);
}
.vr-strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--async-accent);
}
@media (max-width: 520px) {
  .verb-table-header, .verb-row { grid-template-columns: 1fr 1fr; }
  .verb-table-header .vth-2, .vr-weak { display: none; }
}

/* Principle 4: Agenda transform */
.agenda-transform {
  margin: 40px 0;
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
}
.agenda-transform-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink);
}
.ath-panel {
  padding: 14px 20px;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}
.ath-panel.bad { color: #c8321a; }
.ath-panel.good { color: #6ab88a; }

.at-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.at-panel {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.at-panel.bad { background: #fdf9f8; }
.at-panel.good { background: #f7fcf9; }

.at-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  padding: 10px 12px;
  border-radius: 3px;
}
.at-panel.bad .at-item { background: #f5edea; color: #6a4a40; }
.at-panel.good .at-item { background: #eaf5ee; color: #2a4a35; }

.at-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Principle 5: Trap grid */
.trap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 36px 0;
}
@media (max-width: 520px) { .trap-grid { grid-template-columns: 1fr; } }

.trap-card {
  padding: 28px 26px;
  border-radius: 3px;
  border: 1px solid var(--rule);
}
.trap-card.silence { background: #fff9f7; border-color: #e8c4ba; }
.trap-card.consensus { background: #f7f9ff; border-color: #c4cce8; }

.trap-label {
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.trap-card.silence .trap-label { color: var(--red); }
.trap-card.consensus .trap-label { color: #3a4a8a; }

.trap-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.25;
}
.trap-body { font-size: 13.5px; line-height: 1.7; color: var(--ink-mid); }

.trap-tells { list-style: none; padding: 0; margin-top: 14px; }
.trap-tell {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--ink-muted);
  padding: 5px 0;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.trap-card.silence .trap-tell { border-color: #f0ddd8; }
.trap-card.consensus .trap-tell { border-color: #dde2f0; }

.trap-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.trap-card.silence .trap-dot { background: var(--red); }
.trap-card.consensus .trap-dot { background: #3a4a8a; }

/* Principle 5: Anatomy block */
.anatomy-block {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 32px 36px;
  margin: 40px 0;
  border-radius: 4px;
}
.anatomy-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.3;
}
.anatomy-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.anatomy-row:last-child { border-bottom: none; }
.anatomy-field {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--red);
}
.anatomy-value { font-size: 14px; line-height: 1.65; color: var(--ink-mid); }

/* Exception block */
.exception-block {
  background: #fff9f7;
  border: 1px solid #e8c4ba;
  padding: 28px 32px;
  border-radius: 4px;
  margin: 40px 0;
}
.exception-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(15px, 2.5vw, 18px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.exception-list { list-style: none; padding: 0; }
.exception-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-mid);
  padding: 8px 0;
  border-bottom: 1px solid #f0ddd8;
}
.exception-item:last-child { border-bottom: none; }
.exception-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Navigation between principles */
.principle-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--rule);
  padding-top: 32px;
  margin-top: 48px;
  font-size: 14px;
  line-height: 1.6;
}
.principle-nav a {
  color: var(--red);
  text-decoration: none;
  transition: color .2s;
}
.principle-nav a:hover {
  color: var(--red-deep);
  text-decoration: underline;
}
.principle-nav-prev {
  display: flex;
  align-items: center;
  gap: 4px;
}
.principle-nav-next {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .principle-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .principle-nav-next {
    justify-content: flex-start;
  }
}

/* ═══════════════════════════════════
   PRACTICE SECTION
   ═══════════════════════════════════ */

/* Practice landing hero */
.practice-landing-hero {
  background: var(--ink);
  padding: 72px 48px 64px;
  text-align: center;
}
.practice-landing-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.practice-landing-eyebrow {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #bcb7a2;
  font-weight: 500;
  margin-bottom: 20px;
}
.practice-landing-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.15;
  color: #f0ece4;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.practice-landing-title em { font-style: italic; color: var(--red); }
.practice-landing-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #bcb7a2;
  max-width: 540px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .practice-landing-hero { padding: 48px 24px 48px; }
}

/* Practice toolkit grid */
.practice-toolkit {
  padding-top: 56px;
  padding-bottom: 120px;
}

.practice-category {
  margin-bottom: 24px;
}
.practice-category-label {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.practice-category-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}
.practice-category-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: 560px;
}

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .practice-grid { grid-template-columns: 1fr; }
}

.practice-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .2s;
}
.practice-card:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(200,50,26,.08);
  transform: translateY(-2px);
}
.practice-card.coming-soon {
  opacity: .55;
  pointer-events: none;
}
.practice-card.coming-soon:hover {
  border-color: var(--rule);
  box-shadow: none;
  transform: none;
}

.practice-card-icon {
  font-size: 28px;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.practice-card-icon.muted { color: var(--ink-muted); }

.practice-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.practice-card-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
}
.practice-card-principles {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--async-accent);
}
.practice-card-principles.muted { color: var(--ink-muted); }
.practice-dot {
  width: 6px;
  height: 6px;
  background: var(--async-accent);
  border-radius: 50%;
}
.practice-dot.muted { background: var(--ink-muted); }

/* Practice page hero */
.practice-hero {
  background: var(--ink);
  padding: 56px 48px 48px;
}
@media (max-width: 600px) { .practice-hero { padding: 40px 24px 36px; } }

.practice-hero-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.practice-hero-phase {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  background: rgba(200,50,26,.1);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.practice-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  color: #f0ece4;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.practice-hero-title em { font-style: italic; color: var(--red); }

.practice-hero-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #bcb7a2;
  max-width: 600px;
}

/* Template block — the visual template display */
.template-block {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}

.template-section {
  padding: 24px 28px;
  border-bottom: 1px solid var(--rule);
}
.template-section:last-child { border-bottom: none; }

.template-field {
  margin-bottom: 12px;
}
.template-field-label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}
.template-field-hint {
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-muted);
  display: block;
}

.template-example {
  background: var(--cream);
  border-left: 3px solid var(--rule);
  padding: 12px 16px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-mid);
  border-radius: 0 4px 4px 0;
  font-style: italic;
}

@media (max-width: 600px) {
  .template-section { padding: 20px; }
}

/* Filter list — when to skip */
.filter-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}
.filter-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-mid);
}
.filter-item strong { color: var(--ink); font-weight: 600; }
.filter-marker {
  font-size: 16px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
  font-weight: 700;
}

/* Download block */
.download-block {
  margin-top: 56px;
}
.download-inner {
  background: var(--ink);
  border-radius: 8px;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.download-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  color: #f0ece4;
  margin-bottom: 8px;
}
.download-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #bcb7a2;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.download-btn:hover { background: var(--red-deep); }

@media (max-width: 640px) {
  .download-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

/* Before & After — 1-1 page */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 640px) {
  .before-after { grid-template-columns: 1fr; }
}

.before-after-col {
  border-radius: 6px;
  padding: 28px 24px;
}
.before-after-col.before {
  background: #faf5f0;
  border: 1px solid #e0d8cc;
}
.before-after-col.after {
  background: var(--async-light);
  border: 1px solid #b8d9c6;
}

.before-after-label {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}
.before-after-col.before .before-after-label { color: var(--ink-muted); }
.before-after-col.after .before-after-label { color: var(--async-accent); }

.before-after-items {
  display: grid;
  gap: 14px;
}
.before-after-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.before-after-time {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-muted);
  flex-shrink: 0;
  width: 36px;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}
.before-after-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-mid);
}
