:root {
  color-scheme: dark;
  --bg: #140e12;
  --bg-deep: #0a0608;
  --surface: rgba(28, 18, 24, 0.9);
  --surface-muted: rgba(38, 24, 32, 0.78);
  --text: #f3e8ec;
  --muted: #b39aa6;
  --accent: #e8b4bc;
  --accent-deep: #f5d5da;
  --glow-rose: #c97b8a;
  --glow-rose-soft: rgba(201, 123, 138, 0.18);
  --glow-plum: #8b5a72;
  --glow-plum-soft: rgba(139, 90, 114, 0.22);
  --glow-gold: #d4a574;
  --glow-gold-soft: rgba(212, 165, 116, 0.16);
  --glow-sage: #7a9e7e;
  --glow-sage-soft: rgba(122, 158, 126, 0.12);
  --ink: #faf4f6;
  --border: rgba(232, 180, 188, 0.14);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.6);
  --radius: 32px;
  --radius-sm: 20px;
  --font-display: "Georgia", "Iowan Old Style", "Palatino", 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 75% 55% at 15% -5%, rgba(201, 123, 138, 0.22), transparent),
    radial-gradient(ellipse 60% 50% at 85% 15%, rgba(139, 90, 114, 0.24), transparent),
    radial-gradient(ellipse 55% 45% at 50% 105%, rgba(212, 165, 116, 0.12), transparent),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 45%, #1c1218 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__petals {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg width='800' height='320' viewBox='0 0 800 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='120' cy='280' rx='90' ry='40' fill='%23c97b8a' opacity='0.07'/%3E%3Cellipse cx='400' cy='300' rx='140' ry='50' fill='%238b5a72' opacity='0.09'/%3E%3Cellipse cx='680' cy='270' rx='100' ry='45' fill='%23d4a574' opacity='0.06'/%3E%3Cpath d='M0 240 Q200 200 400 230 T800 220 L800 320 L0 320Z' fill='%23c97b8a' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 800px 320px;
  background-repeat: repeat-x;
  mask-image: linear-gradient(to top, black 15%, transparent 100%);
}

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

.ambient__orb--rose {
  width: 440px;
  height: 440px;
  top: -160px;
  right: -80px;
  background: rgba(201, 123, 138, 0.3);
}

.ambient__orb--plum {
  width: 380px;
  height: 380px;
  top: 40%;
  left: -140px;
  background: rgba(139, 90, 114, 0.28);
}

.ambient__orb--gold {
  width: 300px;
  height: 300px;
  bottom: 8%;
  right: 12%;
  background: rgba(212, 165, 116, 0.14);
}

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

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 50% -10%, rgba(201, 123, 138, 0.18), transparent 70%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(212, 165, 116, 0.1), transparent 65%);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--glow-rose) 20%, var(--glow-gold) 50%, var(--glow-plum) 80%, 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(145deg, var(--glow-rose-soft) 0%, var(--glow-plum-soft) 55%, var(--glow-gold-soft) 100%);
  border: 1px solid rgba(232, 180, 188, 0.28);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 20px rgba(255, 255, 255, 0.05),
    0 0 56px rgba(201, 123, 138, 0.2),
    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: 56ch;
}

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

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.6rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.brand-title span {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 0.72em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
  background: linear-gradient(105deg, var(--glow-rose) 0%, var(--glow-gold) 55%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

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

.updated {
  display: inline-block;
  margin-top: 28px;
  padding: 8px 20px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--accent-deep);
  background: var(--glow-plum-soft);
  border: 1px solid rgba(139, 90, 114, 0.4);
  border-radius: 999px;
  letter-spacing: 0.04em;
}

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

.highlights li {
  padding: 26px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--glow-rose);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-top-color 0.25s ease, box-shadow 0.25s ease;
}

.highlights li:hover {
  transform: translateY(-4px);
  border-top-color: var(--glow-gold);
  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-plum);
}

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

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

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

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

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

.card:hover {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(232, 180, 188, 0.22);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
}

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

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

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

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

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

.footer {
  margin-top: 52px;
  padding: 28px 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.05rem;
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
}

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

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

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

  .hero {
    padding: 36px 22px 32px;
  }
}
