:root{
  --bg:#060814;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --text:#eaf0ff;
  --muted:#aab6da;
  --brand:#4aa3ff;
  --brand2:#6bf0ff;
  --border: rgba(255,255,255,.12);
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --radius: 20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: var(--bg);
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}

/* Background layers */
.bg{position:fixed; inset:0; z-index:-5; overflow:hidden;}
.bg-gradient{
  position:absolute; inset:-20%;
  background: linear-gradient(-45deg, #061b2a, #0d1230, #0a2a3a, #111a3a);
  background-size: 400% 400%;
  animation: gradientMove 14s ease infinite;
  filter:saturate(1.1);
}
@keyframes gradientMove{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.bg-orbs span{
  position:absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(107,240,255,.22), rgba(74,163,255,.06) 55%, transparent 70%);
  border-radius: 50%;
  filter: blur(2px);
  animation: drift 18s ease-in-out infinite;
  opacity:.9;
}
.bg-orbs span:nth-child(1){left:-120px; top:-120px;}
.bg-orbs span:nth-child(2){right:-180px; top:10%;}
.bg-orbs span:nth-child(3){left:20%; bottom:-220px; width:680px; height:680px; animation-duration: 22s;}
@keyframes drift{
  0%,100%{transform: translate(0,0) scale(1)}
  50%{transform: translate(30px, 18px) scale(1.05)}
}
.bg-waves{
  position:absolute;
  left:-10%;
  bottom:-140px;
  width: 120%;
  height: 340px;
  background:
    radial-gradient(1200px 120px at 50% 20%, rgba(107,240,255,.18), transparent 65%),
    radial-gradient(900px 160px at 20% 60%, rgba(74,163,255,.12), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent);
  border-radius: 45% 55% 0 0;
  animation: waveMove 10s ease-in-out infinite;
  filter: blur(0.2px);
  opacity:.85;
}
@keyframes waveMove{
  0%,100%{transform: translateX(0)}
  50%{transform: translateX(-4%)}
}
#stars{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:.9;
}

/* Layout */
.container{max-width:1100px; margin:0 auto; padding: 24px}
.card{
  background: linear-gradient(180deg, var(--panel), var(--panel2));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.divider{height:1px; background: rgba(255,255,255,.10); margin:16px 0}

/* Topbar + nav */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6,8,20,.55);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 24px;
  max-width:1100px;
  margin:0 auto;
}
.brand{display:flex; align-items:center; gap:12px; font-weight:800}
.brand span small{display:block; font-weight:700; color:var(--muted); letter-spacing:.2px}
.logo{
  width:38px; height:38px;
  border-radius:14px;
  background: radial-gradient(circle at 30% 30%, var(--brand2), var(--brand));
  box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 18px 50px rgba(74,163,255,.22);
}
.links{display:flex; gap:10px; align-items:center}
.links a{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.links a:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
.links a.active{
  color: var(--text);
  border-color: rgba(74,163,255,.45);
  background: rgba(74,163,255,.12);
}

/* Mobile menu */
.hamburger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  align-items:center; justify-content:center;
  gap:5px; flex-direction:column;
  cursor:pointer;
}
.hamburger span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,.85);
  border-radius: 4px;
}
.mobile-menu{
  display:none;
  max-width:1100px;
  margin:0 auto;
  padding: 0 24px 14px;
}
.mobile-menu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  margin-top:8px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
}
.mobile-menu a.active{color:var(--text); border-color: rgba(74,163,255,.45); background: rgba(74,163,255,.12);}

@media (max-width: 900px){
  .links{display:none;}
  .hamburger{display:flex;}
  .mobile-menu.open{display:block;}
}

/* Typography */
.page-title{
  font-size: clamp(30px, 4vw, 48px);
  margin: 0 0 10px;
  line-height: 1.05;
}
.h2{margin:0 0 10px; font-size: 18px}
.h3{margin:0 0 8px; font-size: 15px; color: rgba(255,255,255,.88)}
.muted{color: var(--muted); line-height:1.6}
.tiny{font-size: 12.5px}

.title{
  font-size: clamp(34px, 4vw, 58px);
  margin: 14px 0 10px;
  line-height: 1.03;
}
.gradient{
  background: linear-gradient(90deg, var(--brand2), #7b8cff);
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.lead{margin:0; color: var(--muted); font-size: 16px; line-height:1.65}

/* Buttons */
.btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:800;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  overflow:hidden;
  will-change: transform;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.10)}
.btn:active{transform: translateY(0px) scale(.99)}
.btn.primary{
  border-color: rgba(74,163,255,.55);
  background: linear-gradient(180deg, rgba(74,163,255,.28), rgba(74,163,255,.12));
}
.btn.primary:hover{
  background: linear-gradient(180deg, rgba(74,163,255,.34), rgba(74,163,255,.14));
}
.btn.wide{width:100%}
.btn.small{padding:10px 12px; border-radius:14px; font-size: 13px}
.btn[disabled]{opacity:.55; cursor:not-allowed; transform:none}
.btn-sheen{
  position:absolute;
  inset:-40%;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.25), transparent 70%);
  transform: translateX(-60%) rotate(20deg);
  animation: sheen 2.8s ease-in-out infinite;
  pointer-events:none;
  opacity:.55;
}
@keyframes sheen{
  0%{transform: translateX(-70%) rotate(20deg)}
  55%{transform: translateX(55%) rotate(20deg)}
  100%{transform: translateX(70%) rotate(20deg)}
}

/* Badges/pills */
.badge{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
  font-weight:800;
}
.badge.glow{
  border-color: rgba(74,163,255,.40);
  background: rgba(74,163,255,.12);
  color: rgba(255,255,255,.92);
  box-shadow: 0 0 30px rgba(74,163,255,.12);
}
.pills{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.pill{
  padding:9px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}

/* Sections */
.section{padding: 22px 0}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:16px;
  margin-bottom: 14px;
}
@media (max-width: 900px){
  .section-head{align-items:flex-start; flex-direction:column}
}

/* Hero grid */
.hero{padding: 34px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr;}
}
.hero-card{padding: 22px}
.sidebox{padding: 18px}

/* Grid blocks */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .grid3{grid-template-columns: 1fr;}
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 900px){
  .grid2{grid-template-columns: 1fr;}
}

.feature{padding: 16px}
.feature h3{margin: 0 0 6px}
.feature p{margin: 0; color: var(--muted); line-height:1.55}

/* KPIs */
.kpi{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top: 12px}
.kpi div{
  padding: 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}
.kpi strong{display:block; font-size: 16px}
.kpi span{color: var(--muted); font-size: 12.5px}

/* Movies */
.movie-grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
@media (max-width: 900px){ .movie-grid{grid-template-columns:1fr} }
.movie{padding:16px; position:relative; overflow:hidden}
.poster{
  height: 170px;
  border-radius: 16px;
  margin: 12px 0;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(520px 220px at 20% 25%, rgba(107,240,255,.18), transparent 60%),
    radial-gradient(520px 240px at 80% 45%, rgba(74,163,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  display:flex;
  align-items:flex-end;
  overflow:hidden;
}
.poster-inner{
  width:100%;
  padding: 14px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.42));
}
.poster-title{font-weight:900; letter-spacing:.2px}
.poster-sub{color: rgba(255,255,255,.80); font-size: 12.5px; margin-top: 2px}
.movie h3{margin:0 0 6px}
.movie p{margin:0; color:var(--muted); line-height:1.55}
.movie-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top: 12px}

/* Forms */
.form{padding: 18px}
.form-head{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom: 8px}
.field{display:flex; flex-direction:column; gap:8px; margin-bottom: 12px}
label{font-weight:800; font-size: 12.5px; color: var(--muted)}
input, textarea, select{
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(74,163,255,.55);
  box-shadow: 0 0 0 4px rgba(74,163,255,.12);
}
textarea{min-height: 120px; resize: vertical}
select{cursor:pointer}


/* Footer */
.footer{
  padding: 26px 0 40px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.10);
  margin-top: 24px;
}
.footer a{color: var(--text); opacity:.9}

.thanks-overlay{
  position:fixed; inset:0;
  display:none;
  align-items:center; justify-content:center;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(10px);
  z-index: 999;
}
.thanks-overlay.show{display:flex; animation: fadeIn .18s ease}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}

.thanks-card{
  width:min(520px, 92vw);
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: 0 24px 90px rgba(0,0,0,.6);
  text-align:center;
  transform: translateY(6px);
  animation: pop .22s ease forwards;
}
@keyframes pop{to{transform:translateY(0)}}
.tick{width:88px; height:88px; margin: 6px auto 10px;}
.tick svg{width:100%; height:100%}
.tick-circle{
  stroke: rgba(107,240,255,.95);
  stroke-width: 2.8;
  stroke-dasharray: 157;
  stroke-dashoffset: 157;
  animation: dash 520ms ease forwards;
}
.tick-check{
  stroke: rgba(255,255,255,.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: dash 420ms 260ms ease forwards;
}
@keyframes dash{to{stroke-dashoffset:0}}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
@media (max-width:900px){
  .section-head{align-items:flex-start; flex-direction:column}
}

.movie-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}

/* Poster layout helpers */
.poster-inner{position:relative}
.poster-title{
  position:absolute;
  left:14px;
  bottom:34px;
  font-weight:900;
  text-shadow: 0 12px 35px rgba(0,0,0,.65);
}
.poster-sub{
  position:absolute;
  left:14px;
  bottom:14px;
  color: rgba(255,255,255,.85);
  font-size:12px;
  text-shadow: 0 12px 35px rgba(0,0,0,.65);
}
.posterPlaceholder{
  width:70px;
  height:160px;
  border-radius:px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(450px 200px at 20% 20%, rgba(107,240,255,.22), transparent 55%),
    radial-gradient(450px 220px at 80% 40%, rgba(74,163,255,.22), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
}


.posterImg{
  width:100%;
  height:auto;
  aspect-ratio: 16 / 9;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  display:block;
}

.updates-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .updates-grid{ grid-template-columns: 1fr; }
}

.update-card{
  overflow:hidden;
}
.update-img{
  width:100%;
  aspect-ratio: 16 / 9;
  object-fit:cover;
  display:block;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.update-body{
  padding:14px;
}
.update-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
/* ONE MOVIE LAYOUT (poster left, text right) */
.movie-one{
  display:grid;
  grid-template-columns: 420px 1fr; /* poster size */
  gap:18px;
  align-items:start;
  margin-top:16px;
}

/* Poster frame */
.posterWrap{
  padding:12px;
  border-radius:18px;
  overflow:hidden;
}

/* ---------- HOME HERO REORG + ANIMATIONS ---------- */
.hero2{
  padding: 44px 0 18px;
}

.hero2-card{
  padding: 26px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  animation: popIn .7s ease forwards;
}

@keyframes popIn{
  to{ transform: translateY(0); opacity: 1; }
}

.hero2-top{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:14px;
}

.heroTitle{
  margin: 0 0 12px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .95;
  letter-spacing: -1px;
  position: relative;
}

.shineText{
  background: linear-gradient(90deg, #e9eeff, #79d2ff, #e9eeff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3.5s linear infinite;
  display:inline-block;
}

.shineText.alt{
  background: linear-gradient(90deg, #79d2ff, #6bf0ff, #79d2ff);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s linear infinite;
}

@keyframes textShine{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 200% 50%; }
}

/* subtle glow blob behind title */
.titleGlow{
  position:absolute;
  inset: -40px -120px;
  background:
    radial-gradient(500px 240px at 20% 30%, rgba(74,163,255,.25), transparent 65%),
    radial-gradient(520px 260px at 70% 60%, rgba(107,240,255,.18), transparent 70%);
  filter: blur(10px);
  z-index:-1;
  animation: glowFloat 6s ease-in-out infinite;
}

@keyframes glowFloat{
  0%,100%{ transform: translateY(0) translateX(0); }
  50%{ transform: translateY(-10px) translateX(8px); }
}

.heroSub{ max-width: 900px; font-size: 16px; line-height: 1.7; }

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:16px;
}

.heroPills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

/* make cards + buttons feel alive */
.card{
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-2px);
}

.btn{
  position:relative;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.btn:active{
  transform: translateY(0px);
}

.hero2-card:hover .shineText,
.hero2-card:hover .shineText.alt{
  animation-duration: 1.6s;
}

/* updates: animate in when page loads */
.latest-updates .card,
.updates-grid .card{
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp .7s ease forwards;
}
.latest-updates .card:nth-child(1){ animation-delay:.05s; }
.latest-updates .card:nth-child(2){ animation-delay:.12s; }
.latest-updates .card:nth-child(3){ animation-delay:.19s; }

@keyframes fadeUp{
  to{ opacity:1; transform: translateY(0); }
}


.posterPortrait{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
}

/* Right side card */
.movieInfo{
  padding:18px;
  border-radius:18px;
}

.movieBadges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom:12px;
}

.movieTitle{
  margin:0 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing:-0.5px;
}

.movieDesc{
  margin:0 0 16px;
  line-height:1.7;
  font-size:16px;
}

/* little info blocks */
.movieMeta{
  display:grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap:12px;
  margin: 12px 0 18px;
}
.metaItem{
  padding:12px;
  border-radius:14px;
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
}
.metaItem strong{
  display:block;
  font-size:13px;
  color: rgba(255,255,255,.92);
}
.metaItem span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color: var(--muted);
  line-height:1.35;
}

/* buttons */
.movieActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* responsive */
@media (max-width: 980px){
  .movie-one{
    grid-template-columns: 1fr;
  }
  .movieMeta{
    grid-template-columns: 1fr;
  }
}

.btn.glow{
  background: linear-gradient(135deg,#2d7fff,#00bfff);
  border: none;
  color:#fff;
  box-shadow:0 0 20px rgba(0,140,255,.5);
  transition:.25s;
}

.btn.glow:hover{
  transform:scale(1.05);
  box-shadow:0 0 35px rgba(0,140,255,.9);
}

/* --- Form grouping / organization --- */
.group{
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
  margin-bottom: 14px;
}

.group-title{
  font-weight: 900;
  letter-spacing: .2px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.92);
}

.two{
  display:grid;
  grid-template-columns: 1fr 160px;
  gap: 12px;
}

@media (max-width: 900px){
  .two{ grid-template-columns: 1fr; }
}

/* Steps list + mini info grid (left panel) */
.steps{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.mini{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.miniItem{
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}

.miniItem strong{
  display:block;
  font-size: 12.5px;
  color: rgba(255,255,255,.92);
}

.miniItem span{
  display:block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
}

/* Visually hidden (but accessible) */
.srOnly{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* Role picker */
.role-picker{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 900px){
  .role-picker{ grid-template-columns: 1fr; }
}

.role-card{
  text-align:left;
  width:100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 14px;
  cursor:pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.role-card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 60px rgba(0,0,0,.35);
}

.role-card.selected{
  border-color: rgba(74,163,255,.55);
  background: linear-gradient(180deg, rgba(74,163,255,.16), rgba(255,255,255,.04));
  box-shadow: 0 0 0 4px rgba(74,163,255,.10), 0 20px 70px rgba(0,0,0,.45);
}

.role-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.role-name{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 14.5px;
}

.role-desc{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

.role-tags{
  margin-top: 6px;
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
}

.tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.role-pill{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.88);
}
.role-preview{
  margin-top: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.role-preview-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 8px;
}


/* Green shockwave effect */
.role-card{
  position: relative;
  overflow: hidden;
}

.role-card::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%,-50%) scale(0);
  border-radius: 999px;
  border: 2px solid rgba(80,255,160,.0);
  opacity: 0;
  pointer-events:none;
}

.role-card.shock::after{
  animation: shockwave .52s ease-out;
}

@keyframes shockwave{
  0%{
    transform: translate(-50%,-50%) scale(0.2);
    opacity: .9;
    border-color: rgba(80,255,160,.85);
    box-shadow: 0 0 0 0 rgba(80,255,160,.25);
  }
  100%{
    transform: translate(-50%,-50%) scale(16);
    opacity: 0;
    border-color: rgba(80,255,160,0);
    box-shadow: 0 0 0 22px rgba(80,255,160,0);
  }
}

/* -------------------------------
   GLOBAL RESPONSIVE HARDENING
-------------------------------- */

/* Better scaling and prevent weird horizontal scroll */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; }

/* Container adapts nicely on small screens */
.container{
  width: min(1100px, 100%);
  padding: clamp(14px, 3vw, 24px);
}

/* Images never overflow */
img, video, canvas, svg{
  max-width: 100%;
  height: auto;
}

/* Long text never breaks layout */
*{
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Touch-friendly buttons on mobile */
.btn{
  min-height: 44px; /* finger friendly */
}

/* Make cards/panels not feel cramped */
.card{
  border-radius: clamp(16px, 2vw, 22px);
}

/* -------------------------------
   NAV / TOPBAR RESPONSIVE
-------------------------------- */
.nav{
  padding: clamp(10px, 2.5vw, 14px) clamp(14px, 3vw, 24px);
  gap: 12px;
}

.brand span small{
  display:none; /* saves space on small devices */
}
@media (min-width: 520px){
  .brand span small{ display:block; }
}

/* -------------------------------
   GRID SYSTEM RESPONSIVE
-------------------------------- */

/* Convert your grid2/grid3 to responsive grids instead of hard breakpoints */
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){
  .grid2{ grid-template-columns: 1fr; }
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){
  .grid3{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .grid3{ grid-template-columns: 1fr; }
}

/* Updates grid becomes fluid */
.updates-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 980px){
  .updates-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .updates-grid{ grid-template-columns: 1fr; }
}

/* -------------------------------
   HERO / BUTTONS WRAP
-------------------------------- */
.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.heroActions .btn{
  flex: 1 1 auto;
}
@media (max-width: 560px){
  .heroActions .btn{
    width: 100%;
  }
}

/* -------------------------------
   MOVIES PAGE RESPONSIVE
-------------------------------- */
.movie-one{
  display:grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 18px;
}
@media (max-width: 980px){
  .movie-one{ grid-template-columns: 1fr; }
}

/* prevent poster side from causing overflow */
.posterWrap{ max-width: 100%; }

/* -------------------------------
   APPLICATIONS FORM RESPONSIVE
-------------------------------- */

/* Fix the "two" fields layout on tablets */
.two{
  display:grid;
  grid-template-columns: 1fr 160px;
  gap: 12px;
}
@media (max-width: 720px){
  .two{ grid-template-columns: 1fr; }
}

/* Role picker: 2 cols on tablet, 1 on phone */
.role-picker{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 720px){
  .role-picker{ grid-template-columns: 1fr; }
}

/* Make role cards slightly more compact on small screens */
@media (max-width: 720px){
  .role-card{ padding: 12px; }
  .role-desc{ font-size: 12.5px; }
  .tag{ font-size: 11.5px; padding: 5px 9px; }
}

/* Record cards: ensure buttons wrap nicely */
.rec-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Audio element fits */
audio{ width: 100%; }

/* -------------------------------
   CONTACT PAGE RESPONSIVE
-------------------------------- */
.form{
  width: 100%;
}

.pay-notice{
  color:#00ff88;
  font-weight:600;
  border-left:3px solid #00ff88;
  padding-left:10px;
  text-shadow:
    0 0 5px rgba(0,255,136,0.7),
    0 0 10px rgba(0,255,136,0.6),
    0 0 20px rgba(0,255,136,0.5);
  animation:greenGlowPulse 2.2s ease-in-out infinite;
}

@keyframes greenGlowPulse{
  0%{
    text-shadow:
      0 0 4px rgba(0,255,136,0.5),
      0 0 8px rgba(0,255,136,0.4);
  }
  50%{
    text-shadow:
      0 0 10px rgba(0,255,136,0.9),
      0 0 25px rgba(0,255,136,0.8),
      0 0 40px rgba(0,255,136,0.6);
  }
  100%{
    text-shadow:
      0 0 4px rgba(0,255,136,0.5),
      0 0 8px rgba(0,255,136,0.4);
  }
}

.role-card.reserved{
  opacity: .62;
  cursor: not-allowed;
}

.role-card.reserved .reserved-ribbon{
  position: absolute;
  top: 12px;
  right: -54px;
  transform: rotate(35deg);
  width: 190px;
  text-align: center;
  padding: 8px 0;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 12px;

  color: rgba(0,0,0,.92);
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(200,200,200,.92));
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 14px 40px rgba(0,0,0,.45);

  z-index: 10;
  pointer-events: none;
}
/* Optional small label if you added it inside the card */
.reserved-note{
  display:inline-block;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  font-size: 12px;
}



.closed-overlay.show{ display:flex; animation: fadeIn .18s ease; }

.closed-card{
  width: min(560px, 94vw);
  padding: 22px;
  border-radius: 22px;
  text-align: center;
  transform: translateY(8px);
  opacity: 0;
  animation: popIn .22s ease forwards;
}

@keyframes popIn{
  to{ transform: translateY(0); opacity: 1; }
}

.closed-icon{
  width: 64px;
  height: 64px;
  margin: 4px auto 10px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 1000;
  font-size: 28px;
  color: rgba(255,255,255,.92);
  background: rgba(74,163,255,.18);
  border: 1px solid rgba(74,163,255,.35);
  box-shadow: 0 18px 70px rgba(0,0,0,.5);
}

.closed-title{
  margin: 6px 0 8px;
  font-size: 22px;
  letter-spacing: -.2px;
}

.closed-text{
  margin: 0 0 14px;
  line-height: 1.65;
}

.nav-link{
  color:rgba(255,255,255,0.6);
  text-decoration:none;
  transition:.3s;
  font-size:14px;
}

.nav-link:hover{
  color:white;
}

.nav-link.active{
  color:#38bdf8;
  text-shadow:0 0 10px rgba(56,189,248,0.6);
}

.movie-btn{
  transition:.3s;
}

.movie-btn.selected{
  transform:scale(1.1);
  box-shadow:0 0 25px rgba(56,189,248,0.8);
  background:linear-gradient(135deg,#38bdf8,#0ea5e9);
}