:root {
  color-scheme: dark;
  --bg: #140e12;
  --bg-deep: #0a0608;
  --surface: rgba(28, 18, 24, 0.94);
  --surface-muted: rgba(36, 22, 30, 0.88);
  --text: #f5eef2;
  --muted: #b8a0ad;
  --accent: #f9a8d4;
  --accent-deep: #fce7f3;
  --glow-rose: #f472b6;
  --glow-rose-soft: rgba(244, 114, 182, 0.18);
  --glow-champagne: #fcd34d;
  --glow-champagne-soft: rgba(252, 211, 77, 0.12);
  --glow-plum: #c084fc;
  --glow-plum-soft: rgba(192, 132, 252, 0.14);
  --glow-blush: #fda4af;
  --glow-blush-soft: rgba(253, 164, 175, 0.1);
  --ink: #fff5f8;
  --border: rgba(249, 168, 212, 0.14);
  --shadow: 0 32px 88px rgba(0, 0, 0, 0.62);
  --radius: 32px;
  --radius-sm: 20px;
  --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;
}

* {
  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 65% 48% at 8% -6%, rgba(244, 114, 182, 0.2), transparent),
    radial-gradient(ellipse 50% 42% at 95% 18%, rgba(252, 211, 77, 0.1), transparent),
    radial-gradient(ellipse 55% 38% at 48% 108%, rgba(192, 132, 252, 0.12), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 48%, #1a1016 100%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.ambient__grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(249, 168, 212, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 168, 212, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 28%, black 15%, transparent 78%);
}

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

.ambient__orb--rose {
  width: 440px;
  height: 440px;
  top: -150px;
  right: -80px;
  background: rgba(244, 114, 182, 0.32);
}

.ambient__orb--champagne {
  width: 320px;
  height: 320px;
  top: 38%;
  left: -100px;
  background: rgba(252, 211, 77, 0.16);
}

.ambient__orb--plum {
  width: 300px;
  height: 300px;
  bottom: 8%;
  right: 12%;
  background: rgba(192, 132, 252, 0.18);
}

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

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 52px;
  padding: 56px 52px 50px;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(32, 20, 28, 0.98) 0%, rgba(14, 8, 12, 0.96) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(24px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 42% at 50% -8%, rgba(244, 114, 182, 0.16), transparent 68%),
    radial-gradient(ellipse 30% 28% at 12% 82%, rgba(252, 211, 77, 0.07), transparent 62%),
    radial-gradient(ellipse 28% 24% at 90% 70%, rgba(192, 132, 252, 0.1), transparent 60%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-champagne) 15%,
    var(--glow-rose) 45%,
    var(--glow-plum) 75%,
    transparent
  );
  opacity: 0.6;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  color: var(--accent-deep);
  background: linear-gradient(
    150deg,
    var(--glow-rose-soft) 0%,
    var(--glow-champagne-soft) 45%,
    var(--glow-plum-soft) 100%
  );
  border: 1px solid rgba(249, 168, 212, 0.3);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 20px rgba(255, 255, 255, 0.05),
    0 0 56px rgba(244, 114, 182, 0.22),
    0 16px 40px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 1;
}

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

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

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--glow-champagne);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.brand-title span {
  background: linear-gradient(
    108deg,
    var(--glow-champagne) 0%,
    var(--glow-rose) 38%,
    var(--glow-plum) 78%,
    var(--accent-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  margin: 16px 0 0;
  font-size: 1.04rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.015em;
}

h1 {
  margin: 32px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.updated {
  display: inline-block;
  margin-top: 28px;
  padding: 9px 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--glow-rose-soft);
  border: 1px solid rgba(244, 114, 182, 0.38);
  border-radius: 999px;
  letter-spacing: 0.05em;
}

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

.highlights li {
  padding: 28px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--glow-rose);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  transition: transform 0.28s ease, border-top-color 0.28s ease, box-shadow 0.28s ease;
}

.highlights li:hover {
  transform: translateY(-4px);
  border-top-color: var(--glow-champagne);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.38);
}

.highlights li:nth-child(1) {
  border-top-color: var(--glow-rose);
}

.highlights li:nth-child(2) {
  border-top-color: var(--glow-champagne);
}

.highlights li:nth-child(3) {
  border-top-color: var(--glow-plum);
}

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

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

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 30px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
  transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(249, 168, 212, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

.card h2 {
  margin: 0 0 11px;
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--accent-deep);
}

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

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

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

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

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

.footer strong {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 720px) {
  .hero {
    padding: 46px 30px 42px;
  }

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

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

  .hero {
    padding: 38px 24px 34px;
  }
}
