/* =========================================================
   MovieBlast V2 Premium - Mobile First
   ========================================================= */

:root{
  --bg:#070b14;
  --bg-2:#0b1220;
  --panel:rgba(255,255,255,0.06);
  --panel-2:rgba(255,255,255,0.08);
  --border:rgba(255,255,255,0.12);
  --text:#ffffff;
  --muted:rgba(255,255,255,0.78);
  --soft:rgba(255,255,255,0.60);
  --primary:#4f8cff;
  --primary-2:#74a8ff;
  --primary-3:rgba(79,140,255,0.16);
  --success:#3ddc97;
  --radius:22px;
  --radius-sm:16px;
  --shadow:0 16px 48px rgba(0,0,0,0.28);
  --container:1180px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(79,140,255,0.10), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(116,168,255,0.10), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color:var(--text);
  overflow-x:hidden;
  text-rendering:optimizeLegibility;
}

img{
  display:block;
  max-width:100%;
  height:auto;
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
}

.container{
  width:min(100% - 32px, var(--container));
  margin-inline:auto;
}

.section{
  padding:48px 0;
}

@media (min-width:768px){
  .section{
    padding:80px 0;
  }
}

/* Accessibility */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}

.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:12px 14px;
  background:#fff;
  color:#000;
  z-index:9999;
  border-radius:10px;
}

/* Background */
.bg-orb{
  position:fixed;
  border-radius:50%;
  filter:blur(70px);
  pointer-events:none;
  z-index:0;
}

.orb-1{
  width:240px;
  height:240px;
  background:rgba(79,140,255,0.10);
  top:40px;
  left:-80px;
}

.orb-2{
  width:280px;
  height:280px;
  background:rgba(61,220,151,0.07);
  right:-100px;
  top:220px;
}

.bg-grid{
  position:fixed;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size:28px 28px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,0.4), transparent 70%);
  pointer-events:none;
  z-index:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(7,11,20,0.78);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.nav-wrap{
  position:relative;
  min-height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand,
.main-nav,
main,
.site-footer{
  position:relative;
  z-index:1;
}

.brand img{
  width:auto;
  max-height:42px;
}

.menu-toggle{
  width:48px;
  height:48px;
  border:0;
  border-radius:14px;
  background:rgba(255,255,255,0.05);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.menu-toggle span{
  width:20px;
  height:2px;
  background:#fff;
  display:block;
  transition:transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2){
  opacity:0;
}
.menu-toggle.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.main-nav{
  display:none;
  position:absolute;
  left:0;
  right:0;
  top:100%;
  background:rgba(8,12,24,0.98);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:10px;
  margin-top:10px;
  box-shadow:var(--shadow);
}

.main-nav.active{
  display:block;
}

.main-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.main-nav a{
  display:block;
  padding:12px 14px;
  border-radius:12px;
  font-weight:600;
  color:var(--muted);
}

.main-nav a:hover,
.main-nav a:focus{
  background:rgba(255,255,255,0.05);
  color:#fff;
}

@media (min-width:992px){
  .menu-toggle{
    display:none;
  }

  .main-nav{
    display:block !important;
    position:static;
    background:none;
    border:0;
    box-shadow:none;
    padding:0;
    margin-top:0;
  }

  .main-nav ul{
    flex-direction:row;
    align-items:center;
    gap:8px;
  }

  .main-nav a{
    padding:10px 12px;
  }
}

/* Typography */
.eyebrow,
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:var(--primary-3);
  border:1px solid rgba(79,140,255,0.26);
  color:#d7e5ff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.02em;
}

.section-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 24px;
}

.section-head-left{
  text-align:left;
  max-width:none;
  margin:0 0 18px;
}

.section-head h2{
  margin:14px 0 10px;
  font-size:clamp(1.7rem, 5vw, 3rem);
  line-height:1.15;
  font-weight:800;
}

.section-head p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}

.hero-title{
  margin:14px 0 14px;
  font-size:clamp(2.2rem, 8vw, 4.8rem);
  line-height:0.98;
  font-weight:900;
  letter-spacing:-0.03em;
}

.hero-title span{
  color:var(--primary-2);
}

.hero-text{
  margin:0;
  max-width:620px;
  color:var(--muted);
  font-size:1rem;
  line-height:1.8;
}

.hero-text strong{
  color:#fff;
}

/* Hero */
.hero{
  padding-top:28px;
}

.hero-grid{
  display:grid;
  gap:28px;
  align-items:center;
}

.hero-stats{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:22px 0 22px;
}

.stat-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  font-size:14px;
  color:#dfe7ff;
}

.hero-actions,
.card-actions,
.center-actions,
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.hero-links{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:16px;
}

.hero-links a{
  color:var(--soft);
  font-size:14px;
  font-weight:600;
}

.hero-links a:hover{
  color:#fff;
}

.hero-visual{
  position:relative;
  min-height:320px;
}

.phone-shell{
  width:min(100%, 360px);
  margin:0 auto;
  border-radius:34px;
  padding:14px;
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border:1px solid rgba(255,255,255,0.12);
  box-shadow:var(--shadow);
}

.phone-shell img{
  width:100%;
  border-radius:24px;
}

.floating-card{
  position:absolute;
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(12,18,34,0.9);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}

.floating-card img{
  border-radius:10px;
}

.floating-card strong{
  display:block;
  font-size:14px;
}

.floating-card span{
  display:block;
  font-size:12px;
  color:var(--soft);
}

.fc-1{
  left:0;
  bottom:30px;
}

.fc-2{
  right:0;
  top:24px;
  flex-direction:column;
  align-items:flex-start;
}

@media (min-width:992px){
  .hero-grid{
    grid-template-columns:1.1fr 0.9fr;
    gap:40px;
  }

  .hero{
    padding-top:44px;
  }
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 22px;
  border-radius:14px;
  font-weight:800;
  font-size:15px;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:linear-gradient(180deg, var(--primary-2), var(--primary));
  color:#fff;
  box-shadow:0 10px 24px rgba(79,140,255,0.28);
}

.btn-secondary{
  background:rgba(255,255,255,0.05);
  color:#fff;
  border-color:rgba(255,255,255,0.12);
}

/* Cards */
.trust-grid,
.feature-grid,
.steps-grid,
.faq-grid,
.footer-grid{
  display:grid;
  gap:16px;
}

.trust-item,
.feature-card,
.step-card,
.faq-card,
.content-card,
.download-card,
.cta-panel{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
}

.trust-item,
.feature-card,
.step-card,
.faq-card{
  padding:18px;
}

.trust-strip{
  padding-top:0;
}

.trust-label{
  display:block;
  font-weight:800;
  margin-bottom:8px;
}

.trust-item p,
.feature-card p,
.step-card p,
.faq-card p,
.footer-text{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.feature-card h3,
.step-card h3,
.faq-card h3,
.download-body h3{
  margin:0 0 10px;
  font-size:1.12rem;
  line-height:1.35;
  font-weight:800;
}

.feature-card a{
  display:inline-block;
  margin-top:12px;
  color:#cfe0ff;
  font-weight:700;
  font-size:14px;
}

.feature-icon{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(79,140,255,0.14);
  border:1px solid rgba(79,140,255,0.22);
  margin-bottom:12px;
  font-size:18px;
}

.step-num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(61,220,151,0.12);
  border:1px solid rgba(61,220,151,0.18);
  font-weight:800;
  margin-bottom:12px;
}

/* Download Card */
.download-card{
  padding:20px;
  display:grid;
  gap:18px;
  align-items:center;
}

.download-icon img{
  width:96px;
  height:96px;
  border-radius:22px;
  margin:0 auto;
}

.download-body h3{
  text-align:center;
}

.download-body p{
  margin:0 0 14px;
  color:var(--muted);
  line-height:1.8;
  text-align:center;
}

.meta-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  margin-bottom:16px;
}

.meta-list span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  font-size:13px;
  color:#dfe7ff;
}

.card-actions{
  justify-content:center;
}

@media (min-width:768px){
  .download-card{
    grid-template-columns:140px 1fr;
    padding:26px;
  }

  .download-icon img{
    width:120px;
    height:120px;
  }

  .download-body h3,
  .download-body p{
    text-align:left;
  }

  .meta-list,
  .card-actions{
    justify-content:flex-start;
  }
}

/* Prose */
.prose-card{
  padding:22px;
}

.prose{
  color:var(--muted);
  line-height:1.9;
}

.prose p{
  margin:0 0 1rem;
}

.prose strong{
  color:#fff;
}

/* CTA */
.cta-panel{
  padding:22px;
  display:grid;
  gap:18px;
}

.cta-copy h2{
  margin:14px 0 10px;
  font-size:clamp(1.6rem, 5vw, 2.6rem);
  line-height:1.15;
  font-weight:800;
}

.cta-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
}

@media (min-width:992px){
  .cta-panel{
    grid-template-columns:1.2fr auto;
    align-items:center;
  }
}

/* Layout grids */
@media (min-width:640px){
  .trust-grid,
  .faq-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (min-width:768px){
  .steps-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (min-width:992px){
  .trust-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .feature-grid{
    grid-template-columns:repeat(4, minmax(0,1fr));
  }

  .steps-grid{
    grid-template-columns:repeat(4, minmax(0,1fr));
  }

  .faq-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }
}


/* =========================================================
   Contact Panel
   ========================================================= */

.contact-panel{
  background:var(--panel);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(10px);
  padding:22px;
}

.contact-panel-inner{
  display:grid;
  gap:22px;
  align-items:center;
}

.contact-badge{
  display:flex;
  align-items:center;
  justify-content:center;
}

.contact-badge img{
  width:84px;
  height:84px;
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.contact-content h2{
  margin:14px 0 12px;
  font-size:clamp(1.6rem, 4vw, 2.4rem);
  line-height:1.15;
  font-weight:800;
}

.contact-content p{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.8;
}

@media (min-width:900px){
  .contact-panel{
    padding:34px;
  }

  .contact-panel-inner{
    grid-template-columns:140px 1fr;
    gap:34px;
  }

  .contact-badge{
    justify-content:flex-start;
  }
}

/* =========================================================
   Support Methods
   ========================================================= */

.support-methods{
  display:grid;
  gap:14px;
  margin-top:20px;
}

.support-method{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  border-radius:18px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.support-method:hover{
  transform:translateY(-2px);
  background:rgba(79,140,255,0.10);
  border-color:rgba(79,140,255,0.35);
}

.support-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(79,140,255,0.12);
  border:1px solid rgba(79,140,255,0.22);
  flex-shrink:0;
}

.support-icon i{
  font-size:22px;
  color:#dbe7ff;
}

.support-info{
  display:flex;
  flex-direction:column;
}

.support-info strong{
  font-size:15px;
  font-weight:800;
  color:#fff;
}

.support-info span{
  font-size:14px;
  color:var(--muted);
  margin-top:4px;
}


/* Footer */
.site-footer{
  padding:36px 0 28px;
  border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
  grid-template-columns:1fr;
}

.footer-brand img{
  width:auto;
  max-height:42px;
}

.footer-text{
  margin-top:12px;
  max-width:440px;
}

.footer-title{
  margin:0 0 12px;
  font-size:1rem;
  font-weight:800;
}

.footer-links{
  list-style:none;
  margin:0;
  padding:0;
}

.footer-links li{
  margin-bottom:8px;
}

.footer-links a{
  color:var(--muted);
}

.footer-links a:hover{
  color:#fff;
}

.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.social-links a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:44px;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  color:var(--muted);
  font-size:14px;
  font-weight:700;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    color .18s ease;
}

.social-icon{
    width:16px;
    height:16px;
	display:block;
    flex-shrink:0;
    fill:currentColor;
}

.social-links a:hover{
  transform:translateY(-2px);
  color:#fff;
  background:rgba(79,140,255,0.12);
  border-color:rgba(79,140,255,0.40);
}

.footer-bottom{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,0.08);
  color:var(--soft);
  font-size:14px;
}

@media (min-width:992px){
  .footer-grid{
    grid-template-columns:1.4fr 1fr 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  *,
  *::before,
  *::after{
    animation-duration:0.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
}