:root {
  color-scheme: dark;
  --bg: #0d0b14;
  --bg-card: #16131f;
  --bg-card-hover: #1c1828;
  --text: #f0ecf8;
  --muted: #9d94b0;
  --violet: #9b7ede;
  --violet-bright: #c4a8ff;
  --lavender: #6e5a9e;
  --glow: rgba(155, 126, 222, 0.4);
  --teal: #5ec4c4;
  --border: rgba(196, 168, 255, 0.12);
  --radius: 20px;
  --font-display: "SF Pro Display", system-ui, -apple-system, sans-serif;
  --font-body:
    "SF Pro Text",
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, var(--glow), transparent 55%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(94, 196, 196, 0.12), transparent 50%),
    radial-gradient(ellipse 35% 25% at 100% 60%, rgba(110, 90, 158, 0.2), transparent 45%),
    var(--bg);
}

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

.hero {
  position: relative;
  margin-bottom: 32px;
  padding: 36px 32px 40px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(155, 126, 222, 0.12) 0%, transparent 50%),
    var(--bg-card);
  overflow: hidden;
}

.hero::before {
  content: "LV";
  position: absolute;
  top: -20px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(196, 168, 255, 0.06);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.brand-title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--violet-bright), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tag {
  margin: 8px 0 0;
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

h1 {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--violet-bright);
  letter-spacing: 0.04em;
}

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

.updated {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(155, 126, 222, 0.2);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.updated::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

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

.highlights li {
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.highlights li:hover {
  background: var(--bg-card-hover);
  border-color: rgba(196, 168, 255, 0.25);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--violet-bright);
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  padding: 22px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.card--full {
  grid-column: 1 / -1;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
}

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

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

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

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

.footer {
  margin-top: 36px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(155, 126, 222, 0.08), rgba(94, 196, 196, 0.06));
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--violet-bright), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 720px) {
  .highlights,
  .cards {
    grid-template-columns: 1fr;
  }

  .card--full {
    grid-column: auto;
  }
}

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

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

  .hero::before {
    font-size: 5rem;
    right: 8px;
  }
}
