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

:root {
  --bg:            #03040c;
  --gold:          #f59e0b;
  --gold-bright:   #fbbf24;
  --gold-light:    #fde68a;
  --gold-dark:     #d97706;
  --text-primary:  #f4f4f5;
  --text-muted:    #71717a;
  --text-faint:    #3f3f46;
  --border:        rgba(255,255,255,0.07);
  --font-display:  'Cabinet Grotesk', sans-serif;
  --font-body:     'Satoshi', sans-serif;
}

html, body {
  height: 100%;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background Glow ─────────────────────────────────────── */
.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%,
      rgba(245,158,11,0.07) 0%,
      transparent 70%);
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
}

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

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: linear-gradient(110deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ── Main ────────────────────────────────────────────────── */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 6rem 2rem 4rem;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
}

/* For Creators & Brands label */
.for-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Big VONVARO name */
.vonvaro-name {
  font-family: var(--font-display);
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
  background: linear-gradient(110deg,
    #fde68a 0%,
    #fbbf24 30%,
    #f59e0b 60%,
    #d97706 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(245,158,11,0.2));
}

/* Tagline */
.tagline {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253,230,138,0.5);
}

/* Status row */
.status-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,158,11,0.85);
  border: 1px solid rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.05);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
}

.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px rgba(245,158,11,0.6); }
  50%       { opacity: 0.35; box-shadow: none; }
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  padding: 2rem;
  text-align: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ── Fade-up animation ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 480px) {
  .nav-tag { display: none; }
  .tagline { letter-spacing: 0.1em; }
}
