:root {
  color-scheme: dark;
  --ink: #fff8ff;
  --muted: #d7cbea;
  --panel: rgba(31, 17, 72, 0.82);
  --pink: #ff6fb7;
  --aqua: #56e6dc;
  --yellow: #ffd966;
  --purple: #7e5bef;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font: 17px/1.65 ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(255,111,183,.22), transparent 26rem),
    radial-gradient(circle at 90% 25%, rgba(86,230,220,.15), transparent 24rem),
    #100828;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: radial-gradient(circle, white 1px, transparent 1.5px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a { color: var(--aqua); }
a:hover { color: white; }

.shell { width: min(1080px, calc(100% - 36px)); margin: auto; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand { color: white; text-decoration: none; font-weight: 900; letter-spacing: .04em; }
nav { display: flex; gap: 20px; font-size: 15px; }
nav a { color: var(--muted); text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(36px, 8vw, 90px);
  padding: 56px 0 90px;
}

.eyebrow { color: var(--yellow); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; }
h1 { margin: 10px 0 18px; font-size: clamp(54px, 8vw, 94px); line-height: .9; letter-spacing: -.055em; }
h2 { margin-top: 0; font-size: clamp(30px, 5vw, 48px); line-height: 1.05; }
h3 { margin: 32px 0 4px; }
p { color: var(--muted); }
.lede { font-size: clamp(20px, 2.5vw, 25px); max-width: 620px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.button { display: inline-block; padding: 12px 20px; border-radius: 999px; background: var(--pink); color: #210e36; text-decoration: none; font-weight: 900; }
.button.secondary { background: transparent; border: 1px solid #67578d; color: white; }
.hero img { width: 100%; border-radius: 28px; box-shadow: 0 30px 90px rgba(0,0,0,.45); transform: rotate(1.5deg); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 90px; }
.card, .document { background: var(--panel); border: 1px solid rgba(255,255,255,.11); border-radius: 24px; padding: 28px; backdrop-filter: blur(12px); }
.card strong { color: white; display: block; font-size: 20px; }
.page { max-width: 800px; padding: 60px 0 100px; }
.document { padding: clamp(26px, 6vw, 62px); }
.document li, .document p { color: var(--muted); }
.meta { color: var(--yellow); font-size: 14px; }
footer { border-top: 1px solid rgba(255,255,255,.1); padding: 28px 0 50px; color: #a99cbe; font-size: 14px; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; padding-top: 32px; }
  .hero img { order: -1; }
  .cards { grid-template-columns: 1fr; }
  nav { gap: 12px; }
}
