* {
  box-sizing: border-box;
}

html {
  background: #080808;
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body {
  margin: 0;
  background:
    radial-gradient(ellipse at 75% 10%, rgba(212, 101, 42, 0.12), transparent 34rem),
    linear-gradient(180deg, #080808 0%, #050505 100%);
}

a {
  color: inherit;
}

.page {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-link,
.cta {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.nav-link {
  color: rgba(255,255,255,0.58);
}

.hero {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.58);
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d4652a;
  box-shadow: 0 0 14px rgba(212, 101, 42, 0.55);
}

h1 {
  margin: 1.4rem 0 1rem;
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.68);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: #fff;
  color: #080808;
}

.cta.secondary {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.09);
}

.section {
  padding: 2.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 4vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p {
  color: rgba(255,255,255,0.66);
  margin: 0 0 1rem;
}

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

.card {
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.025);
}

.card h3,
.faq h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

.card p,
.faq p {
  font-size: 0.92rem;
}

.faq {
  display: grid;
  gap: 1rem;
}

.footer {
  padding-top: 2rem;
  color: rgba(255,255,255,0.42);
  font-size: 0.85rem;
}

@media (max-width: 720px) {
  .nav {
    padding-bottom: 2.5rem;
  }

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

  .cta-row {
    flex-direction: column;
  }

  .cta {
    width: 100%;
  }
}
