:root {
  --bg: #0d0f12;
  --bg-2: #10141a;
  --text: #f4f2ef;
  --muted: #b9b4ac;
  --accent: #f59f00;
  --accent-2: #f25f4c;
  --card: #151a22;
  --stroke: #263043;
  --shadow: rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(1200px 800px at 10% -10%, #1a2736, transparent 55%),
              radial-gradient(1200px 800px at 90% 10%, #2a1f14, transparent 60%),
              var(--bg);
  color: var(--text);
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(13, 15, 18, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.brand { font-weight: 700; letter-spacing: 1px; }
.nav a {
  color: var(--muted);
  margin: 0 12px;
  text-decoration: none;
  font-size: 14px;
}
.nav a:hover { color: var(--text); }

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.cta.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #111;
  box-shadow: 0 12px 30px rgba(242, 95, 76, 0.25);
}

.cta.primary:hover { transform: translateY(-2px); }

.cta.outline {
  border-color: var(--stroke);
  color: var(--text);
}

.cta.ghost {
  border-color: rgba(255,255,255,0.1);
  color: var(--text);
  padding: 10px 16px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  padding: 90px 6vw 60px;
  z-index: 1;
}

.hero-content h1 {
  font-family: "IBM Plex Serif", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin: 8px 0 16px;
  line-height: 1.1;
}

.eyebrow {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--accent);
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 24px 0; }

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.card {
  background: linear-gradient(160deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 40px var(--shadow);
}

.card.gradient {
  background: linear-gradient(140deg, #202733, #2a1f14);
}

.card h3 { margin-top: 0; }

.badge {
  margin-top: 16px;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(245, 159, 0, 0.15);
  color: var(--accent);
  font-size: 12px;
}

.section {
  padding: 60px 6vw;
  z-index: 1;
  position: relative;
}

.section-title h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 8px;
}

.section-title p { color: var(--muted); }

.grid-3 {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 26px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
  min-height: 160px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.step {
  background: linear-gradient(160deg, rgba(245,159,0,0.08), rgba(0,0,0,0));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 20px;
}

.step span {
  font-weight: 700;
  color: var(--accent);
}

.highlight { background: var(--bg-2); }

.pricing {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.price-card {
  background: linear-gradient(160deg, #1b2330, #1d1a15);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 28px;
  width: min(360px, 100%);
  text-align: center;
}

.price {
  font-size: 42px;
  margin: 10px 0;
  color: var(--accent);
}

.price-card ul {
  list-style: none;
  padding: 0;
  color: var(--muted);
}

.faq details {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 12px;
}

.faq summary { cursor: pointer; font-weight: 600; }

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 40px 6vw 60px;
  background: linear-gradient(120deg, rgba(245,159,0,0.15), rgba(242,95,76,0.12));
  border-top: 1px solid rgba(255,255,255,0.05);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6vw 50px;
  font-size: 13px;
  color: var(--muted);
}

.small { font-size: 12px; color: var(--muted); }
.big { font-size: 22px; margin: 10px 0; }

@media (max-width: 700px) {
  .site-header { flex-direction: column; gap: 12px; }
  .nav { display: none; }
  .hero { padding-top: 60px; }
  .site-footer { flex-direction: column; }
}
