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

:root {
  --accent: #E040FB;
  --accent-dim: #7B1FA2;
  --accent-soft: #E1BEE7;
}

/* was painting an opaque panel over the background image — now a
   translucent vignette that sits on top of it instead of hiding it */
#page_wrapper {
  background: radial-gradient(
    ellipse at top,
    rgba(15, 23, 42, 0.35) 0%,
    rgba(2, 6, 23, 0.72) 50%
  );
}

.service-card {
  border: 1px solid rgba(148, 163, 184, 0.10);
  border-radius: 10px;
  background: rgba(13, 18, 30, 0.55);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    0 10px 26px -14px rgba(0, 0, 0, 0.65);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent-dim);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.07),
    0 16px 34px -16px rgba(0, 0, 0, 0.45);
}

#information-widgets {
  border-color: rgba(148, 163, 184, 0.12);
}

.service-group-name {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: lowercase;
  color: var(--accent);
  opacity: 0.75;
  padding-left: 0.65rem;
  margin-bottom: 0.5rem;
  border-left: 2px solid var(--accent-dim);
}
.service-group-name::before {
  content: "// ";
  opacity: 0.6;
}

a:focus-visible,
.service-card:focus-within {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .service-card { transition: none; }
}
