:root {
  --bg: #0b1020;
  --surface: #121830;
  --muted-surface: #0f1428;
  --text: #e8eef9;
  --muted: #a6b1c9;
  /* Tuned to match logo: pink → violet */
  --accent: #ff4ba2;
  --accent-2: #8b5cf6;
  --ring: rgba(255, 75, 162, 0.5);
  /* CTA states */
  --accent-hover: #f04397;
  --accent-active: #e23c8d;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 75% -10%, rgba(123, 44, 255, 0.18), transparent),
              radial-gradient(1200px 600px at 25% 10%, rgba(255, 46, 166, 0.15), transparent),
              var(--bg);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: linear-gradient(to bottom, rgba(10, 13, 28, 0.9), rgba(10, 13, 28, 0.6));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}
.brand-logo { height: 28px; width: 28px; }
.brand-text { font-weight: 800; letter-spacing: 0.3px; }

.nav { display: flex; gap: 16px; align-items: center; }
.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.nav-link:hover { color: var(--text); }

/* Hero */
.hero { position: relative; padding: 88px 0 48px; overflow: hidden; }
.hero-inner { text-align: center; }
.hero-title {
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 800;
  text-wrap: balance;
}
.gradient {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  color: #cfd6eb;
  font-size: clamp(16px, 2vw, 20px);
  margin: 0 auto 20px;
  max-width: 640px;
}
.hero-ctas { display: inline-flex; gap: 12px; }

.badges {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--muted-surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
}
.icon { opacity: 0.9; }

.hero-art {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 60vh;
  background: radial-gradient(500px 220px at 20% 40%, rgba(255, 75, 162, 0.12), transparent),
              radial-gradient(600px 280px at 80% 30%, rgba(139, 92, 246, 0.10), transparent);
  pointer-events: none;
  z-index: -1;
}

/* Features */
.features { padding: 40px 0 72px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
}
.feature-icon { font-size: 24px; margin-bottom: 8px; }
.feature-title { margin: 0 0 6px; }
.feature-copy { margin: 0; color: var(--muted); }

.cta-panel {
  margin-top: 24px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(123, 44, 255, 0.12), rgba(123, 44, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
}
.cta-title { margin: 0 0 6px; }
.cta-copy { margin: 0 0 14px; color: var(--muted); }

/* FAQ */
.faq { padding: 16px 0 64px; }
.qa { background: var(--surface); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 12px 16px; }
.qa + .qa { margin-top: 10px; }
.qa-q { font-weight: 700; cursor: pointer; }
.qa-a { color: var(--muted); margin: 8px 0 0; }

/* Footer */
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; background: rgba(10, 13, 28, 0.6); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.footer-brand { font-weight: 800; }
.footer-copy { color: var(--muted); }
.footer-cta { color: var(--text); text-decoration: none; font-weight: 600; }
.footer-cta:hover { color: var(--accent); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
  transition: transform 0.06s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #0b0f1d;
  box-shadow: 0 4px 14px rgba(255, 75, 162, 0.20), 0 1px 6px rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.16);
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-primary:active {
  background: var(--accent-active);
  box-shadow: 0 2px 8px rgba(255, 75, 162, 0.18), 0 1px 3px rgba(139, 92, 246, 0.12);
}
.btn-lg { padding: 12px 22px; font-size: 16px; min-height: 44px; }
.btn:focus-visible { outline: 2px solid var(--ring); outline-offset: 2px; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,0.14); }
.btn-ghost:hover { background: rgba(255,255,255,0.04); }

/* Responsive */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .header-inner { height: 60px; }
}




/* Minimal centered hero tweaks */
.hero--centered {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100dvh;
  padding: 18vh 0 0;
}

.brand-logo--xl {
  width: clamp(160px, 16vw, 280px);
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.form-note {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero--centered { padding-top: 12vh; }
  .brand-logo--xl { width: 180px; height: auto; margin-bottom: 10px; }
}
