/* ═══════════════════════════════════════════
   FRONT ROW LIVE — Marketing Site Styles
   thefrontrowlive.app
   ═══════════════════════════════════════════ */

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

html {
  overflow-x: hidden;
}

:root {
  /* Brand Colors — aligned with FRColors (packages/core_ui) */
  --primary: #F59E0B;
  --primary-light: #FBBF24;
  --primary-dark: #D97706;
  --secondary: #EC4899;
  --secondary-light: #F472B6;
  --accent: #06B6D4;
  --accent-light: #22D3EE;
  --gold: #F59E0B;
  --gold-light: #FBBF24;

  /* Surfaces */
  --bg-deep: #07070C;
  --bg: #0A0A0F;
  --surface: #12121A;
  --card: #1C1C2E;
  --card-elevated: #222238;
  --border: #2A2A3E;
  --border-light: #3A3A52;

  /* Text */
  --text-primary: #F5F5F7;
  --text-secondary: #9CA3AF;
  --text-tertiary: #6B7280;
  --text-accent: #FBBF24;

  /* Semantic */
  --success: #22C55E;
  --error: #EF4444;
  --warning: #F59E0B;
  --live-red: #FF3B3B;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #F59E0B, #EC4899);
  --gradient-gold: linear-gradient(135deg, #F59E0B, #D97706);
  --gradient-accent: linear-gradient(135deg, #06B6D4, #0891B2);
  --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #0F0F1A 100%);
  --gradient-card: linear-gradient(145deg, rgba(28,28,46,0.8), rgba(21,21,37,0.6));
  --gradient-hero: linear-gradient(180deg, transparent 0%, rgba(10,10,15,0.6) 40%, rgba(10,10,15,0.95) 80%, #0A0A0F 100%);

  /* Spacing */
  --section-pad: clamp(60px, 10vw, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-glow: 0 0 40px rgba(245, 158, 11, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(245, 158, 11, 0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-elevated: 0 8px 40px rgba(0,0,0,0.6);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ── Typography ──────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-xl {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
}

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

.body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ── Utility Classes ─────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
}

.container--wide {
  max-width: var(--container-wide);
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  border: 1px solid transparent;
}

.btn--primary::before {
  background: rgba(255,255,255,0.1);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn--outline {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  background: var(--surface);
}

.btn--outline::before {
  background: rgba(245, 158, 11, 0.06);
}

.btn--outline:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gradient-gold);
  color: #0A0A0F;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── Navigation ──────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(42, 42, 62, 0.4);
  padding: 12px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 40px);
}

.nav__logo {
  height: 36px;
  width: auto;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__brand-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.nav__brand-text {
  height: 20px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--duration-normal) var(--ease-out);
  border-radius: 1px;
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--duration-fast);
}

/* ── Hero Section ────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 10vh, 100px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

/* Subtle noise texture */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.3;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--live-red);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero__badge-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary-light);
  letter-spacing: 0.05em;
}

.hero__title {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s var(--ease-out) 0.15s both;
}

.hero__subtitle {
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s var(--ease-out) 0.45s both;
}

/* ── Section Headings ────────────────────── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section__label {
  margin-bottom: 16px;
  display: block;
}

.section__title {
  margin-bottom: 16px;
}

.section__desc {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.7;
}

/* ── Stats Bar ───────────────────────────── */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: var(--gradient-primary);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__item {
  padding: 0 16px;
}

.stats__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stats__flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stats__flags svg {
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.stats__label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}

/* ── Problem / Solution ──────────────────── */
.problem {
  background: var(--bg-deep);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.problem__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

.problem__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.problem__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(245, 158, 11, 0.2);
}

.problem__content {
  padding: 20px 0;
}

.problem__quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  padding-left: 24px;
  border-left: 3px solid var(--primary);
  margin-bottom: 16px;
}

.problem__attribution {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  padding-left: 24px;
  margin-bottom: 32px;
}

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

.comparison-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.comparison-row__old {
  text-align: right;
  font-size: 0.9rem;
  color: var(--text-tertiary);
  text-decoration: line-through;
  opacity: 0.6;
}

.comparison-row__arrow {
  color: var(--primary);
  font-size: 1.2rem;
}

.comparison-row__new {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

/* ── Why Front Row Section — Editorial Manifesto ── */
.why-frontrow {
  background: var(--bg);
  position: relative;
}

.manifesto {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.manifesto__item {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity var(--duration-normal) var(--ease-out);
}

.manifesto__item:first-child {
  border-top: 1px solid var(--border);
}

.manifesto__item:hover {
  opacity: 0.85;
}

.manifesto__counter {
  flex-shrink: 0;
  width: 80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
}

.manifesto__divider {
  width: 3px;
  flex-shrink: 0;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.manifesto__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.manifesto__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.manifesto__desc {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

.why-frontrow__bottom {
  text-align: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.why-frontrow__manifesto {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* ── Features Section — Full-Width Carousel ── */
.carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s var(--ease-out);
  will-change: transform;
}

.carousel__slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
  padding: 40px clamp(16px, 8vw, 120px);
}

.carousel__slide:nth-child(even) .carousel__slide-image {
  order: 2;
}

.carousel__slide:nth-child(even) .carousel__slide-content {
  order: 1;
}

.carousel__slide-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel__slide-image img {
  max-height: 500px;
  width: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.carousel__slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.carousel__slide-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.carousel__slide-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.carousel__slide-desc {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  padding: 0;
}

.carousel__dot:hover {
  background: var(--text-tertiary);
}

.carousel__dot--active {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4);
  transform: scale(1.2);
}

.carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  padding: 0 40px;
}

.carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  font-size: 1.1rem;
}

.carousel__arrow:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ── Payment Strip ───────────────────────── */
.payment-strip {
  margin-top: 60px;
  text-align: center;
}

.payment-strip__label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 20px;
}

.payment-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-logo {
  transition: transform var(--duration-fast) var(--ease-out);
  border-radius: var(--radius-sm);
  overflow: hidden;
  opacity: 0.85;
  transition: all var(--duration-fast);
}

.payment-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ── App Preview Section ─────────────────── */
.app-preview {
  background: var(--bg-deep);
  overflow: hidden;
}

.app-preview__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.app-preview__mockup {
  display: flex;
  justify-content: center;
}

.app-preview__mockup img {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(245, 158, 11, 0.2));
}

.experience-highlights {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.experience-highlight {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
  font-size: 1.05rem;
}

.experience-highlight:last-child {
  border-bottom: none;
}

.experience-highlight__keyword {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-right: 4px;
}

.experience-highlight__text {
  color: var(--text-secondary);
}

/* ── Artist CTA Section ──────────────────── */
.artist-cta {
  position: relative;
  overflow: hidden;
}

.artist-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.artist-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.artist-cta__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,15,0.9), rgba(245,158,11,0.15), rgba(10,10,15,0.85));
}

.artist-cta__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.artist-cta__earnings {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(28, 28, 46, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: 32px 48px;
  margin: 32px 0;
  box-shadow: 0 0 40px rgba(255, 184, 0, 0.08);
}

.artist-cta__earnings-label {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.artist-cta__earnings-amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

.artist-cta__earnings-breakdown {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.artist-cta__desc {
  margin-bottom: 32px;
}

.artist-cta__fee-note {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  margin-top: 20px;
  font-style: italic;
}

/* ── Earnings Table ──────────────────────── */
.earnings-table {
  width: 100%;
  max-width: 700px;
  margin: 32px auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
}

.earnings-table th,
.earnings-table td {
  padding: 14px 16px;
  text-align: center;
  font-size: 0.85rem;
}

.earnings-table thead th {
  background: rgba(245, 158, 11, 0.12);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--primary-light);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}

.earnings-table tbody tr {
  transition: background var(--duration-fast);
}

.earnings-table tbody tr:hover {
  background: rgba(245, 158, 11, 0.06);
}

.earnings-table tbody td {
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(42, 42, 62, 0.5);
}

.earnings-table tbody tr:last-child td {
  border-bottom: none;
}

.earnings-table .highlight-row td {
  color: var(--text-primary);
  font-weight: 600;
  background: rgba(255, 184, 0, 0.06);
}

/* ── Timeline (How It Works) ─────────────── */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline__line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--border);
  border-radius: 2px;
}

.timeline__line-fill {
  width: 100%;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 2px;
  transition: height 1.5s var(--ease-out);
}

.timeline__step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  position: relative;
  padding: 24px 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.timeline__step.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline__node {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all var(--duration-normal) var(--ease-out);
}

.timeline__step.visible .timeline__node {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.timeline__number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.timeline__content {
  flex: 1;
  padding-top: 8px;
}

.timeline__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.timeline__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── Fans Section ────────────────────────── */
.fans {
  background: var(--bg-deep);
}

.fans__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fans__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.fans__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.fans__content h3 {
  margin-bottom: 20px;
}

.fans__content p {
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.fans__genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.genre-chip {
  padding: 6px 0;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--duration-fast);
  cursor: default;
}

.genre-chip:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary);
  transform: none;
}

/* ── Contact / Waitlist Form ─────────────── */
.contact {
  position: relative;
}

.contact__bg-glow {
  position: absolute;
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  pointer-events: none;
}

.contact__bg-glow--left {
  top: 0;
  left: -100px;
  background: var(--primary);
}

.contact__bg-glow--right {
  bottom: 0;
  right: -100px;
  background: var(--secondary);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact__info h3 {
  margin-bottom: 16px;
}

.contact__info p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(28, 28, 46, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast);
}

.contact-channel:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.06);
}

.contact-channel__icon {
  font-size: 1.3rem;
}

.contact-channel__label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  display: block;
}

.contact-channel__value {
  font-weight: 500;
  font-size: 0.95rem;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 40px;
  box-shadow: var(--shadow-card);
}

.form-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 10, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: all var(--duration-fast);
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239CA3AF' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-select option {
  background: var(--card);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
  animation: fadeInUp 0.5s var(--ease-out);
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-success__desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer__brand-logo {
  height: 32px;
  width: auto;
}

.footer__col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
}

.footer__link:hover {
  color: var(--primary-light);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.footer__flags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__flags svg {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(28, 28, 46, 0.6);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--duration-fast);
}

.footer__social-link:hover {
  border-color: var(--primary);
  background: rgba(245, 158, 11, 0.12);
  transform: translateY(-2px);
}

/* ── Animations ──────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 59, 59, 0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Scroll-Driven Animations (Progressive Enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  @supports ((animation-timeline: view()) and (animation-range: entry)) {
    @keyframes slide-in-from-bottom {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
    }

    .manifesto__item,
    .app-feature,
    .contact-channel {
      animation: slide-in-from-bottom auto ease both;
      animation-timeline: view();
      animation-range: entry 0% entry 100%;
    }
  }
}

/* JS fallback for scroll animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Decorative Elements ─────────────────── */
.deco-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.deco-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1024px) {
  .carousel__slide {
    gap: 32px;
  }

  .app-preview__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-preview__mockup {
    order: -1;
  }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav__links--mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 24px;
    z-index: 999;
    animation: fadeInUp 0.3s var(--ease-out);
    overflow-y: auto;
  }

  .nav__links--mobile-open .nav__link {
    font-size: 1.1rem;
  }

  .nav__links--mobile-open .nav__cta {
    margin-top: 16px;
    text-align: center;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stats__item {
    padding: 0 8px;
  }

  .problem__grid,
  .fans__layout,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .section__header {
    padding: 0 8px;
  }

  /* Carousel mobile */
  .carousel__slide {
    grid-template-columns: 1fr;
    padding: 24px 16px;
  }

  .carousel__slide:nth-child(even) .carousel__slide-image,
  .carousel__slide:nth-child(even) .carousel__slide-content {
    order: unset;
  }

  .carousel__slide-image img {
    max-height: 280px;
  }

  .carousel__slide-desc {
    max-width: 100%;
  }

  .carousel__controls {
    padding: 0 16px;
  }

  /* Manifesto mobile */
  .manifesto__item {
    gap: 16px;
    padding: 24px 0;
  }

  .manifesto__counter {
    width: 40px;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }

  .manifesto__desc {
    max-width: 100%;
  }

  /* Timeline mobile */
  .timeline__line {
    left: 20px;
  }

  .timeline__node {
    width: 40px;
    height: 40px;
  }

  .timeline__number {
    font-size: 0.8rem;
  }

  .timeline__step {
    gap: 16px;
  }

  /* Artist CTA mobile */
  .artist-cta__earnings {
    padding: 24px 20px;
    width: 100%;
  }

  .earnings-table {
    max-width: 100%;
  }

  .earnings-table th,
  .earnings-table td {
    padding: 10px 6px;
    font-size: 0.7rem;
  }

  /* App preview mobile */
  .app-preview__layout {
    gap: 32px;
  }

  .experience-highlight {
    font-size: 0.95rem;
  }

  .experience-highlight__keyword {
    font-size: 1.05rem;
  }

  /* Form mobile */
  .form-card {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer mobile */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Contact section glow containment */
  .contact {
    overflow: hidden;
  }

  /* Payment strip mobile */
  .payment-strip {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .display-xl {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .display-lg {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .hero__badge {
    padding: 5px 12px;
  }

  .hero__badge-text {
    font-size: 0.7rem;
  }

  .form-card {
    padding: 24px 16px;
  }

  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stats__number {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .payment-strip__logos {
    gap: 8px;
  }

  .payment-logo svg {
    width: 70px;
    height: 24px;
  }

  .manifesto__counter {
    width: 32px;
    font-size: 1.2rem;
  }

  .manifesto__item {
    gap: 12px;
  }

  .carousel__slide {
    padding: 20px 12px;
  }

  .carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .timeline__step {
    gap: 12px;
  }

  .timeline__node {
    width: 36px;
    height: 36px;
  }

  .artist-cta__earnings {
    padding: 20px 16px;
  }

  .earnings-table th,
  .earnings-table td {
    padding: 8px 4px;
    font-size: 0.65rem;
  }

  .contact-channel {
    padding: 12px 14px;
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .section {
    padding: clamp(40px, 8vw, 80px) 0;
  }
}
