:root {
  color-scheme: dark;
  --bg: #0f0e12;
  --bg-deep: #08070a;
  --surface: rgba(22, 20, 28, 0.94);
  --surface-muted: rgba(30, 26, 36, 0.9);
  --text: #ede8e2;
  --muted: #9a9288;
  --accent: #e8b86d;
  --accent-deep: #c9954a;
  --glow-gold: #f0c878;
  --glow-gold-soft: rgba(232, 184, 109, 0.14);
  --glow-rose: #d4847a;
  --glow-rose-soft: rgba(212, 132, 122, 0.12);
  --glow-plum: #8b6f9e;
  --glow-plum-soft: rgba(139, 111, 158, 0.14);
  --glow-sage: #7a9e8a;
  --glow-sage-soft: rgba(122, 158, 138, 0.1);
  --ink: #faf6f0;
  --border: rgba(232, 184, 109, 0.12);
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.5);
  --radius: 20px;
  --radius-sm: 14px;
  --font-display: "New York", "Georgia", "Times New Roman", 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.72;
  -webkit-font-smoothing: antialiased;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 48% 36% at 92% 8%, rgba(139, 111, 158, 0.16), transparent),
    radial-gradient(ellipse 42% 32% at 6% 42%, rgba(212, 132, 122, 0.1), transparent),
    radial-gradient(ellipse 50% 38% at 48% 98%, rgba(232, 184, 109, 0.07), transparent),
    linear-gradient(168deg, #141218 0%, var(--bg) 50%, var(--bg-deep) 100%);
}

.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  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: 160px 160px;
}

.ambient__lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(232, 184, 109, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 184, 109, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, black 8%, transparent 85%);
}

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

.ambient__orb--coral {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(139, 111, 158, 0.2);
}

.ambient__orb--saffron {
  width: 340px;
  height: 340px;
  top: 48%;
  left: -100px;
  background: rgba(212, 132, 122, 0.14);
}

.ambient__orb--olive {
  width: 280px;
  height: 280px;
  bottom: 8%;
  right: 12%;
  background: rgba(232, 184, 109, 0.09);
}

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

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  padding: 52px 44px 44px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(26, 23, 32, 0.98) 0%, rgba(16, 14, 20, 0.97) 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% -8%, rgba(232, 184, 109, 0.07), transparent 58%),
    radial-gradient(ellipse 26% 24% at 88% 72%, rgba(139, 111, 158, 0.09), transparent 48%),
    radial-gradient(ellipse 20% 18% at 8% 78%, rgba(212, 132, 122, 0.07), transparent 42%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--glow-plum) 12%,
    var(--glow-gold) 50%,
    var(--glow-rose) 88%,
    transparent
  );
  opacity: 0.85;
}

.hero__badge {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  margin-bottom: 26px;
  color: var(--accent);
  background: linear-gradient(
    150deg,
    var(--glow-plum-soft) 0%,
    rgba(20, 18, 26, 0.92) 50%,
    var(--glow-gold-soft) 100%
  );
  border: 1.5px solid rgba(232, 184, 109, 0.25);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 36px rgba(232, 184, 109, 0.07),
    0 10px 32px rgba(0, 0, 0, 0.38);
  position: relative;
  z-index: 1;
}

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

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

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

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

.brand-title span {
  background: linear-gradient(
    110deg,
    var(--glow-gold) 0%,
    var(--glow-rose) 45%,
    var(--glow-plum) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

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

h1 {
  margin: 30px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
}

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

.updated {
  display: inline-block;
  margin-top: 26px;
  padding: 8px 20px;
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--glow-gold-soft);
  border: 1px solid rgba(232, 184, 109, 0.2);
  border-radius: 999px;
  letter-spacing: 0.06em;
}

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

.highlights li {
  padding: 24px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--glow-gold);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.26);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-top-color 0.22s ease;
}

.highlights li:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.34);
}

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

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

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

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

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

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

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

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

.card:hover {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-muted) 100%);
  border-color: rgba(232, 184, 109, 0.16);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

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

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

.footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-style: italic;
}

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

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

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

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