:root {
  color-scheme: dark;
  --bg: #0b0d0f;
  --panel: #14171a;
  --panel-2: #1b1f23;
  --paper: #f5f1e8;
  --muted: rgba(245, 241, 232, .64);
  --faint: rgba(245, 241, 232, .44);
  --line: rgba(245, 241, 232, .12);
  --green: #35d07f;
  --cyan: #3dd8ff;
  --amber: #f6bd4f;
  --orange: #ff6b1a;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 12%, rgba(61, 216, 255, .13), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(53, 208, 127, .10), transparent 30rem),
    linear-gradient(180deg, #0b0d0f 0%, #111315 48%, #0b0d0f 100%);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

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

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 15, .82);
  backdrop-filter: blur(18px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.brand span span {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(245, 241, 232, .06);
  color: var(--paper);
  font-weight: 900;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #07100c;
}

.hero {
  padding: 96px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(245, 241, 232, .055);
  padding: 8px 13px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 22px rgba(53, 208, 127, .7);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
}

.lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.section { padding: 56px 0; }

.section.soft {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 241, 232, .025);
}

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

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

.card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 241, 232, .06), rgba(245, 241, 232, .03));
  padding: 24px;
}

.card strong { color: var(--paper); }

.muted { color: var(--muted); }
.faint { color: var(--faint); }
.green { color: var(--green); }
.cyan { color: var(--cyan); }
.amber { color: var(--amber); }
.orange { color: var(--orange); }

.list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 12px;
  color: var(--muted);
}

.list li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 11px;
  border-radius: 50%;
  background: var(--green);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  counter-increment: step;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 241, 232, .04);
  padding: 20px 20px 20px 72px;
}

.step::before {
  content: counter(step);
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cyan);
  color: #06100c;
  font-weight: 900;
}

.page-links a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(245, 241, 232, .035);
  padding: 16px;
  color: var(--muted);
  font-weight: 800;
}

.page-links a:hover {
  border-color: rgba(61, 216, 255, .5);
  color: var(--paper);
}

.cta {
  border: 1px solid rgba(61, 216, 255, .28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 0%, rgba(61, 216, 255, .16), transparent 26rem),
    radial-gradient(circle at 90% 20%, rgba(53, 208, 127, .14), transparent 24rem),
    rgba(245, 241, 232, .045);
  padding: clamp(26px, 5vw, 46px);
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 241, 232, .035);
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 0;
  color: var(--faint);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding: 64px 0 38px; }
  .grid.two, .grid.three { grid-template-columns: 1fr; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
}
