/* ═══════════════════════════════════════════════════════════════
   DEPLOY SIMULATION — About Page Sections
   ═══════════════════════════════════════════════════════════════
   A. Deploy Simulation Console
   B. Industry Transformation Viewer
   C. System Map Timeline
   D. Deployment Terminal CTA
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   A. DEPLOY SIMULATION CONSOLE
   ═══════════════════════════════════════════════════════════════ */

.deploy-sim-section {
  padding: 100px 0;
  position: relative;
}

.deploy-sim-console {
  background: rgba(5, 5, 10, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 800px;
  margin: 48px auto 0;
  overflow: hidden;
}

/* ── Console Top Bar ── */
.deploy-sim-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.deploy-sim-bar-dot {
  width: 12px;
  height: 3px;
  border-radius: 1px;
}

.deploy-sim-bar-dot:nth-child(1) { background: rgba(139, 92, 246, 0.35); }
.deploy-sim-bar-dot:nth-child(2) { background: rgba(139, 92, 246, 0.25); }
.deploy-sim-bar-dot:nth-child(3) { background: rgba(139, 92, 246, 0.15); }

.deploy-sim-bar-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.deploy-sim-bar-status {
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--emerald);
  animation: statusPulse 2s ease infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(16, 185, 129, 0); }
  50%      { opacity: 0.6; box-shadow: 0 0 8px rgba(16, 185, 129, 0.5); }
}

/* ── Console Body ── */
.deploy-sim-body {
  padding: 24px;
}

/* ── Client Brief ── */
.deploy-sim-brief {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.deploy-sim-brief.visible {
  opacity: 1;
  transform: none;
}

.deploy-sim-brief-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #3B82F6;
  margin-bottom: 8px;
}

.deploy-sim-brief-details {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Feed Lines ── */
.deploy-sim-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.deploy-sim-feed-line {
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
}

.deploy-sim-feed-line.visible {
  opacity: 1;
  transform: none;
}

.feed-timestamp {
  color: var(--text-faint);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.feed-agent {
  font-weight: 700;
  min-width: 80px;
  text-shadow: 0 0 8px currentColor;
}

.feed-arrow {
  color: var(--text-faint);
}

.feed-msg {
  color: var(--text-dim);
}

/* ── Progress Bar ── */
.deploy-sim-progress-track {
  height: 3px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}

.deploy-sim-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  background: linear-gradient(90deg, #8B5CF6, #06b6d4);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Result ── */
.deploy-sim-result {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.6s ease;
  text-align: center;
  margin-top: 32px;
}

.deploy-sim-result.visible {
  opacity: 1;
  transform: none;
}

.deploy-sim-live-banner {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--emerald);
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
  letter-spacing: 0.1em;
}

.deploy-sim-time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* ── Browser Preview ── */
.deploy-sim-preview {
  margin-top: 24px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a0a12;
}

.deploy-sim-preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.deploy-sim-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.deploy-sim-preview-dot:nth-child(1) { background: rgba(139, 92, 246, 0.3); }
.deploy-sim-preview-dot:nth-child(2) { background: rgba(139, 92, 246, 0.2); }
.deploy-sim-preview-dot:nth-child(3) { background: rgba(139, 92, 246, 0.12); }

.deploy-sim-preview-url {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  margin-left: 8px;
}

/* ── Mock Site Scene ── */
.deploy-sim-preview-scene {
  height: 220px;
  position: relative;
  padding: 20px;
  background: linear-gradient(180deg, #0a0a12, #0f0f18);
  overflow: hidden;
}

.mock-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 32px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.mock-nav::before {
  content: '';
  width: 40px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.mock-nav::after {
  content: '';
  margin-left: auto;
  width: 72px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    -32px 0 0 rgba(255, 255, 255, 0.06),
    32px 0 0 rgba(255, 255, 255, 0.06);
}

.mock-hero {
  position: absolute;
  top: 48px;
  left: 20px;
  right: 20px;
}

.mock-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 50%;
}

.mock-heading::before {
  content: '';
  display: block;
  width: 100%;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.mock-heading::after {
  content: '';
  display: block;
  width: 66%;
  height: 10px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.mock-accent {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin-top: 12px;
}

.mock-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  width: 45%;
  height: 80px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
}

.mock-cta {
  width: 80px;
  height: 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, #8B5CF6, #06b6d4);
  margin-top: 16px;
}

.mock-cards {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
}

.mock-card {
  flex: 1;
  height: 40px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ── Deploy Button ── */
.deploy-sim-btn {
  display: block;
  margin: 24px auto 0;
  padding: 14px 40px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.deploy-sim-btn:hover {
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.4);
  transform: translateY(-1px);
}

.deploy-sim-btn.running {
  opacity: 0.6;
  pointer-events: none;
  animation: deployPulse 2s ease infinite;
}

@keyframes deployPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(124, 58, 237, 0); }
  50%      { box-shadow: 0 0 20px rgba(124, 58, 237, 0.3); }
}


/* ═══════════════════════════════════════════════════════════════
   B. INDUSTRY TRANSFORMATION VIEWER
   ═══════════════════════════════════════════════════════════════ */

.industry-viewer-section {
  padding: 100px 0;
  position: relative;
}

/* ── Tabs ── */
.industry-viewer-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.industry-tab {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.industry-tab:hover {
  color: var(--text-dim);
  border-color: rgba(124, 58, 237, 0.3);
}

.industry-tab.active {
  border-color: rgba(124, 58, 237, 0.5);
  color: var(--text-bright);
  background: rgba(124, 58, 237, 0.1);
}

/* ── Viewer Frame ── */
.industry-viewer-frame {
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.industry-preview-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.industry-preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.industry-preview-dot:nth-child(1) { background: rgba(139, 92, 246, 0.3); }
.industry-preview-dot:nth-child(2) { background: rgba(139, 92, 246, 0.2); }
.industry-preview-dot:nth-child(3) { background: rgba(139, 92, 246, 0.12); }

.industry-url {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--text-faint);
  margin-left: 8px;
  transition: opacity 0.15s ease;
}

/* ── Preview Scene ── */
.industry-preview-scene {
  position: relative;
  height: clamp(360px, 50vw, 520px);
  overflow: hidden;
}

.industry-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.industry-layer.active {
  opacity: 1;
  pointer-events: auto;
}

/* ── Industry Layer Backgrounds ── */
.industry-layer[data-industry="lifestyle"] { background: #f5f0e8; }
.industry-layer[data-industry="restaurant"] { background: #1a1210; }
.industry-layer[data-industry="saas"] { background: #0a0a14; }
.industry-layer[data-industry="luxury"] { background: #050505; }
.industry-layer[data-industry="agency"] { background: #0a0f1a; }

/* ── Assembly Overlay ── */
.industry-assembly {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 15, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.industry-assembly.active {
  opacity: 1;
  pointer-events: auto;
}

.assembly-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.assembly-line {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(139, 92, 246, 0.7);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.35s ease;
}

.assembly-line.visible {
  opacity: 1;
  transform: none;
}

.assembly-line.done {
  color: var(--emerald);
}

/* ── Shared IL Components ── */
.il-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
  z-index: 2;
}

.il-nav--cream { background: rgba(0, 0, 0, 0.03); }
.il-nav--dark-warm { background: rgba(0, 0, 0, 0.3); border-bottom: 1px solid rgba(232, 168, 124, 0.15); }
.il-nav--dark-tech { background: rgba(0, 0, 0, 0.4); border-bottom: 1px solid rgba(139, 92, 246, 0.1); }
.il-nav--luxury { background: transparent; justify-content: center; gap: 40px; }
.il-nav--agency { background: rgba(0, 0, 0, 0.3); border-bottom: 2px solid rgba(255, 107, 74, 0.3); }

.il-logo {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
}

.il-nav--cream .il-logo { color: rgba(40, 30, 20, 0.8); }

.il-nav-link {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.il-nav--cream .il-nav-link { color: rgba(0, 0, 0, 0.3); }
.il-nav--luxury .il-nav-link { color: rgba(255, 255, 255, 0.2); font-size: 7px; letter-spacing: 0.12em; }

/* ── Hero ── */
.il-hero {
  position: absolute;
  top: 36px;
  left: 0;
  right: 0;
  padding: 28px 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.il-hero--cream { background: transparent; }
.il-hero--restaurant { justify-content: center; background: linear-gradient(180deg, #2a1a10 0%, #1a1210 100%); }
.il-hero--saas { justify-content: center; background: linear-gradient(180deg, rgba(139,92,246,0.06) 0%, transparent 100%); }
.il-hero--luxury { justify-content: center; padding-top: 40px; }
.il-hero--agency { padding-right: 40%; }

.il-hero-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.il-hero-img {
  width: 45%;
  height: 80px;
  border-radius: 6px;
  flex-shrink: 0;
}

.il-title {
  font-family: var(--font-display);
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.9);
}

.il-title--dark { color: rgba(30, 20, 10, 0.85); }
.il-title--luxury { font-weight: 300; letter-spacing: 0.08em; font-size: clamp(16px, 3vw, 24px); }
.il-title--agency { font-size: clamp(14px, 2.8vw, 22px); }

.il-subtitle {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
}

.il-subtitle--dark { color: rgba(60, 40, 20, 0.5); }

/* ── Buttons ── */
.il-btn {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-top: 4px;
  width: fit-content;
}

.il-btn--sm {
  padding: 4px 12px;
  font-size: 7px;
}

.il-btn--outline-gold {
  background: transparent !important;
  border: 1px solid #d4af37;
  color: #d4af37 !important;
  letter-spacing: 0.15em;
}

/* ── Section Label ── */
.il-section-label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 24px;
  position: absolute;
  left: 0;
}

/* Position section labels below hero content */
.industry-layer[data-industry="restaurant"] .il-section-label { top: 190px; }
.industry-layer[data-industry="saas"] .il-section-label { top: 200px; }
.industry-layer[data-industry="agency"] .il-section-label { top: 170px; }

/* ── Grid ── */
.il-grid {
  display: grid;
  gap: 10px;
  padding: 0 24px;
  position: absolute;
  left: 0;
  right: 0;
}

.il-grid--2col { grid-template-columns: 1fr 1fr; }
.il-grid--3col { grid-template-columns: 1fr 1fr 1fr; }

/* Position grids below section labels */
.industry-layer[data-industry="lifestyle"] .il-grid { bottom: 20px; }
.industry-layer[data-industry="restaurant"] .il-grid { top: 210px; }
.industry-layer[data-industry="saas"] .il-grid { bottom: 20px; padding: 0 24px; }
.industry-layer[data-industry="luxury"] .il-grid { bottom: 20px; }
.industry-layer[data-industry="agency"] .il-grid { top: 190px; }

/* ── Text Variants ── */
.il-text--dark { color: rgba(30, 20, 10, 0.8); }
.il-text--muted-dark { color: rgba(80, 60, 40, 0.5); }

/* ═══ LIFESTYLE — Product Cards ═══ */
.il-product-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 6px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.il-product-card--cream {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.il-product-img {
  width: 100%;
  height: 48px;
  border-radius: 4px;
}

.il-product-name {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
}

.il-product-price {
  font-family: var(--font-mono);
  font-size: 8px;
}

/* ═══ RESTAURANT — Dish Cards ═══ */
.il-dish-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 168, 124, 0.1);
  border-radius: 6px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.il-dish-img {
  width: 100%;
  height: 40px;
  border-radius: 4px;
}

.il-dish-name {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.il-dish-price {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #e8a87c;
}

.il-hours-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: rgba(0, 0, 0, 0.4);
  border-top: 1px solid rgba(232, 168, 124, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 8px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* ═══ SAAS — Metrics + Chart ═══ */
.il-metrics-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  position: absolute;
  left: 0;
  right: 0;
  top: 220px;
}

.il-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.il-metric-num {
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 800;
}

.il-metric-label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.il-chart-placeholder {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.il-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.5), rgba(6, 182, 212, 0.3));
  border-radius: 3px 3px 0 0;
  min-height: 4px;
}

/* ═══ LUXURY — Products ═══ */
.il-luxury-label {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(212, 175, 55, 0.5);
  margin-bottom: 4px;
}

.il-gold-line {
  width: 50px;
  height: 1px;
  background: #d4af37;
  margin: 8px auto;
}

.il-luxury-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.il-luxury-img {
  width: 100%;
  height: 64px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.il-luxury-name {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
}

.il-luxury-price {
  font-family: var(--font-mono);
  font-size: 8px;
  color: #d4af37;
}

/* ═══ AGENCY — Case Studies + Clients ═══ */
.il-case-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.il-case-metric {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.il-case-label {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.il-clients-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.il-client-logo {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.15);
}

/* ── Viewer Meta ── */
.industry-viewer-meta {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════════════
   C. SYSTEM MAP TIMELINE
   ═══════════════════════════════════════════════════════════════ */

.system-map-section {
  padding: 100px 0;
  position: relative;
}

.system-map-timeline {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
  padding: 40px 0;
}

/* ── Center Line ── */
.system-map-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(-50%);
}

.system-map-line-fill {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  background: var(--emerald);
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  height: 100%;
  transition: transform 0.1s linear;
}

/* ── Nodes ── */
.system-map-node {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
}

.system-map-node:last-child {
  margin-bottom: 0;
}

.system-map-node:nth-child(odd) {
  padding-right: calc(50% + 40px);
  padding-left: 0;
  text-align: right;
}

.system-map-node:nth-child(even) {
  padding-left: calc(50% + 40px);
  padding-right: 0;
  text-align: left;
}

/* ── Dot ── */
.system-map-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  z-index: 2;
}

.system-map-dot.active {
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
  scale: 1.2;
}

/* ── Content ── */
.system-map-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.system-map-content.visible {
  opacity: 1;
  transform: none;
}

.system-map-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 8px;
  display: block;
}

.system-map-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.system-map-content p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 320px;
}

.system-map-node:nth-child(odd) .system-map-content p {
  margin-left: auto;
}

.system-map-node:nth-child(even) .system-map-content p {
  margin-right: auto;
}

/* ── Tags ── */
.system-map-tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.system-map-node:nth-child(odd) .system-map-tags {
  justify-content: flex-end;
}

.system-map-node:nth-child(even) .system-map-tags {
  justify-content: flex-start;
}

.system-map-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-light);
  padding: 4px 10px;
  border: 1px solid rgba(var(--purple-rgb), 0.2);
  border-radius: var(--radius-full);
  background: rgba(var(--purple-rgb), 0.06);
}


/* ═══════════════════════════════════════════════════════════════
   D. DEPLOYMENT TERMINAL CTA
   ═══════════════════════════════════════════════════════════════ */

.deploy-cta-section {
  padding: 100px 0;
  position: relative;
}

.deploy-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.deploy-cta-panel {
  background: rgba(5, 5, 10, 0.85);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.deploy-cta-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.deploy-cta-bar-dot {
  width: 12px;
  height: 3px;
  border-radius: 1px;
}

.deploy-cta-bar-dot:nth-child(1) { background: rgba(139, 92, 246, 0.35); }
.deploy-cta-bar-dot:nth-child(2) { background: rgba(139, 92, 246, 0.25); }
.deploy-cta-bar-dot:nth-child(3) { background: rgba(139, 92, 246, 0.15); }

.deploy-cta-bar-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.deploy-cta-body {
  padding: 48px 40px;
}

.deploy-cta-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-bright);
  margin-bottom: 20px;
}

.deploy-cta-prompt {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  display: block;
}

.deploy-cta-cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--purple-light);
  vertical-align: text-bottom;
  margin-left: 4px;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

.deploy-cta-btn {
  display: block;
  width: 100%;
  padding: 18px 40px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.deploy-cta-btn:hover {
  box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}


/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .deploy-sim-section,
  .industry-viewer-section,
  .system-map-section,
  .deploy-cta-section {
    padding: 80px 0;
  }

  .deploy-sim-console,
  .industry-viewer-frame,
  .system-map-timeline,
  .deploy-cta-inner {
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 768px) {
  .deploy-sim-section,
  .industry-viewer-section,
  .system-map-section,
  .deploy-cta-section {
    padding: 64px 0;
  }

  /* Timeline → left-aligned */
  .system-map-line {
    left: 24px;
  }

  .system-map-line-fill {
    left: 24px;
  }

  .system-map-dot {
    left: 24px;
  }

  .system-map-node:nth-child(odd),
  .system-map-node:nth-child(even) {
    padding-left: 56px;
    padding-right: 0;
    text-align: left;
  }

  .system-map-node:nth-child(odd) .system-map-content p,
  .system-map-node:nth-child(even) .system-map-content p {
    margin-left: 0;
    margin-right: 0;
  }

  .system-map-node:nth-child(odd) .system-map-tags,
  .system-map-node:nth-child(even) .system-map-tags {
    justify-content: flex-start;
  }

  .system-map-node {
    margin-bottom: 56px;
  }

  /* Console */
  .deploy-sim-console,
  .deploy-cta-inner {
    margin-left: 16px;
    margin-right: 16px;
  }

  .deploy-sim-body {
    padding: 16px;
  }

  .deploy-sim-feed-line {
    font-size: 11px;
    gap: 8px;
  }

  .feed-agent {
    min-width: 60px;
  }

  .deploy-cta-body {
    padding: 32px 24px;
  }

  /* Industry viewer */
  .industry-viewer-frame {
    margin-left: 16px;
    margin-right: 16px;
  }
}

@media (max-width: 640px) {
  /* Industry tabs → horizontal scroll */
  .industry-viewer-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .industry-viewer-tabs::-webkit-scrollbar {
    display: none;
  }

  .industry-preview-scene {
    height: 280px;
  }

  .il-grid--3col {
    grid-template-columns: 1fr 1fr;
  }

  .il-hero-img {
    display: none;
  }

  .il-metrics-row {
    gap: 16px;
  }

  .il-metric-num {
    font-size: 16px;
  }

  .il-clients-bar {
    gap: 14px;
  }

  .il-client-logo {
    font-size: 7px;
  }

  .assembly-line {
    font-size: 9px;
  }

  .deploy-sim-preview-scene {
    height: 180px;
  }

  .deploy-sim-feed-line {
    font-size: 10px;
    gap: 6px;
    flex-wrap: wrap;
  }

  .feed-agent {
    min-width: 56px;
  }

  .feed-arrow {
    display: none;
  }

  .deploy-sim-btn {
    padding: 12px 32px;
    font-size: 11px;
  }

  .deploy-cta-btn {
    padding: 16px 24px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .deploy-sim-section,
  .industry-viewer-section,
  .system-map-section,
  .deploy-cta-section {
    padding: 48px 0;
  }

  .deploy-sim-bar,
  .deploy-cta-bar {
    padding: 10px 14px;
  }

  .deploy-sim-brief {
    padding: 12px 14px;
  }

  .industry-tab {
    font-size: 9px;
    padding: 6px 14px;
  }

  .system-map-content h3 {
    font-size: 1.1rem;
  }

  .system-map-content p {
    font-size: 13px;
  }

  .deploy-cta-body h2 {
    font-size: 1.3rem;
  }

  .deploy-cta-prompt {
    font-size: 12px;
  }

  .mock-cards {
    gap: 6px;
  }

  .mock-heading {
    max-width: 60%;
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .deploy-sim-brief,
  .deploy-sim-feed-line,
  .deploy-sim-result,
  .system-map-content,
  .industry-layer {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .deploy-sim-progress-fill {
    transition: none;
  }

  .deploy-sim-bar-status {
    animation: none;
  }

  .deploy-sim-btn.running {
    animation: none;
  }

  .system-map-dot {
    transition: none;
  }

  .system-map-dot.active {
    scale: 1;
  }

  .system-map-line-fill {
    transition: none;
  }

  .deploy-cta-cursor {
    animation: none;
    opacity: 1;
  }

  .industry-tab,
  .deploy-sim-btn,
  .deploy-cta-btn {
    transition: none;
  }

  .industry-assembly {
    transition: none;
  }

  .assembly-line {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
