:root {
  --bg: #07070b;
  --panel: #0e0e16;
  --line: rgba(255, 255, 255, 0.08);
  --text-dim: #9aa0ae;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: #f4f5f7;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.grad-text {
  background: linear-gradient(100deg, #7cb6ff 0%, #a68bff 50%, #f08bd0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.panel-hover {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.panel-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 139, 255, 0.4);
  box-shadow: 0 18px 50px -20px rgba(120, 90, 255, 0.45);
}

/* Screenshots keep their native proportions so no metric ever gets cropped out. */
.shot {
  display: block;
  width: 100%;
  height: auto;
  background: #12121c;
}

.reveal {
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  .panel-hover:hover { transform: none; }
}

.legal h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin: 2.25rem 0 0.75rem;
}

.legal p,
.legal li {
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.legal ul {
  list-style: disc;
  padding-left: 1.4rem;
}

.legal a {
  color: #a68bff;
  text-decoration: underline;
}
