/* ==========================================================================
   EXECUTIVEPERSONA DESIGN SYSTEM (VANILLA CSS)
   ========================================================================== */

:root {
  --bg-base: #0a0b0e;
  --bg-surface: #12141c;
  --bg-panel: rgba(22, 26, 38, 0.65);
  --border-light: rgba(255, 255, 255, 0.07);
  --border-focus: rgba(99, 102, 241, 0.4);
  
  /* Harmonious Sleek Accents */
  --accent-primary: #6366f1; /* Indigo */
  --accent-primary-glow: rgba(99, 102, 241, 0.15);
  --accent-secondary: #06b6d4; /* Cyan */
  --accent-success: #10b981; /* Emerald */
  --accent-warning: #f59e0b; /* Amber */
  --accent-danger: #ef4444; /* Coral Red */
  
  /* Typography */
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Text */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  /* Layout sizes */
  --sidebar-width: 280px;
  --header-height: 70px;
  --border-radius: 12px;
  
  /* Shadows & Filters */
  --shadow-premium: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  --glass-blur: blur(12px);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

body {
  background-color: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

/* Layout Shell */
.app-container {
  display: flex;
  height: 100vh;
  width: 100vw;
}

/* Sidebar Styling */
.sidebar {
  width: var(--sidebar-width);
  background-color: var(--bg-surface);
  border-right: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  z-index: 10;
}

.sidebar-brand {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
}

.brand-logo {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.brand-info h2 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-info span {
  font-size: 11px;
  color: var(--text-dim);
  display: block;
}

.sidebar-menu {
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
  overflow-y: auto;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-icon {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.menu-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
}

.menu-item:hover .menu-icon {
  transform: translateX(2px);
}

.menu-item.active {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.02) 100%);
  border-left: 3px solid var(--accent-primary);
  color: var(--text-main);
  font-weight: 600;
}

.menu-item.active .menu-icon {
  color: var(--accent-primary);
  opacity: 1;
}

.active-advisor-card {
  padding: 20px;
  border-top: 1px solid var(--border-light);
  background-color: rgba(0, 0, 0, 0.15);
}

.active-advisor-card .card-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.advisor-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.advisor-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-premium);
}

.advisor-details h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.advisor-details p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Main Workspace Structure */
.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100vh;
}

/* Top Header */
.app-header {
  height: var(--header-height);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background-color: var(--bg-surface);
  flex-shrink: 0;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator.online {
  background-color: var(--accent-success);
  box-shadow: 0 0 8px var(--accent-success);
  animation: pulse-glow 2s infinite;
}

/* Advisor Council Horizontal Panel */
.advisor-council-section {
  padding: 20px 32px 16px 32px;
  background-color: rgba(18, 20, 28, 0.4);
  border-bottom: 1px solid var(--border-light);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.advisor-scroll-wrapper {
  overflow-x: auto;
  padding-bottom: 4px;
}

.advisor-grid {
  display: flex;
  gap: 12px;
  width: max-content;
}

.advisor-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 250px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: var(--glass-blur);
}

.advisor-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.advisor-card.selected {
  border-color: var(--accent-primary);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.02) 100%);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.advisor-card .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 13px;
}

.advisor-card-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.advisor-card-info p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Workspace Viewport & Panes */
.workspace-viewport {
  flex-grow: 1;
  overflow-y: auto;
  padding: 32px;
  position: relative;
}

.workspace-pane {
  display: none;
  flex-direction: column;
  gap: 24px;
  animation: fadeIn 0.4s ease;
  min-height: 100%;
}

.workspace-pane.active {
  display: flex;
}

/* Pane Headers */
.pane-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.pane-header h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pane-header p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Welcome Banner (Command Center) */
.welcome-banner {
  margin-bottom: 8px;
}

.welcome-banner h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 30%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.welcome-banner p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 6px;
}

/* Glass Panels */
.glass-panel {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 24px;
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-premium);
  transition: border-color 0.3s ease;
}

.glass-panel:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

/* Common UI Grids */
.pane-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.pane-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Forms & Inputs */
.workspace-textarea {
  width: 100%;
  height: 250px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  resize: none;
  outline: none;
  transition: all 0.3s ease;
}

.workspace-textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px var(--accent-primary-glow);
}

.dropdown {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown:focus {
  border-color: var(--accent-primary);
}

.dropdown.full-width, .text-input.full-width {
  width: 100%;
}

.text-input {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.text-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px var(--accent-primary-glow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), #4f46e5);
  color: #fff;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-icon {
  padding: 10px 16px;
}

.btn-block {
  width: 100%;
}

/* Command Quick Input (Discovery Matrix Home) */
.command-input-container {
  width: 100%;
  margin: 10px 0 20px 0;
}

.input-glow-wrapper {
  position: relative;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-light);
  padding: 8px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.input-glow-wrapper:focus-within {
  border-color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

.input-glow-wrapper textarea {
  width: 100%;
  height: 90px;
  background: transparent;
  border: none;
  resize: none;
  outline: none;
  color: var(--text-main);
  padding: 12px;
  font-family: var(--font-body);
  font-size: 15px;
}

.input-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Discovery Scenario Matrix */
.discovery-matrix {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.matrix-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  padding: 24px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.matrix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.matrix-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.matrix-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.matrix-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Color codes for matrix card icons */
.error-glow {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-danger);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.warning-glow {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-warning);
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.info-glow {
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(99, 102, 241, 0.2);
}
.success-glow {
  background: rgba(16, 185, 129, 0.1);
  color: var(--accent-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Empty States */
.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 250px;
  text-align: center;
  color: var(--text-dim);
  border: 2px dashed rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 30px;
}

/* Modals */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 500px;
  max-width: 90vw;
  border-color: rgba(255, 255, 255, 0.12);
  animation: modalSlideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover {
  color: #fff;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.help-text {
  font-size: 11px;
  color: var(--text-dim);
}

/* Outputs & Interactive Elements */
.output-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.output-header h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
}

.output-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-light);
}

.tag.primary {
  background-color: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.3);
  color: #a5b4fc;
}

.action-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
  padding: 12px;
  border-radius: 8px;
  cursor: grab;
}

.checklist-item input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
}

.checklist-item label {
  font-size: 13.5px;
  cursor: pointer;
}

/* De-coder Output Layout */
.decoder-block {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
}

.decoder-block.incoming {
  border-left: 3px solid var(--accent-danger);
}

.decoder-block.translation {
  border-left: 3px solid var(--accent-secondary);
}

.decoder-block h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.decoder-block.incoming h4 { color: var(--accent-danger); }
.decoder-block.translation h4 { color: var(--accent-secondary); }

.decoder-block p {
  font-size: 13.5px;
}

.gauge-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gauge-card {
  background-color: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.gauge-val {
  font-size: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 4px;
}

.val-high { color: var(--accent-danger); }
.val-med { color: var(--accent-warning); }
.val-low { color: var(--accent-success); }

/* Stakeholder Matrix Specifics */
.stakeholder-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 24px;
  height: 520px;
}

.stakeholder-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  height: 420px;
  padding-right: 4px;
}

.stakeholder-item-card {
  background-color: rgba(0,0,0,0.15);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s ease;
}

.stakeholder-item-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.sh-item-info h4 {
  font-size: 14px;
  font-weight: 600;
}

.sh-item-info p {
  font-size: 11.5px;
  color: var(--text-muted);
}

.sh-item-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge.supportive { background-color: rgba(16, 185, 129, 0.15); color: #6ee7b7; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge.neutral { background-color: rgba(245, 158, 11, 0.15); color: #fcd34d; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge.opposed { background-color: rgba(239, 68, 68, 0.15); color: #fca5a5; border: 1px solid rgba(239, 68, 68, 0.3); }

/* Stakeholder visual matrix */
.matrix-grid-visual {
  position: relative;
  width: 100%;
  height: 280px;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-top: 10px;
  background-color: rgba(0,0,0,0.1);
  overflow: hidden;
}

.matrix-axis {
  position: absolute;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.matrix-axis.y-axis {
  top: 50%;
  left: 6px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
}

.matrix-axis.x-axis {
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.matrix-quadrants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  width: 100%;
  height: 100%;
  padding: 16px 20px 20px 24px;
}

.quadrant {
  border: 1px dashed rgba(255,255,255,0.03);
  position: relative;
  padding: 8px;
  display: flex;
  flex-direction: column;
}

.quadrant.quad-1 { border-bottom: 1px solid rgba(255,255,255,0.07); border-right: 1px solid rgba(255,255,255,0.07); }
.quadrant.quad-2 { border-bottom: 1px solid rgba(255,255,255,0.07); }
.quadrant.quad-3 { border-right: 1px solid rgba(255,255,255,0.07); }

.quad-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
}

.quad-bubble-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  align-content: flex-start;
}

.sh-bubble {
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 20px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.sh-bubble:hover {
  border-color: var(--accent-primary);
  transform: scale(1.05);
}

.sh-bubble.active {
  border-color: var(--accent-primary);
  background-color: rgba(99, 102, 241, 0.15);
  box-shadow: 0 0 8px rgba(99, 102, 241, 0.2);
}

.advisor-matrix-recommendation {
  background-color: rgba(99, 102, 241, 0.04);
  border: 1px solid rgba(99, 102, 241, 0.15);
  border-radius: 8px;
  padding: 16px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recommendation-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.advisor-tag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.recommendation-header h4 {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-main);
}

.advisor-matrix-recommendation p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.brand-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.brand-form-group label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.brand-textarea {
  width: 100%;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 13.5px;
  resize: none;
  outline: none;
  transition: all 0.3s ease;
}

.brand-textarea:focus {
  border-color: var(--accent-primary);
}

.narrative-card {
  background-color: rgba(255,255,255,0.01);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  font-size: 13.5px;
  line-height: 1.5;
  white-space: pre-wrap;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
  .pane-grid-2, .stakeholder-layout {
    grid-template-columns: 1fr;
    height: auto;
  }
  .stakeholder-layout {
    height: auto;
  }
  .stakeholder-list {
    height: 300px;
  }
}
