:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --bg-card: #151515;
  --fg: #e8e8e8;
  --fg-muted: #888888;
  --fg-dim: #555555;
  --accent: #e63946;
  --accent-glow: rgba(230, 57, 70, 0.3);
  --accent-subtle: rgba(230, 57, 70, 0.1);
  --gradient-start: #e63946;
  --gradient-end: #ff6b6b;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.text-gradient {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

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

.logo-icon {
  font-size: 18px;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--fg);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  gap: 60px;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(80px);
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 12px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* PHONE MOCKUP */
.hero-visual {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.phone-mockup {
  width: 260px;
  height: 480px;
  background: var(--bg-card);
  border-radius: 32px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px var(--accent-glow);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(230, 57, 70, 0.05) 100%);
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.phone-platform {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}

.phone-views {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

.phone-waveform {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 120px;
  position: relative;
  z-index: 1;
}

.wave {
  width: 4px;
  border-radius: 4px;
  background: var(--accent);
  animation: pulse 1.5s ease-in-out infinite;
}

.w1 { height: 20px; animation-delay: 0s; }
.w2 { height: 45px; animation-delay: 0.1s; }
.w3 { height: 30px; animation-delay: 0.2s; }
.w4 { height: 65px; animation-delay: 0.3s; }
.w5 { height: 40px; animation-delay: 0.4s; }
.w6 { height: 80px; animation-delay: 0.5s; }
.w7 { height: 55px; animation-delay: 0.6s; }
.w8 { height: 35px; animation-delay: 0.7s; }
.w9 { height: 60px; animation-delay: 0.8s; }
.w10 { height: 25px; animation-delay: 0.9s; }
.w11 { height: 50px; animation-delay: 1.0s; }
.w12 { height: 30px; animation-delay: 1.1s; }

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

.phone-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.caption-word {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.caption-word.active {
  color: var(--accent);
}

/* HOW IT WORKS */
.how-it-works {
  padding: 120px 0;
  border-top: 1px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 64px;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: rgba(230, 57, 70, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.step-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 120px 0;
  background: var(--bg-elevated);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.feature-card:hover {
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateY(-2px);
}

.feature-large {
  grid-column: span 3;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--bg-card), rgba(230, 57, 70, 0.04));
}

.feature-large .feature-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.feature-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* WHO */
.who {
  padding: 120px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.who-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.3s;
}

.who-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
}

.who-emoji {
  font-size: 36px;
  margin-bottom: 16px;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.who-card p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 120px 0;
  background: var(--bg-elevated);
}

.pricing-sub {
  text-align: center;
  color: var(--fg-muted);
  font-size: 16px;
  margin-top: -48px;
  margin-bottom: 64px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
}

.pricing-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
}

.pricing-amount span {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 20px;
}

.pricing-features li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* FAQ */
.faq {
  padding: 120px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.faq-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.closing-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
}

/* FOOTER */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  margin-bottom: 16px;
}

.footer-links {
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 12px;
  color: var(--fg-dim);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 40px;
  }

  .hero-sub { margin: 0 auto 32px; }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider { display: none; }

  .hero-stats .stat {
    min-width: 80px;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-large {
    grid-column: span 1;
    flex-direction: column;
    padding: 32px 24px;
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-grid .who-card:last-child {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-featured {
    transform: none;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    width: 220px;
    height: 400px;
  }

  .nav-cta { display: none; }

  .hero-ctas { justify-content: center; }

  .ba-container {
    flex-direction: column;
    gap: 24px;
  }

  .ba-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .ba-clips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-featured {
    transform: none;
  }
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, color 0.2s;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
}

.btn-primary:hover {
  background: #ff4757;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(230, 57, 70, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: var(--fg-muted);
  padding: 14px 28px;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--fg);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-lg {
  font-size: 16px;
  padding: 16px 36px;
}

.btn-sm {
  font-size: 13px;
  padding: 10px 20px;
}

.btn-full {
  width: 100%;
  margin-top: 28px;
}

/* NAV CTA */
.nav-cta {
  font-size: 13px;
  padding: 10px 20px;
  letter-spacing: 0.5px;
}

/* HERO CTAS */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* CLOSING CTA */
.closing-cta {
  margin-top: 40px;
}

/* FOOTER SEP */
.footer-sep {
  color: var(--fg-dim);
  margin: 0 8px;
  font-size: 12px;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.testimonials-grid .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.testimonials-grid .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.testimonials-grid .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }

/* ==========================================
   TESTIMONIALS
   ========================================== */

.testimonials {
  padding: 120px 0;
  background: var(--bg-elevated);
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Place the featured card across two rows or just make it stand out */
.testimonials-grid .testimonial-featured {
  grid-column: span 1;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(230, 57, 70, 0.2);
  transform: translateY(-2px);
}

.testimonial-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}

.testimonial-stars {
  color: #ffd700;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.75;
  color: var(--fg-muted);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  color: #fff;
}

.avatar-1 { background: linear-gradient(135deg, #e63946, #ff6b6b); }
.avatar-2 { background: linear-gradient(135deg, #6c63ff, #a78bfa); }
.avatar-3 { background: linear-gradient(135deg, #e63946, #ff4500); }
.avatar-4 { background: linear-gradient(135deg, #00c6ae, #00b4d8); }
.avatar-5 { background: linear-gradient(135deg, #f72585, #7209b7); }

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

.testimonial-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
}

.testimonial-role {
  font-size: 12px;
  color: var(--fg-dim);
}

/* ==========================================
   BEFORE / AFTER
   ========================================== */

.before-after {
  padding: 120px 0;
}

.ba-subtitle {
  text-align: center;
  color: var(--fg-muted);
  font-size: 16px;
  margin-top: -48px;
  margin-bottom: 64px;
}

.ba-container {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.ba-side {
  flex: 1;
}

.ba-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--fg-dim);
  margin-bottom: 20px;
}

.ba-label-after {
  color: var(--accent);
}

.ba-video-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.ba-video-thumb {
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.ba-play-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.15);
}

.ba-video-meta {
  position: absolute;
  bottom: 12px;
  right: 12px;
}

.ba-duration {
  background: rgba(0,0,0,0.8);
  color: var(--fg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
}

.ba-title-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.ba-video-stats {
  display: flex;
  gap: 0;
}

.ba-stat {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  border-right: 1px solid var(--border);
}

.ba-stat:last-child { border-right: none; }

.ba-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg-muted);
}

.ba-stat-label {
  display: block;
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.ba-stat-highlight .ba-stat-num {
  color: var(--accent);
}

.ba-stat-highlight .ba-stat-label {
  color: var(--fg-muted);
}

/* Arrow */
.ba-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 100px;
  flex-shrink: 0;
  width: 80px;
}

.ba-arrow-icon {
  font-size: 28px;
  color: var(--accent);
}

.ba-arrow-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--fg-dim);
  text-transform: uppercase;
  text-align: center;
}

.ba-arrow-time {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* After clips grid */
.ba-clips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 0;
}

.ba-clip {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 120px;
  position: relative;
}

.ba-clip-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.3s;
}

.ba-clip-inner:hover {
  border-color: rgba(230, 57, 70, 0.3);
}

.ba-clip-platform {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--fg-dim);
  text-transform: uppercase;
}

.ba-clip-views {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.ba-clip-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

.ba-clip-1 .ba-clip-inner { background: linear-gradient(180deg, #1a0a0b, #0a0a0a); }
.ba-clip-3 .ba-clip-inner { background: linear-gradient(180deg, #0a0d1a, #0a0a0a); }

.ba-clip-inner-more {
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(230, 57, 70, 0.3);
  background: rgba(230, 57, 70, 0.04);
}

.ba-more-num {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.ba-more-label {
  font-size: 10px;
  color: var(--fg-dim);
  text-align: center;
}

.ba-after .ba-video-stats {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 8px;
}