/* =====================
   Ripple — Base Styles
   ===================== */

:root {
  --ink: #1a1a1a;
  --ink-muted: #555;
  --paper: #fafaf8;
  --accent: #c26a2e;
  --accent-light: #f5ede3;
  --border: #e0ddd5;
  --max-width: 680px;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-serif);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =====================
   Layout
   ===================== */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main {
  flex: 1;
  padding: 3rem 0 4rem;
}

/* =====================
   Header
   ===================== */

header {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0 1.5rem;
}

.wordmark {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.tagline {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 0.25rem;
  letter-spacing: 0.01em;
}

/* =====================
   Typography
   ===================== */

h1 {
  font-family: var(--font-sans);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

h2 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: italic;
}

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  text-decoration-thickness: 2px;
}

/* =====================
   Sections
   ===================== */

section {
  margin-bottom: 3.5rem;
}

section:last-child {
  margin-bottom: 0;
}

.intro h1 {
  font-size: 2rem;
}

/* =====================
   Coming Soon List
   ===================== */

ul {
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.note {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 1rem;
  margin-top: 1.5rem;
}

/* =====================
   Footer
   ===================== */

footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

footer a {
  color: var(--ink-muted);
}

/* =====================
   Essay / Article
   ===================== */

.wordmark-link {
  color: inherit;
  text-decoration: none;
}

.wordmark-link:hover {
  text-decoration: none;
  opacity: 0.75;
}

.essay-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.essay-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.essay-header h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.essay-meta {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

article h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

blockquote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 1.25rem;
  margin: 2rem 0;
  background-color: var(--accent-light);
  border-radius: 0 4px 4px 0;
}

blockquote p {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0;
}

.essay-footer-nav {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.essay-footer-nav p {
  margin: 0;
}

.essay-footer-nav p + p {
  margin-top: 0.55rem;
}

.essay-footer-thread-links {
  color: var(--muted);
}

.flagship-sequence-callout {
  margin-top: 3rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.56), rgba(250, 250, 248, 0.98));
}

.flagship-sequence-callout h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.flagship-sequence-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.flagship-sequence-intro,
.flagship-sequence-list li,
.flagship-sequence-next,
.flagship-sequence-exit {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.flagship-sequence-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.flagship-sequence-list li {
  margin-bottom: 0.7rem;
  padding: 0.8rem 0 0.8rem 1rem;
  border-top: 1px solid rgba(224, 221, 213, 0.85);
}

.flagship-sequence-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.flagship-sequence-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.flagship-sequence-list .is-current {
  color: var(--ink);
}

.flagship-sequence-step {
  display: inline-block;
  margin-right: 0.45rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.flagship-sequence-next,
.flagship-sequence-exit {
  margin-bottom: 0;
}

.flagship-sequence-next {
  margin-top: 1rem;
}

.flagship-sequence-exit {
  margin-top: 0.7rem;
}

/* =====================
   Index — Content List
   ===================== */

.content-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.content-list li {
  margin-bottom: 0;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.content-list li:first-child {
  padding-top: 0;
}

.content-list a {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}

.content-list a:hover {
  color: var(--accent);
}

.content-list .item-meta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

/* =====================
   Further Reading
   ===================== */

.further-reading {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.further-reading h2 {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.further-reading ul {
  padding-left: 1.25rem;
}

.further-reading li {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 0.875rem;
}

.further-reading li em {
  color: var(--ink);
}

/* =====================
   Patterns Note
   ===================== */

details.patterns-note {
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

details.patterns-note > summary {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

details.patterns-note > summary::-webkit-details-marker {
  display: none;
}

details.patterns-note > summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
}

details.patterns-note[open] > summary::after {
  content: '−';
}

details.patterns-note > summary:hover {
  color: var(--ink);
}

.patterns-note-content {
  margin-top: 1.25rem;
}

.patterns-note-content > p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.patterns-note-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.patterns-note-content li {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
}

.patterns-note-content li:last-child {
  margin-bottom: 0;
}

.patterns-note-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.patterns-note-content li strong {
  color: var(--ink);
}

/* =====================
   Structural Tensions
   ===================== */

details.structural-tensions {
  margin: 3rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

details.structural-tensions > summary {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

details.structural-tensions > summary::-webkit-details-marker {
  display: none;
}

details.structural-tensions > summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
  color: var(--accent);
}

details.structural-tensions[open] > summary::after {
  content: '−';
}

details.structural-tensions > summary:hover {
  color: var(--ink);
}

.structural-tensions-content,
.tensions-content {
  margin-top: 1.25rem;
}

.structural-tensions-content > p,
.tensions-content > p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.structural-tensions-content ul,
.tensions-content ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.structural-tensions-content li,
.tensions-content li {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 0.875rem;
  padding-left: 1.25rem;
  position: relative;
}

.structural-tensions-content li:last-child,
.tensions-content li:last-child {
  margin-bottom: 0;
}

.structural-tensions-content li::before,
.tensions-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.structural-tensions-content li strong,
.tensions-content li strong {
  color: var(--ink);
}

/* =====================
   Cluster Path
   ===================== */

.cluster-path {
  margin-top: 3rem;
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.55), rgba(250, 250, 248, 0.96));
}

.cluster-path h2 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  color: var(--accent);
}

.cluster-path p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.cluster-path ol {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.cluster-path li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.cluster-path li:last-child {
  margin-bottom: 0;
}

.cluster-path strong,
.cluster-path a {
  color: var(--ink);
}

.cluster-path a:hover {
  color: var(--accent);
}

/* =====================
   Cluster Chooser
   ===================== */

.cluster-chooser {
  margin: 2.75rem 0 3rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.45), rgba(250, 250, 248, 0.98));
}

.cluster-chooser h2 {
  margin-top: 0;
  color: var(--accent);
}

.cluster-chooser-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 60ch;
}

.cluster-chooser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.cluster-chooser-card {
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(250, 250, 248, 0.96);
}

.cluster-chooser-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.cluster-chooser-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.cluster-chooser-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.cluster-chooser-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.cluster-chooser-list li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 0.45rem;
}

.cluster-chooser-list a {
  color: var(--ink);
}

.cluster-chooser-link {
  margin-top: 1rem;
  margin-bottom: 0;
}

.cluster-chooser-link a {
  color: var(--accent);
}

/* =====================
   Hero
   ===================== */

.hero {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.hero-statement {
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.hero-prompt {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.hero-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.hero-jumpbar a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(224, 221, 213, 0.96);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.hero-jumpbar a:hover {
  color: var(--accent);
  border-color: rgba(194, 106, 46, 0.4);
  background: rgba(245, 237, 227, 0.72);
  transform: translateY(-1px);
}

/* =====================
   Homepage Front Door
   ===================== */

.front-door-home {
  margin-bottom: 3.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.55), rgba(250, 250, 248, 0.98));
}

.front-door-home-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.front-door-home h2 {
  margin-top: 0;
  color: var(--accent);
}

.front-door-home-intro {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 60ch;
}

.front-door-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.front-door-home-card {
  padding: 1.15rem 1.2rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(250, 250, 248, 0.96);
}

.front-door-home-card h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.front-door-home-card p {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

/* =====================
   Homepage live-conflict module
   ===================== */

.live-conflict-home {
  margin-bottom: 3.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250, 250, 248, 0.98), rgba(245, 237, 227, 0.48));
}

.live-conflict-home-label,
.live-conflict-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.live-conflict-home-label {
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.live-conflict-home-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.75fr);
  gap: 1rem 1.5rem;
  align-items: end;
}

.live-conflict-home h2 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.live-conflict-home-intro,
.live-conflict-home-kicker,
.live-conflict-card-link a {
  font-family: var(--font-sans);
}

.live-conflict-home-intro,
.live-conflict-home-kicker {
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.live-conflict-home-kicker {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid rgba(194, 106, 46, 0.28);
}

.live-conflict-home-grid {
  margin-top: 1.35rem;
}

.live-conflict-home-more {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(224, 221, 213, 0.9);
}

.live-conflict-home-more-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.live-conflict-home-more-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.8rem;
  padding-left: 0;
  margin: 0 0 0.8rem;
}

.live-conflict-home-more-list li {
  margin-bottom: 0;
}

.live-conflict-home-more-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(194, 106, 46, 0.2);
  border-radius: 999px;
  background: rgba(245, 237, 227, 0.72);
  font-family: var(--font-sans);
  font-size: 0.84rem;
  color: var(--ink);
  text-decoration: none;
}

.live-conflict-home-more-list a:hover {
  color: var(--accent);
  border-color: rgba(194, 106, 46, 0.4);
  text-decoration: none;
}

.live-conflict-home-more-note {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 0;
}

.live-conflict-home-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.live-conflict-card-label {
  color: var(--ink-muted);
  margin: 0 0 0.65rem;
}

.live-conflict-card-link {
  margin-top: 1rem;
}

.live-conflict-card-link a {
  font-size: 0.9rem;
  font-weight: 700;
}

/* =====================
   Pathways (you might be here because...)
   ===================== */

.pathways-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.pathways-section h2 {
  margin-bottom: 0.5rem;
}

.pathway-list {
  list-style: none;
  padding: 0;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pathway-link {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
}

.pathway-link:hover {
  background: #eddccc;
}

.pathway-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.pathway-desc {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* =====================
   Start Here
   ===================== */

.start-here-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.start-here-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.start-here-list li:first-child {
  padding-top: 0;
}

.start-here-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.start-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  display: block;
  margin-bottom: 0.35rem;
}

.start-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* =====================
   Starter Maps (within start-here)
   ===================== */

.start-here-intro {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

/* =====================
   Start Here Guide
   ===================== */

.start-guide-lede {
  font-size: 1.12rem;
  line-height: 1.7;
}

.start-guide-panel {
  margin: 2rem 0 2.5rem;
  padding: 1.35rem 1.4rem 1.45rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 0 16px 16px 0;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.48), rgba(250, 250, 248, 0.98));
}

.start-guide-panel:last-child {
  margin-bottom: 0;
}

.start-guide-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.start-guide-panel h2,
.start-guide-panel h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.start-guide-panel p,
.start-guide-panel li {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.start-guide-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.start-guide-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.1rem;
  position: relative;
}

.start-guide-list li:last-child {
  margin-bottom: 0;
}

.start-guide-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.start-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.start-guide-card {
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.start-guide-card h3 {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  line-height: 1.35;
}

.start-guide-card p:last-child {
  margin-bottom: 0;
}

.start-guide-sequence {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.start-guide-sequence li {
  margin-bottom: 0.65rem;
}

.start-guide-sequence li:last-child {
  margin-bottom: 0;
}

.start-guide-sequence-note {
  margin-top: 0.9rem;
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.starter-maps {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.starter-maps li {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 0.5rem;
  padding-left: 1.1rem;
  position: relative;
}

.starter-maps li:last-child {
  margin-bottom: 0;
}

.starter-maps li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.starter-maps a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
}

.starter-maps a:hover {
  color: var(--accent);
}

/* =====================
   Map Groups
   ===================== */

.map-group {
  margin-bottom: 2rem;
  padding: 1.2rem 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.map-group:last-child {
  margin-bottom: 0;
}

.map-group-anchor {
  position: relative;
  top: -1.1rem;
}

.map-group-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  margin-top: 0;
}

/* =====================
   Section intro
   ===================== */

.section-intro {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

/* =====================
   Thematic Threads
   ===================== */

.threads-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.threads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

.thread {
  padding: 1.25rem 1.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  background-color: #fff;
}

.thread-question {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.thread-framing {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink-muted);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.thread-sample-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.thread-maps {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.thread-maps li {
  margin-bottom: 0.2rem;
  padding-left: 0;
}

.thread-maps a {
  font-family: var(--font-sans);
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.thread-maps a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.thread-essay-link {
  margin-top: 0.75rem;
  margin-bottom: 0;
  font-family: var(--font-sans);
  font-size: 0.825rem;
}

.thread-essay-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.thread-essay-link a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

/* =====================
   Archive Bridge
   ===================== */

.archive-bridge {
  margin-bottom: 2rem;
  padding: 1.3rem 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.32), rgba(250, 250, 248, 0.98));
}

.archive-bridge-label,
.archive-bridge-card-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-bridge-label {
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.archive-bridge h2 {
  margin-bottom: 0.65rem;
}

.archive-bridge-intro,
.archive-bridge-note,
.archive-bridge-card-desc {
  font-family: var(--font-sans);
  color: var(--ink-muted);
  line-height: 1.6;
}

.archive-bridge-intro {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.archive-bridge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.95rem;
}

.archive-bridge-card {
  display: block;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.15s ease, transform 0.15s ease, background 0.15s ease;
}

.archive-bridge-card:hover {
  border-color: rgba(169, 107, 67, 0.45);
  background: rgba(245, 237, 227, 0.4);
  transform: translateY(-1px);
}

.archive-bridge-card-label {
  display: block;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.archive-bridge-card-title {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.archive-bridge-card-desc {
  display: block;
  font-size: 0.84rem;
}

.archive-bridge-note {
  font-size: 0.86rem;
  margin-bottom: 0;
}

.archive-bridge-note a {
  color: var(--accent);
}

.archive-jumpbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding-top: 0.2rem;
}

.archive-jump {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.archive-jump:hover {
  color: var(--accent);
  border-color: rgba(169, 107, 67, 0.45);
  background: rgba(245, 237, 227, 0.45);
}

/* =====================
   Explore Page
   ===================== */

.explore-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.explore-header h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.explore-intro {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.explore-nav {
  background-color: var(--accent-light);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1rem 1.25rem 1.25rem;
  margin-bottom: 3rem;
}

.explore-nav-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}

.explore-nav ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.explore-nav li {
  margin-bottom: 0;
}

.explore-nav a {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}

.explore-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.explore-thread {
  margin-bottom: 4rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}

.explore-thread:last-of-type {
  border-bottom: none;
}

.explore-thread-header {
  margin-bottom: 1.75rem;
}

.explore-thread-question {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: none;
}

.explore-thread-framing {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.explore-thread-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.95fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.38), rgba(250, 250, 248, 0.98));
}

.explore-thread-guide-copy h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  text-transform: none;
}

.explore-thread-guide-copy p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.explore-thread-guide-label,
.explore-thread-guide-kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.explore-thread-guide-label {
  margin-bottom: 0.45rem;
}

.explore-thread-guide-card {
  padding: 1rem 1.05rem 1.05rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(250, 250, 248, 0.96);
}

.explore-thread-guide-kicker {
  margin-bottom: 0.7rem;
}

.explore-thread-guide-list {
  margin: 0;
  padding-left: 1.1rem;
}

.explore-thread-guide-list li {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 0.4rem;
}

.explore-thread-guide-list a {
  color: var(--ink);
  text-decoration: none;
}

.explore-thread-guide-list a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.explore-thread-guide-link {
  margin-top: 0.85rem;
  margin-bottom: 0;
}

.explore-thread-guide-link a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--accent);
}

.explore-map-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.explore-map-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

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

.explore-map-item a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.explore-map-item a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.explore-annotation {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.55;
  display: block;
  margin-top: 0.15rem;
}

.explore-thread-back {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  margin-bottom: 0;
}

.explore-thread-back a {
  color: var(--ink-muted);
  text-decoration: none;
}

.explore-thread-back a:hover {
  text-decoration: underline;
}

.explore-footer-nav {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}

.explore-footer-nav p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--ink-muted);
}

/* =====================
   Map Group Framing Note
   ===================== */

.map-group-framing {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.archive-subgroups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.archive-subgroups-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.archive-subgroup {
  min-width: 0;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid rgba(224, 221, 213, 0.9);
  border-radius: 14px;
  background: rgba(250, 250, 248, 0.9);
}

.archive-subgroup h3 {
  font-family: var(--font-sans);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.archive-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.archive-list li {
  margin-bottom: 0;
  padding: 0.62rem 0;
  border-bottom: 1px solid rgba(224, 221, 213, 0.8);
}

.archive-list li:first-child {
  padding-top: 0;
}

.archive-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.archive-list a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.38rem;
}

.archive-list a:hover {
  color: var(--accent);
}

.archive-list a::after {
  content: var(--archive-cues, "");
  font-family: var(--font-sans);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.16rem 0.45rem;
  border: 1px solid rgba(224, 221, 213, 0.95);
  border-radius: 999px;
  background: rgba(245, 237, 227, 0.42);
}

.archive-list li.has-linked-cues > a::after {
  content: none;
  display: none;
}

.archive-cue-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.42rem;
}

.archive-tension-key {
  margin-bottom: 1.25rem;
  padding: 0.9rem 1rem 1rem;
  border: 1px solid rgba(224, 221, 213, 0.95);
  border-radius: 14px;
  background: rgba(250, 250, 248, 0.92);
}

.archive-tension-key-label,
.archive-tension-key-note {
  display: block;
  font-family: var(--font-sans);
}

.archive-tension-key-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.archive-tension-key-note {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--ink-muted);
  margin-bottom: 0.7rem;
}

.archive-tension-key-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.archive-cue {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(224, 221, 213, 0.95);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.archive-cue:hover {
  color: var(--accent);
  border-color: rgba(195, 146, 89, 0.4);
}

.archive-cue-link {
  font-size: 0.63rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-cue-cost {
  background: rgba(244, 230, 219, 0.9);
}

.archive-cue-authority {
  background: rgba(230, 236, 240, 0.9);
}

.archive-cue-belonging {
  background: rgba(237, 232, 223, 0.95);
}

.archive-cue-repair {
  background: rgba(238, 229, 232, 0.92);
}

.archive-cue-natural-world {
  background: rgba(228, 237, 225, 0.94);
}

.archive-cue-worth {
  background: rgba(243, 237, 221, 0.92);
}

.archive-list a[href="/perspective-predictive-policing.html"],
.archive-list a[href="/perspective-global-health-governance.html"],
.archive-list a[href="/perspective-space-governance.html"],
.archive-list a[href="/perspective-nuclear-security-nonproliferation.html"],
.archive-list a[href="/perspective-nuclear-deterrence-disarmament.html"],
.archive-list a[href="/perspective-social-media-democracy.html"],
.archive-list a[href="/perspective-digital-privacy-surveillance.html"],
.archive-list a[href="/perspective-digital-identity-biometrics.html"],
.archive-list a[href="/perspective-surveillance-capitalism.html"],
.archive-list a[href="/perspective-ai-governance.html"],
.archive-list a[href="/perspective-platform-content-moderation.html"],
.archive-list a[href="/perspective-platform-speech-values.html"],
.archive-list a[href="/perspective-ai-democracy-elections.html"],
.archive-list a[href="/perspective-electoral-reform.html"],
.archive-list a[href="/perspective-education-school-choice.html"],
.archive-list a[href="/perspective-compulsory-schooling-educational-freedom.html"],
.archive-list a[href="/perspective-early-childhood-development.html"],
.archive-list a[href="/perspective-childhood-technology.html"],
.archive-list a[href="/perspective-parenting.html"] {
  --archive-cues: "Authority";
}

.archive-list a[href="/perspective-immigration.html"],
.archive-list a[href="/perspective-trans-rights-gender-identity.html"],
.archive-list a[href="/perspective-religious-freedom-discrimination.html"],
.archive-list a[href="/perspective-disability-rights.html"],
.archive-list a[href="/perspective-masculinity-gender.html"],
.archive-list a[href="/perspective-community-belonging.html"],
.archive-list a[href="/perspective-faith-secularity.html"] {
  --archive-cues: "Belonging";
}

.archive-list a[href="/perspective-gun-rights.html"],
.archive-list a[href="/perspective-housing-affordability.html"],
.archive-list a[href="/perspective-urban-planning.html"],
.archive-list a[href="/perspective-renter-rights-tenant-organizing.html"],
.archive-list a[href="/perspective-student-debt-higher-education.html"],
.archive-list a[href="/perspective-generative-ai-intellectual-property.html"],
.archive-list a[href="/perspective-supply-chain-economic-nationalism.html"],
.archive-list a[href="/perspective-wealth-taxation.html"],
.archive-list a[href="/perspective-synthetic-biology.html"] {
  --archive-cues: "Cost";
}

.archive-list a[href="/perspective-managed-retreat.html"],
.archive-list a[href="/perspective-food-systems.html"],
.archive-list a[href="/perspective-animal-rights-factory-farming.html"] {
  --archive-cues: "Natural world";
}

.archive-list a[href="/perspective-drug-legalization.html"],
.archive-list a[href="/perspective-criminal-addiction.html"],
.archive-list a[href="/perspective-juvenile-justice.html"],
.archive-list a[href="/perspective-criminal-justice.html"],
.archive-list a[href="/perspective-criminal-legal-system-reform.html"],
.archive-list a[href="/perspective-criminal-sentencing.html"],
.archive-list a[href="/perspective-forgiveness.html"] {
  --archive-cues: "Repair";
}

.archive-list a[href="/perspective-end-of-life-care.html"],
.archive-list a[href="/perspective-healthcare-access.html"],
.archive-list a[href="/perspective-ai-creative-work.html"],
.archive-list a[href="/perspective-work-worth.html"],
.archive-list a[href="/perspective-labor-organizing.html"],
.archive-list a[href="/perspective-gig-economy-worker-classification.html"],
.archive-list a[href="/perspective-progress-declinism.html"],
.archive-list a[href="/perspective-relationship-structures.html"],
.archive-list a[href="/perspective-technology-attention.html"],
.archive-list a[href="/perspective-honesty.html"],
.archive-list a[href="/perspective-grief.html"],
.archive-list a[href="/perspective-mental-illness.html"],
.archive-list a[href="/perspective-longevity-life-extension.html"] {
  --archive-cues: "Worth";
}

.archive-list a[href="/perspective-free-speech-campus.html"],
.archive-list a[href="/perspective-education-curriculum.html"] {
  --archive-cues: "Authority • Belonging";
}

.archive-list a[href="/perspective-solar-geoengineering.html"],
.archive-list a[href="/perspective-land-ownership.html"],
.archive-list a[href="/perspective-groundwater-governance.html"],
.archive-list a[href="/perspective-ocean-governance.html"],
.archive-list a[href="/perspective-antarctic-governance.html"] {
  --archive-cues: "Authority • Natural world";
}

.archive-list a[href="/perspective-prosecutorial-discretion.html"] {
  --archive-cues: "Authority • Repair";
}

.archive-list a[href="/perspective-vaccine-mandates.html"],
.archive-list a[href="/perspective-reproductive-technology.html"],
.archive-list a[href="/perspective-ai-safety-existential-risk.html"] {
  --archive-cues: "Authority • Worth";
}

.archive-list a[href="/perspective-indigenous-land-rights.html"] {
  --archive-cues: "Belonging • Natural world";
}

.archive-list a[href="/perspective-immigration-enforcement.html"],
.archive-list a[href="/perspective-drug-sentencing-disparity.html"],
.archive-list a[href="/perspective-police-reform.html"],
.archive-list a[href="/perspective-affirmative-action.html"],
.archive-list a[href="/perspective-disability-criminal-justice.html"] {
  --archive-cues: "Belonging • Repair";
}

.archive-list a[href="/perspective-disability-employment.html"],
.archive-list a[href="/perspective-education-meritocracy.html"],
.archive-list a[href="/perspective-ai-consciousness.html"] {
  --archive-cues: "Belonging • Worth";
}

.archive-list a[href="/perspective-housing-supply-zoning.html"],
.archive-list a[href="/perspective-homelessness-housing-instability.html"],
.archive-list a[href="/perspective-eminent-domain-regulatory-takings.html"],
.archive-list a[href="/perspective-algorithmic-hiring-fairness.html"],
.archive-list a[href="/perspective-charter-cities-sez.html"],
.archive-list a[href="/perspective-corporate-governance.html"],
.archive-list a[href="/perspective-bioweapons-governance.html"] {
  --archive-cues: "Cost • Authority";
}

.archive-list a[href="/perspective-climate-change.html"],
.archive-list a[href="/perspective-climate-adaptation.html"],
.archive-list a[href="/perspective-climate-mitigation-adaptation.html"],
.archive-list a[href="/perspective-climate-finance-loss-damage.html"],
.archive-list a[href="/perspective-water-rights.html"],
.archive-list a[href="/perspective-wildfire-policy.html"],
.archive-list a[href="/perspective-urban-heat-policy.html"],
.archive-list a[href="/perspective-nuclear-energy.html"],
.archive-list a[href="/perspective-nuclear-waste.html"] {
  --archive-cues: "Cost • Natural world";
}

.archive-list a[href="/perspective-homelessness-policy.html"],
.archive-list a[href="/perspective-social-media-teen-mental-health.html"],
.archive-list a[href="/perspective-ai-labor.html"],
.archive-list a[href="/perspective-care-work-elder-care.html"],
.archive-list a[href="/perspective-universal-basic-income.html"],
.archive-list a[href="/perspective-wealth-inequality.html"] {
  --archive-cues: "Cost • Worth";
}

.archive-list a[href="/perspective-drug-policy.html"] {
  --archive-cues: "Repair • Worth";
}

.archive-list a[href="/perspective-abortion.html"] {
  --archive-cues: "Authority • Repair • Worth";
}

.archive-list a[href="/perspective-geoengineering-governance.html"] {
  --archive-cues: "Cost • Authority • Natural world";
}

.archive-list a[href="/perspective-climate-migration.html"] {
  --archive-cues: "Cost • Belonging • Natural world";
}

.archive-list a[href="/perspective-reparations.html"] {
  --archive-cues: "Cost • Belonging • Repair";
}

/* =====================
   Responsive
   ===================== */

@media (max-width: 600px) {
  .threads-grid {
    grid-template-columns: 1fr;
  }

  .archive-bridge-grid,
  .archive-subgroups,
  .archive-subgroups-compact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 17px;
  }

  .page-home .hero {
    padding: 1.2rem 1rem 1.35rem;
    border-radius: 18px;
  }

  .page-home .hero-statement {
    font-size: 1.18rem;
  }

  .hero-jumpbar {
    gap: 0.45rem;
  }

  .hero-jumpbar a {
    font-size: 0.72rem;
    padding: 0.38rem 0.6rem;
  }

  h1 {
    font-size: 1.4rem;
  }

  .intro h1 {
    font-size: 1.6rem;
  }

  .pathways-section {
    margin-bottom: 2.75rem;
    padding-bottom: 2.5rem;
  }

  .pathway-link {
    padding: 0.9rem 1rem;
  }

  .pathway-title {
    font-size: 0.9rem;
  }

  .pathway-desc,
  .front-door-home-intro,
  .front-door-home-card p,
  .start-here-intro,
  .start-desc,
  .start-guide-panel p,
  .start-guide-panel li,
  .cluster-chooser-intro,
  .cluster-chooser-card p,
  .cluster-chooser-list li,
  .section-intro,
  .archive-bridge-intro,
  .archive-bridge-note,
  .archive-bridge-card-desc {
    font-size: 0.86rem;
    line-height: 1.52;
  }

  .start-here-list li {
    padding: 1rem 0;
  }

  .starter-maps li {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .cluster-chooser {
    margin: 2.1rem 0 2.35rem;
    padding: 1.1rem 0.95rem;
    border-radius: 14px;
  }

  .cluster-chooser h2 {
    margin-bottom: 0.7rem;
  }

  .cluster-chooser-grid {
    gap: 0.75rem;
    margin-top: 0.9rem;
  }

  .cluster-chooser-card {
    padding: 0.95rem;
    border-radius: 12px;
  }

  .cluster-chooser-card h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
  }

  .cluster-chooser-label {
    margin-bottom: 0.35rem;
  }

  .cluster-chooser-list {
    margin-top: 0.75rem;
    padding-left: 1rem;
  }

  .cluster-chooser-list li {
    margin-bottom: 0.35rem;
  }

  .cluster-chooser-link {
    margin-top: 0.8rem;
  }

  .front-door-home,
  .start-guide-panel {
    padding: 1.1rem 0.95rem;
    border-radius: 14px;
  }

  .front-door-home-grid,
  .start-guide-grid {
    gap: 0.75rem;
    margin-top: 0.9rem;
  }

  .front-door-home-card,
  .start-guide-card {
    padding: 0.95rem;
    border-radius: 12px;
  }

  .archive-bridge {
    padding: 1.05rem 0.95rem 1.1rem;
    border-radius: 14px;
  }

  .archive-bridge h2 {
    margin-bottom: 0.55rem;
  }

  .archive-bridge-card {
    padding: 0.9rem 0.95rem 0.95rem;
    border-radius: 12px;
  }

  .archive-jumpbar {
    gap: 0.45rem;
  }

  .archive-jump {
    font-size: 0.74rem;
    padding: 0.4rem 0.62rem;
  }

  .map-group {
    padding: 1rem 0.9rem 1.05rem;
    border-radius: 14px;
  }

  .archive-subgroup {
    padding: 0.85rem 0.85rem 0.9rem;
    border-radius: 12px;
  }

  .archive-subgroup h3 {
    font-size: 0.79rem;
    margin-bottom: 0.6rem;
  }

  .archive-list a {
    font-size: 0.84rem;
    line-height: 1.42;
  }

  .archive-list a::after {
    font-size: 0.58rem;
    padding: 0.14rem 0.4rem;
  }

  .archive-tension-key {
    padding: 0.82rem 0.85rem 0.88rem;
    border-radius: 12px;
  }

  .archive-tension-key-note {
    font-size: 0.8rem;
  }

  .threads-section {
    margin-bottom: 2.75rem;
    padding-bottom: 2.5rem;
  }

  .thread {
    padding: 1rem 1rem 1.1rem;
  }

  .thread-framing {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .thread-sample-label {
    font-size: 0.66rem;
  }

  .thread-maps a,
  .thread-essay-link {
    font-size: 0.8rem;
  }
}

/* =====================
   Left-Column Layout
   (two-column with sticky sidebar)
   ===================== */

.layout-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.layout-wrapper > header .container,
.layout-wrapper > footer .container {
  max-width: 1080px;
  padding-left: 2rem;
  padding-right: 2rem;
}

.page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  flex: 1;
}

/* =====================
   Sidebar
   ===================== */

.sidebar {
  border-right: 1px solid var(--border);
}

.sidebar-inner {
  position: sticky;
  top: 0;
  max-height: 100vh;
  overflow-y: auto;
  padding: 1.5rem 0.75rem 2rem 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.sidebar-inner::-webkit-scrollbar {
  width: 4px;
}

.sidebar-inner::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-inner::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* nav group (Start, Tensions, Essays, Guides) */

.nav-group {
  margin-bottom: 0.25rem;
}

.nav-group > summary {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0.35rem 0.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 3px;
  user-select: none;
}

.nav-group > summary::-webkit-details-marker {
  display: none;
}

.nav-group > summary::before {
  content: '▸';
  font-size: 0.65rem;
  color: var(--ink-muted);
  transition: transform 0.15s;
  flex-shrink: 0;
}

.nav-group[open] > summary::before {
  transform: rotate(90deg);
}

.nav-group > summary:hover {
  color: var(--ink);
  background: var(--accent-light);
}

/* nav items */

.nav-list {
  list-style: none;
  padding: 0.25rem 0 0.5rem 0.9rem;
  margin: 0;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.22rem 0.4rem 0.22rem 0.6rem;
  border-radius: 3px;
  line-height: 1.4;
  border-left: 2px solid transparent;
}

.nav-list a:hover {
  color: var(--ink);
  background: var(--accent-light);
  text-decoration: none;
}

.nav-list li.nav-current > a,
.nav-list a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  border-left-color: var(--accent);
  background: var(--accent-light);
}

/* tension sub-groups */

.nav-tensions {
  padding: 0.25rem 0 0.5rem 0.25rem;
}

.nav-tension {
  margin-bottom: 0.1rem;
}

.nav-tension > summary {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 0.25rem 0.25rem 0.25rem 0.85rem;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  border-radius: 3px;
  line-height: 1.4;
  position: relative;
  user-select: none;
}

.nav-tension > summary::-webkit-details-marker {
  display: none;
}

.nav-tension > summary::before {
  content: '▸';
  font-size: 0.6rem;
  color: var(--ink-muted);
  position: absolute;
  left: 0.1rem;
  top: 0.38rem;
  transition: transform 0.15s;
  flex-shrink: 0;
}

.nav-tension[open] > summary::before {
  transform: rotate(90deg);
}

.nav-tension > summary:hover {
  color: var(--ink);
  background: var(--accent-light);
}

/* maps list inside a tension */
.nav-maps {
  list-style: none;
  padding: 0.15rem 0 0.35rem 1.35rem;
  margin: 0;
}

.nav-maps li {
  margin: 0;
}

.nav-thread-link {
  margin-bottom: 0.2rem;
}

.nav-thread-link a {
  font-weight: 600;
  color: var(--accent);
}

.nav-maps a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.73rem;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.18rem 0.3rem 0.18rem 0.5rem;
  border-radius: 3px;
  line-height: 1.35;
  border-left: 2px solid transparent;
}

.nav-maps a:hover {
  color: var(--ink);
  background: var(--accent-light);
  text-decoration: none;
}

.nav-maps li.nav-current > a,
.nav-maps a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  border-left-color: var(--accent);
  background: var(--accent-light);
}

/* direct links (Lexicon, Explore All, Reader Journeys) */

.nav-direct {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  padding: 0.35rem 0.25rem 0.35rem 0.75rem;
  border-radius: 3px;
  margin-bottom: 0.1rem;
}

.nav-direct:hover {
  color: var(--ink);
  background: var(--accent-light);
  text-decoration: none;
}

.nav-direct.nav-current,
.nav-direct[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
  border-left: 2px solid var(--accent);
  background: var(--accent-light);
  padding-left: 0.6rem;
}

/* divider */

.nav-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.75rem 0;
}

/* =====================
   Content Column
   ===================== */

.content-col {
  padding: 3rem 2.5rem 4rem;
  min-width: 0;
}

/* =====================
   Homepage Motion + Art Direction
   ===================== */

.page-home {
  background:
    radial-gradient(circle at top right, rgba(194, 106, 46, 0.09), transparent 28rem),
    radial-gradient(circle at 0% 18%, rgba(201, 179, 136, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(250, 250, 248, 0)),
    var(--paper);
}

.page-home .content-col {
  position: relative;
}

.page-home .content-col::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  bottom: 1.2rem;
  left: 1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(194, 106, 46, 0), rgba(194, 106, 46, 0.35) 12%, rgba(224, 221, 213, 0.75) 48%, rgba(194, 106, 46, 0.12) 100%);
  pointer-events: none;
}

.page-home .container {
  position: relative;
}

.page-home .hero {
  position: relative;
  padding: 1.75rem 1.6rem 2rem;
  border: 1px solid rgba(224, 221, 213, 0.95);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(245, 237, 227, 0.68), rgba(250, 250, 248, 0.92) 42%, rgba(255, 255, 255, 0.9)),
    repeating-linear-gradient(90deg, rgba(224, 221, 213, 0.12) 0, rgba(224, 221, 213, 0.12) 1px, transparent 1px, transparent 28px);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(46, 34, 20, 0.04);
}

.page-home .hero::before,
.page-home .hero::after,
.page-home .front-door-home::before,
.page-home .live-conflict-home::before,
.page-home .cluster-chooser::before,
.page-home .archive-bridge::before,
.page-home .thread::before,
.page-home .archive-subgroup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.page-home .hero::before,
.page-home .front-door-home::before,
.page-home .live-conflict-home::before,
.page-home .cluster-chooser::before,
.page-home .archive-bridge::before {
  inset: 0.55rem;
  border: 1px solid rgba(194, 106, 46, 0.16);
}

.page-home .hero::after {
  inset: auto 1.2rem 0 1.2rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(194, 106, 46, 0.7), rgba(194, 106, 46, 0.12) 68%, transparent);
  transform-origin: left center;
}

.page-home .hero-statement {
  max-width: 24ch;
  font-size: clamp(1.3rem, 2.3vw, 1.9rem);
  line-height: 1.4;
  margin-bottom: 1rem;
}

.page-home .hero-prompt {
  max-width: 62ch;
  line-height: 1.65;
}

.page-home .front-door-home,
.page-home .live-conflict-home,
.page-home .cluster-chooser,
.page-home .archive-bridge {
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(56, 41, 23, 0.03);
}

.page-home .front-door-home {
  background:
    linear-gradient(180deg, rgba(245, 237, 227, 0.76), rgba(250, 250, 248, 0.98)),
    repeating-linear-gradient(90deg, rgba(224, 221, 213, 0.11) 0, rgba(224, 221, 213, 0.11) 1px, transparent 1px, transparent 30px);
}

.page-home .live-conflict-home {
  background:
    linear-gradient(180deg, rgba(250, 250, 248, 0.98), rgba(245, 237, 227, 0.64)),
    linear-gradient(90deg, rgba(194, 106, 46, 0.04), transparent 26%);
}

.page-home .cluster-chooser {
  background:
    linear-gradient(180deg, rgba(245, 237, 227, 0.52), rgba(250, 250, 248, 0.99)),
    linear-gradient(90deg, rgba(194, 106, 46, 0.045), transparent 22%);
}

.page-home .pathways-section,
.page-home .threads-section,
.page-home .perspective-maps,
.page-home .essays,
.page-home .guide-section,
.page-home .lexicon-section {
  position: relative;
}

.page-home .pathways-section::before,
.page-home .threads-section::before,
.page-home .perspective-maps::before,
.page-home .essays::before,
.page-home .guide-section::before,
.page-home .lexicon-section::before {
  content: "";
  position: absolute;
  top: -0.35rem;
  left: 0;
  width: 4.5rem;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(194, 106, 46, 0.12));
}

.page-home .front-door-home-card,
.page-home .cluster-chooser-card,
.page-home .start-guide-card,
.page-home .archive-bridge-card,
.page-home .thread,
.page-home .archive-subgroup {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 250, 248, 0.9));
  box-shadow: 0 10px 24px rgba(40, 27, 10, 0.03);
}

.page-home .front-door-home-card::before,
.page-home .cluster-chooser-card::before,
.page-home .start-guide-card::before,
.page-home .archive-bridge-card::before,
.page-home .thread::before,
.page-home .archive-subgroup::before {
  inset: auto 0 0 0;
  height: 3px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(194, 106, 46, 0.72), rgba(194, 106, 46, 0.12), transparent 72%);
  transform-origin: left center;
}

.page-home .front-door-home-card,
.page-home .cluster-chooser-card,
.page-home .start-guide-card,
.page-home .archive-bridge-card,
.page-home .thread,
.page-home .archive-subgroup,
.page-home .pathway-link {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.page-home .front-door-home-card:hover,
.page-home .cluster-chooser-card:hover,
.page-home .start-guide-card:hover,
.page-home .archive-bridge-card:hover,
.page-home .thread:hover,
.page-home .archive-subgroup:hover,
.page-home .pathway-link:hover {
  transform: translateY(-2px);
  border-color: rgba(194, 106, 46, 0.28);
}

.page-home .pathway-link {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(245, 237, 227, 0.72), rgba(245, 237, 227, 0.56));
  border: 1px solid rgba(224, 221, 213, 0.95);
  border-left-width: 4px;
  box-shadow: 0 8px 20px rgba(40, 27, 10, 0.025);
}

.page-home .pathway-link::after {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(194, 106, 46, 0.12);
  opacity: 0;
  transition: opacity 160ms ease;
  pointer-events: none;
}

.page-home .pathway-link:hover::after {
  opacity: 1;
}

.page-home .thread {
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 250, 248, 0.94));
}

.page-home .archive-subgroup {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 250, 248, 0.88));
}

.page-home.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.page-home.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page-home.motion-ready .hero.is-visible::after,
.page-home.motion-ready .front-door-home.is-visible::before,
.page-home.motion-ready .live-conflict-home.is-visible::before,
.page-home.motion-ready .cluster-chooser.is-visible::before,
.page-home.motion-ready .archive-bridge.is-visible::before,
.page-home.motion-ready .front-door-home-card.is-visible::before,
.page-home.motion-ready .cluster-chooser-card.is-visible::before,
.page-home.motion-ready .start-guide-card.is-visible::before,
.page-home.motion-ready .archive-bridge-card.is-visible::before,
.page-home.motion-ready .thread.is-visible::before,
.page-home.motion-ready .archive-subgroup.is-visible::before {
  animation: homeBorderSweep 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--reveal-delay, 0ms) + 80ms);
}

@keyframes homeBorderSweep {
  from {
    opacity: 0.2;
    transform: scaleX(0.12);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page-home .hero::after,
  .page-home .front-door-home::before,
  .page-home .live-conflict-home::before,
  .page-home .cluster-chooser::before,
  .page-home .archive-bridge::before,
  .page-home .front-door-home-card::before,
  .page-home .cluster-chooser-card::before,
  .page-home .start-guide-card::before,
  .page-home .archive-bridge-card::before,
  .page-home .thread::before,
  .page-home .archive-subgroup::before {
    animation: none !important;
    transform: none !important;
  }
}

/* remove the default main padding since content-col handles it */
.content-col.main-reset {
  /* main has padding: 3rem 0 4rem by default — content-col overrides */
}

/* =====================
   Mobile Hamburger (CSS-only toggle)
   ===================== */

.nav-toggle-input {
  display: none;
}

.nav-open-btn {
  display: none;
}

.nav-overlay {
  display: none;
}

.nav-close-btn {
  display: none;
}

@media (max-width: 820px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-home .content-col::before {
    left: 0.3rem;
    top: 0.7rem;
    bottom: 0.7rem;
  }

  .front-door-home-grid,
  .cluster-chooser-grid {
    grid-template-columns: 1fr;
  }

  .live-conflict-home-heading {
    grid-template-columns: 1fr;
  }

  .live-conflict-home-kicker {
    padding-left: 0;
    padding-top: 0.85rem;
    border-left: 0;
    border-top: 3px solid rgba(194, 106, 46, 0.28);
  }

  .start-guide-grid,
  .explore-thread-guide {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: fixed;
    top: 0;
    left: -280px;
    width: 260px;
    height: 100vh;
    z-index: 200;
    background: var(--paper);
    border-right: 1px solid var(--border);
    box-shadow: none;
    transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
  }

  .nav-toggle-input:checked ~ .page-layout .sidebar {
    left: 0;
    box-shadow: 6px 0 24px rgba(0, 0, 0, 0.15);
  }

  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 199;
    pointer-events: none;
    transition: background 0.25s;
    cursor: pointer;
  }

  .nav-toggle-input:checked ~ .nav-overlay {
    background: rgba(0, 0, 0, 0.35);
    pointer-events: auto;
  }

  .nav-close-btn {
    display: flex;
    justify-content: flex-end;
    padding: 0.75rem 1rem 0.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink-muted);
    cursor: pointer;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.5rem;
  }

  .nav-close-btn:hover {
    color: var(--ink);
  }

  .nav-open-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: var(--ink-muted);
    cursor: pointer;
    margin-bottom: 2rem;
    padding: 0.35rem 0.6rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: none;
    user-select: none;
  }

  .nav-open-btn:hover {
    color: var(--ink);
    border-color: var(--ink-muted);
    background: var(--accent-light);
  }

  .content-col {
    padding: 2rem 1.5rem 3rem;
  }

  .layout-wrapper > header .container,
  .layout-wrapper > footer .container {
    max-width: var(--max-width);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 821px) {
  .sidebar-inner {
    position: sticky;
    top: 0;
    height: 100vh;
  }
}
