/* ═══════════════════════════════════════════════════════════
   CRIAR SIN CULPAS WORKSPACE · LG ECOSYSTEM
   Design System · All Styles
═══════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Brand accents */
  --coral: #F96F6E;
  --coral-dim: rgba(249,111,110,0.15);
  --coral-mid: rgba(249,111,110,0.4);
  --teal: #2ED3C6;
  --teal-dim: rgba(46,211,198,0.12);
  --teal-mid: rgba(46,211,198,0.4);

  /* Dark luxury surfaces */
  --canvas: #050505;
  --page: #0E0C0A;
  --panel: #141210;
  --panel-2: #1a1714;
  --panel-3: #201d19;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.13);

  /* Typography / text */
  --text-primary: rgba(245,240,235,0.96);
  --text-secondary: rgba(245,240,235,0.70);
  --text-muted: rgba(245,240,235,0.40);
  --text-dim: rgba(245,240,235,0.22);

  /* Fonts */
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-coral: 0 0 32px rgba(249,111,110,0.2);
  --shadow-teal: 0 0 32px rgba(46,211,198,0.15);

  /* System bar height */
  --sys-bar-h: 60px;

  /* Transitions */
  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.38s cubic-bezier(0.4,0,0.2,1);
}

/* ── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ── SVG ICON SYSTEM ──────────────────────────────────── */

/* Quick action icons */
.qa-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--coral);
  display: block;
  margin: 0 auto;
}

/* Media asset card icons */
.mai-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-muted);
  display: block;
  margin: 0 auto;
  transition: stroke var(--transition);
}
.media-asset-item:hover .mai-icon svg { stroke: var(--coral); }

/* Inline meta icons (language, date, pages) */
.meta-svg {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -1px;
  stroke: var(--text-muted);
  flex-shrink: 0;
}

/* Contact band icons */
.scb-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--coral);
  display: inline-block;
  vertical-align: middle;
}

/* File drop zone icon */
.fdz-icon svg {
  stroke: var(--text-muted);
  display: block;
  margin: 0 auto;
  transition: stroke var(--transition);
}
.file-drop-zone:hover .fdz-icon svg { stroke: var(--coral); }

/* ── UTILITY CLASSES ──────────────────────────────────── */
.coral { color: var(--coral); }
.teal { color: var(--teal); }

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 24px;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #e85e5d;
  box-shadow: var(--shadow-coral);
  transform: translateY(-1px);
}
.btn-primary.small { font-size: 11px; padding: 7px 16px; }
.btn-primary.full { width: 100%; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-strong);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--coral);
  color: var(--coral);
  background: var(--coral-dim);
}
.btn-ghost.small { font-size: 11px; padding: 6px 14px; }

/* ── GATE / ENTRY SCREEN ──────────────────────────────── */
.gate-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--canvas);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gate-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(249,111,110,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(46,211,198,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.gate-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  max-width: 480px;
  width: 100%;
  animation: gateReveal 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes gateReveal {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.gate-logo {
  margin-bottom: var(--space-xl);
}

.gate-monogram {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--coral);
  border: 1px solid var(--coral-mid);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  margin-bottom: 10px;
}

.gate-brand-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.gate-lg-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.gate-portrait {
  margin: 0 auto var(--space-xl);
  width: 120px;
  height: 120px;
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 2px solid var(--coral-mid);
  box-shadow: var(--shadow-coral);
}

.gate-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #1a1714 0%, #2a2420 100%);
}

/* Fallback for portrait images that fail to load */
.hero-portrait, .gate-portrait-img {
  background: linear-gradient(135deg, rgba(249,111,110,0.2) 0%, rgba(46,211,198,0.1) 100%);
}

.gate-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.1;
}

.gate-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.gate-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-lg);
}

.gate-langs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-lg);
}

.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.lang-btn.active {
  color: var(--coral);
  border-color: var(--coral-mid);
}

/* ── SYSTEM BAR ──────────────────────────────────────── */
.sys-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--sys-bar-h);
  background: rgba(5,5,5,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 var(--space-xl);
  gap: var(--space-md);
  z-index: 900;
}

.sys-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.sys-monogram {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--coral);
  border: 1px solid var(--coral-mid);
  border-radius: var(--r-pill);
  padding: 3px 10px;
  cursor: pointer;
  transition: all var(--transition);
}
.sys-monogram:hover { background: var(--coral-dim); }

.sys-workspace-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.sys-workspace-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.sys-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--r-md);
  transition: all var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-item:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.05);
}
.nav-item.active {
  color: var(--coral);
  background: var(--coral-dim);
}

.sys-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.sys-lang-toggle {
  display: flex;
  background: var(--panel);
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  overflow: hidden;
}

.sys-lang {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 5px 10px;
  transition: all var(--transition);
  cursor: pointer;
}
.sys-lang.active {
  background: var(--coral);
  color: #fff;
}

.sys-notif {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.sys-notif:hover { color: var(--text-primary); background: var(--panel); }
.sys-notif svg { width: 18px; height: 18px; }

.notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: var(--r-pill);
}

.sys-avatar {
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--coral), #c94b4a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.mobile-menu-btn {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.mobile-menu-btn svg { width: 20px; height: 20px; }
.mobile-menu-btn:hover { color: var(--text-primary); background: var(--panel); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--sys-bar-h);
  left: 0; right: 0;
  background: var(--panel);
  border-bottom: 1px solid var(--border);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 850;
}
.mobile-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 14px;
  border-radius: var(--r-md);
  display: block;
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--coral); background: var(--coral-dim); }

/* ── WORKSPACE SHELL ──────────────────────────────────── */
.workspace {
  min-height: 100vh;
}

.workspace-main {
  padding-top: var(--sys-bar-h);
  min-height: calc(100vh - 48px);
}

/* ── SECTIONS ─────────────────────────────────────────── */
.ws-section {
  display: none;
  min-height: calc(100vh - var(--sys-bar-h) - 48px);
  padding: var(--space-2xl) var(--space-xl);
  max-width: 1200px;
  margin: 0 auto;
  animation: sectionReveal 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
.ws-section.active { display: block; }

@keyframes sectionReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  margin-bottom: var(--space-2xl);
  max-width: 640px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════
   HOME SECTION
═══════════════════════════════════════════════════════ */

/* HERO ZONE */
.hero-zone {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-2xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
  padding-top: var(--space-xl);
}

.hero-portrait-col {
  flex-shrink: 0;
}

.hero-portrait-wrap {
  position: relative;
  width: 200px;
  height: 200px;
}

.hero-portrait {
  width: 200px;
  height: 200px;
  border-radius: var(--r-pill);
  object-fit: cover;
  border: 2.5px solid var(--border-strong);
  box-shadow: var(--shadow-coral);
  position: relative;
  z-index: 1;
}

.hero-portrait-ring {
  position: absolute;
  inset: -8px;
  border-radius: var(--r-pill);
  border: 1px solid var(--coral-mid);
  animation: ringPulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.01); }
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.hero-role {
  font-size: 14px;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: var(--space-xl);
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.hero-meta-strip {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.meta-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.status-live { color: var(--teal); }

/* SNAPSHOT BAND */
.snapshot-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl) var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.snapshot-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.snapshot-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

.snapshot-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* HOME ARTIFACTS */
.home-artifacts {
  margin-bottom: var(--space-2xl);
}

.home-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.home-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.see-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--coral);
  cursor: pointer;
  transition: all var(--transition);
  background: none;
  border: none;
}
.see-all:hover { opacity: 0.7; }

.artifacts-grid-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.artifact-card-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  cursor: pointer;
  transition: all var(--transition);
}
.artifact-card-mini:hover {
  border-color: var(--border-strong);
  background: var(--panel-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.acard-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.acard-dot.coral { background: var(--coral); }
.acard-dot.teal { background: var(--teal); }

.acard-content { flex: 1; }

.acard-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.acard-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  line-height: 1.3;
}

.acard-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.acard-arrow {
  font-size: 16px;
  color: var(--text-dim);
  transition: all var(--transition);
}
.artifact-card-mini:hover .acard-arrow { color: var(--coral); transform: translateX(3px); }

/* QUICK ACTIONS */
.quick-actions-band {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.qa-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.qa-item:hover {
  border-color: var(--coral-mid);
  background: var(--coral-dim);
  transform: translateY(-2px);
}

.qa-icon { font-size: 22px; margin-bottom: 8px; }

.qa-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.qa-sub {
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════
   ARTIFACTS SECTION
═══════════════════════════════════════════════════════ */
.artifacts-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover { color: var(--text-primary); border-color: var(--border-strong); }
.filter-btn.active {
  background: var(--coral-dim);
  border-color: var(--coral-mid);
  color: var(--coral);
}

.artifacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.artifact-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.artifact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral-mid), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.artifact-card:hover { border-color: var(--border-strong); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.artifact-card:hover::before { opacity: 1; }

.artifact-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-2xl);
  align-items: stretch;
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border-color: var(--border-strong);
  padding: var(--space-xl);
}
.artifact-card.featured::before { opacity: 0.6; }

.featured-col-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: var(--space-xl);
  border-right: 1px solid var(--border);
}

.featured-col-left .ac-title {
  font-size: 36px;
  line-height: 1.08;
}

.featured-col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
}

.ac-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ac-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.ac-type.speaking { background: var(--coral-dim); color: var(--coral); }
.ac-type.strategy { background: var(--teal-dim); color: var(--teal); }
.ac-type.brand { background: rgba(150,100,240,0.12); color: #a78bfa; }

.ac-status {
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
}

.ac-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.ac-code {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

.ac-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.ac-meta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ac-meta-item {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.ac-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ac-lg-note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.artifact-add-cta {
  background: linear-gradient(135deg, var(--panel) 0%, var(--panel-2) 100%);
  border: 1px dashed var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
  text-align: center;
}

.add-cta-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.add-cta-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   SPEAKING SECTION
═══════════════════════════════════════════════════════ */
.speaking-hero-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  align-items: start;
}

/* Two-image col layout */
.speaking-img-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.speaking-img-frame {
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
}

.speaking-img-main {
  flex: 1;
}

.speaking-img-secondary {
  flex-shrink: 0;
}

.speaking-main-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.speaking-secondary-img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.speaking-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 100%);
  padding: 24px 16px 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.speaking-keynote-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--text-primary);
  margin: 10px 0 16px;
  line-height: 1.15;
}

.speaking-keynote-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-xl);
}

.speaking-topics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-xl);
}

.topic-chip {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal);
  background: var(--teal-dim);
  border: 1px solid rgba(46,211,198,0.2);
  border-radius: var(--r-pill);
  padding: 5px 12px;
}

.speaking-formats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: var(--space-xl);
}

.format-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.format-dot {
  font-size: 8px;
  margin-top: 5px;
  flex-shrink: 0;
}
.format-dot.coral { color: var(--coral); }
.format-dot.teal { color: var(--teal); }

.format-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.format-sub {
  font-size: 12px;
  color: var(--text-muted);
}

/* TALKS GRID */
.talks-grid-section { margin-bottom: var(--space-2xl); }

.talks-grid-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.01em;
}

.talks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.talk-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  transition: all var(--transition);
}
.talk-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.talk-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.6;
}
.talk-number.coral { color: var(--coral); }
.talk-number.teal { color: var(--teal); }

.talk-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.talk-desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.talk-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 4px 10px;
}

/* MEDIA ASSETS */
.media-assets-section { margin-bottom: var(--space-2xl); }

.media-assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.media-assets-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.media-asset-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}
.media-asset-item:hover {
  border-color: var(--coral-mid);
  background: var(--coral-dim);
}

.mai-icon { font-size: 24px; margin-bottom: 10px; }
.mai-label { font-size: 13px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; line-height: 1.3; }
.mai-sub { font-size: 10px; color: var(--text-muted); font-family: 'Courier New', monospace; }

/* Podcast image thumbnail inside media asset card */
.media-asset-item--podcast {
  padding: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
}

.mai-thumb-wrap {
  width: 100%;
  flex: 1;
  overflow: hidden;
  min-height: 80px;
}

.mai-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--transition);
}

.media-asset-item--podcast:hover .mai-thumb {
  transform: scale(1.04);
}

.media-asset-item--podcast .mai-label,
.media-asset-item--podcast .mai-sub {
  padding: 8px 12px 4px;
}

.media-asset-item--podcast .mai-sub {
  padding-bottom: 10px;
}

/* SPEAKING CONTACT BAND */
.speaking-contact-band {
  background: linear-gradient(135deg, rgba(249,111,110,0.08) 0%, rgba(46,211,198,0.05) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--space-xl) var(--space-2xl);
}

.scb-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}

.scb-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.scb-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.scb-contacts {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.scb-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-primary);
}

.scb-icon { color: var(--coral); font-style: normal; }

/* ═══════════════════════════════════════════════════════
   GROWTH SECTION
═══════════════════════════════════════════════════════ */
.growth-hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
}

.revenue-scenario-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.revenue-scenario-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.revenue-scenario-card.featured-scenario {
  border-color: var(--coral-mid);
  background: linear-gradient(135deg, var(--panel) 0%, rgba(249,111,110,0.06) 100%);
  box-shadow: var(--shadow-coral);
}

.rs-recommended {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.rs-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.rs-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--coral);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.rs-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.rs-growth {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

/* GROWTH MIX */
.growth-mix-section, .growth-docs-section, .growth-priorities-band { margin-bottom: var(--space-2xl); }

.growth-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.01em;
}

.mix-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mix-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--transition);
}
.mix-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }

.mix-pct {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1;
}
.mix-pct.coral { color: var(--coral); }
.mix-pct.teal { color: var(--teal); }

.mix-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.mix-desc {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* GROWTH DOCS */
.growth-docs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.growth-doc-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.growth-doc-card:hover {
  border-color: var(--teal-mid);
  transform: translateY(-3px);
  box-shadow: var(--shadow-teal);
}

.gdc-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.gdc-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
}

.gdc-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  flex: 1;
}

.gdc-meta {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.gdc-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: all var(--transition);
}
.growth-doc-card:hover .gdc-cta { transform: translateX(4px); }

/* GROWTH PRIORITIES */
.growth-priorities-band {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
}

.gp-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.gp-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gp-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  min-width: 36px;
  line-height: 1;
}
.gp-num.coral { color: var(--coral); }
.gp-num.teal { color: var(--teal); }

.gp-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  padding-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   BRAND VAULT SECTION
═══════════════════════════════════════════════════════ */
.vault-csc-vizid-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-2xl);
  align-items: center;
  background: linear-gradient(135deg, var(--panel) 0%, rgba(249,111,110,0.05) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-2xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.vcvb-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}

.vcvb-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.vcvb-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: var(--space-xl);
}

.vcvb-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.token-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.tmg-color {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
}

.tmg-fonts {
  text-align: center;
}

.tmg-font-serif {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tmg-font-sans {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-muted);
}

/* VAULT TOKENS */
.vault-tokens-section, .vault-type-section, .vault-voice-section, .vault-bios-section {
  margin-bottom: var(--space-2xl);
}

.vault-section-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: var(--space-xl);
}

.tokens-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.token-group {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tg-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.4;
}

.tg-swatch {
  width: 100%;
  height: 40px;
  border-radius: var(--r-md);
}

.tg-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.tg-value {
  font-size: 10px;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
}

/* TYPE DEMO */
.type-demo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.type-demo-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
}

.td-sample {
  margin-bottom: 14px;
  line-height: 1;
}
.td-sample.serif {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.td-sample.sans {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 300;
  color: var(--text-primary);
}

.td-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.td-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* VOICE RULES */
.voice-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.voice-rule {
  border-radius: var(--r-2xl);
  padding: var(--space-xl);
  border: 1px solid;
}
.voice-rule.do {
  background: var(--teal-dim);
  border-color: rgba(46,211,198,0.2);
}
.voice-rule.dont {
  background: rgba(100,100,100,0.05);
  border-color: var(--border);
}

.vr-icon {
  font-size: 22px;
  margin-bottom: 10px;
}
.voice-rule.do .vr-icon { color: var(--teal); }
.voice-rule.dont .vr-icon { color: var(--text-muted); }

.vr-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.vr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vr-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 14px;
  position: relative;
}
.vr-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-dim);
}

/* BIO ACCORDION */
.bio-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bio-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}
.bio-item:hover { border-color: var(--border-strong); }

.bio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.bio-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.bio-toggle {
  font-size: 20px;
  color: var(--coral);
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition);
}

.bio-content {
  display: none;
  padding: 0 20px 16px;
  border-top: 1px solid var(--border);
}
.bio-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
  margin-top: 14px;
}

.bio-item.open .bio-toggle { transform: rotate(45deg); }
.bio-item.open .bio-content { display: block; }

/* ═══════════════════════════════════════════════════════
   SIGNAL ROOM SECTION
═══════════════════════════════════════════════════════ */
.signal-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
}

.signal-feed-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
}

.sf-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.sf-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal);
}
.sf-tag.live { animation: livePulse 2s ease-in-out infinite; }

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.signal-feed {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.signal-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--r-lg);
  background: var(--panel);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.signal-item:hover { border-color: var(--border-strong); }
.signal-item.new { border-left: 2px solid var(--coral); }

.si-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  margin-top: 5px;
}
.si-dot.coral { background: var(--coral); }
.si-dot.teal { background: var(--teal); }

.si-content { flex: 1; }

.si-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.si-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.si-meta {
  font-size: 11px;
  color: var(--text-muted);
}

/* Signal sidebar */
.signal-decisions-panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.sdp-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.sdp-list { display: flex; flex-direction: column; gap: 14px; }

.sdp-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.sdp-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
  margin-top: 6px;
}
.sdp-dot.coral { background: var(--coral); }
.sdp-dot.teal { background: var(--teal); }

.sdp-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.sdp-sub {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}

.signal-quick-actions {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-lg);
}

.sqa-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.sqa-btn {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 6px;
}
.sqa-btn:hover { color: var(--coral); border-color: var(--coral-mid); background: var(--coral-dim); }

/* ═══════════════════════════════════════════════════════
   REQUESTS SECTION
═══════════════════════════════════════════════════════ */
.requests-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
}

.request-form-header {
  margin-bottom: var(--space-xl);
}

.rfh-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.rfh-sub {
  font-size: 14px;
  color: var(--text-secondary);
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

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

.form-select, .form-input, .form-textarea {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}
.form-select:focus, .form-input:focus, .form-textarea:focus {
  border-color: var(--coral-mid);
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select option { background: var(--panel); }

.priority-selector {
  display: flex;
  gap: 8px;
}

.priority-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.priority-btn:hover { border-color: var(--border-strong); color: var(--text-primary); }
.priority-btn.active {
  background: var(--coral-dim);
  border-color: var(--coral-mid);
  color: var(--coral);
}

.file-drop-zone {
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--panel);
}
.file-drop-zone:hover { border-color: var(--coral-mid); background: var(--coral-dim); }

.fdz-icon { font-size: 24px; margin-bottom: 10px; }

.fdz-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.fdz-sub { font-size: 11px; color: var(--text-muted); }

.form-lg-note {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

/* Request history */
.rhp-header {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.request-history-list { display: flex; flex-direction: column; gap: 6px; }

.rh-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 12px 14px;
}

.rh-dot {
  width: 8px; height: 8px;
  border-radius: var(--r-pill);
  flex-shrink: 0;
}
.rh-dot.coral { background: var(--coral); }
.rh-dot.teal { background: var(--teal); }

.rh-content { flex: 1; }

.rh-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.rh-meta { font-size: 11px; color: var(--text-muted); }

.rh-status-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-pill);
}
.rh-status-badge.done {
  background: var(--teal-dim);
  color: var(--teal);
}
.rh-status-badge.wip {
  background: var(--coral-dim);
  color: var(--coral);
}

/* ── FOOTER ──────────────────────────────────────────── */
.ws-footer {
  height: 48px;
  background: var(--panel);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-xl);
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.wf-center { color: var(--text-dim); font-size: 10px; }

/* ── TOAST ──────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--panel-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-primary);
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  animation: toastIn 0.3s cubic-bezier(0.4,0,0.2,1) forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.toast-icon {
  color: var(--teal);
  font-size: 18px;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .quick-actions-band { grid-template-columns: repeat(3, 1fr); }
  .tokens-grid { grid-template-columns: repeat(3, 1fr); }
  .mix-grid { grid-template-columns: repeat(2, 1fr); }
  .talks-grid { grid-template-columns: repeat(2, 1fr); }
  .snapshot-stats { grid-template-columns: repeat(2, 1fr); }
  .snapshot-band { grid-template-columns: 1fr; gap: var(--space-xl); }
  .signal-grid, .requests-grid { grid-template-columns: 1fr; }
  .artifact-card.featured { flex-direction: column; }
}

@media (max-width: 768px) {
  :root { --space-xl: 24px; --space-2xl: 40px; --space-3xl: 64px; }
  .ws-section { padding: var(--space-xl) var(--space-md); }
  .sys-bar { padding: 0 var(--space-md); }
  .sys-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-zone { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .hero-meta-strip { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .artifacts-grid-mini { grid-template-columns: 1fr; }
  .artifacts-grid { grid-template-columns: 1fr; }
  .speaking-hero-band { grid-template-columns: 1fr; }
  .talks-grid { grid-template-columns: 1fr; }
  .growth-hero-strip { grid-template-columns: 1fr; }
  .mix-grid { grid-template-columns: repeat(2, 1fr); }
  .growth-docs-grid { grid-template-columns: 1fr; }
  .type-demo-grid { grid-template-columns: 1fr; }
  .voice-rules-grid { grid-template-columns: 1fr; }
  .tokens-grid { grid-template-columns: repeat(2, 1fr); }
  .media-assets-grid,
  .media-assets-grid-5 { grid-template-columns: repeat(3, 1fr); }
  .media-assets-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .ws-footer { flex-direction: column; height: auto; padding: var(--space-md); gap: 4px; text-align: center; }
  .wf-center { display: none; }
  .vault-csc-vizid-banner { grid-template-columns: 1fr; }
  .quick-actions-band { grid-template-columns: repeat(2, 1fr); }
  .hero-portrait-wrap, .hero-portrait { width: 140px; height: 140px; }
}

@media (max-width: 480px) {
  .gate-inner { padding: var(--space-xl) var(--space-md); }
  .gate-actions { flex-direction: column; }
  .scb-contacts { flex-direction: column; gap: var(--space-sm); }
  .quick-actions-band { grid-template-columns: 1fr; }
}
