:root {
  color-scheme: dark;
  --bg: #08090c;
  --panel: #12151b;
  --panel-2: #191d25;
  --text: #f6f7fb;
  --muted: #b7bfcc;
  --line: #2b313d;
  --accent: #9d5cff;
  --accent-2: #ff4f8b;
  --max: 72rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(157, 92, 255, .16), transparent 30rem),
    var(--bg);
  color: var(--text);
  font: 16px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: #c9a9ff; }
a:focus-visible, .button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}
.skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  padding: .75rem 1rem;
  background: #fff;
  color: #000;
  z-index: 10;
}
.skip:focus { top: 1rem; }
header, main, footer { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.brand { color: var(--text); text-decoration: none; font-weight: 900; letter-spacing: .12em; }
nav { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--text); }
.hero { padding: clamp(4rem, 10vw, 8rem) 0 3rem; max-width: 55rem; }
.eyebrow { color: #d3baff; text-transform: uppercase; letter-spacing: .14em; font-weight: 800; font-size: .78rem; }
h1 { max-width: 14ch; margin: .5rem 0 1rem; font-size: clamp(2.6rem, 7vw, 5.6rem); line-height: .98; letter-spacing: -.05em; }
h2 { margin-top: 0; font-size: clamp(1.55rem, 3vw, 2.25rem); line-height: 1.15; }
h3 { margin-bottom: .35rem; }
.lede { max-width: 47rem; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.button {
  display: inline-block;
  min-height: 2.8rem;
  padding: .65rem 1rem;
  border: 1px solid var(--line);
  border-radius: .7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}
.button.primary { border-color: transparent; background: linear-gradient(120deg, var(--accent), var(--accent-2)); }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0 4rem; }
.card, .section {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(25,29,37,.96), rgba(13,15,20,.96));
}
.card p, .section p, .section li { color: var(--muted); }
.section { margin: 1rem 0; }
.section ul, .section ol { padding-left: 1.25rem; }
.meta { color: var(--muted); font-size: .9rem; }
footer {
  margin-top: 4rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
footer nav { margin-bottom: .75rem; }
@media (max-width: 48rem) {
  header { align-items: flex-start; flex-direction: column; }
  .grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
