
:root{
  /* Movie-theatre carpet + neon */
  --bg0:#020006;
  --bg1:#09000f;
  --bg2:#12001a;
  --neonPink:#ff2da1;
  --neonCyan:#00ffd5;
  --neonGold:#d8b25a;

  --paper:#ffffff;
  --muted:#cbbbd6;

  /* Footer “Bond/Archer bar” */
  --barBlack:#08070a;
  --barCharcoal:#0f0f14;
  --barLine:rgba(216,178,90,0.28);
  --barText:#f0eadf;
  --barSub:rgba(240,234,223,0.75);

  --tap:44px;
  --radius:14px;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  overflow-x:hidden;
  background: radial-gradient(circle at center, var(--bg2), var(--bg1) 60%, var(--bg0));
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue";
  color:#fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-top: calc(env(safe-area-inset-top) + 92px);
  padding-bottom: env(safe-area-inset-bottom);
}

/* Arcade / theater carpet speckle */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    radial-gradient(circle, rgba(255,45,161,0.48) 2px, transparent 2px),
    radial-gradient(circle, rgba(0,255,213,0.40) 2px, transparent 2px),
    radial-gradient(circle, rgba(255,214,90,0.38) 2px, transparent 2px);
  background-size: 120px 120px, 150px 150px, 180px 180px;
  background-position: 0 0, 40px 60px, -30px -50px;
  animation: carpetMove 22s linear infinite;
  opacity: 0.35;
}

@keyframes carpetMove{
  0%{ background-position: 0 0, 40px 60px, -30px -50px; }
  100%{ background-position: 220px 420px, 160px 280px, 140px 160px; }
}

@media (prefers-reduced-motion: reduce){
  body::before{ animation:none; }
  .polaroid{ animation:none !important; }
  .reel{ transition:none; }
}

/* Layout wrapper */
.wrap{
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 18px 0 28px;
}

/* NAV (Film reels) */
#film-nav{
  position:fixed;
  top: env(safe-area-inset-top);
  left:0;
  right:0;
  padding: 10px 10px 12px;
  z-index: 9999;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  gap: 16px;
  overflow-x:auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, rgba(8,7,10,0.88), rgba(8,7,10,0.30));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
#film-nav::-webkit-scrollbar{ height: 6px; }
#film-nav::-webkit-scrollbar-thumb{ background: rgba(255,255,255,0.12); border-radius: 10px; }

.nav-item{
  min-width: 92px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap: 6px;
  padding: 0 4px;
}
.reel{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,0.25) 0 10%, transparent 11%),
    radial-gradient(circle at center, #2a2a2a 0 28%, #111 29% 52%, #202020 53% 100%);
  box-shadow: 0 0 16px rgba(255,45,161,0.45), 0 0 22px rgba(0,255,213,0.20);
  border: 2px solid rgba(255,255,255,0.12);
  position:relative;
  cursor:pointer;
  transition: transform 180ms ease, filter 180ms ease;
  touch-action: manipulation;
  user-select:none;
}
.reel::before, .reel::after{
  content:"";
  position:absolute;
  width: 10px; height: 10px;
  background: rgba(0,0,0,0.55);
  border-radius: 2px;
  top: 14px;
  left: 10px;
  box-shadow: 0 22px 0 rgba(0,0,0,0.55);
}
.reel::after{ left:auto; right:10px; }
.reel:active{ transform: scale(0.96); }
.reel:hover{
  transform: rotate(10deg) scale(1.07);
  filter: drop-shadow(0 0 12px rgba(255,45,161,0.55));
}
.reel-label{
  text-align:center;
  color: #ffd65a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-shadow: 0 0 10px rgba(255,45,161,0.35);
  white-space:nowrap;
}

/* HERO */
.hero{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(0,0,0,0.25));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.10);
  min-height: 460px;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,45,161,0.10), transparent 45%),
    radial-gradient(circle at 80% 25%, rgba(0,255,213,0.10), transparent 50%),
    radial-gradient(circle at 50% 120%, rgba(255,214,90,0.10), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
}
.hero-header{
  position:relative;
  z-index:5;
  padding: 22px 18px;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.badge{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border:1px solid rgba(255,255,255,0.12);
  width: fit-content;
  max-width: 100%;
}
.badge-text{
  color:rgba(255,255,255,0.9);
  font-weight:800;
  letter-spacing:0.8px;
  font-size: 12px;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--neonPink);
  box-shadow: 0 0 16px rgba(255,45,161,0.8);
}
h1{
  margin: 4px 0 0;
  font-size: clamp(26px, 5vw, 40px);
  letter-spacing: 0.6px;
  line-height: 1.05;
}
.h1-accent{
  color:var(--neonGold);
  text-shadow: 0 0 18px rgba(216,178,90,0.25);
}
.sub{
  margin:0;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  line-height: 1.5;
  max-width: 70ch;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
}

.btn{
  min-height: var(--tap);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.6px;
  cursor:pointer;
  touch-action: manipulation;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn.primary{
  background: linear-gradient(90deg, rgba(255,45,161,0.85), rgba(255,214,90,0.75));
  border-color: rgba(255,255,255,0.20);
  box-shadow: 0 0 18px rgba(255,45,161,0.32);
  color:#1a0b14;
}
.btn.full{ width: 100%; }
.btn:active{ transform: translateY(1px); }

.hero-quick{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 4px;
}

/* Polaroids (hero only, right side band) */
.polaroid{
  position:absolute;
  top: -220px;
  width: 150px;
  height: 182px;
  border: 10px solid var(--paper);
  border-bottom: 34px solid var(--paper);
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.55);
  filter: drop-shadow(0 0 10px rgba(255,45,161,0.40));
  transform: rotate(var(--rot));
  animation: drop var(--dur) linear forwards;
  pointer-events:none;
}
@keyframes drop{
  0%{ opacity:0; transform: translateY(-240px) rotate(var(--rot)); }
  10%{ opacity:1; }
  80%{ transform: translateY(68vh) rotate(calc(var(--rot) * 2)); }
  100%{ transform: translateY(90vh) rotate(calc(var(--rot) * 5)) scale(0.2); opacity:0; }
}

/* Sections */
section{
  margin-top: 18px;
  border-radius: var(--radius);
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  padding: 16px;
}
.section-head{
  display:flex;
  flex-direction:column;
  gap: 6px;
  margin-bottom: 10px;
}
section h2{
  margin: 0;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
}
.section-kicker{
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.5;
}

.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}
.card{
  grid-column: span 12;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 14px;
}
.card-callout{
  border-color: rgba(216,178,90,0.25);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(0,0,0,0.20));
}
.card-title{
  letter-spacing: 0.8px;
  display:block;
  margin-bottom: 6px;
}
.card p{ margin: 8px 0 0; color: rgba(255,255,255,0.85); line-height: 1.6; font-size: 14px; }

.small-muted{
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  line-height: 1.5;
}

.bullets{
  margin: 8px 0 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  font-size: 14px;
}

.pill-row{ margin-top: 8px; }
.pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.28);
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  margin: 6px 6px 0 0;
}
.pill .mini{
  width:8px;height:8px;border-radius:50%;
  background: var(--neonCyan);
  box-shadow: 0 0 14px rgba(0,255,213,0.7);
}

@media (min-width: 820px){
  .card.half{ grid-column: span 6; }
  .card.third{ grid-column: span 4; }
}

/* Pricing cards */
.pricing-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 10px;
}
@media (min-width: 820px){
  .pricing-grid{ grid-template-columns: 1fr 1fr; }
}
.price-card{
  border-radius: 14px;
  border: 1px solid rgba(216,178,90,0.22);
  background: rgba(0,0,0,0.28);
  padding: 14px;
}
.price-tier{
  font-weight: 900;
  letter-spacing: 0.8px;
  color: var(--barText);
  text-transform: uppercase;
  font-size: 12px;
}
.price{
  font-size: 30px;
  font-weight: 900;
  color: #ffd65a;
  margin: 8px 0 10px;
  text-shadow: 0 0 14px rgba(216,178,90,0.20);
}
.price-list{
  margin: 0 0 12px;
  padding-left: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.65;
  font-size: 14px;
}

/* Demo gallery grid */
.demo-grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.demo-thumb{
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at 30% 20%, rgba(255,45,161,0.15), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(0,255,213,0.12), transparent 55%),
    rgba(255,255,255,0.04);
}
@media (max-width: 520px){
  .demo-grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Embed shells */
.embed-shell{
  border-radius: 14px;
  border: 1px dashed rgba(216,178,90,0.35);
  background: rgba(0,0,0,0.22);
  padding: 14px;
  margin-top: 10px;
}
.embed-placeholder{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.embed-title{
  font-weight: 900;
  letter-spacing: 0.8px;
}
.embed-sub{
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  line-height: 1.6;
}
.embed-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Contact chips */
.contact-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
}
.link-chip{
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.30);
  color: #ffd65a;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  touch-action: manipulation;
}
.link-chip:active{ transform: translateY(1px); }
.ico{
  width:10px;height:10px;border-radius:50%;
  background: var(--neonPink);
  box-shadow: 0 0 16px rgba(255,45,161,0.55);
}
.gold-link{
  color:#ffd65a;
  font-weight:900;
  text-decoration:none;
}

/* FOOTER (Centered fix is here) */
footer{
  margin: 18px auto 0; /* ✅ centers footer */
  width: min(1100px, 92vw);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(216,178,90,0.22);
  background: linear-gradient(180deg, var(--barCharcoal), var(--barBlack));
}
.footer-top{
  padding: 18px 16px;
  background:
    radial-gradient(circle at 18% 10%, rgba(216,178,90,0.12), transparent 45%),
    radial-gradient(circle at 82% 40%, rgba(95,183,212,0.10), transparent 50%);
}
.footer-title{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--barText);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
}
.martini{
  width: 18px; height: 18px;
  display:inline-block;
  background: linear-gradient(var(--neonGold), var(--neonGold));
  clip-path: polygon(10% 0%, 90% 0%, 55% 45%, 55% 90%, 45% 90%, 45% 45%);
  filter: drop-shadow(0 0 10px rgba(216,178,90,0.35));
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 12px;
}
.footer-box{
  border: 1px solid rgba(216,178,90,0.22);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
}
.footer-box h3{
  margin:0;
  color: var(--barText);
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.footer-box p, .footer-box a{
  margin: 8px 0 0;
  color: var(--barSub);
  text-decoration:none;
  font-size: 13px;
  line-height: 1.5;
  display:inline-block;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-links a{
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(216,178,90,0.25);
  background: rgba(0,0,0,0.25);
  color: var(--barText);
  font-weight: 800;
  letter-spacing: 0.6px;
  touch-action: manipulation;
}
.footer-links a:active{ transform: translateY(1px); }
.footer-bottom{
  padding: 12px 16px;
  border-top: 1px solid var(--barLine);
  display:flex;
  flex-direction:column;
  gap: 6px;
  color: rgba(240,234,223,0.65);
  font-size: 12px;
}
@media (min-width: 720px){
  .footer-grid{ grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-bottom{ flex-direction:row; justify-content:space-between; align-items:center; }
}

/* Sticky CTA */
.sticky-cta{
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: calc(env(safe-area-inset-bottom) + 14px);
  z-index: 10001;
  width: min(1100px, 92vw);
  pointer-events: none;
  display:flex;
  justify-content:center;
}
.sticky-btn{
  pointer-events: auto;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(90deg, rgba(255,45,161,0.90), rgba(0,255,213,0.75));
  color:#140010;
  font-weight: 950;
  letter-spacing: 0.8px;
  cursor:pointer;
  box-shadow: 0 18px 55px rgba(0,0,0,0.55);
}
@media (min-width: 900px){
  .sticky-cta{ justify-content:flex-end; }
}

/* Audio controls */
.audio-controls{
  position: fixed;
  right: 14px;
  bottom: calc(env(safe-area-inset-bottom) + 78px); /* above sticky button */
  z-index: 10000;
  display:flex;
  gap: 10px;
  align-items:center;
}
.audio-btn{
  min-height: var(--tap);
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.45);
  color:#fff;
  font-weight: 900;
  letter-spacing: 0.6px;
  cursor:pointer;
  filter: drop-shadow(0 0 10px rgba(255,45,161,0.35));
  touch-action: manipulation;
}
.audio-btn.primary{
  background: linear-gradient(90deg, rgba(255,45,161,0.85), rgba(0,255,213,0.70));
  color:#140010;
}

/* Hide YouTube iframe off-screen */
#yt-wrap{
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}