/* === StreamFix — Media Mosaic Design === */
/* Design: Vibrant gradients, mosaic content grid, pill-shaped elements, streaming-service aesthetic */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&display=swap');

:root {
  --p: #6d28d9;
  --pg: #a78bfa;
  --a: #f472b6;
  --bg: #faf5ff;
  --bg2: #f3e8ff;
  --tx: #2e1065;
  --tx2: #7c3aed;
  --bd: #e9d5ff;
  --su: #10b981;
  --r: 14px;
  --r-lg: 22px;
  --r-full: 9999px;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Sora', system-ui, sans-serif; color: var(--tx);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(167,139,250,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(244,114,182,.08) 0%, transparent 50%);
  line-height: 1.65;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   HEADER — Bold gradient bar
   ============================================ */
.site-header {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  position: sticky; top:0; z-index:100;
  box-shadow: 0 2px 20px rgba(109,40,217,.15);
}
.site-header .container {
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 24px;
}
.site-logo {
  font-size: 1.2rem; font-weight:800; color: #fff;
  text-decoration: none; letter-spacing: -.2px;
}
.site-nav { display:flex; align-items:center; gap: 18px; }
.site-nav a {
  color: rgba(255,255,255,.8); text-decoration: none;
  font-size: .85rem; font-weight: 500; transition: color .2s;
}
.site-nav a:hover { color: #fff; }

/* ============================================
   HERO — Full purple gradient with floating cards
   ============================================ */
.hero-section {
  background: linear-gradient(160deg, #4c1d95 0%, #6d28d9 40%, #7c3aed 70%, #a78bfa 100%);
  color: #fff; padding: 90px 0 100px; position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(244,114,182,.2) 0%, transparent 60%);
  border-radius: 50%;
}
.hero-section::after {
  content: ''; position: absolute; bottom: -40px; left: -40px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(167,139,250,.15) 0%, transparent 60%);
  border-radius: 50%;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 50px; align-items: center; position: relative; z-index: 1;
}
.hero-left h1 {
  font-size: 3rem; font-weight:800; line-height: 1.1;
  margin-bottom: 16px; letter-spacing: -.8px;
}
.hero-left h1 .hlt { color: var(--a); }
.hero-desc { font-size: 1.08rem; opacity: .9; max-width: 500px; margin-bottom: 28px; line-height: 1.7; }
.hero-stats { display: flex; gap: 32px; }
.stat-item { }
.stat-num { font-size: 2rem; font-weight:800; display: block; }
.stat-label { font-size: .8rem; opacity: .75; display: block; margin-top: 2px; }

/* Lead Card */
.lead-card {
  background: #fff; color: var(--tx); padding: 30px 26px;
  border-radius: var(--r-lg); box-shadow: 0 20px 50px rgba(0,0,0,.15);
}
.lead-badge {
  display: inline-block; background: linear-gradient(135deg, #f472b6, #c084fc);
  color: #fff; padding: 5px 14px; border-radius: 20px;
  font-size: .78rem; font-weight: 700; margin-bottom: 16px;
}
.lead-card h2 { font-size: 1.3rem; font-weight: 700; color: var(--p); margin-bottom: 4px; }
.lead-sub { color: var(--tx2); font-size: .86rem; margin-bottom: 22px; }
.field-group { margin-bottom: 10px; }
.field-group input, .field-group textarea {
  width: 100%; padding: 11px 15px;
  background: var(--bg); border: 1.5px solid var(--bd);
  border-radius: 10px; font-size: .9rem; font-family: inherit;
  color: var(--tx); transition: border .2s;
}
.field-group input:focus, .field-group textarea:focus {
  outline: none; border-color: var(--p);
  box-shadow: 0 0 0 3px rgba(109,40,217,.1);
}
.btn-main {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff; border: none; border-radius: 10px;
  font-size: .98rem; font-weight: 700; cursor: pointer;
  transition: all .2s;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(109,40,217,.35); }
.btn-lg { width: auto; padding: 16px 44px; font-size: 1.1rem; display: inline-block; text-decoration: none; }
.success-card { text-align:center; padding:18px; background:#f0fdf4; border:1px solid #bbf7d0; border-radius:10px; }
.success-card h3 { color: var(--su); margin-bottom: 4px; }

/* Bottom CTA button fix */
.cta-section .btn-main,
.cta-section .btn-lg,
.cta-section .btn-large {
  width: auto !important; display: inline-block !important;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 90vw;
}

/* ============================================
   FEATURES — Mosaic grid (asymmetric)
   ============================================ */
.features-section { padding: 80px 0; }
.features-section .section-header { margin-bottom: 44px; }
.section-header h2 { font-size: 2.2rem; font-weight:800; color: var(--tx); }
.section-header p { color: var(--tx2); margin-top: 6px; font-size: 1.05rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.fet-card {
  background: #fff; padding: 28px 24px;
  border-radius: var(--r-lg); border: 1px solid var(--bd);
  transition: all .3s; position: relative; overflow: hidden;
}
.fet-card:nth-child(1) { grid-row: span 2; }
.fet-card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(109,40,217,.04), rgba(244,114,182,.04));
  border-radius: 0 0 0 80px;
}
.fet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(109,40,217,.08);
  border-color: var(--pg);
}
.fet-icon { font-size: 2rem; margin-bottom: 12px; position: relative; z-index: 1; }
.fet-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; position: relative; z-index: 1; }
.fet-card p { color: var(--tx2); font-size: .85rem; line-height: 1.5; position: relative; z-index: 1; }

/* ============================================
   BRANDS — Wide colorful cards
   ============================================ */
.browse-section { padding: 70px 0; background: var(--bg2); }
.browse-section .section-header { margin-bottom: 36px; }
.browse-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.browse-card {
  display: flex; align-items: center; gap: 12px;
  padding: 22px 24px; background: #fff;
  border: 1.5px solid var(--bd); border-radius: var(--r);
  text-decoration: none; color: var(--tx); font-weight: 600;
  font-size: .95rem; transition: all .25s;
}
.browse-card:hover {
  border-color: var(--p); background: var(--bg);
  transform: translateY(-3px); box-shadow: 0 8px 25px rgba(109,40,217,.08);
}

/* ============================================
   ISSUES — Mosaic pill grid
   ============================================ */
.browse-section.alt { background: #fff; }
.browse-section.alt .browse-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.browse-section.alt .browse-card {
  padding: 10px 20px; border-radius: var(--r-full);
  font-size: .83rem; font-weight: 500; min-width: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 80px 0; background: var(--bg); }
.testimonials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.test-card {
  background: #fff; padding: 30px; border-radius: var(--r-lg);
  border: 1px solid var(--bd); position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,.03);
}
.test-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, #6d28d9, #f472b6);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.test-quote { font-size: 1rem; line-height: 1.7; color: var(--tx); margin-bottom: 12px; padding-top: 8px; }
.test-author { color: var(--p); font-weight: 700; font-size: .88rem; }

/* ============================================
   CTA
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, #4c1d95, #6d28d9, #a78bfa);
  color: #fff; padding: 90px 0; text-align: center;
}
.cta-section h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; opacity: .85; max-width: 520px; margin: 0 auto 30px; }
.cta-section .btn-main {
  background: #fff; color: #6d28d9; width: auto; display: inline-block;
}
.cta-section .btn-main:hover { background: #faf5ff; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #2e1065; color: #c4b5fd; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 36px; }
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: .9rem; font-weight: 700; }
.footer-col a { display: block; color: #a78bfa; text-decoration: none; font-size: .85rem; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--a); }
.footer-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.footer-brands a { background: #4c1d95; color: #c4b5fd; padding: 4px 12px; border-radius: 6px; font-size: .78rem; text-decoration: none; border: 1px solid #6d28d9; }
.footer-brands a:hover { color: #fff; border-color: var(--a); }
.footer-bottom { border-top: 1px solid #4c1d95; padding-top: 24px; text-align: center; font-size: .8rem; color: #7c3aed; }

/* ============================================
   CONTENT PAGES
   ============================================ */
.content-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.content-page h1 { font-size: 2rem; color: var(--p); margin-bottom: 8px; font-weight: 800; }
.content-page .breadcrumb { color: var(--tx2); font-size: .84rem; margin-bottom: 24px; padding: 10px 0; }
.content-page .breadcrumb a { color: var(--p); text-decoration: none; font-weight: 500; }
.content-page h2 { font-size: 1.45rem; margin: 36px 0 14px; font-weight: 700; }
.content-page h3 { font-size: 1.1rem; margin: 24px 0 8px; font-weight: 700; }
.content-page p { margin-bottom: 16px; line-height: 1.8; color: #4c1d95; }
.content-page ul, .content-page ol { margin: 16px 0 16px 24px; color: #4c1d95; }
.content-page li { margin-bottom: 8px; }
.content-page a { color: var(--p); text-decoration: underline; text-underline-offset: 3px; }
.content-page .step {
  background: var(--bg); padding: 20px 24px;
  border-left: 5px solid var(--p); margin: 16px 0;
  border-radius: 0 var(--r) var(--r) 0; display: flex; gap: 18px; align-items: flex-start;
}
.content-page .step-number {
  background: linear-gradient(135deg, #6d28d9, #7c3aed); color: #fff;
  min-width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .85rem; flex-shrink: 0;
}
.content-page .step-content { flex: 1; }
.content-page .step-content strong { display: block; margin-bottom: 6px; }
.content-page .warning {
  background: #fdf2f8; border: 1px solid #f9a8d4; padding: 18px 22px;
  border-radius: var(--r); margin: 20px 0; border-left: 5px solid var(--a);
}
.content-page .warning strong { display: block; margin-bottom: 4px; color: #9d174d; }
.content-page .inline-cta {
  background: linear-gradient(135deg, #faf5ff, #fdf2f8);
  padding: 30px; border-radius: var(--r-lg); text-align: center;
  margin: 36px 0; border: 2px solid var(--pg);
}
.content-page .inline-cta h3 { margin-top: 0; color: var(--p); font-size: 1.2rem; }
.content-page .inline-cta .btn-main { display: inline-block; width: auto; white-space: nowrap; text-decoration: none; font-size: .95rem; padding: 12px 30px; }
/* Universal inline-cta button fix — covers static, hub, about, contact pages */
.inline-cta .btn-main {
  display: inline-block !important; width: auto !important;
  white-space: nowrap; text-decoration: none;
}
.content-page .faq-section { margin: 40px 0; padding: 28px; background: var(--bg); border-radius: var(--r-lg); border: 1px solid var(--bd); }
.content-page .faq-section h2 { margin-top: 0; padding-bottom: 14px; border-bottom: 2px solid rgba(109,40,217,.12); }
.content-page .faq-item { padding: 16px 0; border-bottom: 1px solid var(--bd); }
.content-page .faq-item:last-child { border-bottom: none; }
.content-page .faq-item h3 { font-size: .98rem; color: var(--p); }
.content-page .faq-item p { color: var(--tx2); font-size: .9rem; }
.content-page .related-issues { margin: 40px 0; padding: 28px; background: #fff; border: 1px solid var(--bd); border-radius: var(--r-lg); }
.content-page .related-issues h2 { margin-top: 0; font-size: 1.15rem; }
.content-page .related-issues ul { list-style: none; margin: 14px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.content-page .related-issues a { color: var(--p); text-decoration: none; font-weight: 600; font-size: .88rem; }
.content-page .related-issues a:hover { text-decoration: underline; }

/* STATIC & HUB */
.static-page { padding: 60px 0; max-width: 800px; margin: 0 auto; }
.static-page h1 { font-size: 2rem; color: var(--p); margin-bottom: 20px; font-weight: 800; }
.static-page h2 { font-size: 1.4rem; margin: 30px 0 14px; font-weight: 700; }
.hub-page { padding: 60px 0; max-width: 1000px; margin: 0 auto; }
.hub-page h1 { font-size: 2rem; color: var(--p); margin-bottom: 8px; font-weight: 800; }
.hub-page .hub-desc { color: var(--tx2); margin-bottom: 32px; font-size: 1.05rem; }
.hub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.hub-link { display: block; padding: 14px 18px; background: var(--bg); border-radius: 12px; color: var(--tx); text-decoration: none; font-size: .9rem; border: 1px solid var(--bd); transition: all .2s; }
.hub-link:hover { border-color: var(--p); background: #fff; transform: translateX(4px); box-shadow: 0 4px 14px rgba(109,40,217,.08); }
.hub-link strong { color: var(--p); }


/* ============================================
   SITEMAP PAGE
   ============================================ */
.sitemap-intro { color: var(--tx2); font-size: 1rem; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid var(--bd); }
.sitemap-section { margin-bottom: 40px; }
.sitemap-section h2 { font-size: 1.3rem; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--bd); }
.sitemap-list { list-style: none; margin: 0; padding: 0; }
.sitemap-list li { margin-bottom: 4px; }
.sitemap-list a { color: var(--p); text-decoration: none; font-size: .9rem; display: block; padding: 6px 10px; border-radius: 6px; transition: all .15s; }
.sitemap-list a:hover { background: var(--bg2); text-decoration: underline; }
.sitemap-main .sitemap-main-link { display: inline-block; margin-right: 16px; margin-bottom: 8px; }
.sitemap-main .sitemap-main-link a { font-weight: 700; font-size: .95rem; padding: 8px 16px; background: var(--bg2); border-radius: 8px; }
.sitemap-main .sitemap-main-link a:hover { background: var(--p); color: #fff; text-decoration: none; }
.sitemap-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; }
@media (max-width: 768px) { .sitemap-grid { grid-template-columns: 1fr; } }

/* RESPONSIVE */
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; } .hero-right { max-width: 380px; margin: 0 auto; } .features-grid { grid-template-columns: 1fr 1fr; } .fet-card:nth-child(1) { grid-row: span 1; } }
@media (max-width: 768px) { .hero-left h1 { font-size: 2rem; } .features-grid { grid-template-columns: 1fr; } .testimonials-grid { grid-template-columns: 1fr; } .content-page .related-issues ul { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .hero-section { padding: 50px 0 60px; } .hero-left h1 { font-size: 1.5rem; } .lead-card { padding: 22px 18px; } }

/* Aliases */
.breadcrumb-item, .step-container, .support-content, .lsi, .current, .active, .-content, .-step-content, .-step-number { }
.btn-primary, .btn-large { display: inline-block; width: auto; padding: 14px 32px; background: linear-gradient(135deg, #6d28d9, #7c3aed); color: #fff; border: none; border-radius: 10px; font-size: 1.05rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all .2s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(109,40,217,.35); }
.hero-right { min-width: 0; } .hero-right .lead-card { height: 100%; }
.features-section, .testimonials-section, .cta-section { scroll-margin-top: 80px; }
