:root {
  color-scheme: dark;
  --bg: #0c0e14;
  --bg-mist: #141824;
  --surface: #1a1f2e;
  --surface-soft: rgba(26, 31, 46, 0.7);
  --text: #e8eaf2;
  --muted: #9098ad;
  --mind: #9b8cff;
  --mind-dim: rgba(155, 140, 255, 0.12);
  --road: #5ecfb8;
  --road-dim: rgba(94, 207, 184, 0.1);
  --horizon: #e878a0;
  --border: rgba(232, 234, 242, 0.07);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: Georgia, "Times New Roman", Times, serif;
  --font-body:
    "Helvetica Neue",
    Helvetica,
    Arial,
    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);
  font-size: 15px;
  line-height: 1.74;
  -webkit-font-smoothing: antialiased;
}

.backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 45% at 50% 100%, var(--road-dim), transparent 55%),
    radial-gradient(ellipse 50% 35% at 20% 15%, var(--mind-dim), transparent 50%),
    radial-gradient(ellipse 40% 25% at 85% 30%, rgba(232, 120, 160, 0.08), transparent 45%),
    linear-gradient(180deg, var(--bg-mist) 0%, var(--bg) 60%, #080a10 100%);
}

.backdrop__path {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, var(--road) 30%, var(--mind) 70%, transparent 100%);
  opacity: 0.25;
  border-radius: 999px;
}

.backdrop__path::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -40px;
  width: 84px;
  background: inherit;
  filter: blur(28px);
  opacity: 0.6;
}

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

.hero {
  margin-bottom: 40px;
  text-align: center;
}

.hero__glow {
  display: inline-block;
  max-width: 100%;
  text-align: center;
  padding: 40px 36px 36px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--road);
}

.brand-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 4.2rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

.brand-title .mind {
  color: var(--mind);
}

.brand-title .roade {
  color: var(--text);
  font-style: italic;
}

h1 {
  margin: 22px 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.lead {
  margin: 18px auto 0;
  max-width: 46ch;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.82;
}

.updated {
  margin-top: 20px;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(155, 140, 255, 0.75);
}

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

.highlights li {
  padding: 24px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.highlights li:nth-child(1) {
  background: linear-gradient(160deg, var(--surface) 0%, rgba(155, 140, 255, 0.06) 100%);
}

.highlights li:nth-child(2) {
  background: linear-gradient(160deg, var(--surface) 0%, rgba(94, 207, 184, 0.06) 100%);
}

.highlights strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
}

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

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

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

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

.card p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.68;
}

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

.card--wide {
  grid-column: 1 / -1;
  padding: 28px 26px;
  border-color: rgba(94, 207, 184, 0.15);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(20, 24, 36, 0.8) 100%);
}

a {
  color: var(--road);
  text-decoration: none;
  border-bottom: 1px solid rgba(94, 207, 184, 0.35);
}

a:hover {
  color: var(--mind);
  border-bottom-color: rgba(155, 140, 255, 0.4);
}

.footer {
  margin-top: 44px;
  padding: 22px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
}

.footer strong .mind {
  color: var(--mind);
  font-style: normal;
}

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

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

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

  .hero__glow {
    padding: 28px 22px 24px;
    text-align: left;
  }

  .hero {
    text-align: left;
  }

  .lead {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 40px 0 64px;
    width: min(100% - 28px, 880px);
  }
}
