/* ============================================================
   NYC 311 × Data Justice — Open Educational Resource
   Design: Typewriter-academic, warm off-white ground,
           deep navy + terracotta accent palette
   Fonts: IBM Plex Mono (headings) + Source Serif 4 (body)
   ============================================================ */

:root {
  --bg:            #f6f3ee;
  --bg-alt:        #edeae3;
  --bg-white:      #ffffff;
  --text:          #1c1c1c;
  --text-muted:    #6b6560;
  --navy:          #1e3a5f;
  --navy-dark:     #152c48;
  --terra:         #c4622d;
  --terra-light:   #f2ddd3;
  --border:        #d4cfc7;
  --border-light:  #e8e4dc;
  --mono:          'IBM Plex Mono', 'Courier New', monospace;
  --serif:         'Source Serif 4', Georgia, serif;
  --radius:        2px;
  --max:           1100px;
  --shadow:        0 2px 12px rgba(0,0,0,0.08);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--border);
  transition: color 0.2s, text-decoration-color 0.2s;
}
a:hover { color: var(--terra); text-decoration-color: var(--terra); }
p { margin-bottom: 0.9rem; }
p:last-child { margin-bottom: 0; }
em { font-style: italic; }
strong { font-weight: 600; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-dark);
  border-bottom: 3px solid var(--terra);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  min-height: 50px;
  gap: 1.5rem;
}
.nav-logo {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo:hover { color: var(--terra-light); text-decoration: none; }
.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 0;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 0.45rem 0.75rem;
  display: block;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 1rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  margin-left: auto;
  border-radius: var(--radius);
}
.theme-toggle {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.28rem 0.75rem;
  cursor: pointer;
  border-radius: var(--radius);
  margin-left: 0.75rem;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}
.theme-toggle:hover {
  color: #fff;
  border-color: var(--terra);
  background: rgba(255,255,255,0.08);
}
.theme-toggle-icon { font-size: 0.75rem; }

/* ============================================================
   AI DISCLOSURE BANNER
   ============================================================ */
.ai-disclosure {
  background: #f0ede6;
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.ai-disclosure .container {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
}
.disclosure-label {
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}
.disclosure-label::after {
  content: ':';
  margin-right: 0.2rem;
}
.disclosure-link {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: var(--border);
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
  padding-left: 1rem;
}
.disclosure-link:hover { color: var(--navy); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy-dark);
  color: #fff;
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
/* Subtle grid lines evoke graph paper / data aesthetic */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg,
      transparent, transparent 39px,
      rgba(255,255,255,0.035) 39px, rgba(255,255,255,0.035) 40px),
    repeating-linear-gradient(90deg,
      transparent, transparent 79px,
      rgba(255,255,255,0.02) 79px, rgba(255,255,255,0.02) 80px);
  pointer-events: none;
}
/* Terracotta accent bar on left */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--terra);
}
.hero-content {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.oer-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-light);
  border: 1px solid rgba(196,98,45,0.6);
  background: rgba(196,98,45,0.12);
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--mono);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  max-width: 800px;
  margin-bottom: 1rem;
  color: #fff;
}
.hero-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.75rem;
  max-width: 600px;
}
.hero-meta {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.hero-meta .sep { color: var(--terra); }
.hero-cta {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--terra);
  text-decoration: none;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.hero-cta:hover {
  background: #d9773a;
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--bg-alt); }
.container { max-width: var(--max); margin: 0 auto; }

.section-title {
  font-family: var(--mono);
  font-size: clamp(1.15rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--terra);
  display: inline-block;
  margin-bottom: 2rem;
}
.subsection-title {
  font-family: var(--mono);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.section-intro {
  font-size: 1.05rem;
  max-width: 720px;
  margin-bottom: 2rem;
  color: var(--text);
}
.citation {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

/* ============================================================
   BIG QUESTION BREAKS
   ============================================================ */
.big-question {
  background: var(--text);
  padding: 5rem 2rem;
  text-align: center;
}
.big-question blockquote {
  font-family: var(--mono);
  font-size: clamp(1.1rem, 3vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.45;
  quotes: none;
  border: none;
  padding: 0;
}
/* Decorative dashes around the question */
.big-question blockquote::before {
  content: '— ';
  color: var(--terra);
  font-weight: 400;
}
.big-question blockquote::after {
  content: ' —';
  color: var(--terra);
  font-weight: 400;
}

/* ============================================================
   GOALS
   ============================================================ */
.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.goal-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terra);
  padding: 2rem;
  border-radius: var(--radius);
}
.goal-num {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terra);
  opacity: 0.35;
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* ============================================================
   DISCUSSION LISTS
   ============================================================ */
.discussion-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 760px;
}
.discussion-list li {
  font-family: var(--mono);
  font-size: 0.9rem;
  line-height: 1.65;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border-left: 3px solid var(--terra);
  background: rgba(255,255,255,0.6);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ============================================================
   DEFINITIONS
   ============================================================ */
.definition-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  max-width: 780px;
  margin-bottom: 0.75rem;
}
.definition-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  align-items: flex-start;
}
.def-num {
  font-family: var(--mono);
  font-weight: 700;
  color: var(--navy);
  min-width: 1.5rem;
  font-size: 0.9rem;
  padding-top: 0.1rem;
}
.def-example {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  margin-bottom: 0;
}

/* ============================================================
   POLICY POINTS
   ============================================================ */
.policy-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.policy-point {
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.55;
  padding: 0.9rem 1rem;
  background: var(--navy);
  color: rgba(255,255,255,0.88);
  border-radius: var(--radius);
}

/* ============================================================
   PULL QUOTES
   ============================================================ */
.pull-quote {
  background: var(--bg-white);
  border-left: 4px solid var(--terra);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 820px;
}
.pull-quote p { font-style: italic; font-size: 0.95rem; }
.pull-quote cite {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
  display: block;
  margin-top: 0.75rem;
  line-height: 1.5;
}
.pull-quote.compact { max-width: 100%; margin: 0; }

/* ============================================================
   CONCEPTS GRID
   ============================================================ */
.concepts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.concept-card {
  background: var(--navy);
  color: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
}
.concept-card h4 {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--terra-light);
}
.concept-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   DEFINITION BOX
   ============================================================ */
.definition-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: var(--radius);
  max-width: 860px;
}
.definition-box h3 {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}
.premises-list {
  margin: 1rem 0 1rem 1.5rem;
}
.premises-list li {
  font-family: var(--mono);
  font-size: 0.87rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-light);
  line-height: 1.55;
}
.premises-list li:last-child { border-bottom: none; }
.definition-box cite {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-style: normal;
  display: block;
  margin-top: 1rem;
  line-height: 1.5;
}

/* ============================================================
   TWO QUOTES
   ============================================================ */
.two-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.quote-block {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.quote-block h3 {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quote-block blockquote {
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.7;
  border: none;
  padding: 0;
  margin-bottom: 1rem;
  quotes: none;
  color: var(--text);
}
.quote-block cite {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.5;
}

/* ============================================================
   TIMELINES
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 7rem;
  margin: 1.5rem 0 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 5.25rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 1.25rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.8rem;
  top: 0.95rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border);
  transform: translateX(-50%);
}
.timeline-item-current::before {
  background: var(--terra);
  border-color: var(--terra);
}
.timeline-year {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  position: absolute;
  left: -6.75rem;
  top: 0.85rem;
  width: 4.5rem;
  text-align: right;
}
.timeline-content {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius);
}
.timeline-content strong {
  font-family: var(--mono);
  font-size: 0.82rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.25rem;
}
.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.55;
}
.timeline-content a { font-size: 0.85rem; }

/* ============================================================
   POLICY CARDS
   ============================================================ */
.policy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(195px, 1fr));
  gap: 1rem;
}
.policy-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--navy);
  padding: 1.1rem;
  border-radius: var(--radius);
}
.policy-card h4 {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.policy-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   COMPARE GRID (Advantages / Limitations)
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.compare-col {
  padding: 1.5rem;
  border-radius: var(--radius);
}
.compare-pro {
  background: rgba(30,58,95,0.05);
  border: 1px solid rgba(30,58,95,0.15);
  border-top: 3px solid var(--navy);
}
.compare-con {
  background: rgba(196,98,45,0.05);
  border: 1px solid rgba(196,98,45,0.2);
  border-top: 3px solid var(--terra);
}
.compare-col h4 {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.compare-pro h4 { color: var(--navy); }
.compare-con h4 { color: var(--terra); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.compare-col li {
  font-size: 0.875rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius);
  line-height: 1.5;
}

/* ============================================================
   DISCUSSION PROMPT
   ============================================================ */
.discussion-prompt {
  background: var(--terra-light);
  border: 1px solid rgba(196,98,45,0.25);
  border-left: 4px solid var(--terra);
  padding: 1.1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 740px;
}

/* ============================================================
   INQUIRY QUESTIONS (Activity framing pills)
   ============================================================ */
.inquiry-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2.5rem;
}
.inquiry-q {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.45rem 1rem;
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
}

/* ============================================================
   ACTIVITY CARDS
   ============================================================ */
.activity-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}
.activity-header {
  background: var(--navy);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.activity-num {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--terra);
  color: #fff;
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  white-space: nowrap;
}
.activity-header h3 {
  font-family: var(--mono);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.activity-link {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.25);
  white-space: nowrap;
}
.activity-link:hover { color: var(--terra-light); }
.activity-link.small { font-size: 0.7rem; }
.activity-steps {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.step-num {
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--terra);
  min-width: 1.4rem;
  line-height: 1.75;
}
.step p { font-size: 0.9rem; margin: 0; line-height: 1.6; }
.activity-note {
  margin: 0 1.5rem 1.5rem;
  padding: 0.85rem 1rem;
  background: rgba(30,58,95,0.05);
  border-left: 3px solid var(--navy);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.two-activities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
}
.sub-activity h4 {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.sub-activity p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.activity-prompt { font-style: italic; }

/* ============================================================
   REFLECTIONS BOX
   ============================================================ */
.reflections-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-top: 3px solid var(--terra);
  padding: 2rem;
  margin-top: 1.5rem;
  border-radius: var(--radius);
}
.reflections-box h3 {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
}
.reflections-box ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.reflections-box li {
  font-family: var(--mono);
  font-size: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  line-height: 1.6;
}

/* ============================================================
   TWO-COLUMN LAYOUT (Critical Analysis)
   ============================================================ */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.text-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.more-resources { margin-top: 3rem; }
.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.resource-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.resource-card h4 {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.resource-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.resource-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  display: block;
  margin-bottom: 0.3rem;
  text-decoration: underline;
}

/* ============================================================
   SPATIAL JUSTICE
   ============================================================ */
.spatial-questions {
  background: var(--bg-white);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  max-width: 800px;
}
.spatial-questions p { font-family: var(--mono); font-size: 0.88rem; line-height: 1.7; }
.spatial-callout {
  font-family: var(--mono);
  font-size: 1.15rem !important;
  font-weight: 700;
  color: var(--navy);
  margin: 1rem 0 !important;
  padding: 0.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.spatial-tools {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}
.spatial-tool {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy);
  padding: 1.5rem;
  border-radius: var(--radius);
}
.spatial-tool h4 {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.spatial-tool p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.book-spotlight {
  background: var(--navy);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 600px;
  border-left: 5px solid var(--terra);
}
.book-spotlight-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 0.5rem !important;
}
.book-spotlight h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.book-spotlight p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ============================================================
   BOOKS GRID
   ============================================================ */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}
.book-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-color: var(--navy);
  text-decoration: none;
  color: inherit;
}
.book-info { padding: 1.25rem; }
.book-info h4 {
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.4;
}
.book-author {
  font-size: 0.8rem;
  color: var(--terra);
  margin-bottom: 0.2rem;
  font-style: normal;
}
.book-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.4;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem;
}
.site-footer .container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.site-footer .oer-badge { margin-bottom: 1rem; }
.footer-oer p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
}
.footer-citation {
  font-family: var(--mono);
  font-size: 0.75rem !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 0.5rem;
  line-height: 1.6 !important;
}
.footer-meta p {
  font-family: var(--mono);
  font-size: 0.75rem;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}
.footer-meta strong { color: rgba(255,255,255,0.85); font-weight: 600; }
.footer-meta a { color: rgba(255,255,255,0.6); }
.footer-meta a:hover { color: var(--terra-light); }
.footer-year { color: rgba(255,255,255,0.3) !important; margin-top: 1rem !important; }

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .two-col-layout,
  .two-quotes {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .nav-inner { flex-wrap: wrap; }
  .nav-links a { padding: 0.55rem 1.5rem; font-size: 0.78rem; }

  .hero { padding: 3.5rem 1.5rem 3rem; }
  .section { padding: 3rem 1.5rem; }
  .big-question { padding: 3.5rem 1.5rem; }

  .compare-grid,
  .two-activities,
  .site-footer .container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline { padding-left: 5.5rem; }
  .timeline::before { left: 4rem; }
  .timeline-item::before { left: -1.3rem; }
  .timeline-year { left: -5.2rem; width: 3.7rem; font-size: 0.68rem; }
}

@media (max-width: 540px) {
  .goals-grid,
  .concepts-grid,
  .policy-cards,
  .policy-points,
  .resource-cards,
  .spatial-tools,
  .books-grid {
    grid-template-columns: 1fr;
  }
  .inquiry-questions { flex-direction: column; }
  .inquiry-q { border-radius: var(--radius); }
  .hero-title { font-size: 1.25rem; }
}

/* ============================================================
   THEME: DIGITAL BRUTALIST
   Palette: white / black (#0a0a0a) / hard red (#e8000b)
   Fonts: Space Mono — mechanical, confrontational
   Aesthetic: protest zine meets German design annual
   ============================================================ */

[data-theme="brutalist"] {
  --bg:           #ffffff;
  --bg-alt:       #ebebeb;
  --bg-white:     #ffffff;
  --text:         #0a0a0a;
  --text-muted:   #444444;
  --navy:         #0a0a0a;
  --navy-dark:    #0a0a0a;
  --terra:        #e8000b;
  --terra-light:  #fff0ee;
  --border:       #0a0a0a;
  --border-light: #555555;
  --mono:         'Space Mono', 'Courier New', monospace;
  --serif:        'Space Mono', 'Courier New', monospace;
  --radius:       0px;
  --shadow:       none;
}

[data-theme="brutalist"] body { font-family: 'Space Mono', monospace; font-size: 0.95rem; }

/* Nav */
[data-theme="brutalist"] .site-nav { background: #0a0a0a; border-bottom: 4px solid #e8000b; }
[data-theme="brutalist"] .theme-toggle {
  color: #fff;
  border-color: #e8000b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
[data-theme="brutalist"] .theme-toggle:hover { background: #e8000b; border-color: #e8000b; color: #fff; }

/* AI Disclosure */
[data-theme="brutalist"] .ai-disclosure { background: #f5e03a; border-bottom: 3px solid #0a0a0a; color: #0a0a0a; }
[data-theme="brutalist"] .disclosure-label { color: #0a0a0a; }
[data-theme="brutalist"] .disclosure-link { color: #0a0a0a; }

/* Hero */
[data-theme="brutalist"] .hero { background: #fff; color: #0a0a0a; border-bottom: 5px solid #0a0a0a; padding-left: 3rem; }
[data-theme="brutalist"] .hero::before { display: none; }
[data-theme="brutalist"] .hero::after { background: #e8000b; width: 12px; }
[data-theme="brutalist"] .hero-title { color: #0a0a0a; font-size: clamp(1.6rem, 4vw, 3rem); line-height: 1.15; }
[data-theme="brutalist"] .hero-subtitle { color: #444; font-style: normal; font-family: 'Space Mono', monospace; font-size: 0.95rem; }
[data-theme="brutalist"] .hero-meta { color: #666; }
[data-theme="brutalist"] .hero-meta .sep { color: #e8000b; }
[data-theme="brutalist"] .hero-cta { background: #0a0a0a; text-transform: uppercase; letter-spacing: 0.1em; }
[data-theme="brutalist"] .hero-cta:hover { background: #e8000b; transform: none; box-shadow: 4px 4px 0 #0a0a0a; }
[data-theme="brutalist"] .oer-badge { background: #e8000b; border-color: #e8000b; color: #fff; letter-spacing: 0.14em; }

/* Big Questions */
[data-theme="brutalist"] .big-question { background: #f5e03a; border-top: 5px solid #0a0a0a; border-bottom: 5px solid #0a0a0a; }
[data-theme="brutalist"] .big-question blockquote { color: #0a0a0a; font-size: clamp(1.3rem, 3.5vw, 2.2rem); }
[data-theme="brutalist"] .big-question blockquote::before,
[data-theme="brutalist"] .big-question blockquote::after { color: #e8000b; }

/* Sections & Typography */
[data-theme="brutalist"] .section-title { font-size: clamp(1.4rem, 3vw, 2rem); text-transform: uppercase; letter-spacing: 0.04em; border-bottom: 4px solid #0a0a0a; color: #0a0a0a; }
[data-theme="brutalist"] .subsection-title { color: #0a0a0a; border-bottom: 2px solid #e8000b; padding-bottom: 0.3rem; }
[data-theme="brutalist"] .section-intro { font-family: 'Space Mono', monospace; }

/* Goals */
[data-theme="brutalist"] .goal-card { border: 2px solid #0a0a0a; border-top: 6px solid #e8000b; box-shadow: 5px 5px 0 #0a0a0a; }
[data-theme="brutalist"] .goal-card:hover { box-shadow: 5px 5px 0 #e8000b; }
[data-theme="brutalist"] .goal-num { opacity: 1; color: #e8000b; }

/* Discussion */
[data-theme="brutalist"] .discussion-list li { border-left: 6px solid #e8000b; background: #fff; border-top: 1px solid #0a0a0a; border-right: 1px solid #0a0a0a; border-bottom: 1px solid #0a0a0a; }
[data-theme="brutalist"] .discussion-prompt { background: #fff0ee; border-left: 6px solid #e8000b; border-top: 1px solid #e8000b; border-right: 1px solid #e8000b; border-bottom: 1px solid #e8000b; }

/* Definitions */
[data-theme="brutalist"] .definition-item { border: 2px solid #0a0a0a; background: #fff; }
[data-theme="brutalist"] .def-num { color: #e8000b; }
[data-theme="brutalist"] .definition-box { border: 2px solid #0a0a0a; border-top: 6px solid #0a0a0a; box-shadow: 5px 5px 0 #0a0a0a; }
[data-theme="brutalist"] .definition-box h3 { color: #0a0a0a; }
[data-theme="brutalist"] .definition-box cite { color: #444; }

/* Policy Points */
[data-theme="brutalist"] .policy-point { background: #0a0a0a; }
[data-theme="brutalist"] .policy-card { border: 2px solid #0a0a0a; border-left: 6px solid #0a0a0a; }
[data-theme="brutalist"] .policy-card h4 { color: #0a0a0a; }

/* Pull Quotes */
[data-theme="brutalist"] .pull-quote { border-left: 8px solid #e8000b; background: #fff; border-top: 1px solid #0a0a0a; border-right: 1px solid #0a0a0a; border-bottom: 1px solid #0a0a0a; }

/* Concepts */
[data-theme="brutalist"] .concept-card { background: #0a0a0a; border: 2px solid #0a0a0a; }
[data-theme="brutalist"] .concept-card h4 { color: #f5e03a; }

/* Quote blocks */
[data-theme="brutalist"] .quote-block { border: 2px solid #0a0a0a; }
[data-theme="brutalist"] .quote-block h3 { color: #e8000b; }

/* Timeline */
[data-theme="brutalist"] .timeline::before { background: #0a0a0a; width: 3px; }
[data-theme="brutalist"] .timeline-item::before { background: #e8000b; border-color: #e8000b; border-radius: 0; width: 12px; height: 12px; top: 0.85rem; }
[data-theme="brutalist"] .timeline-content { border: 2px solid #0a0a0a; }
[data-theme="brutalist"] .timeline-content strong { color: #0a0a0a; }

/* Compare */
[data-theme="brutalist"] .compare-pro { background: #fff; border: 2px solid #0a0a0a; border-top: 6px solid #0a0a0a; }
[data-theme="brutalist"] .compare-con { background: #fff0ee; border: 2px solid #e8000b; border-top: 6px solid #e8000b; }
[data-theme="brutalist"] .compare-col li { background: rgba(0,0,0,0.04); }

/* Inquiry Pills */
[data-theme="brutalist"] .inquiry-q { background: #0a0a0a; border: 2px solid #0a0a0a; border-radius: 0; text-transform: uppercase; letter-spacing: 0.06em; }

/* Activity Cards */
[data-theme="brutalist"] .activity-card { border: 2px solid #0a0a0a; box-shadow: 5px 5px 0 #0a0a0a; }
[data-theme="brutalist"] .activity-card:hover { box-shadow: 5px 5px 0 #e8000b; }
[data-theme="brutalist"] .activity-header { background: #0a0a0a; }
[data-theme="brutalist"] .activity-num { background: #e8000b; letter-spacing: 0.1em; }
[data-theme="brutalist"] .step { border: 1px solid #0a0a0a; background: #fff; }
[data-theme="brutalist"] .step-num { color: #e8000b; }
[data-theme="brutalist"] .activity-note { background: #ebebeb; border-left: 4px solid #0a0a0a; }

/* Reflections */
[data-theme="brutalist"] .reflections-box { border: 2px solid #0a0a0a; border-top: 6px solid #e8000b; }
[data-theme="brutalist"] .reflections-box h3 { color: #0a0a0a; }
[data-theme="brutalist"] .reflections-box li { border: 1px solid #0a0a0a; background: #fff; }

/* Resources */
[data-theme="brutalist"] .resource-card { border: 2px solid #0a0a0a; }
[data-theme="brutalist"] .resource-card h4 { color: #0a0a0a; }

/* Spatial */
[data-theme="brutalist"] .spatial-questions { border: 2px solid #0a0a0a; }
[data-theme="brutalist"] .spatial-callout { color: #0a0a0a; }
[data-theme="brutalist"] .spatial-tool { border: 2px solid #0a0a0a; border-top: 6px solid #0a0a0a; box-shadow: 4px 4px 0 #0a0a0a; }
[data-theme="brutalist"] .spatial-tool h4 { color: #0a0a0a; }
[data-theme="brutalist"] .book-spotlight { background: #0a0a0a; border-left: 8px solid #e8000b; }

/* Books */
[data-theme="brutalist"] .book-card { border: 2px solid #0a0a0a; }
[data-theme="brutalist"] .book-card:hover { border-color: #e8000b; box-shadow: 4px 4px 0 #e8000b; transform: none; }
[data-theme="brutalist"] .book-info h4 { color: #0a0a0a; }
[data-theme="brutalist"] .book-author { color: #e8000b; }

/* Footer */
[data-theme="brutalist"] .site-footer { background: #0a0a0a; border-top: 5px solid #e8000b; }
[data-theme="brutalist"] .footer-oer .oer-badge { background: #e8000b; border-color: #e8000b; }

/* ============================================================
   THEME: NEOCITIES / INDIEWEB
   Palette: deep space (#0d0221) / yellow (#ffff66) / cyan / magenta
   Fonts: VT323 (pixel) headings / Trebuchet MS body
   Aesthetic: personal homepage circa 2002, but make it academic
   ============================================================ */

[data-theme="neocities"] {
  --bg:           #0d0221;
  --bg-alt:       #160336;
  --bg-white:     #1a0540;
  --text:         #e8e0ff;
  --text-muted:   #b89acc;
  --navy:         #ffff66;
  --navy-dark:    #0d0221;
  --terra:        #ff66ff;
  --terra-light:  #3a0a5e;
  --border:       #6633cc;
  --border-light: #3d1a80;
  --mono:         'VT323', 'Courier New', monospace;
  --serif:        'Trebuchet MS', Verdana, sans-serif;
  --radius:       0px;
  --shadow:       2px 2px 0 #ff66ff;
}

/* Starfield body */
[data-theme="neocities"] body {
  background-color: #0d0221;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(255,255,255,0.95) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 48%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 38% 22%, rgba(255,255,255,0.85) 0%, transparent 100%),
    radial-gradient(1px 1px at 53% 68%, rgba(255,255,255,0.65) 0%, transparent 100%),
    radial-gradient(1px 1px at 68% 32%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 83% 78%, rgba(255,255,255,0.75) 0%, transparent 100%),
    radial-gradient(1px 1px at 93% 8%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 14% 82%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 58% 92%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1px 1px at 32% 58%, rgba(200,180,255,0.75) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 76% 44%, rgba(180,220,255,0.8) 0%, transparent 100%),
    radial-gradient(1px 1px at 4% 58%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 47% 5%, rgba(255,200,255,0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, rgba(200,255,255,0.7) 0%, transparent 100%);
  background-attachment: fixed;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
}

/* Nav */
[data-theme="neocities"] .site-nav { background: #000066; border-bottom: 3px solid #ffff00; border-top: 2px solid #ff00ff; }
[data-theme="neocities"] .nav-logo { color: #ffff00; font-family: 'VT323', monospace; font-size: 1.1rem; }
[data-theme="neocities"] .nav-logo:hover { color: #ff66ff; }
[data-theme="neocities"] .nav-links a { color: #00ffff; }
[data-theme="neocities"] .nav-links a:hover,
[data-theme="neocities"] .nav-links a.active { color: #ffff00; background: rgba(0,0,255,0.3); }
[data-theme="neocities"] .theme-toggle { color: #ffff66; border-color: #ff66ff; background: rgba(0,0,102,0.5); font-family: 'VT323', monospace; font-size: 0.9rem; letter-spacing: 0.06em; }
[data-theme="neocities"] .theme-toggle:hover { background: rgba(255,0,255,0.25); border-color: #ffff00; color: #fff; }

/* AI Disclosure */
[data-theme="neocities"] .ai-disclosure { background: #000033; border-bottom: 2px dashed #6633cc; color: #b89acc; }
[data-theme="neocities"] .disclosure-label { color: #ffff66; }
[data-theme="neocities"] .disclosure-link { color: #00ffff; }

/* Hero */
[data-theme="neocities"] .hero { background: linear-gradient(180deg, #000066 0%, #0d0221 100%); border-bottom: 4px solid #ff00ff; text-align: center; }
[data-theme="neocities"] .hero::before { display: none; }
[data-theme="neocities"] .hero::after { background: linear-gradient(90deg, #ff00ff, #00ffff, #ffff00, #ff00ff); width: 100%; height: 4px; top: auto; bottom: 0; left: 0; }
[data-theme="neocities"] .hero-title { font-family: 'VT323', monospace; font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 400; color: #ffff66; text-shadow: 2px 2px 0 #ff00ff, 4px 4px 0 rgba(0,0,200,0.4); max-width: 100%; }
[data-theme="neocities"] .hero-subtitle { color: #00ffff; font-style: normal; font-family: 'Trebuchet MS', Verdana, sans-serif; }
[data-theme="neocities"] .hero-meta { color: #b89acc; }
[data-theme="neocities"] .hero-meta .sep { color: #ff66ff; }
[data-theme="neocities"] .hero-cta { background: #ff00ff; color: #000; font-family: 'VT323', monospace; font-size: 1.2rem; letter-spacing: 0.1em; border: 2px solid #ffff00; animation: neo-pulse 2s ease-in-out infinite; }
[data-theme="neocities"] .hero-cta:hover { background: #ffff00; color: #000066; border-color: #ff00ff; transform: none; }
[data-theme="neocities"] .oer-badge { background: rgba(0,0,255,0.4); border-color: #00ffff; color: #00ffff; }

@keyframes neo-pulse {
  0%, 100% { box-shadow: 0 0 6px #ff00ff, 0 0 12px rgba(255,0,255,0.4); }
  50% { box-shadow: 0 0 14px #ff66ff, 0 0 28px rgba(255,0,255,0.5); }
}

/* Big Questions */
[data-theme="neocities"] .big-question { background: linear-gradient(135deg, #000066 0%, #160050 100%); border-top: 3px solid #ff00ff; border-bottom: 3px solid #00ffff; }
[data-theme="neocities"] .big-question blockquote { font-family: 'VT323', monospace; font-size: clamp(1.6rem, 4vw, 2.8rem); color: #ffff66; font-weight: 400; text-shadow: 1px 1px 0 #ff00ff; }
[data-theme="neocities"] .big-question blockquote::before,
[data-theme="neocities"] .big-question blockquote::after { color: #00ffff; }

/* Sections & Typography */
[data-theme="neocities"] .section-title { font-family: 'VT323', monospace; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; color: #ffff66; border-bottom: 2px solid #ff66ff; text-shadow: 1px 1px 0 rgba(255,0,255,0.4); }
[data-theme="neocities"] .subsection-title { font-family: 'VT323', monospace; font-size: 1.3rem; font-weight: 400; color: #00ffff; text-transform: none; letter-spacing: 0.03em; }
[data-theme="neocities"] .section-intro { color: #e8e0ff; }
[data-theme="neocities"] .citation { color: #b89acc; }

/* Goals */
[data-theme="neocities"] .goal-card { background: #1a0540; border: 2px solid #6633cc; border-top: 4px solid #ff66ff; box-shadow: 3px 3px 0 #ff66ff; }
[data-theme="neocities"] .goal-num { color: #ffff66; opacity: 1; }

/* Discussion */
[data-theme="neocities"] .discussion-list li { background: #1a0540; border-left: 4px solid #ff66ff; color: #e8e0ff; }
[data-theme="neocities"] .discussion-prompt { background: rgba(102,0,102,0.35); border-left: 4px solid #ff66ff; border-top: 1px solid #660066; border-right: 1px solid #660066; border-bottom: 1px solid #660066; color: #e8e0ff; }

/* Definitions */
[data-theme="neocities"] .definition-item { background: #160336; border: 1px solid #6633cc; }
[data-theme="neocities"] .def-num { color: #ffff66; }
[data-theme="neocities"] .def-example { color: #b89acc; }
[data-theme="neocities"] .definition-box { background: #1a0540; border: 2px solid #6633cc; border-top: 4px solid #00ffff; }
[data-theme="neocities"] .definition-box h3 { color: #00ffff; }
[data-theme="neocities"] .definition-box cite { color: #b89acc; }
[data-theme="neocities"] .premises-list li { border-bottom-color: #3d1a80; color: #e8e0ff; }

/* Policy Points */
[data-theme="neocities"] .policy-point { background: #000066; border-radius: 0; }
[data-theme="neocities"] .policy-card { background: #1a0540; border: 1px solid #6633cc; border-left: 4px solid #00ffff; }
[data-theme="neocities"] .policy-card h4 { color: #00ffff; }
[data-theme="neocities"] .policy-card p { color: #b89acc; }

/* Pull Quotes */
[data-theme="neocities"] .pull-quote { background: #1a0540; border-left: 4px solid #ff66ff; }
[data-theme="neocities"] .pull-quote p { color: #e8e0ff; }
[data-theme="neocities"] .pull-quote cite { color: #b89acc; }

/* Concepts */
[data-theme="neocities"] .concept-card { background: #000066; border: 2px solid #0000ff; }
[data-theme="neocities"] .concept-card h4 { color: #ffff66; }
[data-theme="neocities"] .concept-card p { color: rgba(255,255,255,0.8); }

/* Quote blocks */
[data-theme="neocities"] .quote-block { background: #1a0540; border: 2px solid #6633cc; }
[data-theme="neocities"] .quote-block h3 { color: #00ffff; }
[data-theme="neocities"] .quote-block blockquote { color: #e8e0ff; }
[data-theme="neocities"] .quote-block cite { color: #b89acc; }

/* Timeline */
[data-theme="neocities"] .timeline::before { background: #6633cc; }
[data-theme="neocities"] .timeline-item::before { background: #ff66ff; border-color: #ff66ff; }
[data-theme="neocities"] .timeline-content { background: #1a0540; border-color: #6633cc; }
[data-theme="neocities"] .timeline-content strong { color: #ffff66; }
[data-theme="neocities"] .timeline-content p { color: #b89acc; }
[data-theme="neocities"] .timeline-content a { color: #00ffff; }

/* Compare */
[data-theme="neocities"] .compare-pro { background: rgba(0,0,102,0.5); border: 2px solid #0000ff; border-top: 4px solid #00ffff; }
[data-theme="neocities"] .compare-pro h4 { color: #00ffff; }
[data-theme="neocities"] .compare-con { background: rgba(102,0,102,0.35); border: 2px solid #660066; border-top: 4px solid #ff66ff; }
[data-theme="neocities"] .compare-con h4 { color: #ff66ff; }
[data-theme="neocities"] .compare-col li { background: rgba(255,255,255,0.05); color: #e8e0ff; }

/* Inquiry Pills */
[data-theme="neocities"] .inquiry-q { background: #000066; border: 1px solid #ff66ff; border-radius: 0; color: #ffff66; }

/* Activity Cards */
[data-theme="neocities"] .activity-card { background: #1a0540; border: 2px solid #6633cc; box-shadow: 3px 3px 0 #ff66ff; }
[data-theme="neocities"] .activity-header { background: #000066; border-bottom: 2px solid #6633cc; }
[data-theme="neocities"] .activity-num { background: #ff66ff; color: #000; }
[data-theme="neocities"] .activity-link { color: #00ffff; }
[data-theme="neocities"] .activity-link:hover { color: #ffff66; }
[data-theme="neocities"] .step { background: #160336; border-color: #3d1a80; }
[data-theme="neocities"] .step p { color: #e8e0ff; }
[data-theme="neocities"] .step-num { color: #ffff66; }
[data-theme="neocities"] .activity-note { background: rgba(0,0,102,0.4); border-left: 3px solid #00ffff; color: #b89acc; }
[data-theme="neocities"] .activity-prompt { color: #b89acc; }
[data-theme="neocities"] .sub-activity h4 { color: #ffff66; }
[data-theme="neocities"] .sub-activity p { color: #b89acc; }

/* Reflections */
[data-theme="neocities"] .reflections-box { background: #160336; border: 2px solid #6633cc; border-top: 4px solid #ff66ff; }
[data-theme="neocities"] .reflections-box h3 { color: #ff66ff; }
[data-theme="neocities"] .reflections-box li { background: #1a0540; border-color: #3d1a80; color: #e8e0ff; }

/* Two-col / critical analysis */
[data-theme="neocities"] .two-col-layout p { color: #e8e0ff; }
[data-theme="neocities"] .text-link { color: #00ffff; }

/* Resources */
[data-theme="neocities"] .resource-card { background: #1a0540; border: 2px solid #6633cc; }
[data-theme="neocities"] .resource-card h4 { color: #ffff66; }
[data-theme="neocities"] .resource-card p { color: #b89acc; }
[data-theme="neocities"] .resource-link { color: #00ffff; }

/* Spatial */
[data-theme="neocities"] .spatial-questions { background: #1a0540; border: 2px solid #6633cc; }
[data-theme="neocities"] .spatial-questions p { color: #e8e0ff; }
[data-theme="neocities"] .spatial-callout { color: #ffff66; border-color: #6633cc; }
[data-theme="neocities"] .spatial-tool { background: #1a0540; border: 2px solid #6633cc; border-top: 4px solid #00ffff; }
[data-theme="neocities"] .spatial-tool h4 { color: #00ffff; }
[data-theme="neocities"] .spatial-tool p { color: #b89acc; }
[data-theme="neocities"] .book-spotlight { background: #000066; border-left: 4px solid #ff66ff; }
[data-theme="neocities"] .book-spotlight-label { color: #ff66ff; }
[data-theme="neocities"] .book-spotlight h3 { color: #ffff66; }
[data-theme="neocities"] .book-spotlight p { color: rgba(255,255,255,0.75); }

/* Books */
[data-theme="neocities"] .book-card { background: #1a0540; border: 2px solid #6633cc; color: #e8e0ff; }
[data-theme="neocities"] .book-card:hover { border-color: #ff66ff; box-shadow: 3px 3px 0 #ff66ff; transform: none; }
[data-theme="neocities"] .book-info h4 { color: #ffff66; }
[data-theme="neocities"] .book-author { color: #ff66ff; }
[data-theme="neocities"] .book-sub { color: #b89acc; }

/* Links */
[data-theme="neocities"] a { color: #00ccff; text-decoration-color: #6633cc; }
[data-theme="neocities"] a:hover { color: #ffff66; text-decoration-color: #ffff66; }

/* Footer */
[data-theme="neocities"] .site-footer { background: #000022; border-top: 4px solid #ff00ff; }
[data-theme="neocities"] .site-footer .oer-badge { background: rgba(0,0,255,0.4); border-color: #00ffff; color: #00ffff; }
[data-theme="neocities"] .footer-oer p { color: rgba(255,255,255,0.55); }
[data-theme="neocities"] .footer-citation { color: rgba(255,255,255,0.4) !important; }
[data-theme="neocities"] .footer-meta p { color: rgba(255,255,255,0.6); }
[data-theme="neocities"] .footer-meta strong { color: rgba(255,255,255,0.85); }
[data-theme="neocities"] .footer-meta a { color: #00ffff; }
