@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&family=Outfit:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --ink: #0c0e12;
  --ink-light: #161920;
  --ink-medium: #1e222b;
  --slate: #272c38;
  --steel: #5c6478;
  --cloud: #b4bac8;
  --pure: #ffffff;
  --accent: #3B82F6;
  --accent-hover: #2563EB;
  --accent-glow: rgba(59, 130, 246, 0.15);
  --accent-dim: rgba(59, 130, 246, 0.08);
  --success: #34d399;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-full: 9999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 200ms;
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-display);
  color: var(--cloud);
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--pure);
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: var(--steel);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background var(--duration) var(--ease);
}

.nav.scrolled {
  background: rgba(12, 14, 18, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--pure);
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--cloud);
  transition: color var(--duration) var(--ease);
}

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

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

.lang-toggle {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 4px 14px;
  border-radius: var(--r-full);
  transition: all var(--duration) var(--ease);
}

.lang-toggle:hover {
  background: rgba(59, 130, 246, 0.1);
}

.nav-login {
  font-size: 13px;
  font-weight: 500;
  color: var(--cloud);
  transition: color var(--duration) var(--ease);
}

.nav-login:hover {
  color: var(--accent);
}

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--pure);
  background: var(--accent);
  padding: 6px 18px;
  border-radius: var(--r-full);
  transition: all var(--duration) var(--ease);
}

.nav-cta:hover {
  background: var(--accent-hover);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.35);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cloud);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: 64px;
  background: rgba(12, 14, 18, 0.95);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 99;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay a {
  font-size: 24px;
  font-weight: 600;
  color: var(--pure);
  transition: color var(--duration) var(--ease);
}

.nav-mobile-overlay a:hover {
  color: var(--accent);
}

.nav-mobile-cta {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--pure) !important;
  background: var(--accent);
  padding: 12px 40px;
  border-radius: var(--r-full);
  margin-top: 16px;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c0e12 0%, #0f172a 40%, #1e1b4b 100%);
  padding-top: 64px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.25) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 10%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 900px;
  height: 900px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, rgba(30, 64, 175, 0.1) 35%, transparent 65%);
  pointer-events: none;
}

.hero-glow-tl {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow-br {
  position: absolute;
  width: 600px;
  height: 600px;
  bottom: -200px;
  right: -200px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-waves {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-waves .wave {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: wavePulse 7s ease-out infinite;
}

.hero-waves .wave:nth-child(1) { animation-delay: 0s; }
.hero-waves .wave:nth-child(2) { animation-delay: 1.75s; }
.hero-waves .wave:nth-child(3) { animation-delay: 3.5s; }
.hero-waves .wave:nth-child(4) { animation-delay: 5.25s; }

@keyframes wavePulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  10% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(12); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-particles .particle {
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(59, 130, 246, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.6), 0 0 20px rgba(59, 130, 246, 0.2);
  animation: floatUp linear infinite;
}

.hero-particles .particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.hero-particles .particle:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; }
.hero-particles .particle:nth-child(3) { left: 35%; animation-duration: 10s; animation-delay: 4s; }
.hero-particles .particle:nth-child(4) { left: 55%; animation-duration: 9s; animation-delay: 1s; }
.hero-particles .particle:nth-child(5) { left: 70%; animation-duration: 11s; animation-delay: 3s; }
.hero-particles .particle:nth-child(6) { left: 85%; animation-duration: 7s; animation-delay: 5s; }
.hero-particles .particle:nth-child(7) { left: 45%; animation-duration: 13s; animation-delay: 0.5s; }
.hero-particles .particle:nth-child(8) { left: 90%; animation-duration: 10s; animation-delay: 2.5s; }

@keyframes floatUp {
  0% { bottom: -5%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { bottom: 105%; opacity: 0; }
}

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

.hero-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: var(--pure);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--steel);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 700;
  color: var(--pure);
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
  transition: all var(--duration) var(--ease);
}

.btn-hero-primary:hover {
  box-shadow: 0 6px 28px rgba(59, 130, 246, 0.5);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: var(--r-full);
  transition: all var(--duration) var(--ease);
}

.btn-hero-secondary:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--accent);
}

/* ===== Features ===== */
.features {
  background: var(--ink);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--ink-light);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all 0.3s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border-radius: var(--r-md);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--pure);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
}

/* ===== Screenshots / Carousel ===== */
.screenshots {
  background: var(--ink-light);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.45s var(--ease);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

/* ===== Mock UI (Product Screenshots) ===== */
.mock-ui {
  height: 480px;
  background: #0d1117;
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
}

.mock-titlebar {
  height: 36px;
  background: #161b22;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 12px;
  flex-shrink: 0;
}

.mock-dots {
  display: flex;
  gap: 6px;
}

.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }

.mock-url {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--steel);
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
  padding: 3px 12px;
  margin-right: 42px;
}

.mock-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.mock-sidebar {
  width: 52px;
  background: #0d1117;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0;
  gap: 6px;
  flex-shrink: 0;
}

.mock-sidebar-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  margin-bottom: 10px;
}

.mock-sidebar-item {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
}

.mock-sidebar-item.active {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.mock-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #0d1117;
}

.mock-topbar {
  height: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
}

.mock-breadcrumb {
  font-size: 13px;
  font-weight: 600;
  color: var(--pure);
}

.mock-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.mock-btn-group {
  display: flex;
  gap: 8px;
}

.mock-btn-outline {
  font-size: 11px;
  font-weight: 500;
  color: var(--cloud);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 14px;
  border-radius: 5px;
}

.mock-btn-primary {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 5px;
}

/* --- Dashboard Mock --- */
.mock-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 20px 0;
}

.mock-stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 14px;
}

.mock-stat-label {
  font-size: 10px;
  color: var(--steel);
  margin-bottom: 4px;
}

.mock-stat-value {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--pure);
  line-height: 1.2;
}

.mock-stat-trend {
  font-size: 10px;
  font-family: var(--font-mono);
  margin-top: 4px;
}

.mock-stat-trend.up { color: #34d399; }
.mock-stat-trend.down { color: #f87171; }
.mock-stat-trend.neutral { color: var(--steel); }

.mock-chart-area {
  flex: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 10px;
  padding: 10px 20px 14px;
  min-height: 0;
}

.mock-chart, .mock-recent {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 12px 14px;
  overflow: hidden;
}

.mock-chart-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--cloud);
  margin-bottom: 10px;
}

.mock-line-chart {
  width: 100%;
  height: calc(100% - 28px);
}

.mock-recent-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mock-recent-item:last-child { border-bottom: none; }

.mock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-dot.green { background: #34d399; }
.mock-dot.blue { background: #3b82f6; }
.mock-dot.orange { background: #fb923c; }

.mock-text-line {
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.mock-text-line.w50 { width: 50%; }
.mock-text-line.w55 { width: 55%; }
.mock-text-line.w60 { width: 60%; }
.mock-text-line.w65 { width: 65%; }
.mock-text-line.w70 { width: 70%; }

.mock-badge-success, .mock-badge-info, .mock-badge-warn, .mock-badge-error {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-left: auto;
}

.mock-badge-success { color: #34d399; background: rgba(52,211,153,0.12); }
.mock-badge-info { color: #3b82f6; background: rgba(59,130,246,0.12); }
.mock-badge-warn { color: #fb923c; background: rgba(251,146,60,0.12); }
.mock-badge-error { color: #f87171; background: rgba(248,113,113,0.12); }

/* --- Agent Config Mock --- */
.mock-agent-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 14px;
  padding: 14px 20px;
  overflow: hidden;
}

.mock-agent-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.mock-form-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--steel);
}

.mock-form-input {
  font-size: 12px;
  color: var(--cloud);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 8px 12px;
}

.mock-form-textarea {
  font-size: 11px;
  color: var(--steel);
  line-height: 1.6;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 10px 12px;
  flex: 1;
  min-height: 90px;
}

.mock-prompt-text {
  display: block;
  margin-bottom: 8px;
}

.mock-tool-pills {
  display: flex;
  gap: 6px;
}

.mock-pill {
  font-size: 10px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(59,130,246,0.12);
  padding: 3px 10px;
  border-radius: 10px;
}
.mock-pill-var {
  color: #b45309;
  background: rgba(245, 158, 11, 0.14);
  font-family: 'JetBrains Mono', monospace;
}

.mock-agent-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mock-config-section {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 10px 12px;
}

.mock-config-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.mock-config-select {
  font-size: 11px;
  color: var(--cloud);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 6px 10px;
}

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

.mock-slider-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--steel);
}

.mock-slider-row span:first-child {
  width: 60px;
  flex-shrink: 0;
}

.mock-slider {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.mock-slider-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Call Records Mock --- */
.mock-search-bar {
  width: 160px;
  height: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.mock-table {
  flex: 1;
  padding: 0 20px;
  overflow: hidden;
}

.mock-table-head {
  display: grid;
  grid-template-columns: 70px 1fr 70px 1fr 70px 70px;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  font-weight: 600;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.mock-table-row {
  display: grid;
  grid-template-columns: 70px 1fr 70px 1fr 70px 70px;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 11px;
  color: var(--cloud);
  align-items: center;
}

.mock-mono {
  font-family: var(--font-mono);
  font-size: 11px;
}

.mock-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.mock-page-info {
  font-size: 10px;
  color: var(--steel);
}

.mock-page-btns {
  display: flex;
  gap: 4px;
}

.mock-page-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--steel);
  background: rgba(255,255,255,0.04);
  border-radius: 4px;
}

.mock-page-btn.active {
  color: #fff;
  background: var(--accent);
}

/* --- IVR Designer Mock --- */
.mock-ivr-canvas {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.mock-ivr-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.mock-ivr-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mock-ivr-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 1;
}

.mock-ivr-node span {
  font-size: 10px;
  color: var(--cloud);
  white-space: nowrap;
}

.mock-ivr-node-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 10px;
  border: 1.5px solid;
}

.mock-ivr-start .mock-ivr-node-icon {
  background: rgba(52,211,153,0.1);
  border-color: rgba(52,211,153,0.4);
  color: #34d399;
}

.mock-ivr-play .mock-ivr-node-icon {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.4);
  color: #3b82f6;
}

.mock-ivr-menu .mock-ivr-node-icon {
  background: rgba(251,146,60,0.1);
  border-color: rgba(251,146,60,0.4);
  color: #fb923c;
}

.mock-ivr-keys {
  display: flex;
  gap: 3px;
}

.mock-ivr-keys span {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--steel);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
}

.mock-ivr-queue .mock-ivr-node-icon {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.4);
  color: #8b5cf6;
}

.mock-ivr-ai .mock-ivr-node-icon {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.4);
  color: #3b82f6;
}

.mock-ivr-end .mock-ivr-node-icon {
  background: rgba(248,113,113,0.1);
  border-color: rgba(248,113,113,0.4);
  color: #f87171;
  border-radius: 50%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 14, 18, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50%;
  color: var(--cloud);
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  z-index: 2;
}

.carousel-btn:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: var(--accent);
  color: var(--pure);
}

.carousel-btn-prev { left: 16px; }
.carousel-btn-next { right: 16px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 20px 0 12px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--slate);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.carousel-dot.active {
  width: 24px;
  background: var(--accent);
}

/* ===== Tech ===== */
.tech {
  background: var(--ink);
}

.tech-pipeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.pipeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pipeline-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--r-md);
  transition: all 0.3s var(--ease);
}

.pipeline-node:hover .pipeline-icon {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.pipeline-node span {
  font-size: 12px;
  color: var(--steel);
  white-space: nowrap;
}

.pipeline-arrow {
  display: flex;
  align-items: center;
  padding: 0 6px;
  margin-bottom: 20px;
  opacity: 0.5;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.tech-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--cloud);
  background: var(--ink-light);
  border: 1px solid rgba(59, 130, 246, 0.1);
  padding: 6px 16px;
  border-radius: var(--r-full);
  transition: all var(--duration) var(--ease);
}

.tech-tag:hover {
  border-color: rgba(59, 130, 246, 0.3);
  color: var(--accent);
}

.tech-providers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}

.provider-group {
  background: var(--ink-light);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}

.provider-group h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--pure);
  margin-bottom: 14px;
}

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

.provider-list li {
  font-size: 14px;
  color: var(--steel);
  padding-left: 16px;
  position: relative;
}

.provider-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.btn-api {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--steel);
  background: var(--ink-light);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--r-full);
  cursor: default;
  transition: all var(--duration) var(--ease);
}

.coming-soon {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: var(--r-full);
}

/* ===== Metrics ===== */
.metrics {
  background: var(--ink);
  padding: 80px 0;
}

.metrics-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 14px;
  color: var(--steel);
}

/* ===== Use Cases ===== */
.use-cases {
  background: var(--ink);
}

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

.usecase-card {
  background: var(--ink-light);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: all 0.3s var(--ease);
}

.usecase-card:hover {
  border-color: rgba(59, 130, 246, 0.25);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12), 0 0 0 1px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.usecase-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.usecase-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--pure);
  margin-bottom: 10px;
}

.usecase-card p {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq {
  background: var(--ink);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--r-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pure);
  background: rgba(59, 130, 246, 0.04);
  text-align: left;
  transition: background var(--duration) var(--ease);
}

.faq-question:hover {
  background: rgba(59, 130, 246, 0.08);
}

.faq-chevron {
  color: var(--steel);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: var(--cloud);
  line-height: 1.8;
}

/* ===== Bottom CTA ===== */
.bottom-cta {
  position: relative;
  text-align: center;
  padding: 100px 0;
}

.bottom-cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1b4b 0%, #0c0e12 100%);
}

.bottom-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 65%);
  pointer-events: none;
}

.bottom-cta-content {
  position: relative;
  z-index: 1;
}

.bottom-cta h2 {
  font-size: 40px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 12px;
}

.bottom-cta p {
  font-size: 16px;
  color: var(--steel);
  margin-bottom: 32px;
}

/* Stagger reveal for grid items */
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.5s; }

.usecases-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.usecases-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.usecases-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== Responsive: Tablet (768px - 1023px) ===== */
@media (max-width: 1023px) {
  .container {
    padding: 0 40px;
  }

  .section {
    padding: 80px 0;
  }

  .section-title h2 {
    font-size: 32px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tech-providers {
    gap: 16px;
  }

  .usecases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .metrics-grid {
    gap: 48px;
  }

  .metric-value {
    font-size: 40px;
  }

  .bottom-cta h2 {
    font-size: 32px;
  }
}

/* ===== Responsive: Mobile (< 768px) ===== */
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title p {
    font-size: 14px;
  }

  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-login,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  /* Hero */
  .hero h1 {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-cta a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  /* Reduce particles on mobile */
  .hero-particles .particle:nth-child(n+5) {
    display: none;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .feature-card {
    padding: 24px 20px;
  }

  /* Carousel */
  .carousel-btn {
    display: none;
  }

  .mock-ui {
    height: 320px;
  }

  .mock-sidebar {
    width: 36px;
  }

  .mock-sidebar-logo {
    width: 22px;
    height: 22px;
  }

  .mock-sidebar-item {
    width: 24px;
    height: 24px;
  }

  .mock-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 8px 10px 0;
  }

  .mock-stat-card {
    padding: 8px 10px;
  }

  .mock-stat-value {
    font-size: 14px;
  }

  .mock-chart-area {
    grid-template-columns: 1fr;
    padding: 6px 10px 10px;
  }

  .mock-recent {
    display: none;
  }

  .mock-topbar {
    padding: 0 10px;
    height: 36px;
  }

  .mock-breadcrumb {
    font-size: 11px;
  }

  .mock-agent-layout {
    grid-template-columns: 1fr;
    padding: 8px 10px;
    gap: 8px;
  }

  .mock-agent-sidebar {
    flex-direction: row;
    gap: 6px;
    overflow: hidden;
  }

  .mock-config-section {
    flex: 1;
    min-width: 0;
  }

  .mock-table-head,
  .mock-table-row {
    grid-template-columns: 55px 1fr 55px 70px;
    font-size: 9px;
  }

  .mock-table-head .col-dur,
  .mock-table-head .col-status,
  .mock-table-row .col-dur,
  .mock-table-row .col-status {
    display: none;
  }

  .mock-ivr-node-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .mock-ivr-node span {
    font-size: 8px;
  }

  /* Tech */
  .tech-pipeline {
    flex-direction: column;
    gap: 4px;
  }

  .pipeline-arrow {
    transform: rotate(90deg);
    padding-bottom: 0;
    margin: 0;
  }

  .tech-providers {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* Metrics */
  .metrics-grid {
    flex-wrap: wrap;
    gap: 32px;
  }

  .metric-item {
    flex: 1 1 40%;
  }

  .metric-value {
    font-size: 36px;
  }

  /* Use Cases */
  .usecases-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  /* FAQ */
  .faq-question {
    padding: 14px 18px;
    font-size: 14px;
  }

  .faq-answer p {
    padding: 0 18px 14px;
    font-size: 13px;
  }

  /* Bottom CTA */
  .bottom-cta h2 {
    font-size: 26px;
  }

  .bottom-cta .btn-hero-primary {
    width: 100%;
    max-width: 280px;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  padding-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--pure);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--steel);
  transition: color var(--duration) var(--ease);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 80px;
  font-size: 12px;
  color: var(--steel);
  text-align: center;
}

@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 32px;
  }

  .footer-bottom {
    padding: 16px 20px;
  }
}

/* Touch: replace hover with active on mobile */
@media (hover: none) {
  .feature-card:hover,
  .usecase-card:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(59, 130, 246, 0.08);
  }

  .feature-card:active,
  .usecase-card:active {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.08);
  }
}

/* ═══════════════════════════════════════════════════════════
   REDESIGN · 浅色分区 + AI 能力展示 + 呼叫中心底座
   ═══════════════════════════════════════════════════════════ */

/* Hero 数字角标 */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-top: 56px;
  flex-wrap: wrap;
  animation: heroStatsIn 0.8s ease-out 0.4s both;
}
@keyframes heroStatsIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-stat {
  text-align: center;
}
.hero-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--pure);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-num span {
  font-size: 16px;
  color: var(--accent);
  margin-left: 2px;
  font-weight: 500;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--steel);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(180, 186, 200, 0.3), transparent);
}
@media (max-width: 700px) {
  .hero-stats { gap: 20px; }
  .hero-stat-num { font-size: 24px; }
  .hero-stat-sep { display: none; }
}

/* ===== 浅色 section 基调 ===== */
.features-ai,
.features-base {
  background: #ffffff;
  color: #0f172a;
  padding: 120px 0;
}
.features-base {
  background: #f6f8fb;
}

.features-ai .section-title h2,
.features-base .section-title h2 {
  color: #0f172a;
}
.features-ai .section-title p,
.features-base .section-title p {
  color: #64748b;
}
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

/* ===== AI 核心:大卡片 交替 左右 ===== */
.features-ai-grid {
  display: grid;
  gap: 80px;
  margin-top: 16px;
}
.feature-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-big.reverse .feature-big-text { order: 2; }
.feature-big.reverse .feature-big-img  { order: 1; }

.feature-big-text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.feature-big-text p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 20px;
}
.feature-big-text p code {
  font-family: var(--font-mono);
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}
.feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-bullets li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}
.feature-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}

.feature-big-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
@media (max-width: 900px) {
  .feature-big { grid-template-columns: 1fr; gap: 30px; }
  .feature-big.reverse .feature-big-text { order: 1; }
  .feature-big.reverse .feature-big-img { order: 2; }
}

/* ===== Mock 插图 · 通用 ===== */
.mock-tryout, .mock-pipeline, .mock-prompt, .mock-live {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 20px 60px -20px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

/* Mock Tryout */
.mock-tryout-head {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #eef2f7;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}
.mock-tryout-close { color: #94a3b8; font-size: 18px; }
.mock-tryout-body {
  padding: 20px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-bubble {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 78%;
}
.mock-bubble-agent {
  align-self: flex-start;
  background: #f1f5f9;
  color: #0f172a;
  border-top-left-radius: 2px;
}
.mock-bubble-user {
  align-self: flex-end;
  background: rgba(59, 130, 246, 0.1);
  color: #0f172a;
  border-top-right-radius: 2px;
}
.mock-chips {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.mock-chips span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #64748b;
  background: rgba(0,0,0,0.04);
  padding: 1px 6px;
  border-radius: 3px;
}
.mock-tryout-ctrl {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid #eef2f7;
}
.mock-mic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
  position: relative;
}
.mock-mic::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fff;
}
.mock-wave {
  flex: 1;
  display: flex;
  gap: 3px;
  align-items: center;
  height: 24px;
}
.mock-wave span {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  animation: mockWave 1.2s infinite ease-in-out;
}
.mock-wave span:nth-child(1){ height: 40%; animation-delay: 0s; }
.mock-wave span:nth-child(2){ height: 70%; animation-delay: 0.1s; }
.mock-wave span:nth-child(3){ height: 50%; animation-delay: 0.2s; }
.mock-wave span:nth-child(4){ height: 90%; animation-delay: 0.3s; }
.mock-wave span:nth-child(5){ height: 60%; animation-delay: 0.4s; }
.mock-wave span:nth-child(6){ height: 80%; animation-delay: 0.5s; }
.mock-wave span:nth-child(7){ height: 45%; animation-delay: 0.6s; }
.mock-wave span:nth-child(8){ height: 65%; animation-delay: 0.7s; }
@keyframes mockWave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.mock-tryout-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #64748b;
}

/* Mock Pipeline */
.mock-pipeline {
  padding: 40px 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}
.mock-pipe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.mock-pipe-node {
  background: #fff;
  border: 1px solid #dbe4f0;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 4px rgba(15,23,42,0.04);
}
.mock-pipe-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  animation: mockPulse 1.6s infinite;
}
@keyframes mockPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
.mock-pipe-node-out { background: var(--accent); color: #fff; border-color: var(--accent); }
.mock-pipe-node-out .mock-pipe-dot { background: #fff; box-shadow: 0 0 12px #fff; }
.mock-pipe-arrow {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #cbd5e1 20%, #cbd5e1 80%, transparent);
  position: relative;
  min-width: 16px;
}
.mock-pipe-arrow::after {
  content: '';
  position: absolute;
  right: 4px; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid #94a3b8;
  border-right: 1px solid #94a3b8;
  transform: translateY(-50%) rotate(45deg);
}
.mock-pipe-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #64748b;
  flex-wrap: wrap;
  gap: 8px;
}
.mock-pipe-total {
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

/* Mock Prompt */
.mock-prompt {
  padding: 24px;
}
.mock-prompt-head {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.mock-prompt-body {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 10px;
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
}
.mock-var {
  color: #3b82f6;
  background: rgba(59,130,246,0.12);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}
.mock-arrow-down {
  text-align: center;
  margin: 14px 0;
  color: #64748b;
  font-size: 12px;
}
.mock-arrow-down span {
  margin-left: 6px;
}
.mock-prompt-rendered {
  background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(59,130,246,0.02));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #0f172a;
}
.mock-prompt-rendered b {
  color: var(--accent);
  font-weight: 600;
}

/* Mock Live */
.mock-live {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 340px;
}
.mock-live-left {
  border-right: 1px solid #eef2f7;
  background: #fafbfc;
}
.mock-live-head {
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
}
.mock-live-count {
  background: #10b981;
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
}
.mock-call-item {
  padding: 10px 14px;
  border-left: 3px solid transparent;
  display: flex;
  gap: 8px;
  cursor: default;
  transition: background 0.2s;
}
.mock-call-selected {
  background: #fff;
  border-left-color: var(--accent);
}
.mock-call-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(16,185,129,0.2);
}
.mock-call-info {
  flex: 1;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  color: #0f172a;
}
.mock-call-meta {
  font-size: 11px;
  color: #64748b;
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 3px;
}
.mock-tag-task { background: #eef2ff; color: #4f46e5; padding: 1px 5px; border-radius: 3px; font-size: 10px; }
.mock-tag-in   { background: #ecfdf5; color: #059669; padding: 1px 5px; border-radius: 3px; font-size: 10px; }

.mock-live-right {
  padding: 20px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ===== 完整呼叫中心:4 小卡 ===== */
.features-base-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) {
  .features-base-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features-base-grid { grid-template-columns: 1fr; }
}
.feature-card-lite {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.25s;
}
.feature-card-lite:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 20px 40px -15px rgba(59,130,246,0.15);
  transform: translateY(-4px);
}
.feature-card-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(59,130,246,0.1);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-card-lite h3 {
  font-size: 17px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 10px;
}
.feature-card-lite p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #475569;
}

/* 响应式标题 */
@media (max-width: 700px) {
  .features-ai, .features-base { padding: 72px 0; }
  .feature-big-text h3 { font-size: 22px; }
  .feature-big-text p { font-size: 14.5px; }
}

/* ═══════════════════════════════════════════════════════════
   浅色化:Screenshots / Tech / Metrics / Use-cases / FAQ
   保留 Hero 与 Bottom CTA 的深色,形成强对比
   ═══════════════════════════════════════════════════════════ */

.screenshots,
.tech,
.metrics,
.use-cases,
.faq {
  background: #ffffff !important;
  color: #0f172a;
}
/* 让深→浅→深交替节奏更清晰 */
.screenshots,
.metrics,
.faq       { background: #ffffff !important; }
.tech,
.use-cases { background: #f6f8fb !important; }

/* 通用:section title 在浅色底下改深色 */
.screenshots .section-title h2,
.tech .section-title h2,
.metrics .section-title h2,
.use-cases .section-title h2,
.faq .section-title h2 { color: #0f172a; }

.screenshots .section-title p,
.tech .section-title p,
.metrics .section-title p,
.use-cases .section-title p,
.faq .section-title p { color: #64748b; }

/* ---- Screenshots / Carousel ---- */
/* mock-ui 本身是深色窗口,浅色 section 下自带对比,不需要额外包装 */
.carousel-btn {
  background: rgba(15, 23, 42, 0.06) !important;
  color: #0f172a !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
}
.carousel-btn:hover {
  background: rgba(59, 130, 246, 0.1) !important;
  color: var(--accent) !important;
}
.carousel-dot {
  background: rgba(15, 23, 42, 0.15) !important;
}
.carousel-dot.active {
  background: var(--accent) !important;
}

/* ---- Tech pipeline ---- */
.tech-pipeline .tech-node,
.tech-step {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  color: #0f172a !important;
}
.tech-tag {
  background: #ffffff !important;
  border-color: #e2e8f0 !important;
  color: #0f172a !important;
}
.tech-tag:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(59,130,246,0.06) !important;
}
.tech-providers {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
}
.tech-providers h4,
.tech h3,
.tech h4 {
  color: #0f172a !important;
}
.tech-providers p,
.tech p {
  color: #475569 !important;
}
/* 兜底:tech 区的子标题 / 纯文字 */
.tech * {
  border-color: #e2e8f0;
}
/* 渐变线(如流水线连接线) */
.tech-arrow,
.tech-pipeline-line {
  background: linear-gradient(to right, transparent, #cbd5e1, transparent) !important;
}

/* ---- Metrics ---- */
.metric-item,
.metric-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 16px -4px rgba(15,23,42,0.06);
}
.metric-value,
.metric-number {
  color: var(--accent) !important;
}
.metric-label,
.metrics-grid p {
  color: #475569 !important;
}

/* ---- Use Cases ---- */
.usecase-card {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  color: #0f172a !important;
}
.usecase-card:hover {
  border-color: rgba(59,130,246,0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(59,130,246,0.15) !important;
}
.usecase-card h3 {
  color: #0f172a !important;
}
.usecase-card p {
  color: #475569 !important;
}
.usecase-icon {
  background: rgba(59,130,246,0.1) !important;
  color: var(--accent) !important;
}

/* ---- FAQ ---- */
.faq-item {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 6px rgba(15,23,42,0.04);
}
.faq-item.open {
  border-color: rgba(59,130,246,0.3) !important;
  box-shadow: 0 8px 24px rgba(59,130,246,0.08) !important;
}
.faq-question {
  color: #0f172a !important;
}
.faq-question:hover {
  background: rgba(59,130,246,0.04) !important;
}
.faq-answer p,
.faq-answer {
  color: #475569 !important;
}
.faq-chevron {
  color: #94a3b8;
}
.faq-item.open .faq-chevron {
  color: var(--accent) !important;
}

/* ═══════════════════════════════════════════════════════════
   Integrations (tech v2) + OpenAPI 入口
   ═══════════════════════════════════════════════════════════ */

.tech-providers-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 860px) {
  .tech-providers-v2 { grid-template-columns: 1fr; }
}
.tech-providers-v2 .provider-group {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px;
  padding: 24px;
  transition: all 0.25s;
}
.tech-providers-v2 .provider-group:hover {
  border-color: rgba(59,130,246,0.3) !important;
  box-shadow: 0 20px 40px -15px rgba(59,130,246,0.15);
  transform: translateY(-4px);
}
.provider-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
}
.provider-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
.provider-badge.asr { background: #0ea5e9; }
.provider-badge.llm { background: var(--accent); }
.provider-badge.tts { background: #10b981; }
.provider-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.provider-items span {
  background: #f1f5f9;
  color: #334155;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12.5px;
  transition: all 0.15s;
}
.provider-items span:hover {
  background: rgba(59,130,246,0.12);
  color: var(--accent);
}

/* Tech stack v2 */
.tech-stack-v2 {
  text-align: center;
  margin-bottom: 56px;
}
.tech-stack-title {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.tech-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tech-tags-v2 span {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  transition: all 0.15s;
}
.tech-tags-v2 span:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(59,130,246,0.04);
}

/* Tech API CTA block */
.tech-api-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 36px 32px;
}
@media (max-width: 860px) {
  .tech-api-v2 { grid-template-columns: 1fr; gap: 24px; padding: 28px; }
}
.tech-api-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.tech-api-left p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 18px;
}
.btn-api-v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}
.btn-api-v2:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(59,130,246,0.4);
}
.btn-api-v2 svg { transition: transform 0.2s; }
.btn-api-v2:hover svg { transform: translateX(3px); }

.tech-api-code {
  background: #0f172a;
  border-radius: 10px;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.7;
}
.tech-api-code-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.tech-api-code-method {
  background: #10b981;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.tech-api-code-head code {
  color: #cbd5e1;
  font-size: 12px;
}
.tech-api-code pre {
  padding: 14px;
  margin: 0;
  color: #cbd5e1;
  white-space: pre-wrap;
  overflow-x: auto;
}
.tak-k { color: #93c5fd; }
.tak-f { color: #c4b5fd; }
.tak-s { color: #86efac; }

/* ============ Takeover mock ============ */
.mock-takeover {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mock-takeover-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}
.mock-takeover-phone {
  font-size: 18px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #0f172a;
}
.mock-takeover-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(217, 119, 6, 0.3);
}
.mock-takeover-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mock-tk-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}
.mock-tk-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: none;
}
.mock-tk-dot-customer { background: #3b82f6; box-shadow: 0 0 0 4px rgba(59,130,246,0.2); }
.mock-tk-dot-agent { background: #94a3b8; }
.mock-tk-dot-human { background: #16a34a; box-shadow: 0 0 0 4px rgba(22,163,74,0.2); animation: tk-pulse 2s ease-in-out infinite; }
@keyframes tk-pulse { 50% { box-shadow: 0 0 0 8px rgba(22,163,74,0.1); } }
.mock-tk-leg {
  font-size: 13px;
  color: #334155;
}
.mock-tk-row-strike .mock-tk-leg {
  color: #94a3b8;
  text-decoration: line-through;
}
.mock-tk-connector {
  width: 2px;
  height: 20px;
  background: #e2e8f0;
  margin-left: 5px;
}
.mock-tk-connector-active {
  background: linear-gradient(to bottom, #e2e8f0, #16a34a);
}

/* ============ Quality / QA mock ============ */
.mock-qa-card {
  width: 100%;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.mock-qa-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 16px;
}
.mock-qa-score {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mock-qa-score-num {
  font-size: 38px;
  font-weight: 700;
  color: #16a34a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.mock-qa-score-label {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
}
.mock-qa-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-qa-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  align-self: flex-start;
}
.mock-qa-badge-positive {
  background: #dcfce7;
  color: #16a34a;
}
.mock-qa-badge-intent {
  background: #fef3c7;
  color: #b45309;
}
.mock-qa-section { margin-bottom: 14px; }
.mock-qa-section:last-child { margin-bottom: 0; }
.mock-qa-section-title {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.mock-qa-text {
  font-size: 13px;
  color: #0f172a;
  line-height: 1.6;
}
.mock-qa-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.mock-qa-action {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
  background: #f1f5f9;
  color: #475569;
  border: 1px dashed #cbd5e1;
}
