/* Hero */
.hero {
  padding: 4rem 0 2.5rem;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 1.8rem;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-green), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 3rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.btn-primary {
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: #000;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(0,212,255,0.3); }
.btn-secondary {
  padding: 0.9rem 2.5rem;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Live Metrics Strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin: 2.5rem 0;
}
.metric-card {
  background: var(--bg-card);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: background 0.3s;
}
.metric-card:hover { background: rgba(0, 212, 255, 0.05); }
.metric-value {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 0.25rem;
}
.metric-value.cyan { color: var(--accent); }
.metric-value.green { color: var(--accent-green); }
.metric-value.purple { color: var(--accent-purple); }
.metric-value.amber { color: var(--accent-amber); }
.metric-label { font-size: 0.85rem; color: var(--text-secondary); }
.metric-sub { font-size: 0.7rem; color: rgba(148,163,184,0.6); margin-top: 0.25rem; }

/* Agent Grid */
.section { padding: 3rem 0; }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.section-header p { color: var(--text-secondary); max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
}
.agent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.agent-card:hover {
  border-color: rgba(0,212,255,0.25);
  transform: translateY(-6px) rotateX(1deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.06);
}
.agent-card:hover::before { opacity: 1; }
.agent-icon { font-size: 2rem; margin-bottom: 1rem; }
.agent-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.agent-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }
.agent-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 1rem;
}
.badge-mdr { background: rgba(168,85,247,0.15); color: var(--accent-purple); }
.badge-safe { background: rgba(0,255,136,0.1); color: var(--accent-green); }

/* Security Vault Visual */
.vault-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.vault-layers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vault-layer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}
.vault-layer:hover { border-color: rgba(0,212,255,0.3); }
.layer-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,212,255,0.08);
  border-radius: 12px;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.layer-name { font-weight: 600; font-size: 1.05rem; }
.layer-desc { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  display: flex;
  flex-direction: column;
}
  transform-style: preserve-3d;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 60px rgba(0,212,255,0.1);
}
.price-card.featured::before {
  content: 'Empfohlen';
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: linear-gradient(135deg, var(--accent), #0099cc);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 100px;
}
.price-tier { font-size: 0.9rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.price-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.price-amount { font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem; }
.price-period { font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.price-features { list-style: none; margin-bottom: 1.5rem; flex: 1; }
.price-features li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-features li::before { content: '✓'; color: var(--accent-green); font-weight: 700; }
.price-btn {
  width: 100%;
  padding: 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

/* Footer */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
footer p { color: var(--text-secondary); font-size: 0.85rem; }
footer .tagline {
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .agent-grid { grid-template-columns: 1fr; }
  .vault-visual { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}

/* ── Hero Image Slider ── */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 3rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21/9;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,212,255,0.08);
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slider .slide.active { opacity: 1; }
.hero-slider .slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,10,20,0.3) 0%, rgba(6,10,20,0.7) 100%);
}
.slide-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 2;
  max-width: 500px;
}
.slide-caption h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.slide-caption p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}
.slider-dots {
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── Glassmorphism Cards ── */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ── Use Cases Section ── */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}
.usecase-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}
.usecase-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-8px) rotateX(1deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.06);
}
.usecase-card:hover::before { opacity: 1; }
.usecase-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.usecase-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.usecase-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }
.usecase-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: rgba(0,255,136,0.08);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
}

/* ── Advanced Metrics Dashboard ── */
.metrics-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}
.metric-big {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
  transform-style: preserve-3d;
  perspective: 800px;
}
.metric-big:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(0,212,255,0.08);
}
.metric-big::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.metric-big.cyan::after { background: linear-gradient(90deg, transparent, var(--accent), transparent); }
.metric-big.green::after { background: linear-gradient(90deg, transparent, var(--accent-green), transparent); }
.metric-big.purple::after { background: linear-gradient(90deg, transparent, var(--accent-purple), transparent); }
.metric-big .number {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.metric-big .label { font-size: 1rem; color: var(--text-secondary); margin-bottom: 0.3rem; }
.metric-big .sublabel { font-size: 0.8rem; color: rgba(148,163,184,0.5); }

/* Mini sparkline bar */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 40px;
  margin-top: 1rem;
  justify-content: center;
}
.sparkline .bar {
  width: 6px;
  border-radius: 3px 3px 0 0;
  animation: sparkGrow 1.5s ease-out forwards;
  opacity: 0;
}
@keyframes sparkGrow {
  0% { height: 0; opacity: 0; }
  100% { opacity: 1; }
}

/* ── Workflow Timeline ── */
.workflow-timeline {
  display: flex;
  gap: 0;
  position: relative;
  padding: 2rem 0;
}
.workflow-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}
.workflow-step::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
}
.workflow-step:last-child::before { display: none; }
.step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  border: 2px solid var(--border);
  background: var(--bg-primary);
  transition: all 0.3s;
}
.workflow-step:hover .step-number {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,212,255,0.3);
  color: var(--accent);
}
.step-title { font-size: 0.85rem; font-weight: 600; margin-bottom: 0.25rem; }
.step-desc { font-size: 0.75rem; color: var(--text-secondary); }

/* ── Trusted By / Social Proof ── */
.trust-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.trust-item .num { font-size: 1.5rem; font-weight: 800; color: var(--accent); }

@media (max-width: 1024px) {
  .agent-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics-dashboard { grid-template-columns: repeat(2, 1fr); }
  .vault-visual { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 2rem 0; }
  .section-header { margin-bottom: 1.5rem; }
  .section-header h2 { font-size: 1.6rem; letter-spacing: -0.5px; }
  .section-header p { font-size: 0.88rem; line-height: 1.5; }

  /* Nav */
  nav { padding: 0.5rem 1rem; }
  .nav-inner { padding: 0.5rem 0.75rem; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.78rem; padding: 0.4rem 0.8rem; }

  /* Hero */
  .hero { padding: 3rem 0 2rem; }
  .hero h1 { font-size: 1.8rem; letter-spacing: -0.5px; margin-bottom: 1rem; line-height: 1.15; }
  .hero-sub { font-size: 0.88rem; margin-bottom: 1.25rem; line-height: 1.5; }
  .hero-values { gap: 0.5rem; flex-wrap: wrap; }
  .hero-value { padding: 0.35rem 0.6rem; flex: 1 1 45%; justify-content: center; min-width: 0; }
  .hv-num { font-size: 1.2rem; }
  .hv-icon { font-size: 0.9rem; }
  .hv-text { font-size: 0.72rem; }
  .hero-ctas { flex-direction: column; gap: 0.6rem; align-items: stretch; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { width: 100%; text-align: center; padding: 0.75rem 1.5rem; font-size: 0.92rem; }
  .hero-proof { font-size: 0.65rem; }

  /* Grids → single column */
  .metrics-strip { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .metrics-dashboard { grid-template-columns: 1fr; gap: 0.75rem; }
  .agent-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .usecase-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .pricing-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .vault-visual { grid-template-columns: 1fr; gap: 1.25rem; }
  .dep-grid { grid-template-columns: 1fr; gap: 0.75rem; }

  /* Metrics */
  .metric-big { padding: 1.25rem; }
  .metric-big .number { font-size: 2.4rem; }
  .metric-big .label { font-size: 0.82rem; }

  /* Workflow timeline → vertical */
  .workflow-timeline { flex-direction: column; gap: 0.75rem; }
  .workflow-step { text-align: left; display: flex; align-items: center; gap: 0.75rem; padding: 0; }
  .workflow-step::before { display: none; }
  .step-number { width: 36px; height: 36px; font-size: 0.88rem; margin: 0; flex-shrink: 0; }
  .step-title { font-size: 0.88rem; }
  .step-desc { font-size: 0.75rem; }

  /* Agent cards */
  .agent-icon { font-size: 1.3rem; }
  .agent-name { font-size: 0.95rem; }
  .agent-desc { font-size: 0.8rem; }

  /* Use case cards */
  .usecase-card { padding: 1.5rem; }
  .usecase-icon { width: 44px; height: 44px; font-size: 1.1rem; margin-bottom: 0.75rem; }
  .usecase-title { font-size: 1rem; }
  .usecase-desc { font-size: 0.82rem; }

  /* Pricing */
  .price-card { padding: 1.5rem 1.25rem; }
  .price-amount { font-size: 1.8rem; }
  .price-name { font-size: 1.1rem; }
  .price-tier { font-size: 0.68rem; }
  .price-period { font-size: 0.78rem; }
  .price-features li { font-size: 0.85rem; padding: 0.35rem 0; }

  /* CTA banner */
  .cta-banner { padding: 1.75rem 1.25rem; }
  .cta-banner h2 { font-size: 1.3rem; }
  .cta-banner p { font-size: 0.85rem; }

  /* Monitor demo — HIDE on mobile, show button only */
  .demo-monitor { display: none !important; }
  .demo-showcase { text-align: center; }
  .demo-showcase-label { font-size: 0.85rem; margin-bottom: 0.75rem; }
  .demo-showcase-actions { gap: 0.6rem; }
  .demo-showcase-actions button { font-size: 0.95rem; padding: 0.8rem 1.5rem; width: 100%; border-radius: 12px; }
  .demo-showcase-actions span { font-size: 0.8rem; }

  /* Compliance badges */
  .badge-strip { gap: 0.5rem; }
  .compliance-badge { font-size: 0.65rem; padding: 0.35rem 0.7rem; }

  /* Section dividers */
  .section-divider { margin: 0; }
  .section-label { font-size: 0.65rem; }

  /* Footer */
  footer { padding: 2rem 0 1.5rem; }
  footer .tagline { font-size: 0.88rem; }

  /* Vault layers */
  .vault-layer { padding: 0.75rem; }
  .layer-name { font-size: 0.92rem; }
  .layer-desc { font-size: 0.78rem; }

  /* Deployment cards */
  .dep-card { padding: 1.25rem; }
  .dep-title { font-size: 1rem; }
  .dep-desc { font-size: 0.82rem; }

  /* Trust strip */
  .trust-strip { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .section { padding: 1.75rem 0; }
  .section-header h2 { font-size: 1.4rem; }
  .section-header p { font-size: 0.82rem; }
  .hero { padding: 2.5rem 0 1.5rem; }
  .hero h1 { font-size: 1.5rem; line-height: 1.2; }
  .hero-sub { font-size: 0.82rem; }
  .hero-badge { font-size: 0.65rem; padding: 0.25rem 0.6rem; }
  .hero-values { flex-direction: column; gap: 0.4rem; }
  .hero-value { flex: 1 1 100%; }
  .hv-num { font-size: 1.1rem; }
  .metrics-strip { grid-template-columns: 1fr; }
  .metric-big .number { font-size: 2rem; }
  .price-card.featured::before { font-size: 0.6rem; }
  .vault-layer { padding: 0.6rem; }
  .layer-name { font-size: 0.85rem; }
  .layer-desc { font-size: 0.72rem; }
  .demo-monitor-bezel { padding: 3px; border-radius: 8px 8px 0 0; border-width: 1px; }
  .demo-monitor-cam { width: 3px; height: 3px; margin-bottom: 2px; }
  .demo-monitor-stand { width: 50px; height: 16px; }
  .demo-monitor-base { width: 80px; height: 4px; }
  .demo-showcase-actions button { width: 100%; }
  .cta-banner { padding: 1.5rem 1rem; }
  .cta-banner h2 { font-size: 1.2rem; }
  footer { padding: 1.5rem 0 1rem; }
  footer .tagline { font-size: 0.82rem; }
  .highlight-tag { font-size: 1rem; }
}
  .layer-icon { width: 40px; height: 40px; font-size: 1.2rem; }
  .layer-name { font-size: 0.88rem; }
  .layer-desc { font-size: 0.75rem; }
}

/* ── Enhanced Hero ── */
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-values {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-value {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.hero-value:hover {
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
.hv-icon { font-size: 1.3rem; }
.hv-text { font-size: 0.88rem; color: var(--text-secondary); }

.hero-proof {
  margin-top: 2.5rem;
  font-size: 0.78rem;
  color: rgba(148,163,184,0.5);
  letter-spacing: 0.5px;
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--accent);
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* ── Interactive Agent Cards ── */
.agent-card {
  cursor: pointer;
}
.agent-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  border-top: 1px solid transparent;
}
.agent-card.expanded .agent-detail {
  max-height: 200px;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top-color: var(--border);
}
.agent-expand-hint {
  font-size: 0.7rem;
  color: rgba(148,163,184,0.4);
  margin-top: 0.5rem;
  transition: color 0.3s;
}
.agent-card:hover .agent-expand-hint { color: var(--accent); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(168,85,247,0.08));
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(0,212,255,0.06) 0%, transparent 50%);
  animation: ctaPulse 8s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
}
.cta-banner h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-banner p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media (max-width: 768px) {
  .hero-values { gap: 0.6rem; }
  .hero-value { padding: 0.4rem 0.7rem; }
}

/* ===== 3D Monitor Demo Showcase ===== */
.demo-showcase {
  margin-top: 2rem;
  text-align: center;
}
.demo-showcase-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.demo-monitor {
  position: relative;
  display: inline-block;
  perspective: 1500px;
}
.demo-monitor-bezel {
  width: min(1100px, 94vw);
  background: #111;
  border-radius: 14px 14px 0 0;
  padding: 8px 8px 5px;
  border: 2px solid #222;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(0,212,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transform: rotateX(3deg);
  transform-origin: bottom center;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), box-shadow 0.6s;
}
.demo-monitor:hover .demo-monitor-bezel {
  transform: rotateX(0deg);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(0,212,255,0.1),
    inset 0 1px 0 rgba(255,255,255,0.06);
}
.demo-monitor-cam {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1e293b;
  margin: 0 auto 6px;
  box-shadow: 0 0 4px rgba(0,212,255,0.3);
}
.demo-monitor-screen {
  border-radius: 8px;
  overflow: hidden;
  background: #060a14;
  aspect-ratio: 1600 / 950;
}
.demo-monitor-iframe {
  width: 1600px;
  height: 950px;
  border: none;
  transform-origin: top left;
  transform: scale(calc(min(1076px, 92vw - 24px) / 1600));
  display: block;
  pointer-events: auto;
}
.demo-monitor-stand {
  width: 120px;
  height: 40px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1a1a, #111);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
  border-left: 1px solid #222;
  border-right: 1px solid #222;
}
.demo-monitor-base {
  width: 220px;
  height: 8px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
  border-radius: 0 0 8px 8px;
  border: 1px solid #222;
  border-top: none;
}
.demo-monitor-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.demo-showcase-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

@media (max-width: 900px) {
  .demo-monitor { display: none !important; }
  .demo-showcase-actions button { width: 100%; }
}
@media (max-width: 480px) {
  .demo-monitor-bezel { padding: 3px; border-radius: 6px 6px 0 0; }
  .demo-monitor-cam { width: 3px; height: 3px; margin-bottom: 2px; }
  .demo-monitor-iframe {
    transform: scale(calc((100vw - 16px) / 1600));
  }
  .demo-monitor-screen { height: calc((100vw - 16px) * 950 / 1600); }
  .demo-monitor-stand { width: 40px; height: 14px; }
  .demo-monitor-base { width: 70px; height: 4px; }
  .demo-showcase-actions button { width: 100%; }
}
}
/* ===== PREMIUM DESIGN ENHANCEMENTS v3 ===== */

/* Section dividers — subtle gradient lines */
.section-divider {
  height: 1px;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.15), rgba(168,85,247,0.1), transparent);
}

/* Section labels — small accent tags above headings */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

/* Hero value pills — refined with numbers prominent */
.hv-num {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1;
}
.hero-value-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08), transparent);
  align-self: center;
}
.hero-values {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.hero-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: none;
}
.hero-value:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}

/* Glowing primary button */
.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-glow::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity 0.4s;
}
.btn-glow:hover::after {
  opacity: 0.4;
}

/* Highlight tag — used in mobile and deployment sections */
.highlight-tag {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}

/* Layer dot — replaces generic circle icon */
.layer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-green));
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(0,212,255,0.3);
}

/* Deployment grid — 4 numbered cards */
.dep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.dep-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.dep-card:hover {
  border-color: rgba(0,212,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 20px rgba(0,212,255,0.05);
}
.dep-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(0,255,136,0.05));
  border: 1px solid rgba(0,212,255,0.2);
  color: var(--accent);
}
.dep-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.dep-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Compliance badge strip — refined */
.badge-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.compliance-badge {
  padding: 0.45rem 1rem;
  background: rgba(0,212,255,0.03);
  border: 1px solid rgba(0,212,255,0.1);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(0,212,255,0.7);
  letter-spacing: 0.5px;
  transition: all 0.3s;
}
.compliance-badge:hover {
  border-color: rgba(0,212,255,0.3);
  color: var(--accent);
  background: rgba(0,212,255,0.06);
}

/* Community pricing card — subtle distinct style */
.price-card.community {
  border-style: dashed;
  border-color: rgba(148,163,184,0.15);
}
.price-card.community .price-tier {
  color: var(--accent-green);
}
.price-card.community .price-amount {
  color: var(--accent-green);
}

/* Refined usecase icon backgrounds */
.usecase-icon {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(168,85,247,0.05)) !important;
}

/* Smoother scroll behavior */
html { scroll-behavior: smooth; }

/* Enhanced footer */
footer {
  padding: 3rem 0 2rem;
}
footer .tagline {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

/* Responsive deployment grid */
@media (max-width: 1024px) {
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .dep-grid { grid-template-columns: 1fr; }
  .hero-value-divider { display: none; }
  .hero-values { gap: 0.5rem; }
  .hero-value { padding: 0.5rem 1rem; }
  .hv-num { font-size: 1.4rem; }
  .highlight-tag { font-size: 1.1rem; }
}
