:root{
  --bg:#050505;
  --panel:#101014;
  --panel2:#17171c;
  --text:#f5eef8;
  --muted:#cec2d6;
  --purple:#a43dff;
  --purple2:#dfc3ff;
  --red:#d93228;
  --gold:#f0c86b;
  --line:rgba(255,255,255,.14);
  --max:1180px;
  --header-h:82px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.5;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

img,
video{
  display:block;
  max-width:100%;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin-inline:auto;
}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1000;
  min-height:var(--header-h);
  padding:12px clamp(18px,4vw,44px);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  background:rgba(0,0,0,.76);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.brand img{
  width:74px;
  height:auto;
  flex:0 0 auto;
  filter:drop-shadow(0 0 16px rgba(164,61,255,.78));
}

.brand strong{
  display:block;
  color:var(--purple2);
  font-size:.78rem;
  font-weight:950;
  letter-spacing:.15em;
  text-transform:uppercase;
  white-space:nowrap;
}

.brand span{
  display:block;
  color:var(--gold);
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.20em;
  text-transform:uppercase;
  margin-top:2px;
}

.site-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
}

.site-nav a,
.menu-toggle{
  min-height:42px;
  padding:10px 13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid transparent;
  background:transparent;
  color:rgba(255,255,255,.84);
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
}

.site-nav a:hover,
.menu-toggle:hover{
  color:white;
  border-color:var(--line);
  background:rgba(255,255,255,.07);
}

.menu-toggle{
  display:none;
}

.top-video-world{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  background:#050505;
}

.world-video{
  position:absolute;
  inset:0;
  z-index:-5;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  filter:brightness(.78) contrast(1.08) saturate(1.08);
}

.world-shade{
  position:absolute;
  inset:0;
  z-index:-4;
  pointer-events:none;
  background:
    radial-gradient(circle at 16% 18%, rgba(164,61,255,.22), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(217,50,40,.18), transparent 34%),
    linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.18) 50%, rgba(0,0,0,.48)),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.30) 60%, rgba(0,0,0,.46));
}

.storm{
  position:absolute;
  z-index:-2;
  width:28vw;
  height:160vh;
  top:-12vh;
  opacity:.10;
  transform:rotate(18deg);
  background:linear-gradient(to bottom, transparent, rgba(255,255,255,.72), transparent);
  filter:blur(10px);
  animation:stormFlash 4s infinite;
}

.storm-one{left:18%;}
.storm-two{right:14%;animation-delay:1.5s;}

@keyframes stormFlash{
  0%,100%{opacity:.025;}
  48%{opacity:.025;}
  50%{opacity:.18;}
  52%{opacity:.025;}
}

.hero{
  position:relative;
  min-height:100vh;
  padding-top:var(--header-h);
  display:flex;
  align-items:center;
  overflow:hidden;
}

.desktop-fit-hero{
  height:100vh;
}

.hero-inner{
  display:grid;
  grid-template-columns:minmax(0, 1.03fr) minmax(330px, .97fr);
  gap:32px;
  align-items:center;
  padding-top:34px;
  padding-bottom:58px;
}

.hero-copy{
  min-width:0;
  transform:translateY(10px);
}

.hero-logo{
  width:min(245px, 30vh, 52vw);
  margin:0 0 12px;
  filter:
    drop-shadow(0 0 18px rgba(164,61,255,.95))
    drop-shadow(0 0 64px rgba(164,61,255,.35));
  animation:logoPulse 4s ease-in-out infinite alternate;
}

@keyframes logoPulse{
  from{transform:translateY(0) scale(1);}
  to{transform:translateY(-4px) scale(1.018);}
}

.eyebrow,
.section-title span,
.contact-box span,
.slash-panel span{
  display:block;
  color:var(--gold);
  font-size:.66rem;
  font-weight:950;
  letter-spacing:.20em;
  text-transform:uppercase;
  margin-bottom:8px;
}

h1,
h2,
h3{
  font-family:Impact, "Arial Black", sans-serif;
  text-transform:uppercase;
  line-height:.90;
  letter-spacing:.008em;
}

h1{
  max-width:660px;
  font-size:clamp(2.2rem, 4.35vw, 4.55rem);
}

.hero h2{
  color:var(--gold);
  font-size:clamp(1.8rem, 3.15vw, 3.25rem);
  margin-top:5px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.btn{
  min-height:42px;
  padding:11px 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.22);
  color:white;
  font-size:.66rem;
  font-weight:950;
  letter-spacing:.15em;
  text-transform:uppercase;
  transition:.22s ease;
}

.btn:hover{
  transform:translateY(-3px) scale(1.02);
  background:white;
  color:#050505;
}

.btn-purple{
  background:linear-gradient(135deg, #a43dff, #37004c);
  box-shadow:0 0 26px rgba(164,61,255,.35);
}

.btn-red{
  background:linear-gradient(135deg, #d93228, #460705);
  box-shadow:0 0 26px rgba(217,50,40,.35);
}

.hero-panels{
  display:grid;
  gap:12px;
  transform:skewY(-3deg) translateY(8px);
}

.slash-panel{
  display:block;
  padding:20px 24px;
  min-height:142px;
  background:linear-gradient(145deg, rgba(20,18,22,.48), rgba(10,10,12,.26));
  border-left:5px solid var(--purple);
  clip-path:polygon(0 0, 100% 0, 92% 100%, 0 100%);
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
  transition:.22s ease;
}

.slash-panel:hover{
  transform:translateX(8px);
  filter:brightness(1.08);
}

.red-panel{
  border-left-color:var(--red);
}

.slash-panel h3{
  font-size:1.42rem;
  margin-bottom:7px;
}

.slash-panel p{
  color:var(--muted);
  font-size:.82rem;
  line-height:1.38;
}

.section{
  position:relative;
  padding:64px 0;
  overflow:hidden;
}

.training-section,
.fighter-section{
  min-height:calc(100vh - var(--header-h));
  display:flex;
  align-items:center;
  background:transparent;
}

.training-section::before,
.fighter-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:transparent;
}

.training-section::after,
.fighter-section::after{
  display:none;
}

.training-section > .container,
.fighter-section > .container{
  position:relative;
  z-index:2;
}

.section-title{
  max-width:850px;
  margin-bottom:24px;
}

.section-title.with-mark{
  display:flex;
  align-items:center;
  gap:18px;
  max-width:980px;
  margin-bottom:24px;
}

.section-title.with-mark img{
  flex:0 0 auto;
  width:96px;
  max-height:108px;
  object-fit:contain;
  opacity:.88;
  filter:drop-shadow(0 0 20px rgba(164,61,255,.52));
}

.section-title.with-mark.hyena-title-mark img{
  width:92px;
  max-height:112px;
  filter:
    drop-shadow(0 0 18px rgba(217,50,40,.45))
    drop-shadow(0 0 16px rgba(164,61,255,.30));
}

.section-title h2{
  font-size:clamp(2rem, 3.55vw, 3.55rem);
}

.card-grid{
  display:grid;
  gap:14px;
}

.card-grid.three{
  grid-template-columns:repeat(3, 1fr);
}

.card-grid.four{
  grid-template-columns:repeat(4, 1fr);
}

.card{
  min-height:170px;
  padding:22px;
  position:relative;
  overflow:hidden;
  background:linear-gradient(145deg, rgba(20,18,22,.48), rgba(10,10,12,.26));
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
  clip-path:polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
  transition:.22s ease;
}

.card:hover{
  transform:translateY(-6px);
  background:linear-gradient(145deg, rgba(35,30,42,.58), rgba(10,10,12,.34));
}

.purple-card{
  border-left:5px solid var(--purple);
}

.red-card{
  border-left:5px solid var(--red);
}

.card h3{
  font-size:1.45rem;
  margin-bottom:9px;
}

.card p{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.45;
}

.media-wall{
  background:#08080b;
}

.media-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.media-box{
  min-height:210px;
  padding:22px;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(145deg, rgba(20,18,22,.62), rgba(10,10,12,.38));
  border:1px solid var(--line);
  box-shadow:0 20px 60px rgba(0,0,0,.32);
  clip-path:polygon(0 0, 100% 0, 94% 100%, 0 100%);
}

.media-box span{
  font-family:Impact, "Arial Black", sans-serif;
  text-transform:uppercase;
  font-size:1.45rem;
  line-height:.95;
}

.contact-section{
  background:
    radial-gradient(circle at 20% 22%, rgba(164,61,255,.20), transparent 32%),
    radial-gradient(circle at 82% 24%, rgba(217,50,40,.20), transparent 32%),
    #050505;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.contact-box{
  min-height:250px;
  padding:26px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:linear-gradient(145deg, rgba(20,18,22,.62), rgba(10,10,12,.38));
  box-shadow:0 24px 70px rgba(0,0,0,.42);
  clip-path:polygon(0 0, 100% 7%, 94% 100%, 0 93%);
}

.purple-contact{
  border-left:6px solid var(--purple);
}

.red-contact{
  border-left:6px solid var(--red);
}

.contact-box h2{
  font-size:clamp(2rem, 3.2vw, 3.2rem);
  margin-bottom:18px;
}

.reveal{
  opacity:0;
  transform:translateY(20px);
  transition:.55s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

@media(max-width:1100px){
  .hero-logo{
    width:min(220px, 28vh, 52vw);
  }

  h1{
    font-size:clamp(2.1rem, 4.1vw, 4.2rem);
  }

  .hero h2{
    font-size:clamp(1.7rem, 3vw, 3rem);
  }

  .slash-panel{
    min-height:132px;
    padding:18px 22px;
  }
}

@media(max-width:1000px){
  .desktop-fit-hero{
    height:auto;
    min-height:100vh;
    padding-bottom:24px;
  }

  .hero-inner,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .media-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-panels{
    transform:none;
  }

  .training-section,
  .fighter-section{
    min-height:auto;
  }
}

@media(max-width:700px){
  :root{
    --header-h:74px;
  }

  html,
  body{
    width:100%;
    overflow-x:hidden;
  }

  .container{
    width:min(100% - 24px, var(--max));
  }

  .site-header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    min-height:74px;
    padding:10px 14px;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:10px;
  }

  .brand{
    max-width:calc(100% - 84px);
    min-width:0;
    gap:8px;
  }

  .brand img{
    width:44px;
    max-width:44px;
    flex:0 0 44px;
  }

  .brand strong{
    max-width:145px;
    white-space:normal;
    line-height:1.02;
    font-size:.56rem;
    letter-spacing:.10em;
  }

  .brand span{
    max-width:145px;
    font-size:.50rem;
    letter-spacing:.14em;
  }

  .menu-toggle{
    display:flex;
    position:static;
    min-height:38px;
    padding:8px 10px;
    font-size:.60rem;
    letter-spacing:.105em;
  }

  .site-nav{
    position:absolute;
    top:100%;
    left:14px;
    right:14px;
    width:auto;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:8px;
    background:rgba(0,0,0,.90);
    border:1px solid rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);
  }

  body.menu-open .site-nav{
    display:flex;
  }

  .site-nav a{
    min-height:38px;
    border-color:rgba(255,255,255,.10);
    font-size:.60rem;
  }

  .top-video-world{
    position:relative;
    isolation:isolate;
    overflow:hidden;
    background:#050505;
  }

  .world-video{
    position:absolute;
    inset:0;
    z-index:-5;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    transform:none;
    filter:brightness(.98) contrast(1.02) saturate(1.04);
    background:#050505;
  }

  .world-shade{
    position:absolute;
    inset:0;
    z-index:-4;
    pointer-events:none;
    background:
      radial-gradient(circle at 22% 8%, rgba(164,61,255,.10), transparent 34%),
      radial-gradient(circle at 78% 18%, rgba(217,50,40,.08), transparent 36%),
      linear-gradient(90deg, rgba(0,0,0,.14), rgba(0,0,0,.04), rgba(0,0,0,.14)),
      linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.12));
  }

  .storm{
    display:none;
  }

  .hero,
  .desktop-fit-hero{
    min-height:auto;
    height:auto;
    padding-top:0;
    padding-bottom:22px;
    margin:0;
    display:block;
    overflow:visible;
    background:transparent;
  }

  .hero-inner{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    padding-top:calc(var(--header-h) + 16px);
    padding-bottom:0;
  }

  .hero-copy{
    display:grid;
    grid-template-columns:auto minmax(0,1fr);
    column-gap:10px;
    row-gap:2px;
    align-items:center;
    transform:none;
  }

  .hero-logo{
    grid-column:1;
    grid-row:1 / span 3;
    width:66px;
    max-width:66px;
    margin:0;
  }

  .hero-copy .eyebrow{
    grid-column:2;
    grid-row:1;
    margin:0;
    max-width:210px;
    font-size:.48rem;
    line-height:1.08;
  }

  .hero-copy h1{
    grid-column:2;
    grid-row:2;
    margin:0;
    max-width:220px;
    font-size:clamp(1.65rem,9vw,2.35rem);
    line-height:.84;
  }

  .hero-copy h2{
    grid-column:2;
    grid-row:3;
    margin:0;
    max-width:220px;
    font-size:clamp(1.28rem,6.8vw,1.85rem);
    line-height:.86;
  }

  .hero-actions{
    grid-column:1 / -1;
    margin-top:4px;
    gap:7px;
  }

  .btn{
    min-height:36px;
    padding:8px 12px;
    font-size:.58rem;
  }

  .hero-panels{
    gap:10px;
    transform:none;
  }

  .slash-panel{
    min-height:auto;
    padding:13px 14px;
    clip-path:none;
    background:linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    backdrop-filter:blur(1px);
    -webkit-backdrop-filter:blur(1px);
    border-left:4px solid var(--purple);
    box-shadow:0 4px 12px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.06);
    transition:.22s ease;
  }

  .slash-panel h3{
    font-size:1rem;
    margin-bottom:4px;
    text-shadow:0 2px 8px rgba(0,0,0,.55);
  }

  .slash-panel p{
    font-size:.74rem;
    line-height:1.28;
    color:rgba(245,238,248,.96);
    text-shadow:0 2px 7px rgba(0,0,0,.55);
  }

  .section{
    padding-top:40px;
    padding-bottom:40px;
    background:transparent;
  }

  .training-section,
  .fighter-section{
    min-height:auto;
    margin-bottom:20px;
    padding-top:40px;
    padding-bottom:40px;
    background:transparent;
  }

  .media-wall{
    min-height:auto;
    margin:0;
    padding-top:30px;
    padding-bottom:34px;
    background:#08080b;
  }

  .contact-section{
    min-height:auto;
    margin:0;
    padding-top:40px;
    padding-bottom:40px;
  }

  .section-title,
  .section-title.with-mark{
    margin-bottom:12px;
  }

  .section-title.with-mark{
    display:flex;
    align-items:center;
    gap:8px;
  }

  .section-title.with-mark img{
    width:40px;
    max-height:50px;
  }

  .section-title.with-mark.hyena-title-mark img{
    width:46px;
    max-height:58px;
  }

  .section-title h2{
    font-size:clamp(1.35rem,7.2vw,1.9rem);
    line-height:.88;
    text-shadow:0 3px 12px rgba(0,0,0,.65);
  }

  .card-grid.three,
  .card-grid.four,
  .media-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .card-grid,
  .media-grid{
    gap:10px;
  }

  .card,
  .media-box,
  .contact-box{
    min-height:auto;
    padding:13px 14px;
    clip-path:none;
    background:linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
    backdrop-filter:blur(1px);
    -webkit-backdrop-filter:blur(1px);
    border-color:rgba(255,255,255,.14);
    box-shadow:0 4px 12px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.06);
    transition:.22s ease;
  }

  .card{
    border-left-width:4px;
  }

  .card h3{
    font-size:1rem;
    margin-bottom:4px;
    text-shadow:0 2px 8px rgba(0,0,0,.55);
  }

  .card p,
  .contact-box p{
    font-size:.76rem;
    line-height:1.28;
    color:rgba(245,238,248,.96);
    text-shadow:0 2px 7px rgba(0,0,0,.55);
  }

  .media-box span{
    font-size:.95rem;
    text-shadow:0 2px 8px rgba(0,0,0,.55);
  }
}

@media(max-width:390px){
  .hero-logo{
    width:60px;
    max-width:60px;
  }

  .hero-copy h1{
    font-size:clamp(1.45rem,8vw,2rem);
  }

  .hero-copy h2{
    font-size:clamp(1.18rem,6.5vw,1.65rem);
  }
}