* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0a0a;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f5;
  --muted: #a3a3a3;
  --purple: #9333ea;
  --purple-soft: #c084fc;
  --pink: #ec4899;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.7;
}

a {
  color: var(--purple-soft);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
}

.nav {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1120px;
  padding: 20px;
}

.brand {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 10px;
}

.brand img {
  border-radius: 10px;
  height: 34px;
  width: 34px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  margin: 0 auto;
  max-width: 1040px;
  padding: 72px 20px 40px;
}

.eyebrow {
  color: var(--purple-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.35rem, 6vw, 4.9rem);
  letter-spacing: 0;
  line-height: 1.02;
  max-width: 920px;
}

.gradient {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lede {
  color: #d4d4d4;
  font-size: 1.16rem;
  margin-top: 22px;
  max-width: 760px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  border-radius: 12px;
  display: inline-flex;
  font-weight: 800;
  padding: 13px 20px;
}

.button.primary {
  background: #fff;
  color: #050505;
}

.button.secondary {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
}

.button.ghost {
  border: 1px solid var(--line);
  color: #fff;
}

.section {
  margin: 0 auto;
  max-width: 1040px;
  padding: 34px 20px;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.55rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.section > p {
  color: var(--muted);
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 24px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}

.card h3 {
  color: #fff;
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.card p,
.card li {
  color: var(--muted);
}

.card ul {
  margin-left: 18px;
  margin-top: 8px;
}

.callout {
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.16), rgba(236, 72, 153, 0.14));
  border: 1px solid rgba(192, 132, 252, 0.32);
  border-radius: 16px;
  margin-top: 28px;
  padding: 24px;
}

.callout p {
  color: #e5e5e5;
}

.steps {
  counter-reset: steps;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 20px 20px 64px;
  position: relative;
}

.step::before {
  align-items: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 999px;
  color: #fff;
  content: counter(steps);
  counter-increment: steps;
  display: flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 20px;
  width: 34px;
}

.step h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.faq details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}

.faq summary {
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  color: var(--muted);
  margin-top: 10px;
}

.legal-note {
  color: #858585;
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 760px;
}

footer {
  border-top: 1px solid var(--line);
  color: #737373;
  margin-top: 52px;
  padding: 34px 20px;
  text-align: center;
}

footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

footer a {
  color: var(--purple-soft);
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 48px;
  }

  .button {
    justify-content: center;
    width: 100%;
  }

  .step {
    padding-left: 20px;
    padding-top: 66px;
  }
}
