/* styles.css */
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@900,700,500,300,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  /* Premium Dark Theme Palette */
  --bg-main: #080C14;
  --bg-card: #080C14;
  --bg-surface: rgba(255, 255, 255, 0.04);
  --border-color: rgba(255, 255, 255, 0.08);
  
  --primary: #00F5D4;
  --primary-hover: #00D4B8;
  --primary-light: rgba(0, 245, 212, 0.1);
  --secondary: #00D4B8;
  --cta-gradient: linear-gradient(135deg, #00F5D4, #00D4B8);
  
  /* Text Colors */
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-light: rgba(255, 255, 255, 0.4);
  
  /* Borders & Shadows */
  --border-radius-sm: 8px;
  --border-radius: 12px;
  --border-radius-lg: 24px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Typography */
  --font-heading: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --text-h1: clamp(40px, 5vw, 64px);
  --text-h2: clamp(32px, 4vw, 48px);
  --text-h3: clamp(24px, 3vw, 32px);
  --text-body-lg: clamp(16px, 2vw, 20px);
  --text-body: 16px;
  --text-body-sm: 14px;
  --text-label: 10px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background-color: var(--bg-main);
  line-height: 1.7;
  font-size: var(--text-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  margin: 0;
}

h1 {
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--text-h2);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

strong {
  font-weight: 700;
  color: var(--text-main);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: none;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.alt-bg {
  background-color: var(--bg-alt);
}

.center {
  text-align: center;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 800px; }
.mt-4 { margin-top: 1.5rem; }

/* Grid System */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.align-center { align-items: center; }

@media (max-width: 992px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
}

/* Glassmorphism Utilities */
.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.glass-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 245, 212, 0.08); /* Glow effect */
}

/* Typography Classes */
.section-label {
  font-family: var(--font-heading);
  font-size: var(--text-label);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.text-gradient {
  background: var(--cta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 201, 167, 0.3), transparent);
  margin: 64px 0;
}

.section-header {
  margin-bottom: 56px;
  max-width: 700px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
}

.lead {
  font-size: 1.25rem;
  color: var(--text-main);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--cta-gradient);
  color: #FFFFFF;
  border: none;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(0, 201, 167, 0.05);
  color: white;
}

.btn-sm { padding: 8px 16px; font-size: 0.875rem; }
.btn-block { width: 100%; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  background: transparent;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 6px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
}

/* Hero Section */
.hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  background-color: var(--bg-main);
  color: white;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6; /* Dimmed slightly for text contrast */
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero-subheadline {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.hero .btn-primary {
  background-color: white;
  color: var(--primary);
}

.hero .btn-primary:hover {
  background-color: var(--bg-alt);
  color: var(--primary-hover);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

.hero .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
  color: white;
}

@media (max-width: 600px) {
  .hero-buttons { flex-direction: column; }
  .hero h1 { font-size: 2.5rem; }
}

/* Feature Icons in Hero */
.hero-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  opacity: 0.9;
  flex-basis: 100px;
}

.hero-feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  color: white;
}

.hero-feature-icon .stroke-current {
  stroke: currentColor;
}

.hero-feature:hover .hero-feature-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-feature span {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.3;
}

/* Mockup Graphic removed or updated in template */

/* Quote Section ("SMBs deserve better software") */
.quote-section {
  background: var(--color-bg-primary);
  position: relative;
}

.quote-highlight {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #00C9A7, #6C63FF) 1;
  padding-left: 24px;
  margin: 32px 0;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #FFFFFF;
  font-style: italic;
}

@media (max-width: 768px) {
  .quote-text {
    font-size: 20px;
  }
}

/* Feature icons */
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 201, 167, 0.08);
  border-radius: 12px;
  color: #00C9A7;
  transition: all 0.3s ease;
  font-size: 24px;
}

.feature-icon:hover {
  background: rgba(0, 201, 167, 0.15);
  transform: translateY(-2px);
}

/* Product Cards Section */
.product-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 201, 167, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 201, 167, 0.08);
}

.card-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.15), rgba(108, 99, 255, 0.15));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.card-icon {
  width: 32px;
  height: 32px;
  color: #00C9A7;
}

/* Local Booster AI Section (Improved Layout) */
.product-showcase {
  background: linear-gradient(180deg, #0A0F1E 0%, #0D1424 100%);
  position: relative;
}

.product-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 167, 0.3), transparent);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  color: #00C9A7;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.product-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00C9A7;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.feature-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #CBD5E1;
  font-size: 16px;
  line-height: 1.6;
}

.feature-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2300C9A7'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center;
  margin-top: 2px;
}

.mockup-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(0, 201, 167, 0.1);
  padding: 32px;
  background: var(--bg-card);
}

.mockup-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Target Audience Section */
.audience-section {
  background: #0A0F1E;
}

.audience-diagram {
  position: relative;
  width: 280px;
  height: 280px;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.audience-item:hover {
  background: rgba(0, 201, 167, 0.05);
  border-color: rgba(0, 201, 167, 0.15);
}

.audience-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 10px;
  color: #00C9A7;
}

.audience-item.highlighted {
  background: rgba(0, 201, 167, 0.08);
  border-color: rgba(0, 201, 167, 0.25);
}

.audience-item.highlighted .audience-icon {
  background: #00C9A7;
  color: #0A0F1E;
}

/* Why Zynto Section */
.why-section {
  background: linear-gradient(180deg, #0D1424 0%, #0A0F1E 100%);
}

.value-prop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-prop-card {
  text-align: center;
  padding: 32px 24px;
}

.value-prop-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: #00C9A7;
}

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

@media (max-width: 640px) {
  .value-prop-grid {
    grid-template-columns: 1fr;
  }
}

/* Roadmap Section */
.roadmap-section {
  background: #0A0F1E;
  position: relative;
}

.roadmap-card {
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(10, 15, 30, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(20px);
}

.roadmap-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  padding: 40px;
}

/* Waitlist Form Section */
.waitlist-section {
  background: linear-gradient(180deg, #0A0F1E 0%, #0D1424 50%, #0A0F1E 100%);
  position: relative;
}

.waitlist-form-container {
  max-width: 480px;
  margin: 0 auto;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 48px;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.form-group { margin-bottom: 24px; text-align: left; }
.form-group label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--color-text-primary); }

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 16px 20px;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: #64748B;
}

.form-input:focus {
  outline: none;
  border-color: #00C9A7;
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.15);
}

.form-submit {
  width: 100%;
  background: linear-gradient(135deg, #00C9A7, #6C63FF);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 201, 167, 0.3);
}

/* Footer (Fixed Dark Theme) */
.footer {
  background: #0A0F1E;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 24px 32px;
}

.footer-logo {
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .logo-mark {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--color-accent-teal), var(--color-accent-purple));
  border-radius: 6px;
  display: block;
}

.footer-text {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
}

.footer-link {
  color: #94A3B8;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: #00C9A7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 48px;
  padding-top: 32px;
  color: #64748B;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.4s; }

.stagger-children.visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Legacy Utilities & Animations */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.hover-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease; }
.in-view { opacity: 1; transform: translateY(0); }

/* ========================================= */
/* Custom Abstract Graphics (UsersInsights Style) */
/* ========================================= */

/* SVG Colors */
.teal { color: #1EBFB3; }
.purple { color: #8B5CF6; }
.orange { color: #F97316; }
.blue { color: #3B82F6; }
.yellow { color: #EAB308; }

/* 1. Integration Graphic (Graphic 3) */
.integration-graphic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}
.integrations-list { display: flex; flex-direction: column; gap: 20px; z-index: 2; }
.int-icon {
  width: 48px; height: 48px;
  background: white; border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-color);
}
.int-icon svg { width: 20px; height: 20px; stroke: currentColor; }
.dash-mockup {
  width: 300px; height: 260px;
  background: white; border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid var(--border-color);
  display: flex; overflow: hidden; z-index: 2;
}
.dash-sidebar { width: 50px; background: #F8FAFC; border-right: 1px solid var(--border-color); display: flex; flex-direction: column; align-items: center; padding: 16px 0; gap: 12px; }
.dash-logo { width: 24px; height: 24px; border-radius: 4px; background: var(--primary); margin-bottom: 16px; }
.dash-dot { width: 16px; height: 16px; border-radius: 4px; background: #E2E8F0; }
.dash-main { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 16px; }
.dash-header { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
.dash-avatar { width: 32px; height: 32px; border-radius: 50%; background: #CBD5E1; }
.dash-lines .dl1 { width: 80px; height: 8px; background: #E2E8F0; border-radius: 4px; margin-bottom: 6px; }
.dash-lines .dl2 { width: 120px; height: 6px; background: #F1F5F9; border-radius: 4px; }
.dash-list { display: flex; flex-direction: column; gap: 12px; }
.dash-item { display: flex; align-items: center; gap: 12px; background: #F8FAFC; padding: 8px; border-radius: 6px; margin-bottom: 0px;}
.di-icon { width: 24px; height: 24px; border-radius: 4px; border: 1px solid rgba(0,0,0,0.05); }
.di-icon.blue { background: #BFDBFE; }
.di-icon.orange { background: #FFEDD5; }
.di-icon.teal { background: #CCFBF1; }
.di-icon.purple { background: #EDE9FE; }
.di-lines .dl1 { width: 60px; height: 6px; background: #E2E8F0; border-radius: 4px; }
.connector-lines {
  position: absolute; left: 40px; right: 280px; top: 0; bottom: 0; pointer-events: none; z-index: 1;
}
.connector-lines::before {
  content: ''; position: absolute; left: 0; top: 15%; width: 100%; height: 70%;
  background-image: radial-gradient(circle at right center, transparent 30%, rgba(30, 191, 179, 0.4) 30.5%, rgba(30, 191, 179, 0.4) 31.5%, transparent 32%);
  background-size: 200% 100%;
}

/* 2. Isometric Data Layers (Graphic 2) */
.isometric-graphic {
  position: relative; width: 300px; height: 300px;
  transform-style: preserve-3d; margin: 0 auto;
}
.iso-layer {
  position: absolute; width: 220px; height: 220px; left: 40px; top: 40px;
  transform: rotateX(60deg) rotateZ(-45deg);
  border-radius: 8px;
  transition: all 0.5s ease;
}
.isometric-graphic:hover .iso-layer { transform: rotateX(60deg) rotateZ(-45deg) translateZ(20px); }
.layer-base {
  background: #1B527E; transform: rotateX(60deg) rotateZ(-45deg) translateZ(-40px);
  box-shadow: -10px 10px 20px rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; border: 1px solid #153E5F;
}
.code-pattern {
  color: rgba(255,255,255,0.15); font-size: 11px; line-height: 1.6; font-family: monospace;
  text-align: center; letter-spacing: 4px;
}
.layer-mid {
  background: rgba(14, 165, 233, 0.2); transform: rotateX(60deg) rotateZ(-45deg) translateZ(0px);
  backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.5);
}
.layer-top {
  background: white; transform: rotateX(60deg) rotateZ(-45deg) translateZ(40px);
  border: 1px solid var(--border-color); padding: 20px;
  display: flex; flex-direction: column; justify-content: center;
}
.iso-chart-row { display: flex; align-items: center; justify-content: space-around; }
.iso-pie { width: 40px; height: 40px; border-radius: 50%; background: conic-gradient(var(--primary) 0% 40%, #8B5CF6 40% 75%, #F59E0B 75% 100%); }
.iso-pie.p2 { background: conic-gradient(#10B981 0% 60%, #3B82F6 60% 100%); }
.iso-bars { display: flex; align-items: flex-end; gap: 4px; height: 40px; }
.iso-bars > div { width: 12px; border-radius: 2px 2px 0 0; }
.b1 { height: 100%; background: #1EBFB3; }
.b2 { height: 60%; background: #F97316; }
.b3 { height: 40%; background: #8B5CF6; }
.iso-float {
  position: absolute; width: 40px; height: 40px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); color: var(--text-muted);
}
.iso-float svg { width: 18px; height: 18px; }
.f1 { top: 0; left: 0; transform: translateY(-20px); }
.f2 { top: 20px; right: -20px; }
.f3 { bottom: 0; left: 0; }

/* 3. Concentric Orbit Graphic (Graphic 1) */
.concentric-graphic {
  position: relative; width: 400px; height: 400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 600px) { .concentric-graphic { transform: scale(0.7); } }
.ring { position: absolute; border: 2px dashed rgba(226, 232, 240, 0.8); border-radius: 50%; }
.ring-1 { width: 180px; height: 180px; z-index: 1;}
.ring-2 { width: 280px; height: 280px; z-index: 1;}
.ring-3 { width: 380px; height: 380px; border-color: rgba(226, 232, 240, 0.4); z-index: 1;}
.center-avatar {
  position: relative; z-index: 2; width: 80px; height: 80px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: 2px solid var(--border-color);
}
.center-avatar svg { width: 36px; height: 36px; }
.orbit-node {
  position: absolute; display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 3;
}
.node-icon {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); border: 4px solid white;
}
.node-icon.orange { background: #FECACA; color: #EF4444; }
.node-icon.purple { background: #E9D5FF; color: #9333EA; }
.node-icon.teal { background: #CCFBF1; color: #0D9488; }
.node-icon.yellow { background: #FEF08A; color: #CA8A04; }
.node-icon svg { width: 24px; height: 24px; stroke: currentColor; }
.node-badge { background: var(--border-color); color: var(--text-muted); padding: 4px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 700; white-space: nowrap; }
.orbit-node.node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-node.node-2 { left: 0; top: 25%; }
.orbit-node.node-3 { bottom: 0; left: 50%; transform: translateX(-50%); }
.orbit-node.node-4 { right: 0; top: 25%; }
.node-1 .node-icon { background: #FFDED6; color: #F87171; }
.node-2 .node-icon { background: #E9D5FF; color: #A855F7; }
.node-3 .node-icon { background: #D1FAE5; color: #10B981; }
.node-4 .node-icon { background: #FEF08A; color: #F59E0B; }
.node-1 .node-badge { background: #F87171; color: white; }
.node-2 .node-badge { background: #A855F7; color: white; }
.node-3 .node-badge { opacity: 0; }
.node-4 .node-badge { background: #F59E0B; color: white; }

/* 4. Timeline Track Diagram (Graphic 4) */
.ui-timeline-graphic {
  display: flex; align-items: flex-start; gap: 40px; justify-content: center; max-width: 600px; margin: 0 auto;
}
.tl-card {
  width: 250px; background: white; border-radius: 12px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-color);
  padding: 24px; position: relative; z-index: 2;
}
.tl-head { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color); }
.tl-ava { width: 48px; height: 48px; border-radius: 50%; background: #E0E7FF; flex-shrink: 0; }
.tl-name { font-weight: 700; color: var(--text-main); line-height: 1.2; }
.tl-name span { font-weight: 400; font-size: 0.8rem; color: var(--text-light); }
.tl-body { display: flex; flex-direction: column; gap: 12px; }
.tl-row { display: flex; align-items: center; gap: 12px; background: #F8FAFC; padding: 12px 16px; border-radius: 8px; font-size: 0.85rem; font-weight: 500; color: var(--text-main); }
.ml-auto { margin-left: auto; color: var(--text-muted); font-weight: 600; }
.tl-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.tl-dot.teal { background: #1EBFB3; }
.tl-dot.purple { background: #8B5CF6; }
.tl-dot.blue { background: #3B82F6; }

.tl-track { position: relative; width: 240px; height: 350px; }
.track-line {
  position: absolute; top: 0; bottom: 0; left: 24px; width: 140px;
  border: 4px dashed rgba(30, 191, 179, 0.2); border-radius: 30px;
}
.track-bubble {
  position: relative; margin-left: 20px; background: white; border-radius: 100px;
  padding: 8px 16px 8px 48px; box-shadow: var(--shadow-md);
  margin-bottom: 60px; font-size: 0.8rem; display: inline-flex; flex-direction: column;
}
.track-bubble:first-child { margin-top: 40px; }
.track-bubble.teal { background: #1EBFB3; color: white; }
.track-bubble.purple { background: #8B5CF6; color: white; }
.track-bubble.blue { background: #3B82F6; color: white; }
.track-bubble span { opacity: 0.9; font-weight: 500; }
.track-bubble strong { font-weight: 700; }
.tb-dot {
  position: absolute; left: 8px; top: 50%; margin-top: -12px;
  width: 24px; height: 24px; border-radius: 50%; background: white;
}

@media (max-width: 600px) {
  .ui-timeline-graphic { flex-direction: column; align-items: center; }
  .tl-track { width: 100%; height: auto; padding-left: 40px; }
  .track-line { left: 60px; }
}

/* Ticker CSS */
.ticker-wrap { width: 100%; overflow: hidden; padding: 32px 0; position: relative; z-index: 2; mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent); }
.ticker-track { display: flex; gap: 32px; width: max-content; animation: ticker 40s linear infinite; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-pill { display: flex; align-items: center; gap: 12px; padding: 12px 24px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 100px; color: #FFFFFF; font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; white-space: nowrap; }
.ticker-pill svg { width: 18px; height: 18px; stroke: var(--primary); }
