:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #ff3cac;
  --accent-2: #784ba0;
  --accent-3: #2b86c5;
  --gradient: linear-gradient(135deg, #ff3cac 0%, #784ba0 50%, #2b86c5 100%);
  --gradient-text: linear-gradient(135deg, #ff3cac 0%, #ff6fd8 35%, #784ba0 65%, #2b86c5 100%);
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0.75rem auto 0;
}

/* ── Hero ── */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255, 60, 172, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(43, 134, 197, 0.08) 0%, transparent 70%),
    var(--bg);
}

.hero-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--accent);
  border: 1px solid rgba(255, 60, 172, 0.3);
  border-radius: 999px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2rem;
  background: rgba(255, 60, 172, 0.06);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-sub {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2.5rem;
}

.tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

/* ── Questions ── */
.questions {
  padding: 6rem 1.5rem;
  text-align: center;
}

.questions h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 3rem auto 0;
}

.q-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}

.q-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.q-card-1::before { background: #ff3cac; }
.q-card-2::before { background: #ff6b6b; }
.q-card-3::before { background: #784ba0; }
.q-card-4::before { background: #ff9a3c; }
.q-card-5::before { background: #2b86c5; }
.q-card-6::before { background: #6ee7b7; }

.q-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.1);
}

.q-emoji {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}

.q-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.q-hint {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ── Results ── */
.results {
  padding: 6rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(120, 75, 160, 0.08) 0%, transparent 70%),
    var(--bg-elevated);
}

.results h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.results-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  max-width: 720px;
  margin: 3rem auto 0;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  position: relative;
}

.rc-icon {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.rc-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.rc-example {
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
}

.rc-1 { border-left: 3px solid #ff3cac; }
.rc-2 { border-left: 3px solid #ff9a3c; }
.rc-3 { border-left: 3px solid #784ba0; }
.rc-4 { border-left: 3px solid #2b86c5; }

/* ── Vibes ── */
.vibes {
  padding: 6rem 1.5rem;
}

.vibes-inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--gradient);
  border-radius: 24px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vibes-inner::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  background: var(--bg);
  z-index: 0;
}

.vibes-inner > * {
  position: relative;
  z-index: 1;
}

.vibes h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.vibes-desc {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.vibes-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 3rem;
}

.vibe-stat {
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--fg-muted);
  font-size: 0.82rem;
  margin-top: 0.3rem;
}

/* ── Closing ── */
.closing {
  padding: 8rem 1.5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 60, 172, 0.06) 0%, transparent 70%),
    var(--bg);
}

.closing h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.2;
}

.closing-text {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  padding: 3rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .question-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .results-showcase {
    grid-template-columns: 1fr;
  }

  .vibes-inner {
    padding: 3rem 1.5rem;
  }

  .vibes-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .question-grid {
    grid-template-columns: 1fr;
  }

  .hero-tags {
    gap: 0.4rem;
  }

  .tag {
    font-size: 0.65rem;
    padding: 0.3rem 0.7rem;
  }
}
/* ── CTA Button ── */
.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.25rem;
  background: var(--gradient);
  border-radius: 999px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 0 40px rgba(255,60,172,0.25);
}

.hero-cta:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.hero-cta:active { transform: scale(0.97); }
