/* ============================================
   BUSINESS CORE SOLUTIONS - ULTRA MODERN DESIGN
   The World's First Agentic System Integrator
   ============================================ */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  /* Backgrounds - Layered Dark (purple-tinted) */
  --bg-primary: #08060D;
  --bg-surface: #0E0B15;
  --bg-elevated: #161220;
  --bg-card: #1C182A;
  --bg-hover: #241F33;

  /* Text */
  --text-primary: #F0F0F5;
  --text-secondary: #9494A8;
  --text-tertiary: #5E5E72;

  /* Accent Colors */
  --accent: #F97316;
  --accent-rgb: 249, 115, 22;
  --accent-dark: #EA580C;
  --accent-light: #FB923C;
  --purple: #8B5CF6;
  --purple-rgb: 139, 92, 246;
  --emerald: #10B981;
  --emerald-rgb: 16, 185, 129;
  --amber: #F59E0B;
  --amber-rgb: 245, 158, 11;
  --rose: #F43F5E;
  --rose-rgb: 244, 63, 94;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --glow-accent: 0 0 20px rgba(var(--accent-rgb), 0.15), 0 0 60px rgba(var(--accent-rgb), 0.05);
  --glow-accent-hover: 0 0 30px rgba(var(--accent-rgb), 0.25), 0 0 80px rgba(var(--accent-rgb), 0.1);

  /* Font */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --section-padding: clamp(4rem, 8vw, 8rem);
  --container-max: 1280px;
  --container-padding: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.5vw + 0.875rem, 1.0625rem);
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

::selection {
  background: rgba(var(--accent-rgb), 0.3);
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---- SECTION COMMON ---- */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.375rem 1rem;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1vw + 0.75rem, 1.2rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 50%, var(--accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .logo-track { animation: none !important; }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #C2410C 100%);
  color: #fff;
  box-shadow: var(--glow-accent);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  animation: btn-shine 4s ease-in-out infinite;
}

@keyframes btn-shine {
  0%, 100% { left: -75%; }
  50% { left: 125%; }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow-accent-hover);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.05);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 6, 11, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.nav-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--purple), var(--emerald), var(--accent));
  background-size: 300% 100%;
  animation: gradient-slide 6s linear infinite;
}

@keyframes gradient-slide {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.nav-header.scrolled {
  background: rgba(6, 6, 11, 0.92);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 1001;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.logo-text {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link.active {
  color: var(--accent);
}

.nav-link svg {
  transition: transform 0.2s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  white-space: nowrap;
}
.lang-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.05em;
}
.lang-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.lang-link.active {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem;
  border-radius: var(--radius-md);
  transition: background 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.symphony-icon { background: rgba(var(--accent-rgb), 0.12); color: var(--accent); }
.anugal-icon { background: rgba(var(--purple-rgb), 0.12); color: var(--purple); }
.dekorvai-icon { background: rgba(var(--emerald-rgb), 0.12); color: var(--emerald); }

.dropdown-item div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown-item strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.dropdown-item span {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-1 {
  position: absolute;
  top: 10%;
  left: 15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.12) 0%, transparent 70%);
  filter: blur(60px);
  animation: float 8s ease-in-out infinite;
}

.hero-gradient-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--purple-rgb), 0.1) 0%, transparent 70%);
  filter: blur(60px);
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--amber);
  padding: 0.5rem 1.25rem;
  background: rgba(var(--amber-rgb), 0.08);
  border: 1px solid rgba(var(--amber-rgb), 0.2);
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--amber-rgb), 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(var(--amber-rgb), 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw + 0.5rem, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.35rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.hero-stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
}

.stat-plus {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
}

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

/* ============================================
   CLIENTS
   ============================================ */
.clients-section {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-surface) 50%, var(--bg-primary) 100%);
  position: relative;
}

.clients-headline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.logo-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  margin-bottom: 1rem;
}

.logo-marquee:last-child {
  margin-bottom: 0;
}

.logo-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
}

.logo-track.row-1 {
  animation: marquee 35s linear infinite;
}

.logo-track.row-2 {
  animation: marquee-reverse 35s linear infinite;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.client-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  opacity: 0.55;
  transition: all 0.3s ease;
  letter-spacing: 0.01em;
}

.client-logo:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--accent-rgb), 0.3);
}

/* ============================================
   VISION
   ============================================ */
.vision-section {
  padding: var(--section-padding) 0;
}

.vision-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.vision-text {
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.vision-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.vision-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.vision-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.vision-card.accent {
  border-color: rgba(var(--accent-rgb), 0.15);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.04) 0%, var(--bg-surface) 100%);
}

.vision-card.accent:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.vision-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.vision-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.vision-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ============================================
   PLATFORMS - BENTO GRID
   ============================================ */
.platforms-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.platforms-section .section-tag,
.platforms-section .section-title,
.platforms-section .section-subtitle {
  text-align: center;
}

.platforms-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.bento-card {
  position: relative;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--bg-primary);
}

.bento-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.bento-large {
  grid-column: 1 / -1;
}

.bento-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.4rem 1rem;
  border-radius: 100px;
}

.platform-logo {
  border-radius: 4px;
  object-fit: contain;
}

.symphony-badge {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.anugal-badge {
  background: rgba(var(--purple-rgb), 0.1);
  color: var(--purple);
  border: 1px solid rgba(var(--purple-rgb), 0.2);
}

.dekorvai-badge {
  background: rgba(var(--emerald-rgb), 0.1);
  color: var(--emerald);
  border: 1px solid rgba(var(--emerald-rgb), 0.2);
}

.gartner-badge-small {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--amber);
  padding: 0.3rem 0.75rem;
  background: rgba(var(--amber-rgb), 0.08);
  border: 1px solid rgba(var(--amber-rgb), 0.2);
  border-radius: 100px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.bento-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 2rem;
}

.bento-metrics {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.symphony-card .metric-value { color: var(--accent); }
.anugal-card .metric-value { color: var(--purple); }
.dekorvai-card .metric-value { color: var(--emerald); }

.metric-label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin-top: 0.15rem;
}

.bento-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.35rem 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.feature-tag:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.07);
}

/* Bento Glow Effects */
.bento-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.bento-card:hover .bento-glow {
  opacity: 0.25;
}

.symphony-card {
  border-color: rgba(var(--accent-rgb), 0.12);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.03) 0%, var(--bg-primary) 40%);
}

.symphony-card:hover {
  border-color: rgba(var(--accent-rgb), 0.25);
}

.symphony-glow {
  top: -100px;
  right: -50px;
  background: var(--accent);
}

.anugal-glow {
  bottom: -100px;
  right: -50px;
  background: var(--purple);
}

.dekorvai-glow {
  bottom: -100px;
  left: -50px;
  background: var(--emerald);
}

/* ============================================
   AGENTIC INTELLIGENCE
   ============================================ */
.agentic-section {
  padding: var(--section-padding) 0;
}

.agentic-section .section-tag,
.agentic-section .section-title,
.agentic-section .section-subtitle {
  text-align: center;
}

.agentic-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.agentic-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--purple), var(--border));
}

.timeline-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.step-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.3s ease;
}

.step-marker.active {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.2);
}

.step-content {
  padding-top: 0.5rem;
}

.step-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.06);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-icon.accent {
  background: rgba(var(--accent-rgb), 0.1);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.1);
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.step-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  padding: 0.25rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* Agentic Impact */
.agentic-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.impact-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.impact-card:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
  transform: translateY(-2px);
}

.impact-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.impact-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   CASE STUDIES
   ============================================ */
.cases-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.cases-section .section-tag,
.cases-section .section-title,
.cases-section .section-subtitle {
  text-align: center;
}

.cases-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.case-card {
  padding: 2rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.case-industry {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.case-client {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.case-summary {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.case-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.case-metrics div {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.case-metrics strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  padding: var(--section-padding) 0;
}

.services-section .section-tag,
.services-section .section-title,
.services-section .section-subtitle {
  text-align: center;
}

.services-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.06);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   ECOSYSTEM
   ============================================ */
.ecosystem-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.ecosystem-section .section-tag,
.ecosystem-section .section-title {
  text-align: center;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.eco-category h4 {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.eco-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.eco-tags span {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.eco-tags span:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--text-primary);
  background: rgba(var(--accent-rgb), 0.05);
}

/* ============================================
   BLOG
   ============================================ */
.blog-section {
  padding: var(--section-padding) 0;
}

.blog-section .section-tag,
.blog-section .section-title,
.blog-section .section-subtitle {
  text-align: center;
}

.blog-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.blog-card.featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.04) 0%, var(--bg-surface) 50%);
  border-color: rgba(var(--accent-rgb), 0.1);
}

.blog-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.blog-card.featured h3 {
  font-size: 1.5rem;
}

.blog-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s ease;
}

.blog-link:hover {
  gap: 0.625rem;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}

.highlight svg {
  color: var(--accent);
  flex-shrink: 0;
}

.about-locations h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.location-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.location-flag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.location div {
  display: flex;
  flex-direction: column;
}

.location strong {
  font-size: 0.9375rem;
  font-weight: 600;
}

.location span {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* ============================================
   SOCIAL RESPONSIBILITY
   ============================================ */
.responsibility-section {
  padding: var(--section-padding) 0;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.resp-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

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

.resp-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--emerald-rgb), 0.08);
  border-radius: 50%;
  color: var(--emerald);
  margin: 0 auto 1.25rem;
}

.resp-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.resp-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
}

.faq-section .section-tag,
.faq-section .section-title {
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--bg-primary);
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(var(--accent-rgb), 0.2);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw + 0.5rem, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  flex-wrap: wrap;
}

.trust-dot {
  width: 4px;
  height: 4px;
  background: var(--text-tertiary);
  border-radius: 50%;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 4rem 0 2rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr) 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 280px;
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links-group a {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer-links-group a:hover {
  color: var(--accent);
}

.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-contact p {
  margin-bottom: 0.375rem;
}

.footer-contact a {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ============================================
   HERO PROOF PILLS (Modern Stats)
   ============================================ */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.proof-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.proof-pill:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.05);
}

.proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.proof-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.proof-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  white-space: nowrap;
}

/* ============================================
   CREDENTIALS & PARTNERSHIPS
   ============================================ */
.credentials-section {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.credential-group h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.credential-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.credential-tags span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

@media (max-width: 768px) {
  .credentials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================
   CIO STORY SECTION
   ============================================ */
.cio-story-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.cio-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--rose-rgb), 0.06) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.cio-story-section .section-tag,
.cio-story-section .section-title {
  text-align: center;
}

.cio-story-section .section-tag {
  background: rgba(var(--rose-rgb), 0.12);
  border: 1px solid rgba(var(--rose-rgb), 0.35);
  color: rgb(var(--rose-rgb));
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  padding: 0.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  animation: cxoTagPulse 3s ease-in-out infinite, cxoTagEntry 1s ease-out both;
}

.cio-story-section .section-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--rose-rgb), 0.25), transparent);
  animation: cxoShimmer 4s ease-in-out infinite;
}

@keyframes cxoTagPulse {
  0%, 100% { box-shadow: 0 0 12px rgba(var(--rose-rgb), 0.15), 0 0 4px rgba(var(--rose-rgb), 0.1); }
  50% { box-shadow: 0 0 24px rgba(var(--rose-rgb), 0.35), 0 0 8px rgba(var(--rose-rgb), 0.2); }
}

@keyframes cxoShimmer {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

@keyframes cxoTagEntry {
  from { opacity: 0; transform: translateY(-10px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.cio-story-section .section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.story-narrative {
  max-width: 800px;
  margin: 3rem auto 0;
  position: relative;
}

.story-narrative::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), rgba(var(--accent-rgb), 0.4), var(--accent));
}

.story-chapter {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  opacity: 0.35;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.story-chapter.in-view {
  opacity: 1;
  transform: translateY(0);
}

.story-chapter:last-child {
  margin-bottom: 0;
}

.chapter-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  flex-shrink: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.story-chapter.in-view .chapter-number {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.3);
  background: rgba(var(--accent-rgb), 0.1);
}

.chapter-content {
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex: 1;
  transition: all 0.5s ease;
}

.story-chapter.in-view .chapter-content {
  border-color: rgba(var(--accent-rgb), 0.25);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.06) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 40px rgba(var(--accent-rgb), 0.05);
}

.chapter-content h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.5s ease;
}

.story-chapter.in-view .chapter-content h3 {
  color: var(--accent);
}

.chapter-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

.chapter-content strong {
  color: var(--text-primary);
}

/* ============================================
   THREE PILLARS POSITIONING
   ============================================ */
.positioning-section {
  padding: var(--section-padding) 0;
}

.three-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pillar-card {
  padding: 2rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pillar-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pillar-card.accent-card {
  border-color: rgba(var(--accent-rgb), 0.15);
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.04) 0%, var(--bg-surface) 100%);
}

.pillar-card.accent-card:hover {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.pillar-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius-md);
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.accent-card .pillar-card-icon {
  background: rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.1);
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pillar-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.pillar-card-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 0.25rem 0.625rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
}

.convergence-message {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.03) 0%, rgba(var(--purple-rgb), 0.03) 100%);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-lg);
}

.convergence-message p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.convergence-message strong {
  color: var(--text-primary);
}

/* ============================================
   SYMPHONY PILLARS
   ============================================ */
.symphony-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.pillar {
  padding: 0.875rem 1rem;
  background: rgba(var(--accent-rgb), 0.04);
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.pillar:hover {
  border-color: rgba(var(--accent-rgb), 0.25);
  background: rgba(var(--accent-rgb), 0.07);
}

.pillar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.pillar span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  line-height: 1.4;
}

/* ============================================
   ENTERPRISE SCENARIOS
   ============================================ */
.scenarios-section {
  padding: var(--section-padding) 0;
  background: var(--bg-surface);
  position: relative;
}

.scenarios-section .section-tag,
.scenarios-section .section-title,
.scenarios-section .section-subtitle {
  text-align: center;
}

.scenarios-section .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.scenario-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.scenario-tab {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-tertiary);
  padding: 0.5rem 1.25rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.scenario-tab:hover {
  color: var(--text-secondary);
  border-color: var(--border-hover);
}

.scenario-tab.active {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.4);
  background: rgba(var(--accent-rgb), 0.08);
}

.scenario-panels {
  position: relative;
}

.scenario-panel {
  display: none;
}

.scenario-panel.active {
  display: block;
  animation: scenarioFadeIn 0.4s ease;
}

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

.scenario-story {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.scenario-before,
.scenario-after {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.scenario-before {
  background: var(--bg-primary);
}

.scenario-after {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.04) 0%, var(--bg-primary) 100%);
  border-color: rgba(var(--accent-rgb), 0.15);
}

.scenario-before h4,
.scenario-after h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.scenario-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.before-label {
  background: rgba(var(--rose-rgb), 0.12);
  color: var(--rose);
}

.after-label {
  background: rgba(var(--emerald-rgb), 0.12);
  color: var(--emerald);
}

.scenario-before p,
.scenario-after p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.scenario-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.scenario-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.s-metric {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.s-metric:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
}

.s-metric-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.s-metric-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-tertiary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Nav responsive — compact at mid-widths */
@media (max-width: 1440px) {
  .nav-link {
    font-size: 0.8125rem;
    padding: 0.45rem 0.5rem;
  }
  .nav-links {
    gap: 0;
  }
  .nav-cta {
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
  }
  .logo-text {
    font-size: 0.85rem;
  }
  .nav-logo {
    gap: 0.5rem;
  }
  .lang-switcher {
    margin-right: 0.4rem;
    gap: 0.15rem;
  }
  .lang-link {
    font-size: 0.7rem;
    padding: 0.15rem 0.3rem;
  }
}

@media (max-width: 1280px) {
  .logo-text {
    display: none;
  }
  .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.45rem;
  }
  .nav-cta {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 1140px) {
  .nav-link {
    font-size: 0.75rem;
    padding: 0.4rem 0.35rem;
  }
  .nav-cta {
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
  }
  .lang-switcher {
    margin-right: 0.2rem;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 900px) {
  .three-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .three-pillars .pillar-card:last-child {
    grid-column: 1 / -1;
  }

  .scenario-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .symphony-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .vision-cards,
  .cases-grid,
  .services-grid,
  .responsibility-grid,
  .agentic-impact,
  .ecosystem-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card.featured {
    grid-column: 1 / -1;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-large {
    grid-column: 1;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: var(--bg-elevated);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    z-index: 999;
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .lang-switcher {
    margin-right: 0.5rem;
  }

  .lang-link {
    font-size: 0.7rem;
    padding: 0.2rem 0.35rem;
  }

  .has-dropdown .dropdown-menu {
    position: static;
    transform: none;
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    box-shadow: none;
    background: transparent;
    border: none;
    padding: 0.5rem 0 0 1rem;
    display: none;
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 0.5rem;
  }

  .hero-proof {
    flex-direction: column;
    gap: 0.5rem;
  }

  .proof-pill {
    width: 100%;
    justify-content: center;
  }

  .story-chapter {
    gap: 1rem;
  }

  .story-narrative::before {
    left: 15px;
  }

  .chapter-number {
    width: 34px;
    height: 34px;
    font-size: 0.7rem;
  }

  .chapter-content {
    padding: 1.25rem;
  }

  .three-pillars {
    grid-template-columns: 1fr;
  }

  .three-pillars .pillar-card:last-child {
    grid-column: 1;
  }

  .scenario-story {
    grid-template-columns: 1fr;
  }

  .scenario-arrow {
    transform: rotate(90deg);
    padding: 0.5rem 0;
  }

  .scenario-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .scenario-tabs {
    gap: 0.375rem;
  }

  .scenario-tab {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }

  .symphony-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .vision-cards,
  .cases-grid,
  .services-grid,
  .responsibility-grid,
  .agentic-impact,
  .ecosystem-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .timeline-step {
    gap: 1.25rem;
  }

  .timeline-line {
    left: 18px;
  }

  .step-marker {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.375rem 1rem;
  }

  .bento-metrics {
    gap: 1.5rem;
  }

  .logo-text {
    display: none;
  }
}

/* ============================================
   SYMPHONY ARCHITECTURE DIAGRAM
   ============================================ */
.symphony-flow {
  margin-bottom: 2.5rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.arch-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.flow-pipeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.flow-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 160px;
  flex-shrink: 0;
}

.flow-stage-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.flow-stage-icon.ambient-icon {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
  color: rgb(251, 191, 36);
}

.flow-stage-icon.teams-icon-flow {
  background: rgba(88, 101, 242, 0.1);
  border-color: rgba(88, 101, 242, 0.3);
  color: rgb(88, 101, 242);
}

.flow-stage-icon.agentic-icon {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
}

.flow-stage-icon.enterprise-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: rgb(16, 185, 129);
}

.flow-stage-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.flow-stage-desc {
  font-size: 0.72rem;
  color: var(--text-tertiary);
  line-height: 1.45;
}

.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-tertiary);
  opacity: 0.4;
  margin-top: 1.4rem;
  padding: 0 0.6rem;
  flex-shrink: 0;
}

.flow-arrow-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .symphony-flow {
    padding: 1.5rem 1rem;
  }
  .flow-pipeline {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .flow-stage {
    max-width: 240px;
  }
  .flow-arrow {
    margin-top: 0;
    padding: 0.6rem 0;
    transform: rotate(90deg);
  }
}

/* ============================================
   HERO DEFINITION LINE
   ============================================ */
.hero-definition {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 1.5rem auto 2rem;
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   AGENTIC MATURITY DIAGRAM
   ============================================ */
.agentic-maturity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.maturity-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.maturity-step.active {
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.maturity-icon {
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.maturity-step.active .maturity-icon {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.15);
}

.maturity-label {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.maturity-sub {
  font-size: 0.7rem;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.maturity-arrow {
  color: var(--text-tertiary);
  opacity: 0.4;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .agentic-maturity {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  .maturity-step {
    padding: 0.75rem 1rem;
  }
  .maturity-arrow {
    display: none;
  }
}

/* ============================================
   SCENARIO PRODUCT FLOW
   ============================================ */
.scenario-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.flow-node {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.flow-node.platform-node {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.3);
  color: var(--accent);
  font-weight: 600;
}

.flow-connector {
  color: var(--text-tertiary);
  opacity: 0.4;
  font-size: 0.85rem;
}

/* ============================================
   DEVELOPER ECOSYSTEM
   ============================================ */
.developer-ecosystem {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}

.developer-ecosystem h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.developer-ecosystem p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.dev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.dev-tags span {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 100px;
  color: var(--accent);
}

/* ============================================
   EVOLUTION OF SI TIMELINE
   ============================================ */
.evolution-section {
  padding: var(--section-padding) 0;
}

.evolution-timeline {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 3rem 0 2rem;
}

.evo-era {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 2rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
}

.evo-era.active {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.3);
}

.evo-decade {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 0.75rem;
}

.evo-era.active .evo-decade {
  color: var(--accent);
}

.evo-era h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.evo-era p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.evo-connector {
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.evo-connector::before {
  content: '';
  width: 100%;
  height: 1px;
  background: var(--border);
}

.evo-cta {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 768px) {
  .evolution-timeline {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .evo-era {
    max-width: 100%;
    width: 100%;
  }
  .evo-connector {
    width: 1px;
    height: 1.5rem;
  }
  .evo-connector::before {
    width: 1px;
    height: 100%;
  }
}

/* ============================================
   FOUNDER VISION
   ============================================ */
.vision-founder-section {
  padding: 4rem 0;
}

.founder-vision {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.founder-vision .section-tag {
  margin-bottom: 1.5rem;
}

.founder-vision blockquote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
  margin: 1.5rem 0 2rem;
  padding: 0;
  border: none;
}

.founder-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.founder-attribution strong {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-primary);
}

.founder-attribution span {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ============================================
   AGENTS IN ACTION - TEAMS DEMO
   ============================================ */
.agents-demo-section {
  padding: var(--section-padding) 0;
}

.demo-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  margin-bottom: 2rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}

.demo-tabs::-webkit-scrollbar {
  display: none;
}

.demo-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.demo-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.demo-panel {
  display: none;
}

.demo-panel.active {
  display: block;
  animation: scenarioFadeIn 0.4s ease;
}

/* Teams Window */
.teams-window {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1b1b2f;
}

.teams-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: #2d2d44;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.teams-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.teams-icon {
  color: #7b7fda;
  display: flex;
}

.teams-channel {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: #e0e0e0;
}

.teams-header-dots {
  display: flex;
  gap: 4px;
}

.teams-header-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

/* Chat Messages */
.teams-chat {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 540px;
  overflow-y: auto;
}

.chat-msg {
  display: flex;
  gap: 0.6rem;
  animation: msgFadeIn 0.5s ease both;
}

.msg-1 { animation-delay: 0s; }
.msg-2 { animation-delay: 0.3s; }
.msg-3 { animation-delay: 0.6s; }
.msg-4 { animation-delay: 0.9s; }
.msg-5 { animation-delay: 1.2s; }

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

.user-msg {
  flex-direction: row-reverse;
}

.msg-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.agent-avatar {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
}

.user-avatar-img {
  background: #3b82f6;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

.msg-body {
  max-width: 85%;
}

.msg-sender {
  font-size: 0.7rem;
  font-weight: 600;
  color: #a78bfa;
  display: block;
  margin-bottom: 0.25rem;
}

.msg-bubble {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.82rem;
  line-height: 1.55;
}

.agent-bubble {
  background: #252540;
  color: #d0d0e0;
  border-radius: 2px 8px 8px 8px;
}

.user-bubble {
  background: #3b3b8a;
  color: #e8e8ff;
  border-radius: 8px 2px 8px 8px;
}

/* Agent Check Items */
.agent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.4rem 0;
  font-size: 0.8rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-icon.pass {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.check-icon.warn {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.check-icon.fail {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* Status Row */
.msg-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: #a0a0b8;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-right: 4px;
  vertical-align: middle;
}

.status-dot.green { background: #10b981; }
.status-dot.red { background: #ef4444; }

/* Alert Badge */
.msg-alert {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Agent Table */
.agent-table {
  margin: 0.75rem 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  font-size: 0.75rem;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.6fr 0.8fr;
  padding: 0.4rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table-row:last-child { border-bottom: none; }

.header-row {
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  color: #a0a0b8;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.premium-tag {
  color: #f59e0b;
  font-weight: 600;
}

.text-red { color: #ef4444; }
.text-green { color: #10b981; }

@media (max-width: 768px) {
  .teams-chat {
    padding: 0.75rem;
    max-height: none;
  }
  .msg-body {
    max-width: 90%;
  }
  .msg-bubble {
    font-size: 0.78rem;
  }
  .table-row {
    grid-template-columns: 1fr 0.6fr 0.5fr 0.6fr;
    font-size: 0.7rem;
  }
}
