:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #09070d;
  color: #f7f1ff;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  background:
    radial-gradient(circle at 20% 15%, rgba(177, 95, 255, 0.2), transparent 34rem),
    radial-gradient(circle at 80% 80%, rgba(255, 169, 72, 0.13), transparent 32rem),
    #09070d;
}

.card {
  width: min(720px, 100%);
  padding: clamp(28px, 7vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(20, 15, 29, 0.88);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.eyebrow, .updated {
  color: #c7a7eb;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 12px 0 18px;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.article h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
.article h2 { margin-top: 2rem; font-size: 1.25rem; }

p {
  color: #d9cfe3;
  line-height: 1.7;
}

.intro { max-width: 35rem; font-size: 1.1rem; }

a { color: #e8c8ff; }

.links {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.links a {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
}

.links a:hover { background: rgba(255, 255, 255, 0.1); }
.back { display: inline-block; margin-bottom: 20px; text-decoration: none; }
.fine-print { font-size: 0.88rem; color: #ad9dbb; }
