/* WAGE Society — Dark Zinc Design System */

:root {
  --bg: #0a0a0a;
  --bg-2: #141414;
  --surface: #1e1e1e;
  --surface-2: #2a2a2a;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.12);
  --fg: #fafafa;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --accent: #ff6600;
  --accent-hover: #ff8533;
  --accent-dim: rgba(255,102,0,0.12);
  --accent-warm: #ff8533;
  --radius-card: 16px;
  --radius-hero: 24px;
  --radius-btn: 12px;
  --radius-sm: 8px;
  --radius: 8px;
  /* Legacy aliases — some pages reference these */
  --text: var(--fg);
  --text-muted: var(--muted);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', system-ui, sans-serif; }

/* Global form elements dark theme */
select, input, textarea, button {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--fg);
}
select {
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  color: var(--fg);
  outline: none;
}
select:focus { border-color: var(--accent); }
input[type="checkbox"], input[type="radio"] {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}
::placeholder { color: var(--muted-2); }
::selection { background: rgba(255,102,0,0.3); color: var(--fg); }

/* ─── Scrollbar ───────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 4px; }

/* ─── NAV ────────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(10,10,10,0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1360px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--fg);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }
.nav-auth { display: flex; gap: 1rem; align-items: center; }
.nav-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--fg);
  background: transparent;
}
.nav-btn-outline:hover { background: var(--surface); }
.nav-btn-primary {
  background: var(--accent);
  color: #fff;
}
.nav-btn-primary:hover { background: var(--accent-hover); }

/* ─── HERO V2 ────────────────────────────────────────────────────────────────── */
.hero-v2 {
  position: relative;
  padding: 4rem 3rem 5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 70% at 55% 50%, rgba(249,115,22,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 60% 45%, rgba(249,115,22,0.04) 0%, transparent 50%);
}
.hero-v2-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.55fr;
  align-items: center;
  gap: 2rem;
  min-height: 75vh;
}

/* Left column */
.hero-v2-left { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero-v2-title {
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-v2-accent { color: var(--accent); }
.hero-v2-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 42ch;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-v2-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Hero CTAs */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-hero-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(255,102,0,0.3);
  transform: translateY(-2px);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--fg);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  transition: all 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  object-fit: cover;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--muted-2);
  font-weight: 700;
  font-size: 0.7rem;
}
.hero-proof-text {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Globe */
.hero-v2-globe {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-globe-glow {
  position: absolute;
  width: 140%;
  height: 140%;
  top: -20%;
  left: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.15) 0%, rgba(249,115,22,0.06) 40%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-globe-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  animation: globe-float 8s ease-in-out infinite;
  filter: brightness(0.9) contrast(1.15) saturate(1.1);
  box-shadow: 0 0 80px rgba(249,115,22,0.12), 0 0 160px rgba(249,115,22,0.06);
}
@keyframes globe-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

/* Floating creator cards */
.hero-float-card {
  position: absolute;
  background: rgba(24,24,27,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 0.85rem 1rem;
  z-index: 5;
  animation: float-bob 5s ease-in-out infinite;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.03) inset;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-float-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(249,115,22,0.08);
}
.hero-float-card-1 {
  top: 5%;
  right: -5%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation-delay: 0s;
}
.hero-float-card-2 {
  bottom: 22%;
  left: -8%;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  animation-delay: -1.6s;
}
.hero-float-card-3 {
  bottom: 3%;
  right: -2%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  animation-delay: -3.2s;
}
@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hfc-platform-icon {
  vertical-align: middle;
  margin-right: 0.15rem;
  flex-shrink: 0;
}
.hero-float-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.hero-float-avatar img { width: 100%; height: 100%; object-fit: cover; }
.hero-float-avatar-sm { width: 28px; height: 28px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.hero-float-avatar-sm img { width: 100%; height: 100%; object-fit: cover; }
.hfc-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-2);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
}
.hero-float-info { display: flex; flex-direction: column; }
.hero-float-handle {
  font-size: 0.75rem;
  color: var(--fg);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.hero-float-stat { font-size: 1.2rem; font-weight: 800; color: var(--fg); margin-top: 0.15rem; }
.hero-float-label { font-size: 0.65rem; color: var(--muted-2); }
.hero-float-top { display: flex; align-items: center; gap: 0.5rem; }
.hero-float-handle-sm {
  font-size: 0.7rem;
  color: var(--fg);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
}
.hero-float-live {
  font-size: 0.65rem;
  font-weight: 800;
  color: #22c55e;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-float-viewers { font-size: 0.65rem; color: var(--muted); }
.hero-float-new { font-size: 0.6rem; font-weight: 700; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; }
.hero-float-product { font-size: 0.75rem; color: var(--fg); font-weight: 600; }

/* Stats column */
.hero-v2-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 2;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}
.hero-stats-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-value {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.hero-stat-desc {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 0.1rem;
}

/* Nav updates for v2 */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-search-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
}
.nav-search-btn:hover { color: var(--fg); }
.nav-btn-join {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-btn);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-btn-join:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 16px rgba(255,102,0,0.3);
}

/* ─── NAV HAMBURGER + MOBILE OVERLAY ─────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 201;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,10,10,0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.nav-mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-mobile-close:hover { color: var(--fg); }
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.nav-mobile-links a {
  color: var(--fg);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-mobile-links a:hover { color: var(--accent); }
.nav-mobile-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 240px;
  margin-top: 1rem;
}

/* ─── MANIFESTO ───────────────────────────────────────────────────────────────── */
.manifesto {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.manifesto-inner { max-width: 900px; margin: 0 auto; }
.manifesto-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(255,102,0,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.manifesto-quote {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2.5rem;
  color: var(--fg);
}
.manifesto-quote em {
  color: var(--accent);
  font-style: normal;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 58ch;
  line-height: 1.8;
}

/* ─── FEATURES SHOWCASE ──────────────────────────────────────────────────────── */
.features-showcase {
  padding: 5rem 3rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.features-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,102,0,0.4), transparent);
}
.features-showcase-title {
  text-align: center;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 3.5rem;
  text-transform: uppercase;
}
.features-showcase-title .accent { color: var(--accent); }
.features-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.showcase-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 2.25rem 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}
.showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.showcase-card:hover::before { opacity: 1; }
.showcase-card:hover {
  border-color: rgba(255,102,0,0.35);
  box-shadow: 0 0 30px rgba(255,102,0,0.1), 0 8px 32px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.showcase-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(255,102,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  transition: box-shadow 0.3s;
}
.showcase-card:hover .showcase-icon {
  box-shadow: 0 0 16px rgba(255,102,0,0.15);
}
.showcase-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.showcase-card-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── HOW ─────────────────────────────────────────────────────────────────────── */
.how {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 7rem 3rem;
}
.how-inner { max-width: 900px; margin: 0 auto; }
.how-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(255,102,0,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--border);
}
.how-step:first-child { border-top: 1px solid var(--border); }
.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--surface-2);
  line-height: 1;
  padding-top: 0.2rem;
}
.step-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.step-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 48ch; }

/* ─── CLOSING ─────────────────────────────────────────────────────────────────── */
.closing { padding: 9rem 3rem; text-align: center; }
.closing-inner { max-width: 750px; margin: 0 auto; }
.closing-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
  background: var(--accent-dim);
  border: 1px solid rgba(255,102,0,0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
}
.closing-headline {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.closing-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-closing-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-closing-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 30px rgba(255,102,0,0.35);
  transform: translateY(-2px);
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {}
.footer-logo {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.8rem; color: var(--muted-2); margin-top: 0.3rem; }
.footer-links { display: flex; gap: 2rem; align-items: center; }
.footer-links a { font-size: 0.8rem; color: var(--muted-2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--fg); }
.footer-sep { color: var(--border-strong); }

/* ─── HERO STATS SIDEBAR ────────────────────────────────────────────────────── */
.hero-stats-sidebar {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
  min-width: 200px;
}
.stats-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.stats-list { display: flex; flex-direction: column; gap: 1.25rem; }
.stat-item { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
}

/* Hero social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero-avatars { display: flex; }
.hero-avatar-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--surface-2), var(--surface));
  border: 2px solid var(--bg);
  margin-left: -6px;
}
.hero-avatar-dot:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.8rem; color: var(--muted-2); font-weight: 500; }
.dot-orange { color: var(--accent); margin-left: 0.25rem; }

/* ─── LIVE CREATORS CAROUSEL ─────────────────────────────────────────────────── */
.live-creators {
  padding: 3rem 3rem 4rem;
  max-width: 1360px;
  margin: 0 auto;
}
.live-creators-inner { position: relative; }
.live-creators-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.live-creators-title-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.live-dot {
  color: var(--accent);
  font-size: 0.75rem;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.live-creators-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg);
}
.live-creators-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.live-creators-viewall {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.live-creators-viewall:hover { color: var(--fg); }
.carousel-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--bg-2);
  color: var(--fg);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent);
}

/* Carousel scroll container */
.creator-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
}
.creator-carousel::-webkit-scrollbar { display: none; }

/* Creator cards */
.creator-card {
  flex: 0 0 240px;
  background: var(--bg-2);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  scroll-snap-align: start;
  transition: border-color 0.2s, transform 0.2s;
}
.creator-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.creator-card-thumb {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.creator-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.creator-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
}
.live-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #e11d48;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}
.viewer-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  backdrop-filter: blur(4px);
}
.creator-card-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 0.875rem 0.25rem;
}
.creator-card-avatar {
  position: relative;
  flex-shrink: 0;
}
.creator-avatar-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.creator-avatar-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.avatar-live-dot {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e11d48;
  border: 2px solid var(--bg-2);
}
.creator-card-meta { overflow: hidden; }
.creator-card-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.creator-card-category {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.creator-card-earned {
  padding: 0.25rem 0.875rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted-2);
  font-weight: 500;
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .hero-v2-inner { grid-template-columns: 1fr 1fr; }
  .hero-v2-stats { display: none; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .features-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-v2-inner { grid-template-columns: 1fr 1fr; }
  .hero-v2-stats { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-links { display: none !important; }
  .nav-auth { display: none !important; }
  .nav-hamburger { display: flex; }
  .hero { padding: 5rem 1.5rem 4rem; grid-template-columns: 1fr; gap: 2rem; min-height: auto; }
  .hero-v2 { padding: 3rem 1.5rem 3rem; }
  .hero-v2-inner { grid-template-columns: 1fr; min-height: auto; gap: 1.5rem; }
  .hero-v2-globe { display: none; }
  .hero-v2-stats { display: none; }
  .hero-v2-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-decoration { display: none; }
  .hero-v2 { padding: 3rem 1.5rem 3rem; }
  .hero-v2-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }
  .hero-v2-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-v2-globe { display: none; }
  .hero-v2-stats { display: none; }
  .hero-float-card { display: none; }
  .features-showcase-grid { grid-template-columns: 1fr; }
  .how-step { grid-template-columns: 3rem 1fr; gap: 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .closing, .manifesto, .features-showcase, .how { padding: 5rem 1.5rem; }
  .live-creators { padding: 2rem 1.5rem 3rem; }
  .creator-card { flex: 0 0 200px; }
  .creator-card-thumb { height: 110px; }
}