:root {
  --bg: #0a0a0c;
  --bg-surface: #111116;
  --bg-card: #18181f;
  --fg: #e8e6e3;
  --fg-muted: #8a8790;
  --accent: #ff3366;
  --accent-glow: rgba(255, 51, 102, 0.3);
  --accent-2: #ff6b35;
  --accent-3: #a855f7;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- SITE NAV ---- */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(10,10,12,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
}
.site-nav .nav-links { display: flex; gap: 8px; align-items: center; }
.site-nav .nav-link {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--fg-muted);
  transition: color 0.2s, background 0.2s;
}
.site-nav .nav-link:hover { color: var(--fg); background: rgba(255,255,255,0.05); }
.site-nav .nav-link-cta { background: var(--accent); color: #fff; }
.site-nav .nav-link-cta:hover { opacity: 0.88; background: var(--accent); color: #fff; }

/* ---- BUTTONS ---- */
.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: var(--fg); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-inner {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lede {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.tag {
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 500;
  transition: border-color 0.2s;
}

.tag:hover {
  border-color: var(--accent);
  color: var(--fg);
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 120px 24px;
  background: var(--bg-surface);
}

.how-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.how h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: -0.02em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step {
  padding: 32px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.04);
  transition: transform 0.2s, border-color 0.3s;
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(255,51,102,0.2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- STORIES ---- */
.stories {
  padding: 120px 24px;
}

.stories-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.stories h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.story-card:hover {
  transform: translateY(-4px);
}

.card-hot {
  background: linear-gradient(160deg, rgba(255,51,102,0.08) 0%, var(--bg-card) 50%);
  border-color: rgba(255,51,102,0.15);
}

.card-drama {
  background: linear-gradient(160deg, rgba(168,85,247,0.08) 0%, var(--bg-card) 50%);
  border-color: rgba(168,85,247,0.15);
}

.card-wild {
  background: linear-gradient(160deg, rgba(255,107,53,0.08) 0%, var(--bg-card) 50%);
  border-color: rgba(255,107,53,0.15);
}

.story-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.card-drama .story-label { color: var(--accent-3); }
.card-wild .story-label { color: var(--accent-2); }

.story-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 20px;
}

.story-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 24px;
  text-align: center;
  position: relative;
  background: var(--bg-surface);
}

.closing-inner {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

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

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hero {
    min-height: auto;
    padding: 100px 20px 80px;
  }
  .how, .stories, .closing {
    padding: 80px 20px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .hero-glow {
    width: 350px;
    height: 350px;
  }
}