:root {
  --ink:#16120F; --coffee:#2D241E; --accent:#E05A01; --peach:#FFD5B9;
  --bg:var(--ink); --fg:var(--peach); --muted:rgba(255,213,185,.6);
  --radius:22px; --shadow:0 10px 30px rgba(0,0,0,.35); --speed:300ms;
}

*{box-sizing:border-box} html,body{height:100%} html{scroll-behavior:smooth}
body{
  margin:0; font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  color:var(--fg);
  background:radial-gradient(1200px 800px at 80% -10%, #2d241e55, transparent 60%),
             linear-gradient(180deg,var(--ink) 0%,#120f0d 100%);
  overflow-x:hidden;
}

/* disable custom cursor on touch */
@media (hover: none) and (pointer: coarse) {
  body, a, button, video, .btn, .nav-link { cursor:auto !important; }
}

/* desktop cursor */
body, a, button, video, .btn, .nav-link { cursor:none }

.wrap{max-width:1200px;margin:0 auto;padding:0 24px}

/* header */
.site-header{position:sticky;top:0;z-index:50;backdrop-filter:saturate(120%) blur(8px);
  background:linear-gradient(180deg,rgba(22,18,15,.85),rgba(22,18,15,.55));
  border-bottom:1px solid rgba(255,213,185,.08)}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;padding:14px 24px;flex-wrap:wrap}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--fg)}
/* replaced orange dot with favicon */
.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  filter: drop-shadow(0 0 15px rgba(224,90,1,0.5));
  transform: translateY(2px);
}






.brand-text{letter-spacing:.3px;font-weight:600}.brand-text strong{color:var(--accent);font-weight:800}
.nav{display:flex;align-items:center;gap:14px;flex-wrap:wrap;justify-content:flex-end}
.nav-link{color:var(--muted);text-decoration:none;padding:8px 10px;border-radius:10px;transition:color var(--speed),background var(--speed),transform var(--speed)}
.nav-link:hover{color:var(--fg);background:rgba(224,90,1,.08);transform:translateY(-1px)}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 16px;border-radius:999px;text-decoration:none;font-weight:700;letter-spacing:.2px;transition:transform var(--speed),background var(--speed),color var(--speed),border var(--speed)}
.btn-primary{background:linear-gradient(180deg,#E36212,var(--accent));color:#1a0f0b;box-shadow:0 6px 20px #E05A0144}
.btn-primary:hover{transform:translateY(-2px)}
.btn-outline{border:1px solid rgba(255,213,185,.3);color:var(--fg);background:transparent}
.btn-outline:hover{background:rgba(255,213,185,.08)}
.btn-ghost{background:transparent;color:var(--muted);border:1px solid rgba(255,213,185,.15)}
.btn-ghost:hover{color:var(--fg);border-color:rgba(255,213,185,.35)}

/* hero */
.hero{
  position:relative;
  min-height:88vh;
  display:grid; align-items:end;
  isolation:isolate;
}
.hero-media{position:absolute;inset:0;z-index:-1;overflow:hidden}
.hero-video{width:100%;height:100%;object-fit:cover;opacity:.75;mix-blend-mode:screen}
.hero-gradient{position:absolute;inset:0;background:
  radial-gradient(600px 380px at 20% 20%,rgba(224,90,1,.35),transparent 70%),
  linear-gradient(180deg,rgba(22,18,15,.25) 0%,rgba(22,18,15,.75) 65%,var(--ink) 100%)}
.hero-content{padding:16vh 0 12vh;text-align:left}
.title{font-size:clamp(28px,6vw,64px);line-height:1.03;margin:0 0 10px;text-shadow:0 10px 40px rgba(0,0,0,.6)}
.subtitle{margin:0 0 22px;color:var(--muted);max-width:720px;font-size:clamp(16px,2vw,20px)}
.cta{display:flex;gap:12px;flex-wrap:wrap}

/* sections */
.section{padding:72px 0}
.section-title{font-size:clamp(22px,3.2vw,36px);margin:0 0 18px}

/* INFO GRID */
.info-grid{padding-top:56px}
.grid-3{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:24px;
  align-items:stretch;
}
.info-box{
  position:relative; display:block; overflow:hidden;
  border-radius:var(--radius);
  border:1px solid rgba(255,213,185,.12);
  background:rgba(0,0,0,.6);
  color:var(--fg); text-decoration:none; box-shadow:var(--shadow);
  transition:transform var(--speed), border var(--speed), box-shadow var(--speed);
  aspect-ratio:1/1; display:grid; place-items:center;
}
.info-box:nth-child(1){ grid-column:1 / span 6; }
.info-box:nth-child(2){ grid-column:7 / span 6; }
.info-box.info-bottom{ grid-column:1 / span 12; aspect-ratio:auto; min-height:380px; }
.info-box:hover{ transform:translateY(-4px); border-color:rgba(255,213,185,.35); box-shadow:0 18px 40px rgba(0,0,0,.45) }

.info-bg{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; opacity:.55;
  filter:brightness(.9) contrast(1.2);
}
.info-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.45) 0%, rgba(0,0,0,.8) 100%);
}
.info-content{
  position:relative; z-index:1; padding:28px;
  text-align:center;
}
.info-content h3{ margin:0 0 10px; font-size:clamp(20px,2.8vw,28px); color:#fff }
.info-content p{ margin:0; color:var(--muted); font-size:15px }
.info-arrow{
  position:absolute; left:50%; bottom:16px; transform:translateX(-50%);
  z-index:2; color:var(--fg);
  background:rgba(0,0,0,.55); border:1px solid rgba(255,213,185,.2);
  width:46px; height:46px; display:grid; place-items:center; border-radius:12px;
  transition: transform var(--speed), background var(--speed)
}
.info-box:hover .info-arrow{ transform:translateX(-50%) translateY(-3px); background:rgba(255,255,255,.12) }

/* reveal */
.reveal{opacity:0;transform:translateY(16px);will-change:opacity,transform}
.reveal.show{opacity:1;transform:none;transition:opacity 700ms ease,transform 700ms ease}
.delay-1.show{transition-delay:120ms}.delay-2.show{transition-delay:240ms}

/* blobs */
.bg-blobs{position:fixed;inset:0;z-index:-2;pointer-events:none;overflow:hidden}
.bg-blobs span{position:absolute;width:42vmax;height:42vmax;border-radius:50%;background:radial-gradient(circle at 30% 30%,#E05A01,transparent 60%);filter:blur(60px) saturate(110%);mix-blend-mode:screen;opacity:.07;animation:float 24s ease-in-out infinite}
.bg-blobs span:nth-child(1){left:-10vmax;top:-6vmax}
.bg-blobs span:nth-child(2){right:-14vmax;top:10vmax;animation-duration:29s}
.bg-blobs span:nth-child(3){left:20vmax;bottom:-18vmax;animation-duration:34s}
@keyframes float{0%,100%{transform:translateY(0) rotate(0)}50%{transform:translateY(-30px) rotate(10deg)}}

/* === Custom cursor (orange dot) === */
#cursor{
  position: fixed;
  left: 0; top: 0;
  width: 12px; height: 12px;
  border-radius: 9999px;
  background: var(--accent, #E05A01);
  box-shadow: 0 0 12px rgba(224,90,1,0.6);
  transform: translate(-50%, -50%);
  transition: transform 120ms ease, opacity 120ms ease;
  pointer-events: none;          /* never block clicks */
  z-index: 10010;                /* higher than the overlay (which is 9999) */
  opacity: 1;
}

.cursor-hide { opacity: 0; }

.cursor-grow {
  transform: translate(-50%, -50%) scale(1.8);
}

/* footer */
.site-footer{padding:28px 0}.foot{margin:0;color:var(--muted);text-align:center;font-size:13px}

/* responsive layout improvements */
@media (max-width: 900px){
  .grid-3{ grid-template-columns:repeat(6,1fr); gap:18px }
  .info-box:nth-child(1),
  .info-box:nth-child(2),
  .info-box.info-bottom{ grid-column:1 / span 6; aspect-ratio:auto; min-height:300px }
  .hero-content{text-align:center;padding:14vh 0 10vh}
  .cta{justify-content:center}
}

@media (max-width: 600px){
  .site-header .wrap{flex-direction:column;align-items:flex-start;gap:8px}
  .nav{justify-content:center;gap:8px;flex-wrap:wrap}
  .btn{padding:8px 14px;font-size:14px}
  .info-content p{font-size:14px}
  .info-arrow{width:40px;height:40px}
  .title{font-size:clamp(26px,8vw,40px)}
  .subtitle{font-size:clamp(15px,4vw,18px)}
  .wrap{padding:0 16px}
}



/* Age-warning overlay stays below the cursor */
.age-warning {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(6px);
  z-index: 9999;                 /* below #cursor */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.age-warning.hidden { opacity: 0; pointer-events: none; }
.age-box {
  background: #16120f;
  border: 1px solid rgba(224, 90, 1, 0.3);
  border-radius: 14px;
  max-width: 420px;
  text-align: center;
  padding: 2rem;
  color: #fff;
  box-shadow: 0 0 25px rgba(224, 90, 1, 0.25);
}

.age-box h2 {
  margin-bottom: 1rem;
  color: #E05A01;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.age-box p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.8rem;
}

.age-box button {
  background: #E05A01;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
}

.age-box button:hover {
  background: #ff711f;
}

/* SpectrumB Bodycam Reshade section */
.section-bodycam {
  padding-top: 180px;
  padding-bottom: 180px;
}


.bodycam-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.bodycam-preview {
  display: flex;
  justify-content: center;
}

.bodycam-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1; /* keeps the square rounded box */
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 60%)
      rgba(10, 6, 4, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}

.bodycam-frame:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.18);
}

.bodycam-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 280ms ease-out,
    transform 320ms ease-out;
}

.bodycam-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.bodycam-nav {
  position: absolute;
  cursor: none;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition:
    background 160ms ease-out,
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out;
}

.bodycam-prev {
  left: 22px;
}

.bodycam-next {
  right: 22px;
}

.bodycam-nav:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(253, 142, 42, 0.9);
  transform: translateY(-1px);
}

.bodycam-nav:active {
  transform: translateY(0);

}

/* Text side */
.bodycam-copy .section-title {
  margin-bottom: 12px;
}

.bodycam-copy .section-lead {
  margin-bottom: 16px;
  max-width: 34rem;
}

.bodycam-accent-line {
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(253, 142, 42, 0.2));
  margin: 10px 0 22px;
}

.bodycam-copy .section-text {
  max-width: 32rem;
  margin-bottom: 22px;
}

.bodycam-cta {
  margin-bottom: 12px;
}

.bodycam-note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 900px) {
  .bodycam-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .bodycam-preview {
    order: -1;
  }

  .bodycam-frame {
    max-width: 360px;
  }
}

@media (max-width: 600px) {
  .section-bodycam {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .bodycam-frame {
    max-width: 320px;
    border-radius: 28px;
  }

  .bodycam-prev {
    left: 16px;
  }

  .bodycam-next {
    right: 16px;
  }
}

.bodycam-fullscreen {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition:
    background 160ms ease-out,
    transform 160ms ease-out,
    box-shadow 160ms ease-out,
    border-color 160ms ease-out;
  cursor: none; /* keep your custom cursor */
}

.bodycam-fullscreen:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(253, 142, 42, 0.9);
  transform: translateY(-1px);
}

.bodycam-fullscreen:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .bodycam-fullscreen {
    top: 12px;
    right: 14px;
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
