/* ============================================
   THE UNDERSTANDING — understanding.media
   Design System & Global Styles
   v1.0 — March 2026
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Variables --- */
:root {
  --bg-primary: #0a0e1a;
  --bg-secondary: #111827;
  --bg-card: #1a2035;
  --bg-accent: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-gold: #d4a853;
  --border-color: #1e293b;
  --border-subtle: rgba(241,245,249,0.06);

  --witness: #f43f5e;
  --keeper: #10b981;
  --architect: #3b82f6;
  --chronicler: #a78bfa;

  --font-headline: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  --content-width: 680px;
  --page-width: 1080px;
  --nav-height: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.7;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--text-primary); }

/* --- Typography --- */
h1, h2, h3 { color: var(--text-primary); }

h1 {
  font-family: var(--font-headline);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

p { margin-bottom: 1rem; }

.label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-primary);
}

/* --- Layout --- */
.container {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.content-width {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section + .section {
  border-top: 1px solid var(--border-color);
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}

.nav-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  text-decoration: none;
}

.nav-logo .t { color: var(--accent-gold); }
.nav-logo .interpunct { color: var(--accent-gold); margin: 0 0.1em; font-size: 1.3em; line-height: 1; }
.nav-logo .u { color: var(--text-primary); }

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-subscribe {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bg-primary) !important;
  background: var(--accent-gold);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  transition: opacity 0.2s;
}

.nav-subscribe:hover {
  opacity: 0.88;
  color: var(--bg-primary) !important;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
}

/* --- Hero / Cover --- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 120%;
  background: radial-gradient(ellipse at center top, rgba(212,168,83,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.hero-label {
  margin-bottom: 2.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 800px;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-positioning {
  font-family: var(--font-headline);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-style: italic;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 3rem;
}

/* --- Page Header (non-hero pages) --- */
.page-header {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  text-align: center;
}

.page-header .label {
  margin-bottom: 1rem;
  display: block;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header .lead {
  max-width: 620px;
  margin: 0 auto;
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0;
}

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

.card h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

/* --- Personality Cards --- */
.personality-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  margin: 1.5rem 0;
}

.personality-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.personality-card.witness::before { background: var(--witness); }
.personality-card.keeper::before { background: var(--keeper); }
.personality-card.architect::before { background: var(--architect); }
.personality-card.chronicler::before { background: var(--chronicler); }

.persona-name {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.persona-domain {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.witness .persona-name, .witness .persona-domain { color: var(--witness); }
.keeper .persona-name, .keeper .persona-domain { color: var(--keeper); }
.architect .persona-name, .architect .persona-domain { color: var(--architect); }
.chronicler .persona-name, .chronicler .persona-domain { color: var(--chronicler); }

.voice-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}

.voice-tags span {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
}

.witness .voice-tags span { background: rgba(244,63,94,0.1); color: var(--witness); }
.keeper .voice-tags span { background: rgba(16,185,129,0.1); color: var(--keeper); }
.architect .voice-tags span { background: rgba(59,130,246,0.1); color: var(--architect); }
.chronicler .voice-tags span { background: rgba(167,139,250,0.1); color: var(--chronicler); }

/* --- Example Blocks --- */
.example-block {
  background: var(--bg-primary);
  border-left: 3px solid var(--border-color);
  padding: 1.25rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0 6px 6px 0;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
}

.witness .example-block { border-left-color: var(--witness); }
.keeper .example-block { border-left-color: var(--keeper); }
.architect .example-block { border-left-color: var(--architect); }
.chronicler .example-block { border-left-color: var(--chronicler); }

/* --- Voices Strip (homepage + voices hub) --- */
.voices-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .voices-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .voices-strip { grid-template-columns: 1fr; }
}

.voice-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.voice-tile:hover {
  transform: translateY(-2px);
}

.voice-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.voice-tile.witness::before { background: var(--witness); }
.voice-tile.witness:hover { border-color: rgba(244,63,94,0.3); }
.voice-tile.keeper::before { background: var(--keeper); }
.voice-tile.keeper:hover { border-color: rgba(16,185,129,0.3); }
.voice-tile.architect::before { background: var(--architect); }
.voice-tile.architect:hover { border-color: rgba(59,130,246,0.3); }
.voice-tile.chronicler::before { background: var(--chronicler); }
.voice-tile.chronicler:hover { border-color: rgba(167,139,250,0.3); }

.voice-tile .color-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.witness .color-dot { background: var(--witness); }
.keeper .color-dot { background: var(--keeper); }
.architect .color-dot { background: var(--architect); }
.chronicler .color-dot { background: var(--chronicler); }

.voice-tile h3 {
  font-family: var(--font-headline);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.voice-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Article Cards --- */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.article-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s;
}

.article-card:hover {
  border-color: var(--accent-gold);
}

.article-card .color-bar {
  width: 4px;
  min-height: 60px;
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}

.article-card .color-bar.witness { background: var(--witness); }
.article-card .color-bar.keeper { background: var(--keeper); }
.article-card .color-bar.architect { background: var(--architect); }
.article-card .color-bar.chronicler { background: var(--chronicler); }

.article-card .article-meta {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.article-card .article-meta .personality {
  font-weight: 500;
}

.article-card .article-meta .personality.witness { color: var(--witness); }
.article-card .article-meta .personality.keeper { color: var(--keeper); }
.article-card .article-meta .personality.architect { color: var(--architect); }
.article-card .article-meta .personality.chronicler { color: var(--chronicler); }

.article-card .article-meta .date {
  color: var(--text-muted);
  margin-left: 0.75rem;
}

.article-card h3 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.article-card .article-excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .article-card { flex-direction: column; gap: 0.75rem; }
  .article-card .color-bar { width: 100%; min-height: 3px; }
}

/* --- Newsletter Signup --- */
.signup-block {
  background: linear-gradient(135deg, rgba(212,168,83,0.06) 0%, rgba(212,168,83,0.01) 100%);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 10px;
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
}

.signup-block h3 {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.signup-block p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.signup-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.signup-form input[type="email"]:focus {
  border-color: var(--accent-gold);
}

.signup-form input[type="email"]::placeholder {
  color: var(--text-muted);
}

.signup-form button {
  padding: 0.7rem 1.5rem;
  background: var(--accent-gold);
  color: var(--bg-primary);
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.signup-form button:hover {
  opacity: 0.88;
}

@media (max-width: 480px) {
  .signup-form { flex-direction: column; }
}

/* --- Process Steps --- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
  position: relative;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.process-step:last-child { border-bottom: none; }

.step-number {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  min-width: 2rem;
  padding-top: 0.15rem;
}

.step-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* --- Glossary --- */
.glossary-entry {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.glossary-entry:last-child { border-bottom: none; }

.glossary-entry h3 {
  font-family: var(--font-headline);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.glossary-answer {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 2px solid var(--accent-gold);
}

.glossary-context {
  font-size: 0.92rem;
  color: var(--text-secondary);
}

/* --- Pillar Page --- */
.pillar-header {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
}

.pillar-header .label {
  margin-bottom: 1rem;
  display: block;
}

/* --- Tables --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.88rem;
}

th {
  text-align: left;
  padding: 0.65rem 1rem;
  background: var(--bg-accent);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-color);
}

td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  vertical-align: top;
}

tr:last-child td { border-bottom: none; }

/* --- Lists --- */
ul, ol {
  margin: 1rem 0 1rem 1.25rem;
  color: var(--text-secondary);
}

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

/* --- Do / Don't Grid --- */
.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

@media (max-width: 700px) { .do-dont { grid-template-columns: 1fr; } }

.do-col, .dont-col {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
}

.do-col { border-top: 3px solid var(--keeper); }
.dont-col { border-top: 3px solid var(--witness); }
.do-col h4 { color: var(--keeper); }
.dont-col h4 { color: var(--witness); }

/* --- Highlight Block --- */
.highlight {
  background: linear-gradient(135deg, rgba(212,168,83,0.06) 0%, rgba(212,168,83,0.02) 100%);
  border: 1px solid rgba(212,168,83,0.18);
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
}

.highlight h3 {
  color: var(--accent-gold);
  margin-top: 0;
}

/* --- Filter Bar --- */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}

.filter-btn {
  padding: 0.4rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover, .filter-btn.active {
  color: var(--text-primary);
  border-color: var(--accent-gold);
  background: rgba(212,168,83,0.08);
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-brand .nav-logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 0.35rem; }

.footer-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.footer-col a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin: 0;
}

.ai-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 4px;
}

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }
.fade-up-d5 { animation-delay: 0.5s; }

/* --- Utility --- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.color-witness { color: var(--witness); }
.color-keeper { color: var(--keeper); }
.color-architect { color: var(--architect); }
.color-chronicler { color: var(--chronicler); }

/* --- Pillar Grid (for homepage / pillars index) --- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (max-width: 768px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.pillar-tile {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
}

.pillar-tile:hover {
  border-color: rgba(212,168,83,0.3);
  transform: translateY(-2px);
}

.pillar-tile h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.pillar-tile p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Voice Profile (individual personality page) --- */
.voice-profile-header {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
}

.voice-profile-header .color-dot-lg {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.voice-profile-header h1 {
  margin-bottom: 0.25rem;
}

.voice-profile-header .domain-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.voice-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.voice-section:last-child { border-bottom: none; }

.voice-section h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
