:root {
  --bg: #0b0d12;
  --bg-alt: #12151c;
  --card: #161a23;
  --border: #232733;
  --text: #eef0f4;
  --muted: #9aa2b1;
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.12);
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

header {
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(11, 13, 18, 0.85);
  backdrop-filter: blur(8px);
  z-index: 10;
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}
.logo span { color: var(--accent); }

nav .links a {
  color: var(--muted);
  margin-left: 28px;
  font-size: 15px;
  font-weight: 500;
}
nav .links a:hover { color: var(--text); text-decoration: none; }

.hero {
  padding: 96px 0 72px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero p.lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 36px;
}

.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}
.btn-primary {
  background: var(--accent);
  color: #14161c;
}
.btn-primary:hover { text-decoration: none; opacity: 0.9; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { text-decoration: none; border-color: var(--accent); }

section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

section h2 {
  font-size: 30px;
  margin: 0 0 12px;
  font-weight: 700;
}
section p.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 0 0 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
}
.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}
.card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.card p {
  color: var(--muted);
  font-size: 14.5px;
  margin: 0;
}

.stripe {
  background: var(--bg-alt);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 18px;
}
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.step .num {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.step h4 { margin: 0 0 4px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px;
  text-align: center;
}
.contact-card h2 { margin-bottom: 10px; }
.contact-card p { color: var(--muted); margin-bottom: 24px; }

footer {
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
footer .brand { color: var(--muted); font-size: 14px; }
footer .flinks a { color: var(--muted); font-size: 14px; margin-left: 20px; }
footer .flinks a:hover { color: var(--text); }

.legal {
  padding: 64px 0 96px;
}
.legal h1 {
  font-size: 34px;
  margin-bottom: 6px;
}
.legal .updated {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 20px;
  margin: 36px 0 12px;
}
.legal p, .legal li {
  color: #c7cbd4;
  font-size: 15.5px;
}
.legal ul { padding-left: 22px; }

@media (max-width: 640px) {
  .hero h1 { font-size: 34px; }
  nav .links { display: none; }
}
