:root {
  --bg: #020306;
  --panel: #080b12;
  --ink: #f1f3fb;
  --muted: rgba(222, 226, 242, 0.58);
  --dim: rgba(222, 226, 242, 0.32);
  --line: rgba(178, 188, 230, 0.18);
  --line-strong: rgba(210, 218, 255, 0.34);
  --violet: #7880f9;
  --pink: #ff2db2;
  --glass: rgba(8, 11, 18, 0.52);
  --shadow: 0 42px 120px rgba(0, 0, 0, 0.68);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 115%, rgba(120, 128, 249, 0.16), transparent 30%),
    radial-gradient(circle at 78% 28%, rgba(255, 45, 178, 0.12), transparent 24%),
    #000;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 3px),
    repeating-radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.65) 0 1px, transparent 1px 5px);
  mix-blend-mode: overlay;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

figure {
  margin: 0;
}

img {
  display: block;
  max-width: 100%;
}

.magnetic {
  will-change: transform;
  transition: transform 240ms var(--ease), color 240ms var(--ease), opacity 240ms var(--ease);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.18em;
}

.kicker::after {
  content: "";
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, var(--pink), var(--violet), transparent);
}

.text-link,
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: rgba(241, 243, 251, 0.72);
  font-size: 12px;
  letter-spacing: 0.16em;
}

.text-link span,
.view-all span {
  display: inline-block;
  min-width: 56px;
  height: 1px;
  color: transparent;
  background: linear-gradient(90deg, var(--line-strong), rgba(241, 243, 251, 0.72));
  position: relative;
}

.text-link span::after,
.view-all span::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid rgba(241, 243, 251, 0.72);
  border-right: 1px solid rgba(241, 243, 251, 0.72);
  transform: rotate(45deg);
}

.radar {
  position: relative;
  width: 88px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle, rgba(255, 45, 178, 0.16), transparent 28%),
    repeating-conic-gradient(from 8deg, rgba(241, 243, 251, 0.24) 0 3deg, transparent 3deg 10deg);
  opacity: 0.88;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(210, 218, 255, 0.18);
}

.radar::before {
  inset: 8px;
}

.radar::after {
  inset: 26px;
  border-style: solid;
}

.radar span {
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 128, 249, 0.18), transparent 64%);
}

.radar i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 20px rgba(255, 45, 178, 0.9);
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
