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

/* Ambient gradient orb 1 */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; left: -15%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: heroOrb1 8s ease-in-out infinite;
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Extra floating orbs (via HTML divs) */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.10) 0%, transparent 70%);
  animation: heroOrb2 10s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: 5%; left: 30%;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  animation: heroOrb3 12s ease-in-out infinite;
}

@keyframes heroOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(60px, 40px) scale(1.1); }
  66% { transform: translate(-30px, 60px) scale(0.95); }
}
@keyframes heroOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 30px) scale(1.05); }
  66% { transform: translate(40px, -40px) scale(0.9); }
}
@keyframes heroOrb3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* === HERO LOAD ANIMATIONS (no IntersectionObserver needed) === */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.2);
  border-radius: var(--radius-full);
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeDown 0.8s ease forwards 0.3s;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.4);
}

.hero-title {
  margin-bottom: 20px;
  opacity: 0;
  animation: heroTitleReveal 1s ease forwards 0.5s;
  background: linear-gradient(135deg, #FFFFFF 0%, #E0E0E0 40%, var(--accent) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* After reveal, shift the gradient subtly */
@supports (-webkit-background-clip: text) {
  .hero-title {
    animation: heroTitleReveal 1s ease forwards 0.5s, textGradientShift 8s ease infinite 1.5s;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 0.8s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp 0.8s ease forwards 1.0s;
}

.hero-trust {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0;
  animation: heroFadeUp 0.6s ease forwards 1.2s;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--text-muted);
  opacity: 0;
  animation: heroFadeUp 0.5s ease forwards 1.4s;
}
/* Bounce only after it's appeared */
.hero-scroll-indicator span {
  display: inline-block;
  animation: bounce 2s infinite 2s;
}

/* === HERO KEYFRAMES === */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroTitleReveal {
  from { opacity: 0; transform: translateY(40px) scale(0.97); filter: blur(6px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes textGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* === TICKER === */
.ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-primary), transparent);
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  animation: marquee 30s linear infinite;
}
.ticker-track span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: color var(--transition-fast);
}
.ticker-track span:not(.ticker-dot):hover {
  color: var(--text-primary);
}
.ticker-dot { color: var(--accent); font-size: 0.6rem; }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* =====================================================
   AI NEURAL NETWORK ANIMATION LAYER
   ===================================================== */

/* Full-section canvas behind content */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: heroFadeIn 1.4s ease forwards 0.2s;
}
@keyframes heroFadeIn {
  to { opacity: 1; }
}

/* Ensure all hero overlays sit at correct depth.
   Container (text + CTAs) MUST be on top of every decorative layer. */
.hero-orb { z-index: 0; }
.hero-container { position: relative; z-index: 10; }
.hero-scroll-indicator { z-index: 10; }

/* =====================================================
   ROTATING AI CORE (decorative, behind content)
   ===================================================== */
.hero-ai-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: heroCoreFadeIn 1.6s ease forwards 0.6s;
}
@keyframes heroCoreFadeIn {
  to { opacity: 0.55; }
}
.hero-ai-core-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(0, 230, 118, 0.18);
}
.hero-ai-core-ring::before,
.hero-ai-core-ring::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 230, 118, 0.9);
}
.hero-ai-core-ring-1 {
  animation: coreSpin 22s linear infinite;
}
.hero-ai-core-ring-1::before { top: -3px; left: 50%; transform: translateX(-50%); }
.hero-ai-core-ring-1::after  { bottom: -3px; left: 50%; transform: translateX(-50%); background: var(--accent-blue); box-shadow: 0 0 12px rgba(59, 130, 246, 0.9); }

.hero-ai-core-ring-2 {
  inset: 14%;
  border-color: rgba(59, 130, 246, 0.18);
  animation: coreSpinReverse 16s linear infinite;
}
.hero-ai-core-ring-2::before { top: 50%; left: -3px; transform: translateY(-50%); background: var(--accent-blue); box-shadow: 0 0 12px rgba(59, 130, 246, 0.9); }
.hero-ai-core-ring-2::after  { top: 50%; right: -3px; transform: translateY(-50%); }

.hero-ai-core-ring-3 {
  inset: 28%;
  border-style: solid;
  border-color: rgba(0, 230, 118, 0.12);
  animation: coreSpin 11s linear infinite, corePulse 4s ease-in-out infinite;
}
.hero-ai-core-ring-3::before { top: 12%; right: 8%; }
.hero-ai-core-ring-3::after  { bottom: 12%; left: 8%; background: var(--accent-blue); box-shadow: 0 0 12px rgba(59, 130, 246, 0.9); }

.hero-ai-core-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #FFFFFF 0%, var(--accent) 60%, transparent 100%);
  box-shadow:
    0 0 24px rgba(0, 230, 118, 0.7),
    0 0 64px rgba(0, 230, 118, 0.35);
  animation: coreCorePulse 2.4s ease-in-out infinite;
}

@keyframes coreSpin {
  to { transform: rotate(360deg); }
}
@keyframes coreSpinReverse {
  to { transform: rotate(-360deg); }
}
@keyframes corePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes coreCorePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 24px rgba(0, 230, 118, 0.7), 0 0 64px rgba(0, 230, 118, 0.35);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.35);
    box-shadow: 0 0 36px rgba(0, 230, 118, 0.95), 0 0 96px rgba(0, 230, 118, 0.5);
  }
}

/* =====================================================
   AGENT CORE STATUS LABEL
   ===================================================== */
.hero-ai-core-label {
  position: absolute;
  top: calc(50% + 32px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0, 230, 118, 0.08);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: var(--radius-full);
  white-space: nowrap;
  backdrop-filter: blur(6px);
}
.hero-ai-core-think {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.4s infinite;
}

/* =====================================================
   TOOL NODES — orbiting capabilities the agent invokes
   ===================================================== */
.hero-tools { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.tool-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px 9px 9px;
  background: rgba(20, 20, 20, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(8px);
  animation: toolFadeIn 0.6s ease forwards;
  transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.tool-node:nth-child(1) { animation-delay: 1.0s; }
.tool-node:nth-child(2) { animation-delay: 1.15s; }
.tool-node:nth-child(3) { animation-delay: 1.30s; }
.tool-node:nth-child(4) { animation-delay: 1.45s; }
.tool-node:nth-child(5) { animation-delay: 1.60s; }
.tool-node:nth-child(6) { animation-delay: 1.75s; }

.tool-icon {
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tool-icon svg { width: 16px; height: 16px; }
.tool-label { padding-right: 4px; }

/* Active state — when agent invokes the tool */
.tool-node.is-active {
  border-color: var(--accent);
  color: var(--text-primary);
  box-shadow:
    0 0 0 1px rgba(0, 230, 118, 0.4),
    0 8px 28px rgba(0, 230, 118, 0.25);
  transform: translateY(-2px);
}
.tool-node.is-active .tool-icon {
  color: var(--accent);
  background: rgba(0, 230, 118, 0.15);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.5);
}
.tool-node.is-active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  border: 1px solid var(--accent);
  opacity: 0;
  animation: toolRing 0.9s ease-out;
}
@keyframes toolRing {
  0%   { transform: scale(0.92); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}
@keyframes toolFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* =====================================================
   LIVE AGENT CONSOLE (terminal-style action log)
   ===================================================== */
.hero-console {
  position: absolute;
  top: 50%;
  left: 56px;
  transform: translateY(calc(-50% + 12px));
  width: 260px;
  z-index: 1;
  pointer-events: none;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  font-family: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: panelIn 0.7s ease forwards 1.2s;
}
.hero-console-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.hero-console-light {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 1.4s infinite;
}
.hero-console-title { color: var(--text-secondary); font-weight: 500; }
.hero-console-body {
  list-style: none;
  margin: 0; padding: 10px 14px;
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--text-secondary);
  min-height: 138px;
  max-height: 138px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}
.hero-console-body li {
  opacity: 0;
  transform: translateY(6px);
  animation: logIn 0.4s ease forwards;
  display: flex;
  gap: 8px;
}
.hero-console-body li.is-fading { animation: logOut 0.5s ease forwards; }
.hero-console-body .log-time { color: var(--text-muted); flex-shrink: 0; }
.hero-console-body .log-arrow { color: var(--accent); flex-shrink: 0; }
.hero-console-body .log-text { color: var(--text-primary); }
.hero-console-body .log-ok { color: var(--accent); margin-left: auto; flex-shrink: 0; }

@keyframes logIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes logOut {
  to { opacity: 0; transform: translateY(-6px); height: 0; margin: 0; padding: 0; }
}

/* =====================================================
   MISSION QUEUE — task checklist auto-completing
   ===================================================== */
.hero-queue {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(calc(-50% + 12px));
  width: 250px;
  z-index: 1;
  pointer-events: none;
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: panelIn 0.7s ease forwards 1.4s;
}
.hero-queue-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-queue-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--accent);
  text-transform: none;
}
.hero-queue-list {
  list-style: none;
  margin: 0; padding: 8px 14px 12px;
  display: flex; flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  text-align: left;
}
.hero-queue-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  transition: color 0.4s ease;
}
.task-check {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid var(--border-hover);
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.task-check::after {
  content: '';
  position: absolute;
  top: 1px; left: 4px;
  width: 4px; height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.25s ease;
}
.hero-queue-list li.is-active .task-check {
  border-color: var(--accent);
  animation: taskPulse 1.2s ease-in-out infinite;
}
.hero-queue-list li.is-done {
  color: var(--text-muted);
}
.hero-queue-list li.is-done .task-text {
  text-decoration: line-through;
  text-decoration-color: var(--text-muted);
}
.hero-queue-list li.is-done .task-check {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}
.hero-queue-list li.is-done .task-check::after {
  transform: rotate(45deg) scale(1);
}
@keyframes taskPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
  50%      { box-shadow: 0 0 0 4px rgba(0, 230, 118, 0); }
}
@keyframes panelIn {
  to { opacity: 1; transform: translateY(-50%); }
}

/* =====================================================
   ENHANCED BADGE — animated shine sweep
   ===================================================== */
.hero-badge {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(0, 230, 118, 0.35) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  animation: badgeShine 4.5s ease-in-out infinite 2s;
}
@keyframes badgeShine {
  0% { left: -120%; }
  60% { left: 140%; }
  100% { left: 140%; }
}

/* =====================================================
   ENHANCED CTAs — glow & lift on hover
   ===================================================== */
.hero-ctas .btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hero-ctas .btn-primary {
  box-shadow: 0 0 0 rgba(0, 230, 118, 0);
}
.hero-ctas .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 230, 118, 0.35), 0 0 0 1px rgba(0, 230, 118, 0.4) inset;
}
.hero-ctas .btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* =====================================================
   AUDIT REVENUE-STREAM PILL (hero)
   ===================================================== */
.hero-audit-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(74, 222, 128, 0.45);
  color: var(--text-primary);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55), 0 10px 28px rgba(34, 197, 94, 0.18);
  animation: heroAuditPulse 2.6s ease-in-out infinite;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
  position: relative;
  z-index: 11;
  max-width: 640px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-audit-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(74, 222, 128, 0.85);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.14), 0 14px 36px rgba(34, 197, 94, 0.35);
}
.hero-audit-pill-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16a34a, #4ade80);
  color: #052e16;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}
.hero-audit-pill-text { line-height: 1.4; }
.hero-audit-pill-text strong { color: var(--accent); font-weight: 700; }
.hero-audit-pill-arrow {
  font-size: 1.1rem;
  color: var(--accent);
  transition: transform var(--transition-fast);
}
.hero-audit-pill:hover .hero-audit-pill-arrow { transform: translateX(4px); }
@keyframes heroAuditPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55), 0 10px 28px rgba(34, 197, 94, 0.18); }
  50%      { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.0),  0 10px 28px rgba(34, 197, 94, 0.35); }
}
@media (max-width: 600px) {
  .hero-audit-pill { font-size: 0.82rem; padding: 10px 14px; gap: 8px; }
  .hero-audit-pill-star { width: 22px; height: 22px; font-size: 0.7rem; }
}

/* =====================================================
   SCROLL INDICATOR — neon trail
   ===================================================== */
.hero-scroll-indicator {
  z-index: 2;
}
.hero-scroll-indicator span {
  filter: drop-shadow(0 0 6px rgba(0, 230, 118, 0.6));
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  .hero-canvas,
  .hero-ai-core,
  .hero-orb,
  .hero::before {
    animation: none !important;
  }
  .hero-canvas { display: none; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
/* Panels live in the screen-edge gutter; tool nodes sit further inward
   (l/r 22-24%) so they orbit closer to the agent core and never collide
   with the panels. */
@media (max-width: 1280px) {
  .hero-console, .hero-queue { width: 220px; }
  .hero-console { left: 32px; }
  .hero-queue { right: 32px; }
  .tool-node .tool-label { display: none; }
  .tool-node { padding: 8px; }
}
@media (max-width: 1080px) {
  .hero-console, .hero-queue { display: none; }
}
@media (max-width: 768px) {
  .hero-ai-core { width: 360px; height: 360px; }
  .hero-tools { display: none; }
}
