:root {
  color-scheme: light;
  --ink: #1a1228;
  --text: #2d2440;
  --muted: #6b5f7a;
  --accent: #8b5cf6;
  --accent-deep: #5b21b6;
  --rose: #f472b6;
  --rose-soft: rgba(244, 114, 182, 0.18);
  --violet-soft: rgba(139, 92, 246, 0.16);
  --amber: #fbbf24;
  --paper: #faf7ff;
  --surface: rgba(250, 247, 255, 0.88);
  --border: rgba(26, 18, 40, 0.1);
  --border-strong: rgba(139, 92, 246, 0.32);
  --font-display: "DM Serif Display", "Georgia", serif;
  --font-body: "Sora", "Avenir Next", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #120a1e;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.aura {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: linear-gradient(
    168deg,
    #fdf4ff 0%,
    #ede9fe 18%,
    #c4b5fd 42%,
    #7c3aed 68%,
    #2e1065 100%
  );
}

.aura__horizon {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(251, 191, 36, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 40% at 20% 20%, rgba(244, 114, 182, 0.22), transparent 62%),
    radial-gradient(ellipse 48% 36% at 82% 24%, rgba(167, 139, 250, 0.24), transparent 58%);
}

.aura__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: glow-drift 18s ease-in-out infinite;
}

.aura__glow--left {
  width: 340px;
  height: 340px;
  top: 8%;
  left: -8%;
  background: rgba(244, 114, 182, 0.35);
}

.aura__glow--right {
  width: 420px;
  height: 420px;
  top: 32%;
  right: -12%;
  background: rgba(139, 92, 246, 0.32);
  animation-delay: -6s;
}

.aura__grain {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 22% 30%, rgba(255, 255, 255, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 62%, rgba(255, 255, 255, 0.35) 0 1px, transparent 2px);
  background-size: 48px 48px, 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 82%, transparent 100%);
}

.aura__spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.6);
  animation: spark-twinkle linear infinite;
}

.aura__spark--1 {
  top: 14%;
  left: 18%;
  animation-duration: 4.2s;
}

.aura__spark--2 {
  top: 28%;
  left: 72%;
  animation-duration: 5.8s;
  animation-delay: 1.1s;
}

.aura__spark--3 {
  top: 52%;
  left: 44%;
  width: 3px;
  height: 3px;
  animation-duration: 6.4s;
  animation-delay: 2.4s;
}

.aura__spark--4 {
  top: 8%;
  left: 58%;
  animation-duration: 3.6s;
  animation-delay: 0.6s;
}

.aura__spark--5 {
  top: 38%;
  left: 12%;
  width: 3px;
  height: 3px;
  animation-duration: 7s;
  animation-delay: 3.2s;
}

@keyframes glow-drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(18px, -22px) scale(1.08);
  }
}

@keyframes spark-twinkle {
  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mark-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(2deg);
  }
}

.page {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 36px));
  margin: 0 auto;
  padding: 44px 0 68px;
}

.hero {
  margin-bottom: 42px;
  padding: 48px 0 0;
  animation: rise-in 0.75s ease both;
}

.hero__mark {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  color: var(--paper);
  background: linear-gradient(145deg, #a78bfa 0%, #6d28d9 55%, #4c1d95 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  box-shadow:
    0 18px 40px rgba(46, 16, 101, 0.35),
    0 0 0 6px rgba(139, 92, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: mark-float 9s ease-in-out infinite, rise-in 0.8s ease 0.08s both;
}

.hero__mark svg {
  width: 42px;
  height: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  font-family: var(--font-mono);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8.5vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-shadow: 0 2px 24px rgba(250, 247, 255, 0.45);
}

.tagline {
  margin: 24px 0 0;
  max-width: 44ch;
  font-size: 1.06rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.hero__policy {
  margin-top: 42px;
  padding: 30px 0 0;
  border-top: 1px solid var(--border);
  animation: rise-in 0.78s ease 0.2s both;
}

h1 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.lead {
  margin: 14px 0 0;
  max-width: 50ch;
  font-size: 0.97rem;
  color: var(--muted);
}

.updated {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--rose);
  padding-bottom: 3px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 26px;
  margin: 0 0 50px;
  padding: 34px 0;
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  animation: rise-in 0.78s ease 0.3s both;
}

.facts li {
  position: relative;
  padding-top: 20px;
}

.facts li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 3px;
  border-radius: 999px;
}

.facts li:nth-child(1)::before {
  background: var(--rose);
}

.facts li:nth-child(2)::before {
  background: var(--accent);
}

.facts li:nth-child(3)::before {
  background: var(--amber);
}

.facts strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.facts span {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.58;
}

.sections {
  animation: rise-in 0.78s ease 0.38s both;
}

.section {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.24s ease;
}

.section:hover {
  padding-left: 12px;
}

.section h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section p {
  margin: 0;
  max-width: 62ch;
  font-size: 0.93rem;
  color: var(--muted);
}

.section p + p {
  margin-top: 12px;
}

.section strong {
  color: var(--text);
  font-weight: 600;
}

a {
  color: var(--accent-deep);
  font-weight: 600;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

.footer {
  margin-top: 16px;
  padding: 38px 0 10px;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 720px) {
  .facts {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page {
    width: min(800px, calc(100% - 24px));
    padding: 30px 0 52px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero__mark {
    width: 68px;
    height: 68px;
  }

  .hero__mark svg {
    width: 36px;
    height: 36px;
  }

  .section {
    padding: 24px 0;
  }
}
