:root {
  color-scheme: dark light;
  --bg: radial-gradient(circle at top left, #1c1b33, #050816);
  --accent: #7dd3fc;
  --text-main: #e5e7eb;
  --text-muted: #9ca3af;
  --shadow-soft: 0 30px 80px rgba(15, 23, 42, 0.7);
  --radius-xl: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-image: var(--bg);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  max-width: 960px;
  width: 100%;
}

.shell {
  position: relative;
  border-radius: calc(var(--radius-xl) + 6px);
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(125, 211, 252, 0.8),
    rgba(244, 244, 245, 0.12)
  );
}

.card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, #020617, #020617 40%, #020617)
      padding-box,
    radial-gradient(circle at top left, #0ea5e9, transparent 55%) border-box;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 26px 26px 22px;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 32px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
}

@media (max-width: 768px) {
  body {
    padding: 18px;
  }
  .card {
    grid-template-columns: minmax(0, 1fr);
    padding: 22px 20px 18px;
    gap: 20px;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at 0 0, #0b1120, #020617);
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

.pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #f9fafb, #38bdf8);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
}

.pill-label-strong {
  color: #e5e7eb;
  font-weight: 500;
}

.title {
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.title span.accent {
  background: linear-gradient(120deg, #e0f2fe, #7dd3fc, #f9fafb);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 30rem;
}

.subtitle strong {
  color: #e5e7eb;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn-primary,
.btn-ghost {
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.14s ease, box-shadow 0.14s ease,
    background-color 0.14s ease, border-color 0.14s ease, color 0.14s ease;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #38bdf8, #0ea5e9);
  color: #0f172a;
  box-shadow: 0 18px 35px rgba(8, 47, 73, 0.75);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 50px rgba(8, 47, 73, 0.9);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 14px 28px rgba(8, 47, 73, 0.8);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  color: var(--text-muted);
  border-color: rgba(148, 163, 184, 0.45);
}

.btn-ghost:hover {
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.96);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.btn-icon svg {
  width: 15px;
  height: 15px;
}

.meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.meta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.35);
}

.tag-pill {
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
}

.orbit {
  position: relative;
  min-height: 190px;
  align-self: stretch;
}

.orbit-core {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.13), transparent 55%),
    radial-gradient(circle at 90% 100%, rgba(56, 189, 248, 0.1), transparent 60%),
    radial-gradient(circle at 15% 90%, rgba(96, 165, 250, 0.15), transparent 55%),
    radial-gradient(circle at 50% 30%, rgba(15, 23, 42, 0.9), #020617 65%);
  border: 1px solid rgba(148, 163, 184, 0.28);
  overflow: hidden;
}

.orbit-mask {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(15, 23, 42, 0) 30%,
    rgba(15, 23, 42, 0.9) 100%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
}

.orbital-ring {
  position: absolute;
  inset: 36px 26px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  transform: rotate(-14deg);
}

.orbital-ring:nth-child(2) {
  inset: 64px 40px;
  opacity: 0.7;
  transform: rotate(10deg);
}

.orbital-node {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #e0f2fe, #0ea5e9);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.28);
}

.orbital-node:nth-child(3) {
  top: 26px;
  left: 22%;
}

.orbital-node:nth-child(4) {
  bottom: 34px;
  right: 20%;
}

.orbital-node:nth-child(5) {
  top: 50%;
  right: 10%;
}

.orbital-node:nth-child(6) {
  top: 50%;
  left: 8%;
}

.orbit-label {
  display: none;
}

.orbit-chip-row {
  position: absolute;
  inset: 18px 18px;
  pointer-events: none;
}

.chip {
  position: absolute;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 11px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(12px);
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #38bdf8;
}

.chip-top-left {
  top: 6px;
  left: 18px;
}

.chip-top-right {
  top: 26px;
  right: 10px;
}

.chip-bottom-left {
  bottom: 30px;
  left: 30px;
}

.chip-bottom-right {
  bottom: 14px;
  right: 16px;
}

.chip-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 500;
  color: #d1d5db;
  border-color: rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.9);
}

footer {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(148, 163, 184, 0.75);
}


