/* ==========================================================================
   PURE SWISS EDITORIAL DESIGN SYSTEM – VIDARO.CH × REGIOHAUS AG
   High Typography Craft, Architectural Lines, Generous Whitespace, Responsive
   ========================================================================== */

:root {
  --bg: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-dark: #0B0F19;
  --bg-dark-surface: #111827;
  
  --text: #0F172A;
  --text-muted: #475569;
  --text-dim: #94A3B8;
  --text-light: #F8FAFC;
  
  --gold: #C59B27;
  --gold-hover: #A37E1C;
  --gold-subtle: rgba(197, 155, 39, 0.08);
  --gold-border: rgba(197, 155, 39, 0.35);
  
  --accent-blue: #1D4ED8;
  --accent-blue-subtle: rgba(29, 78, 216, 0.08);
  
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --border-dark: #1E293B;
  
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --radius-sm: 4px;
  --radius: 6px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   Top Header Navigation
   ========================================================================== */
.header {
  height: 64px;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  background: #FFFFFF;
  z-index: 100;
  flex-shrink: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand-combo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.regiohaus-header-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

.vidaro-header-logo {
  height: 20px;
  width: auto;
  display: block;
}

.brand-separator {
  font-family: var(--font-mono);
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 300;
}

.header-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.header-client-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

.header-client-text strong {
  color: var(--text);
  font-weight: 600;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vps-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
  animation: pulseAnimation 2s infinite ease-in-out;
}

@keyframes pulseAnimation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.header-btn {
  background: #FFFFFF;
  border: 1px solid var(--border);
  color: var(--text);
  height: 32px;
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.15s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.header-btn:hover {
  background: #F8FAFC;
  color: var(--text);
  border-color: #CBD5E1;
}

.header-btn.active {
  background: var(--text);
  color: #FFFFFF;
  border-color: var(--text);
}

/* ==========================================================================
   Layout Architecture
   ========================================================================== */
.layout {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* Left Minimal Rail (Sidebar) */
.sidebar {
  width: 280px;
  border-right: 1px solid var(--border);
  background: var(--bg-subtle);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  overflow-y: auto;
}

.sidebar-section-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.module-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.module-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  border-left: 2px solid transparent;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.module-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}

.module-link.active {
  color: var(--text);
  font-weight: 600;
  border-left-color: var(--gold);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.module-idx {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-dim);
  width: 18px;
}

.module-link.active .module-idx {
  color: var(--gold);
  font-weight: 600;
}

.sidebar-footer-box {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 20px;
}

.sidebar-stat-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 3px 0;
  color: var(--text-muted);
}

.sidebar-stat-row span:last-child {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text);
}

/* ==========================================================================
   Main Stage & Slides
   ========================================================================== */
.stage {
  flex: 1;
  overflow: hidden;
  position: relative;
  background: var(--bg);
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateY(6px);
  display: flex;
  flex-direction: column;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 10;
}

.slide-scrollable {
  overflow-y: auto;
  scroll-behavior: smooth;
}

/* Custom Minimal Scrollbar */
.slide-scrollable::-webkit-scrollbar {
  width: 6px;
}
.slide-scrollable::-webkit-scrollbar-track {
  background: transparent;
}
.slide-scrollable::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}
.slide-scrollable::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.25);
}

.slide-body {
  padding: 36px 48px 24px 48px;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.slide-header {
  margin-bottom: 24px;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}

.headline-giant {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 8px;
}

.headline-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 860px;
}

.slide-footer {
  padding: 16px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  background: var(--bg);
  flex-shrink: 0;
}

/* ==========================================================================
   SLIDE 1: Fullscreen Hero
   ========================================================================== */
.hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 56px;
  color: #FFFFFF;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.68) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.2) 40%, rgba(11, 15, 25, 0.88) 100%);
  z-index: 2;
}

.hero-top-row {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-brand-glass {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 920px;
  margin-bottom: 24px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(197, 155, 39, 0.2);
  border: 1px solid var(--gold-border);
  color: #FDE047;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.hero-claim {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-desc {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 780px;
  font-weight: 400;
}

.hero-bottom-bar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.hero-stat-item strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.hero-stat-item span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   SLIDE 2: Ausgangslage & Analyse
   ========================================================================== */
.audit-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.audit-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.audit-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.audit-status-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.tag-strength {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
}

.tag-potential {
  background: #FEF3C7;
  color: #D97706;
  border: 1px solid #FDE68A;
}

.audit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}

.audit-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

.audit-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.audit-metric-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.metric-unit strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--text);
}

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

/* ==========================================================================
   SLIDE 3: 4-Phasen-Modell
   ========================================================================== */
.strat-pipeline-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strat-flow-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.strat-flow-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.strat-flow-step:hover {
  color: var(--text);
  background: #FFFFFF;
}

.strat-flow-step.active {
  color: var(--gold);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.strat-flow-num {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--border);
  color: var(--text);
  font-size: 10px;
}

.strat-flow-step.active .strat-flow-num {
  background: var(--gold);
  color: #FFFFFF;
}

.strat-flow-arrow {
  color: var(--text-dim);
  font-size: 12px;
}

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

.strat-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.strat-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.strat-card.active-phase {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-subtle), var(--shadow-md);
}

.strat-card-illu {
  height: 100px;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  background: #F1F5F9;
}

.strat-card-illu img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strat-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.strat-card-idx {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.strat-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.strat-card-sub {
  font-size: 10.5px;
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.strat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.strat-list li strong {
  color: var(--text);
}

.strat-card-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.strat-tag-pill {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-muted);
}

/* ==========================================================================
   SLIDE 4: GANTT Marketing- & Redaktionsplan
   ========================================================================== */
.gantt-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gantt-table-scroll {
  overflow-x: auto;
}

.gantt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 11.5px;
  min-width: 900px;
}

.gantt-table th, .gantt-table td {
  border: 1px solid var(--border-light);
  padding: 8px 10px;
  text-align: center;
}

.gantt-col-label {
  text-align: left !important;
  font-weight: 600;
  color: var(--text);
  width: 220px;
  background: #FFFFFF;
  position: sticky;
  left: 0;
  z-index: 2;
  border-right: 2px solid var(--border) !important;
}

.gantt-season-header {
  background: var(--bg-subtle);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px !important;
}

.gantt-kw-th {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  width: 48px;
}

.gantt-bar {
  padding: 5px 8px;
  border-radius: var(--radius-sm);
  font-size: 10.5px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bar-organic {
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
}

.bar-paid {
  background: #FEF3C7;
  border: 1px solid #FDE68A;
  color: #B45309;
}

.bar-events {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #15803D;
}

.bar-content {
  background: #F5F3FF;
  border: 1px solid #DDD6FE;
  color: #6D28D9;
}

/* ==========================================================================
   SLIDE 5: KI-Kompass
   ========================================================================== */
.ki-matrix-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.ki-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: all 0.15s ease;
}

.ki-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}

.ki-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ki-card-head-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ki-card-icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.ki-card-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
}

.ki-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-subtle);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}

.ki-card-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.ki-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.ki-card-list li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
  display: inline-block;
  width: 12px;
}

/* ==========================================================================
   SLIDE 6: Werte & DNA
   ========================================================================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.value-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

/* ==========================================================================
   SLIDE 7: Warum Vidaro.ch (PortalDesk)
   ========================================================================== */
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.roadmap-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roadmap-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.roadmap-card-kw {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
}

.roadmap-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  color: var(--text-dim);
}

.roadmap-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

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

.roadmap-card-footer {
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.roadmap-tag-pill {
  background: var(--gold-subtle);
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ==========================================================================
   SLIDE 8: Referenzen Hub
   ========================================================================== */
.ref-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ref-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.15s ease;
}

.ref-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-2px);
}

.ref-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  height: 36px;
}

.ref-card-logo-img {
  max-height: 28px;
  max-width: 140px;
  object-fit: contain;
}

.ref-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-dim);
  text-transform: uppercase;
}

.ref-title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.ref-desc {
  font-size: 12px;
  line-height: 1.4;
  color: var(--text-muted);
}

.ref-pill {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

/* ==========================================================================
   SLIDE 9: Team
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
}

.team-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-card-photo {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: top center;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
}

.team-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.team-card-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.team-card-desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
}

.team-card-footer {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

.team-tag-pill {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   SLIDE 10: Roadmap & Slogan Statement
   ========================================================================== */
.slogan-statement-box {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slogan-pair {
  display: flex;
  align-items: center;
  gap: 36px;
}

.slogan-unit-kicker {
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.slogan-unit-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.slogan-unit-text.gold {
  color: var(--gold);
}

/* ==========================================================================
   Presenter Notes Overlay & Modals
   ========================================================================== */
.notes-drawer {
  position: fixed;
  bottom: 0;
  left: 280px;
  right: 0;
  background: rgba(11, 15, 25, 0.94);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border-top: 1px solid var(--border-dark);
  padding: 16px 36px;
  z-index: 200;
  display: none;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.notes-drawer.open {
  display: block;
}

.notes-title {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: #FDE047;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

/* Bottom Controls */
.bottom-control-bar {
  position: fixed;
  bottom: 16px;
  right: 24px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.ctrl-btn {
  background: transparent;
  border: 1px solid var(--border);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: bold;
  transition: all 0.15s ease;
}

.ctrl-btn:hover {
  background: var(--bg-subtle);
  border-color: var(--border-dark);
}

.ctrl-progress {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  padding: 0 8px;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 1024px) {
  .sidebar {
    width: 220px;
    padding: 16px 12px;
  }
  .slide-body {
    padding: 24px 24px 16px 24px;
  }
  .headline-giant {
    font-size: 24px;
  }
  .strat-grid, .values-grid, .ki-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-claim {
    font-size: 34px;
  }
  .notes-drawer {
    left: 220px;
  }
}
