* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: #020205;
  color: #f8fafc;
  line-height: 1.65;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(124, 58, 237, 0.2), transparent 32rem),
    radial-gradient(circle at 10% 80%, rgba(37, 99, 235, 0.16), transparent 28rem),
    #020205;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #cbd5e1;
  font-size: 14px;
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
  padding: 74px 0 56px;
}

.eyebrow {
  color: #c4b5fd;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1 {
  max-width: 820px;
  margin: 18px 0 24px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

p {
  color: #cbd5e1;
  font-size: 18px;
}

.lead {
  max-width: 760px;
  font-size: 21px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: #7c3aed;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.visual {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: #0b0c15;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.visual img {
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 58px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.58);
}

.card p,
li {
  font-size: 16px;
}

ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #cbd5e1;
}

.faq {
  display: grid;
  gap: 16px;
}

.faq article {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 820px) {
  .nav,
  .footer,
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding-top: 42px;
  }

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