:root {
  color-scheme: dark;
  --bg: #100e18;
  --bg-deep: #080710;
  --surface: rgba(22, 18, 34, 0.96);
  --surface-muted: rgba(28, 22, 44, 0.92);
  --text: #ede8f4;
  --muted: #9a8fb0;
  --accent: #e879a8;
  --accent-deep: #c45d8a;
  --glow-rose: #f0a0c4;
  --glow-rose-soft: rgba(232, 121, 168, 0.14);
  --glow-lilac: #a78bfa;
  --glow-lilac-soft: rgba(167, 139, 250, 0.12);
  --glow-gold: #fbbf6a;
  --glow-gold-soft: rgba(251, 191, 106, 0.1);
  --ink: #faf7ff;
  --border: rgba(167, 139, 250, 0.12);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.52);
  --radius: 24px;
  --radius-sm: 18px;
  --font-display: "SF Pro Display", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "SF Pro Text", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "SF Mono", "Menlo", "Consolas", monospace;
}

* {
  box-sizing: border-box;
}

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

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 12% 8%, rgba(167, 139, 250, 0.11), transparent),
    radial-gradient(ellipse 50% 40% at 92% 28%, rgba(232, 121, 168, 0.09), transparent),
    radial-gradient(ellipse 55% 42% at 48% 100%, rgba(251, 191, 106, 0.07), transparent),
    linear-gradient(168deg, #14101f 0%, var(--bg) 52%, var(--bg-deep) 100%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.ambient__waves {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='60' viewBox='0 0 120 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q30 10 60 30 T120 30' fill='none' stroke='%23a78bfa' stroke-width='1'/%3E%3Cpath d='M0 45 Q30 25 60 45 T120 45' fill='none' stroke='%23e879a8' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 120px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 5%, transparent 75%);
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.ambient__orb--lilac {
  width: 480px;
  height: 480px;
  top: -160px;
  left: -80px;
  background: rgba(167, 139, 250, 0.13);
}

.ambient__orb--rose {
  width: 380px;
  height: 380px;
  top: 38%;
  right: -100px;
  background: rgba(232, 121, 168, 0.11);
}

.ambient__orb--gold {
  width: 320px;
  height: 320px;
  bottom: 4%;
  left: 18%;
  background: rgba(251, 191, 106, 0.08);
}

.page {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
  padding: 52px 44px 44px;
  border-radius: var(--radius);
  background: linear-gradient(168deg, rgba(24, 18, 38, 0.98) 0%, rgba(12, 10, 20, 0.99) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(167, 139, 250, 0.1), transparent 60%),
    radial-gradient(ellipse 35% 30% at 8% 70%, rgba(232, 121, 168, 0.06), transparent 50%),
    radial-gradient(ellipse 30% 28% at 92% 80%, rgba(251, 191, 106, 0.05), transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-lilac) 15%,
    var(--glow-rose) 50%,
    var(--glow-gold) 85%,
    transparent
  );
  opacity: 0.85;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  color: var(--accent);
  background: linear-gradient(
    145deg,
    var(--glow-lilac-soft) 0%,
    rgba(10, 8, 18, 0.97) 50%,
    var(--glow-rose-soft) 100%
  );
  border: 1.5px solid rgba(232, 121, 168, 0.32);
  border-radius: 32px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 52px rgba(167, 139, 250, 0.14),
    0 18px 48px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.hero__badge svg {
  width: 54px;
  height: 54px;
}

.hero__content {
  max-width: 58ch;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--glow-lilac);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.brand-title span {
  background: linear-gradient(
    115deg,
    var(--glow-lilac) 0%,
    var(--glow-rose) 48%,
    var(--glow-gold) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  margin: 16px auto 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 48ch;
  letter-spacing: 0.01em;
}

h1 {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}

.lead {
  margin-top: 12px;
  font-size: 0.93rem;
  color: var(--muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.updated {
  display: inline-block;
  margin-top: 24px;
  padding: 9px 20px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--glow-rose);
  background: var(--glow-rose-soft);
  border: 1px solid rgba(232, 121, 168, 0.3);
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
}

.highlights li {
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  overflow: hidden;
}

.highlights li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
}

.highlights li:nth-child(1)::before {
  background: linear-gradient(90deg, var(--glow-lilac), var(--glow-rose));
}

.highlights li:nth-child(2)::before {
  background: linear-gradient(90deg, var(--glow-rose), var(--glow-gold));
}

.highlights li:nth-child(3)::before {
  background: linear-gradient(90deg, var(--glow-gold), var(--glow-lilac));
}

.highlights li:hover {
  transform: translateY(-3px);
  border-color: rgba(167, 139, 250, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

.highlights strong {
  display: block;
  margin-bottom: 9px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

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

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  padding: 28px 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--glow-lilac), var(--glow-rose), var(--glow-gold));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card:hover {
  background: linear-gradient(148deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(232, 121, 168, 0.2);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

.card:hover::after {
  opacity: 1;
}

.card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--ink);
}

.card p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--muted);
}

.card p + p {
  margin-top: 11px;
}

a {
  color: var(--glow-lilac);
  font-weight: 600;
}

a:hover {
  color: var(--glow-rose);
}

.footer {
  margin-top: 48px;
  padding: 28px 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  background: linear-gradient(120deg, var(--glow-lilac), var(--glow-rose));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}

@media (max-width: 720px) {
  .hero {
    padding: 40px 26px 36px;
  }

  .highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 28px 0 52px;
  }

  .hero {
    padding: 32px 20px 28px;
  }

  .hero__badge {
    width: 92px;
    height: 92px;
    border-radius: 26px;
  }

  .hero__badge svg {
    width: 46px;
    height: 46px;
  }
}
