/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0c0c10;
  --bg-2: #111118;
  --bg-card: #16161e;
  --bg-card-hover: #1c1c26;
  --text: #f0ece4;
  --text-2: #8a8799;
  --text-3: #4e4c60;
  --accent: #f5c842;
  --accent-dim: rgba(245, 200, 66, 0.12);
  --purple: #7c5cbf;
  --purple-dim: rgba(124, 92, 191, 0.15);
  --green: #34d399;
  --border: rgba(240, 236, 228, 0.08);
  --font-head: 'Syne', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  z-index: 100;
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 8px;
  letter-spacing: -0.5px;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* === HERO === */
.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 48px 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-content { max-width: 560px; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-stacks { display: flex; flex-direction: column; gap: 14px; }
.stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.stack-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 8px;
  flex-shrink: 0;
}

/* === HERO VISUAL === */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
}

.ambient-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.card-stack { position: relative; width: 320px; height: 380px; }

.license-card {
  position: absolute;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(8px);
}

.card-back {
  top: 10px;
  left: 10px;
  transform: rotate(-4deg);
  opacity: 0.7;
}

.card-front {
  top: 40px;
  left: 30px;
  transform: rotate(2deg);
  border-color: rgba(245, 200, 66, 0.2);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 200, 66, 0.1);
}

.card-header {
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.card-body { display: flex; flex-direction: column; gap: 12px; }

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.card-row span:first-child { color: var(--text-2); font-weight: 500; }
.card-row span:last-child { color: var(--text); font-weight: 600; }

.royalty-badge {
  background: var(--accent-dim) !important;
  color: var(--accent) !important;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 11px !important;
  font-weight: 700 !important;
}

.paid-badge {
  color: var(--green) !important;
  font-weight: 700 !important;
}

/* === STATS ROW === */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 1320px;
  margin: 0 auto;
}

.stat-item { text-align: center; flex: 1; }
.stat-value {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 48px;
  max-width: 1320px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 24px;
}

.manifesto-statement {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  max-width: 900px;
  margin-bottom: 60px;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.manifesto-col p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* === HOW IT WORKS === */
.how {
  padding: 100px 48px;
  max-width: 1320px;
  margin: 0 auto;
}

.section-header { margin-bottom: 64px; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  max-width: 600px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.step {
  flex: 1;
  padding: 0 32px;
}

.step:first-child { padding-left: 0; }
.step:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.step-content p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
  flex-shrink: 0;
  margin-top: 40px;
}

/* === FEATURES === */
.features {
  padding: 80px 48px;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--bg-2);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.3s;
}
.feature:last-child { border-right: none; }
.feature:hover { background: var(--bg-card-hover); }

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--purple-dim);
  color: var(--purple);
  border-radius: 10px;
  margin-bottom: 20px;
}

.feature h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.feature p {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
}

/* === CREATORS === */
.creators {
  padding: 100px 48px;
  max-width: 1320px;
  margin: 0 auto;
}

.creators-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.creators-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin: 16px 0 24px;
}

.creators-text p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.creators-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.creators-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}

.creators-list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* === EARNINGS CARD === */
.earnings-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.earnings-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 12px;
}

.earnings-amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.earnings-breakdown {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.earnings-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.earnings-row span:first-child { color: var(--text-2); }
.earned { color: var(--green) !important; font-weight: 700; }

.earnings-footer {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
}

/* === CLOSING === */
.closing {
  padding: 100px 48px 120px;
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.closing-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.06) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.closing-statement {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -3px;
  position: relative;
  z-index: 1;
}

.closing-sub {
  font-size: 16px;
  color: var(--text-2);
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 60px 24px 40px; }
  .hero-visual { display: none; }
  .manifesto-columns { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .step { padding: 0 0 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .creators-inner { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .nav { padding: 16px 24px; }
  .footer { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-headline { font-size: 42px; letter-spacing: -2px; }
  .closing-statement { font-size: 32px; }
}