/* Restored blue-and-cyan site palette. */
:root { --blue: #285bff; --violet: #3dd9e7; }
.hero {
  background:
    radial-gradient(circle at 84% 28%, rgba(61, 217, 231, .28), transparent 24%),
    radial-gradient(circle at 71% 78%, rgba(92, 82, 255, .17), transparent 27%),
    #f4f7ff;
}
.orb { background: linear-gradient(145deg, #285bff, #38d8e7); }
.visual { background: linear-gradient(140deg, #1a43c5, #312175); }
.cta { background: linear-gradient(120deg, #153cb6, #255bff 54%, #14aeca); }
.network { background: radial-gradient(circle at 25% 28%, #55e5f0 0 7px, transparent 8px), radial-gradient(circle at 75% 48%, #fff 0 7px, transparent 8px), radial-gradient(circle at 50% 72%, #55e5f0 0 7px, transparent 8px); }

/* A service-led visual replaces the generic dashboard in the hero. */
.hero-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(430px, 94%);
  margin: 20px auto 0;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, #142b74, #285bff 62%, #13aeca);
  box-shadow: 0 24px 55px rgba(17,45,125,.25);
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -64px;
  right: -44px;
  border-radius: 50%;
  background: rgba(61,217,231,.24);
}
.hero-card > * { position: relative; }
.hero-card small { color: #bdefff; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero-card h2 { margin: 0 0 8px; font-size: 2rem; line-height: 1.08; letter-spacing: -.05em; }
.hero-services { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 8px; }
.hero-services span { padding: 12px; border: 1px solid rgba(255,255,255,.22); border-radius: 11px; background: rgba(7,25,79,.22); font-size: .88rem; font-weight: 700; }

@media (max-width: 760px) {
  .hero-grid { gap: 28px; }
  .art { order: initial; min-height: auto; margin-top: 0; }
  .hero-card { width: 100%; margin: 0; padding: 24px; border-radius: 18px; }
  .hero-card h2 { font-size: 1.65rem; }
  .hero-services { gap: 8px; }
  .hero-services span { padding: 10px; font-size: .82rem; }
}
