
/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
  --primary: #EB1C06;
  --primary-dark: #c01505;
  --primary-glow: rgba(235,28,6,0.15);
  --primary-light: rgba(235,28,6,0.08);
  --black: #000000;
  --white: #ffffff;
  --off-white: #f9f8f6;
  --grey-100: #f4f3f1;
  --grey-200: #e8e6e2;
  --grey-300: #d0cdc7;
  --grey-500: #8a8680;
  --grey-700: #3d3b38;
  --text-main: #0f0e0d;
  --text-sub: #5a5752;
  --border: #e2dfd9;
  --font-head: 'Roboto', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
}

/* Scoped to landing wrapper so global layout/modals are unaffected */
.bingeme-landing-page, .bingeme-landing-page *, .bingeme-landing-page *::before, .bingeme-landing-page *::after { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  .bingeme-landing-page *, .bingeme-landing-page *::before, .bingeme-landing-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html { scroll-behavior: smooth; }

.bingeme-landing-page {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

.bingeme-landing-page img { max-width: 100%; display: block; }
.bingeme-landing-page a { text-decoration: none; color: inherit; }
.bingeme-landing-page button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ===========================
   NAVBAR
=========================== */
.bingeme-landing-page nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.bingeme-landing-page nav.scrolled { box-shadow: var(--shadow-md); }

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

.bingeme-landing-page .nav-logo a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--text-main); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bingeme-landing-page a.btn-outline,
.bingeme-landing-page a.btn-primary,
.bingeme-landing-page a.btn-hero-primary,
.bingeme-landing-page a.btn-hero-secondary,
.bingeme-landing-page a.btn-cta-white,
.bingeme-landing-page a.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn-outline {
  padding: 9px 20px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--text-main); }

.btn-primary {
  padding: 9px 22px;
  background: var(--primary);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===========================
   HERO SECTION
=========================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--white);
}

/* Grid texture background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grey-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--grey-200) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
  z-index: 0;
}

/* Red glow blob top-right */
.hero-glow-1 {
  position: absolute;
  top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,28,6,0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatBlob 8s ease-in-out infinite;
}

/* Red glow blob bottom-left */
.hero-glow-2 {
  position: absolute;
  bottom: -80px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(235,28,6,0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: floatBlob 10s ease-in-out infinite reverse;
}

@keyframes floatBlob {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(235,28,6,0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-title .accent {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

/* Underline swoosh */
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s;
}
.hero-title .accent.line-in::after { transform: scaleX(1); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(235,28,6,0.3);
}
.btn-hero-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(235,28,6,0.4);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-main);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, transform 0.2s;
}
.btn-hero-secondary:hover { border-color: var(--grey-500); transform: translateY(-1px); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  opacity: 0;
}

.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.02em;
}
.hero-stat-num span { color: var(--primary); }
.hero-stat-label {
  font-size: 13px;
  color: var(--text-sub);
  margin-top: 4px;
  font-weight: 400;
}

/* ===========================
   DASHBOARD PREVIEW
=========================== */
.dashboard-preview {
  padding: 0 24px 100px;
  position: relative;
  overflow: hidden;
}

.dashboard-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 300px;
  background: linear-gradient(to bottom, var(--white), transparent);
  z-index: 2;
  pointer-events: none;
}

.dashboard-frame {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(235,28,6,0.04);
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px) scale(0.96);
}

.dashboard-bar {
  background: var(--grey-100);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-dot { width: 12px; height: 12px; border-radius: 50%; }
.dash-dot.red { background: #ff5f57; }
.dash-dot.yellow { background: #ffbd2e; }
.dash-dot.green { background: #28c940; }

.dash-url-bar {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--grey-500);
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dash-url-bar::before {
  content: '🔒';
  font-size: 10px;
}

.dashboard-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
}

.dash-sidebar {
  background: var(--grey-100);
  border-right: 1px solid var(--border);
  padding: 20px 0;
}

.dash-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}
.dash-sidebar-logo img { height: 24px; }

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
  border-radius: 8px;
  margin: 2px 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.dash-nav-item:hover { background: var(--grey-200); color: var(--text-main); }
.dash-nav-item.active {
  background: var(--primary-light);
  color: var(--primary);
}
.dash-nav-icon { font-size: 16px; }

.dash-main { padding: 24px; background: var(--white); }

.dash-top-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.dash-metric-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.dash-metric-label { font-size: 11px; color: var(--text-sub); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.dash-metric-val {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  margin: 4px 0;
  letter-spacing: -0.02em;
}
.dash-metric-change {
  font-size: 12px;
  font-weight: 500;
  color: #16a34a;
  background: rgba(22,163,74,0.1);
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
}

.dash-row-2 {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
}

.dash-chart-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.dash-chart-title { font-size: 13px; font-weight: 600; color: var(--text-main); margin-bottom: 16px; }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.chart-bar {
  flex: 1;
  background: var(--grey-200);
  border-radius: 4px 4px 0 0;
  transition: background 0.2s;
  position: relative;
}
.chart-bar.active { background: var(--primary); }
.chart-bar.mid { background: rgba(235,28,6,0.4); }

.dash-activity-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--grey-100);
  font-size: 12px;
  color: var(--text-sub);
}
.activity-item:last-child { border-bottom: none; }
.activity-dot {
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===========================
   FEATURES SECTION
=========================== */
.section {
  padding: 100px 24px;
  position: relative;
}

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-sub);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
}

/* Features Grid */
.features-bg {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.feature-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
  opacity: 0;
  transform: translateY(30px);
}
.feature-card:hover { background: var(--grey-100); }

.feature-icon {
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
  border: 1px solid rgba(235,28,6,0.15);
}

.feature-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
  font-weight: 300;
}

/* ===========================
   HOW IT WORKS
=========================== */
.steps-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 64px;
}

.steps-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--border);
}

.step-item {
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(20px);
}

.step-num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--grey-500);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.step-item.active .step-num {
  border-color: var(--primary);
  color: var(--white);
  background: var(--primary);
}

.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 10px;
}
.step-desc { font-size: 13px; color: var(--text-sub); line-height: 1.6; }

/* ===========================
   CHANNELS SECTION
=========================== */
.channels-section { background: var(--black); color: var(--white); }
.channels-section .section-title { color: var(--white); }
.channels-section .section-sub { color: rgba(255,255,255,0.5); }
.channels-section .section-label { color: var(--primary); }

.channels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.channel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  opacity: 0;
  transform: translateY(30px);
}
.channel-card:hover {
  background: rgba(235,28,6,0.08);
  border-color: rgba(235,28,6,0.3);
  transform: translateY(-4px);
}

.channel-emoji { font-size: 36px; margin-bottom: 16px; }
.channel-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.channel-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(30px);
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.star { color: #f59e0b; font-size: 14px; }

.testimonial-text {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 600; color: var(--text-main); }
.author-role { font-size: 12px; color: var(--text-sub); }

/* ===========================
   PRICING
=========================== */
.pricing-bg { background: var(--grey-100); border-top: 1px solid var(--border); }

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

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(235,28,6,0.06), var(--shadow-lg);
  transform: translateY(-8px) !important;
}

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.plan-desc { font-size: 13px; color: var(--text-sub); margin-bottom: 24px; }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency { font-size: 18px; font-weight: 600; color: var(--text-sub); margin-top: 4px; }
.price-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.03em;
}
.price-period { font-size: 14px; color: var(--text-sub); }

.plan-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
}
.plan-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

.btn-plan-primary {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--primary);
  color: var(--white);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.btn-plan-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }

.btn-plan-outline {
  display: block;
  width: 100%;
  padding: 13px;
  background: transparent;
  color: var(--text-main);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  text-align: center;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-plan-outline:hover { border-color: var(--text-main); transform: translateY(-1px); }

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: var(--black);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(235,28,6,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta-title .accent { color: var(--primary); }

.cta-sub { font-size: 17px; color: rgba(255,255,255,0.5); margin-bottom: 40px; font-weight: 300; }

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

.btn-cta-white {
  padding: 14px 32px;
  background: var(--white);
  color: var(--black);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-cta-white:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-cta-ghost {
  padding: 14px 28px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-cta-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ===========================
   FOOTER
=========================== */
.bingeme-landing-page footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 24px 32px;
  color: rgba(255,255,255,0.5);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

/* Same logo asset as header — no invert filter */
.bingeme-landing-page .footer-brand-logo { margin-bottom: 16px; display: inline-block; }
.bingeme-landing-page .footer-brand-logo .text-logo { height: 32px; width: auto; display: block; }
.bingeme-landing-page .footer-brand-logo a { display: inline-block; line-height: 0; }
.footer-brand-desc { font-size: 13px; line-height: 1.7; max-width: 260px; }

.footer-col-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; font-size: 12px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ===========================
   LOGO TICKER
=========================== */
.ticker-section {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ticker-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}

.ticker-track {
  display: flex;
  gap: 80px;
  animation: ticker 20s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--grey-300);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.ticker-item:hover { color: var(--primary); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .features-header { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .channels-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dashboard-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }
}

@media (max-width: 768px) {
  .bingeme-landing-page nav { padding: 0 20px; }
  .nav-links { display: none; }
  .steps-track { grid-template-columns: 1fr 1fr; }
  .steps-track::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: translateY(0) !important; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .dash-top-row { grid-template-columns: 1fr 1fr; }
  .dash-row-2 { grid-template-columns: 1fr; }
}

/* Footer wordmark: white SVG + optional theme overrides */
.bingeme-landing-page .footer-brand-logo .text-logo--footer { height: 32px; width: auto; max-width: 200px; object-fit: contain; }

