:root {
  --bg: #09070b;
  --bg-soft: #151019;
  --panel: rgba(255, 255, 255, 0.04);
  --text: #f7f3ec;
  --muted: #c7bfb5;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #e5be67;
  --pink: #ff4d8d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 77, 141, 0.16), transparent 30%),
    linear-gradient(180deg, #09070b 0%, #120b17 45%, #09070b 100%);
  color: var(--text);
}

a {
  color: inherit;
}

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

.topbar {
  padding: 1rem 0;
}

.topbar a {
  text-decoration: none;
  color: var(--muted);
}

.hero {
  padding: 3rem 0 2rem;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-family: "Syne", sans-serif;
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 8vw, 5.5rem);
  max-width: 11ch;
}

.lead {
  max-width: 54rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 1.4rem 0 0;
}

.hero-actions,
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  text-decoration: none;
  border: 1px solid var(--line);
  background: var(--panel);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f7d996);
  color: #120b17;
  border-color: transparent;
  font-weight: 700;
}

.btn-secondary {
  color: var(--text);
}

.stats,
.card-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
}

.stats {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 2rem 0 0;
}

.stat,
.card,
.faq-item,
.cta {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.stat,
.card,
.cta {
  padding: 1.15rem;
}

.stat strong,
.card h3 {
  display: block;
  font-family: "Syne", sans-serif;
}

.stat strong {
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.section {
  padding: 1.5rem 0 0.5rem;
}

.section h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 0.8rem;
}

.section p,
.section li,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card ul {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
}

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

.faq-item {
  padding: 1rem;
}

.faq-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.65rem;
}

.cta {
  margin: 2rem 0 3rem;
}

.cta p {
  color: var(--muted);
  max-width: 48rem;
}

.footer-note {
  padding: 0 0 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }
}
