:root {
  --pink: #f3a0ef;
  --peach: #f0d8bd;
  --lime: #e8ff78;
  --purple: #8b14e8;
  --deep: #21102d;
  --ink: #130917;
  --muted: #4b2d58;
  --paper: #fff3fb;
  --line: #2a1630;
  --shadow: rgba(31, 10, 32, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(232, 255, 120, 0.45), transparent 23rem),
    radial-gradient(circle at 12% 16%, rgba(139, 20, 232, 0.26), transparent 20rem),
    linear-gradient(145deg, var(--pink), #efa8ef 54%, var(--peach));
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

a {
  color: var(--purple);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.page-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 24px;
  position: relative;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 28px;
}

.brand,
.eyebrow,
.nav-links a {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand {
  color: var(--ink);
  font-size: 1rem;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--deep);
  font-size: 0.76rem;
  text-decoration: none;
  padding: 8px 10px;
  border: 2px solid rgba(42, 22, 48, 0.22);
  border-radius: 999px;
  background: rgba(255, 243, 251, 0.42);
}

.hero,
.card {
  border: 3px solid var(--line);
  border-radius: 34px;
  box-shadow: 10px 10px 0 var(--shadow);
}

.hero {
  min-height: 430px;
  padding: clamp(28px, 6vw, 64px);
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 82% 26%, rgba(232, 255, 120, 0.62), transparent 8rem),
    linear-gradient(135deg, #2b0b55 0%, #8d20df 48%, #f77055 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -150px;
  border: 2px solid rgba(255, 222, 144, 0.32);
  border-radius: 50%;
  box-shadow: -42px -42px 0 -40px rgba(255,255,255,0.7), -112px -102px 0 -108px rgba(255,255,255,0.7);
}

.hero.compact {
  min-height: 340px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero .eyebrow {
  color: #ffe994;
}

h1,
h2,
p,
ul {
  margin-top: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

p,
li,
summary {
  font-size: clamp(1rem, 2.1vw, 1.18rem);
  line-height: 1.5;
}

.lede {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.15rem, 2.3vw, 1.45rem);
  font-weight: 750;
}

.updated {
  color: rgba(255,255,255,0.74);
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 3px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--shadow);
}

.primary-button {
  color: var(--ink);
  background: var(--lime);
}

.secondary-button {
  color: white;
  background: rgba(255,255,255,0.14);
}

.grid {
  display: grid;
  gap: 22px;
  margin-top: 28px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  margin-top: 28px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 243, 251, 0.82);
  backdrop-filter: blur(16px);
}

.grid .card {
  margin-top: 0;
}

.card.lime {
  background: var(--lime);
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.faq details {
  border-top: 2px solid rgba(42, 22, 48, 0.28);
  padding: 18px 0;
}

.faq details:first-of-type {
  border-top: 0;
}

summary {
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--purple);
  font-size: 1.35rem;
}

details[open] summary::after {
  content: "−";
}

.legal h2 {
  margin-top: 28px;
}

.legal h2:first-child {
  margin-top: 0;
}

ul {
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.55rem;
}

footer {
  padding: 34px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

footer p {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .hero,
  .card {
    border-radius: 26px;
    box-shadow: 6px 6px 0 var(--shadow);
  }
}
