/* ============================================================
   VERISTREAM — Section Styles (sections.css)
   Every major page section has its own block below.
   ============================================================ */

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition:
    padding    var(--transition-base),
    background var(--transition-base);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  max-height: 36px;
  width: auto;
}

/* Desktop links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

/* CTA button in nav */
.nav-cta {
  padding: 10px 22px;
  font-size: var(--text-sm);
}

/* Hamburger (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition:
    transform var(--transition-base),
    opacity   var(--transition-fast);
  transform-origin: center;
}

/* Animate to X */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: var(--space-20) var(--space-8) var(--space-8);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: calc(var(--z-nav) - 1);
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile a {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition-fast);
}

.nav-mobile a:hover {
  color: var(--text-primary);
}

.nav-mobile .btn {
  margin-top: var(--space-8);
  width: 100%;
  text-align: center;
}

/* Mobile overlay backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-nav) - 2);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Scrolled state — tighter & darker */
.nav.scrolled {
  padding-top: 0;
  background: rgba(5, 5, 8, 0.95);
  padding-bottom: 0;
}

.nav.scrolled .nav-inner {
  padding: var(--space-3) 0;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--space-24);
  padding-bottom: var(--space-16);
}

/* Centered hero layout — text stacked above image */
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  text-align: center;
}

/* Hero text content */
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Combined brand logo in hero */
.hero-logo {
  width: 360px;
  height: auto;
  margin: 0 auto var(--space-8);
  filter: drop-shadow(0 0 40px rgba(4, 161, 254, 0.3));
}

/* Small badge above headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: rgba(4, 161, 254, 0.1);
  border: 1px solid rgba(4, 161, 254, 0.2);
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: var(--space-6);
}

.hero-badge svg,
.hero-badge img {
  width: 16px;
  height: 16px;
}

/* Headline */
.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

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

/* Subtitle */
.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  margin-left: auto;
  margin-right: auto;
}

/* CTA buttons row */
.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

/* Dashboard mockup image — full-width below centered text */
.hero-image {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(4, 161, 254, 0.08);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.hero-image:hover img {
  transform: translateY(-4px);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(4, 161, 254, 0.12);
}

/* ==========================================================
   HERO MOCK DASHBOARD — Faithful Veristream UI recreation
   ========================================================== */
.hero-mock-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(4, 161, 254, 0.08);
}

.hm-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-5);
}

.hm-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--text-xl);
  color: var(--text-primary);
}

.hm-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 2px;
}

.hm-add-btn {
  padding: 8px 18px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: default;
}

/* Roster Grid */
.hm-roster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.hm-artist-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.hm-card-top {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.hm-artist-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}

.hm-artist-meta {
  flex: 1;
  min-width: 0;
}

.hm-artist-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hm-tier {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-top: 3px;
}

.hm-tier-emerging {
  background: rgba(4, 161, 254, 0.15);
  color: var(--primary);
}

.hm-tier-growing {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
}

.hm-tier-unnoticed {
  background: rgba(100, 116, 139, 0.15);
  color: var(--text-muted);
}

/* Authenticity Score Ring */
.hm-score-circle {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.hm-score-circle svg {
  width: 100%;
  height: 100%;
}

/* Stats Row */
.hm-card-stats {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}

.hm-stat {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: center;
}

.hm-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hm-stat-val {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.hm-stat-accent {
  color: var(--primary);
}

/* Chart Section */
.hm-chart-section {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}

.hm-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-4);
}

.hm-chart-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
}

.hm-chart-tabs {
  display: flex;
  gap: 4px;
}

.hm-tab {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-full);
  cursor: default;
}

.hm-tab-active {
  background: var(--primary);
  color: #fff;
}

.hm-chart {
  position: relative;
  height: 140px;
}

.hm-chart-svg {
  width: 100%;
  height: 100%;
}

.hm-chart-y {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.hm-chart-y span {
  font-size: 10px;
  color: var(--text-muted);
  opacity: 0.5;
}

/* Responsive: hero dashboard on small screens */
@media (max-width: 640px) {
  .hm-roster-grid {
    grid-template-columns: 1fr;
  }

  .hm-header {
    flex-direction: column;
    gap: var(--space-3);
  }

  .hm-chart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .hero-mock-dashboard {
    padding: var(--space-4);
  }
}
/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,8,0.6) 0%, rgba(12,13,18,0.4) 50%, rgba(5,5,8,0.6) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(4, 161, 254, 0.10) 0%,
    transparent 70%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(4, 161, 254, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================
   STATS BAR
   ========================================================== */
.stats-bar {
  width: 100%;
  background: transparent;
  padding: var(--space-12) 0;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-6) var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background-image: linear-gradient(135deg, rgba(4, 161, 254, 0.04) 0%, rgba(6, 214, 160, 0.04) 100%);
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.2;
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-2);
}

/* ==========================================================
   FEATURES
   ========================================================== */
.features {
  padding: var(--space-24) 0;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.feature-card {
  padding: var(--space-8);
}

.feature-card .icon-box {
  margin-bottom: var(--space-5);
}

.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-top: var(--space-5);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  margin-top: var(--space-3);
  line-height: 1.7;
}

.feature-card:hover {
  border-color: rgba(6, 214, 160, 0.3);
  box-shadow: 0 0 20px rgba(6, 214, 160, 0.08);
}

/* ==========================================================
   ANALYTICS DEEP DIVE
   ========================================================== */
.analytics {
  padding: var(--space-24) 0;
}

.analytics-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-24);
}

.analytics-panel:last-child {
  margin-bottom: 0;
}

/* Text side */
.analytics-text {
  display: flex;
  flex-direction: column;
}

.analytics-text .section-label {
  text-align: left;
  margin-left: 0;
}

.analytics-text h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-4);
}

.analytics-text p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

/* Feature checklist */
.analytics-text .feature-list {
  margin-top: var(--space-6);
}

.analytics-text .feature-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.analytics-text .feature-list li svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

/* Image side */
.analytics-image {
  position: relative;
}

.analytics-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.analytics-image .image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(4, 161, 254, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.testimonials {
  padding: var(--space-24) 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.testimonial-card {
  padding: var(--space-8);
}

/* Quote text */
.testimonial-quote {
  font-size: var(--text-lg);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.7;
  position: relative;
  padding-top: var(--space-8);
}

.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -4px;
  left: 0;
  font-size: 60px;
  font-style: normal;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  font-family: Georgia, serif;
}

/* Author */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
  font-size: var(--text-base);
}

.testimonial-role {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Star rating */
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-top: var(--space-4);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #F59E0B;
  fill: #F59E0B;
}

/* ==========================================================
   PRICING
   ========================================================== */
.pricing {
  padding: var(--space-24) 0;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

/* Monthly / Yearly toggle */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-card);
  border-radius: var(--radius-full);
  padding: 4px;
  margin-top: var(--space-8);
  border: 1px solid var(--border);
}

.pricing-toggle button {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition-base),
    color      var(--transition-base);
}

.pricing-toggle button.active {
  background: var(--primary);
  color: #fff;
}

.pricing-toggle button:hover:not(.active) {
  color: var(--text-primary);
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

/* Pricing card */
.pricing-card {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary);
  position: relative;
  box-shadow: 0 0 30px rgba(4, 161, 254, 0.15);
}

.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* Tier heading area */
.tier-name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.tier-price {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin: var(--space-4) 0;
}

.tier-period {
  display: block;
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-muted);
}

.tier-description {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
}

/* Feature list */
.tier-features {
  border-top: 1px solid var(--border);
  padding-top: var(--space-6);
  margin-top: auto;
  flex: 1;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--text-secondary);
  font-size: var(--text-sm);
}

.tier-features li svg.check {
  width: 18px;
  height: 18px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.tier-features li svg.x {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  opacity: 0.4;
  flex-shrink: 0;
}

.tier-features li.disabled {
  color: var(--text-muted);
  opacity: 0.5;
}

/* CTA button full width */
.tier-cta {
  width: 100%;
  margin-top: var(--space-6);
  text-align: center;
}

/* ==========================================================
   FINAL CTA
   ========================================================== */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background: var(--gradient-primary);
  z-index: 2;
}

/* Noise texture overlay */
.final-cta::before {
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.final-cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-4);
}

.final-cta-content p {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

/* Email capture form */
.cta-form {
  display: flex;
  flex-direction: row;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 20px;
  font-size: var(--text-base);
  outline: none;
  min-width: 0;
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.cta-form button {
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-subtext {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  margin-top: var(--space-4);
}

/* Decorative floating circles */
.final-cta-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 2;
}

.final-cta-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}

.final-cta-circle:nth-child(2) {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -40px;
}

.final-cta-circle:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 10%;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand img {
  max-height: 32px;
  width: auto;
}

.footer-brand .tagline {
  color: var(--text-secondary);
  margin-top: var(--space-4);
  line-height: 1.7;
  font-size: var(--text-sm);
}

/* Social icons */
.social-icons {
  display: flex;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition:
    background var(--transition-base),
    color      var(--transition-base),
    border-color var(--transition-base);
}

.social-icon:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* Link columns */
.footer-column h4 {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-5);
}

.footer-column ul li {
  margin-bottom: var(--space-3);
}

.footer-column ul li a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: var(--text-primary);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-8);
  margin-top: var(--space-12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.footer-bottom a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--text-secondary);
}

/* ==========================================================
   ANALYTICS HEADER
   ========================================================== */
.analytics-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

/* Analytics image glow */
.analytics-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(4, 161, 254, 0.12) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

.analytics-image-glow-purple {
  background: radial-gradient(
    circle,
    rgba(6, 214, 160, 0.12) 0%,
    transparent 70%
  );
}

/* ==========================================================
   MOCK DASHBOARD COMPONENTS
   ========================================================== */
.mock-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

.mock-artist-info {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mock-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-avatar-sm {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: 4px;
}

.mock-tier {
  font-size: var(--text-xs);
}

.mock-score-ring {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}

.mock-score-ring .score-svg {
  width: 100%;
  height: 100%;
}

.mock-stats-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
  padding: var(--space-4);
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.mock-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.mock-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.mock-stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
}

.mock-verification {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

.mock-verification svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mock Bar Chart */
.mock-section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-5);
}

.mock-bar-chart {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.mock-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.mock-bar-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  width: 90px;
  flex-shrink: 0;
  text-align: right;
}

.mock-bar-track {
  flex: 1;
  height: 24px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.mock-bar-fill {
  height: 100%;
  border-radius: var(--radius-sm);
  transition: width 1s ease;
}

.mock-bar-value {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  width: 70px;
  flex-shrink: 0;
}

.mock-countries {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.mock-country {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.mock-country-flag {
  font-size: 18px;
}

.mock-country-value {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-primary);
}

/* Mock Table */
.mock-table {
  display: flex;
  flex-direction: column;
}

.mock-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.5fr;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border);
}

.mock-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.5fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.mock-table-row:last-child {
  border-bottom: none;
}

.mock-table-row-primary {
  background: rgba(4, 161, 254, 0.04);
}

.mock-table-artist {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 500;
  color: var(--text-primary);
}

/* Text color utilities */
.text-green {
  color: var(--accent-green);
  font-weight: 700;
}

.text-red {
  color: #EF4444;
}

.text-amber {
  color: #F59E0B;
  font-weight: 700;
}

/* ==========================================================
   ICON-BOX COLOR VARIANTS
   ========================================================== */
.icon-box-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
  border-color: rgba(16, 185, 129, 0.15);
}

.icon-box-green svg {
  color: var(--accent-green);
}

.icon-box-purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-color: rgba(139, 92, 246, 0.15);
}

.icon-box-purple svg {
  color: var(--accent-purple);
}

.icon-box-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(236, 72, 153, 0.05) 100%);
  border-color: rgba(236, 72, 153, 0.15);
}

.icon-box-pink svg {
  color: var(--accent-pink);
}

.icon-box-cyan {
  background: linear-gradient(135deg, rgba(4, 161, 254, 0.1) 0%, rgba(4, 161, 254, 0.05) 100%);
  border-color: rgba(4, 161, 254, 0.15);
}

.icon-box-cyan svg {
  color: var(--primary);
}

.icon-box-amber {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-color: rgba(245, 158, 11, 0.15);
}

.icon-box-amber svg {
  color: #F59E0B;
}

/* ==========================================================
   PRICING ENHANCEMENTS
   ========================================================== */
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  z-index: 5;
}

.pricing-save-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
}

.tier-currency {
  font-size: var(--text-2xl);
  font-weight: 600;
  vertical-align: super;
}

.tier-period {
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--text-muted);
}

.tier-feature-included svg {
  color: var(--accent-green);
  flex-shrink: 0;
}

.tier-feature-disabled {
  opacity: 0.4;
}

.tier-feature-disabled svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ==========================================================
   CTA DECORATIVE SHAPES
   ========================================================== */
.final-cta-shapes {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-shape-1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -80px;
}

.cta-shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  right: -40px;
}

.cta-shape-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  right: 10%;
}

/* Logo in footer */
.footer-logo-mark {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-3);
}

.footer-logo-full {
  height: 28px;
  width: auto;
  margin-bottom: var(--space-4);
}

/* Nav logo SVG */
.nav-logo .logo-full {
  height: 22px;
  width: auto;
}

.nav-logo .logo-full path {
  fill: #fff;
}

.nav-logo .logo-full path:first-child {
  fill: #04A1FE;
}

.nav-logo .logo-full path:nth-child(2) {
  fill: #04A1FE;
}

.nav-logo .logo-full path:nth-child(3) {
  fill: #04A1FE;
}
