*{box-sizing:border-box}html,body{height:100%;margin:0}
:root{ --black:#000; --white:#fff; --orange:#ff7a00; --blue:#4FA3FF; --veil:rgba(0,0,0,.28); }
html{background:var(--black)}
body{font-family:Poppins,system-ui,sans-serif;color:var(--white)}
a{color:inherit;text-decoration:none}
button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}

/* Loader */
.loader{position:fixed;inset:0;display:grid;place-items:center;z-index:9999;transition:opacity .35s ease;background:#000}
.loader.hide{opacity:0;pointer-events:none}
.loader-inner{display:flex;flex-direction:column;align-items:center;gap:12px;transform:translateY(-4vh)}
.loader-letters{display:flex;gap:0.08em}
.loader-letters.big{font-size:clamp(50px,10vw,120px);line-height:1}
.loader-letters.outline{color:transparent;-webkit-text-fill-color:transparent;-webkit-text-stroke:2.6px #fff}
.loader-letters.outline span{opacity:0;transition:opacity .5s ease}
.pulse-strong{animation:pulseStrong .9s ease-in-out forwards}
@keyframes pulseStrong{0%{filter:brightness(1)}50%{filter:brightness(2) drop-shadow(0 0 14px rgba(255,122,0,.7))}100%{filter:brightness(1)}}

/* Tiny progress bar */
.progress-wrap{display:flex;flex-direction:column;align-items:center;gap:6px;margin-top:10px}
.progress-rail{width:220px;max-width:55vw;height:4px;border:1px solid #fff;border-radius:2px;position:relative;overflow:hidden}
.progress-bar{position:absolute;left:0;top:0;bottom:0;width:0%;background:#fff}
.progress-meta{font-size:11px;letter-spacing:.16em;opacity:.9}

/* Stage with video */
.home .stage{position:fixed;inset:0;overflow:hidden;background:#000;z-index:0}
.bg-fallback{position:absolute;inset:0;background:url('assets/poster.jpg') center/cover no-repeat;z-index:0}
.bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block;border:0;outline:0;z-index:1;opacity:1}
.veil{position:absolute;inset:0;background:var(--veil);z-index:2}

/* Brand + bottom menu */
.brand{position:fixed;left:24px;top:18px;z-index:5}
.brand .brand-fill{color:#fff;-webkit-text-fill-color:#fff;-webkit-text-stroke:0;font-size:22px;letter-spacing:.09em}
@media (max-width:640px){ .brand .brand-fill{font-size:18px} }
.site-menu{position:fixed;left:0;right:0;bottom:14px;z-index:5;padding:0 16px}
.menu-row{display:flex;gap:22px;align-items:center;flex-wrap:wrap}
.menu-row a{font-size:18px;line-height:1}
@media (max-width:640px){ .site-menu .menu-row{justify-content:center} .menu-row a{font-size:13px} }

/* Subpages */
/* About page — film reel layout */
.page .content{
  position:relative;
}

.about-reel{
  position:relative;
  border-radius:0;
  border:2px solid #fff;
  padding:42px clamp(26px,5vw,56px);
  background:#000;
  box-shadow:-3px 3px 0 var(--blue);
  overflow:hidden;
}

.about-header-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  margin-bottom:32px;
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.86;
}

.rec-indicator{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.32);
  background:rgba(0,0,0,.7);
  box-shadow:0 0 0 1px rgba(0,0,0,.8);
}

.rec-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  background:var(--orange);
  box-shadow:0 0 10px rgba(255,122,0,.9);
}

.rec-label{
  font-weight:700;
}

.rec-meta{
  opacity:.7;
}

.frame-label{
  border-radius:999px;
  border:1px solid rgba(255,255,255,.2);
  padding:6px 14px;
  background:rgba(0,0,0,.72);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.16em;
  white-space:nowrap;
}

.about-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:26px;
  position:relative;
  z-index:1;
justify-items:center;text-align:center;}

.about-block{display:flex;flex-direction:column;gap:12px;align-items:center;}

.about-icon-circle{
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.26);
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,.7);
}

.about-icon{
  position:relative;
  display:block;
}

/* Camera icon */
.about-icon--camera{
  width:18px;height:18px;border-radius:50%;
  border:2px solid #fff;
}
.about-icon--clap{
  width:18px;height:18px;border-radius:3px;
  border:2px solid #fff;
}
.about-icon--spark{
  width:0;height:0;
  border-left:10px solid transparent;
  border-right:10px solid transparent;
  border-bottom:14px solid #fff;
}/* Clap icon */
.about-icon--clap{
  width:18px;
  height:12px;
  border-radius:2px;
  border:1.5px solid rgba(255,255,255,.9);
  overflow:hidden;
}
.about-icon--clap::before,
.about-icon--clap::after{
  content:"";
  position:absolute;
}
.about-icon--clap::before{
  inset:0;
  background:repeating-linear-gradient(
    135deg,
    rgba(255,255,255,.9) 0,
    rgba(255,255,255,.9) 2px,
    transparent 2px,
    transparent 5px
  );
}
.about-icon--clap::after{
  width:16px;
  height:5px;
  border-radius:2px;
  border:1.5px solid rgba(255,255,255,.9);
  border-bottom:0;
  transform-origin:left;
  transform:rotate(-18deg);
  top:-5px;
  left:-1px;
}

/* Spark icon */
.about-icon--spark{
  width:2px;
  height:18px;
  background:rgba(255,255,255,.9);
  border-radius:999px;
}
.about-icon--spark::before,
.about-icon--spark::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  background:rgba(255,255,255,.9);
}
.about-icon--spark::before{
  transform:rotate(90deg);
}
.about-icon--spark::after{
  transform:rotate(45deg);
}

.about-copy h2{
  font-size:16px;
  margin:0 0 6px;
}

.about-copy p{
  margin:0;
  font-size:14px;
  line-height:1.6;
  opacity:.9;
}

.about-tagline-row{
  margin-top:30px;
  padding-top:18px;
  border-top:1px dashed rgba(255,255,255,.25);
}

.about-tagline{
  margin:0;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.82;
}

/* Film perforation rails */
.film-perforation{
  position:absolute;
  top:26px;
  bottom:26px;
  width:14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  opacity:.32;
  overflow:hidden;
  pointer-events:none;
  mix-blend-mode:screen;
}
.film-perforation--left{left:16px;}
.film-perforation--right{right:16px;}

.film-perforation::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 14px,
      rgba(0,0,0,1) 14px,
      rgba(0,0,0,1) 24px
    );
}

/* Responsive */
@media (max-width:960px){
  .about-grid{
    grid-template-columns:1fr;
  justify-items:center;text-align:center;}
  .film-perforation{
    display:none;
  }
  .frame-label{
    display:none;
  }
  .about-reel{
    padding:30px 22px 32px;
  }
}

@media (max-width:640px){
  .about-header-row{
    flex-direction:column;
    align-items:flex-start;
  }
  .about-copy h2{
    font-size:15px;
  }
  .about-copy p{
    font-size:13px;
  }
}

.page{min-height:100vh;display:flex;flex-direction:column;gap:24px;padding:120px 18px 80px;max-width:1100px;margin:0 auto}
h1.outline{font-weight:900;font-size:clamp(40px, 8vw, 110px);line-height:.9;letter-spacing:.02em;color:transparent;-webkit-text-fill-color:transparent;-webkit-text-stroke:2.2px #fff}
