:root{
  --purple:#7a46d6;
  --ink:#0b0b0f;
  --muted: rgba(0,0,0,0.72);
  --maxw: 1220px;
  --navH: 86px;
  --radius: 18px;
  --border: rgba(0,0,0,0.12);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  background:#fff;
  color: var(--ink);
  overflow-x:hidden;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Header */
.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--navH);
  z-index: 50;
  display:flex;
  align-items:center;
  padding: 16px 26px;
  pointer-events:none;

  background: transparent;
  backdrop-filter: none;
}

.header > *{ pointer-events:auto; }

.logo{
  width: 70px;
  height: 70px;
  border-radius: 999px;
  overflow:hidden;
  border: none;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.logo img{ width:100%; height:100%; object-fit:cover; display:block; }

.nav{
  margin: 0 auto;
  display:flex;
  gap: 26px;
  align-items:center;
  justify-content:center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.nav a{
  text-decoration:none;
  color: rgba(0,0,0,0.82);
  opacity:0.95;
  position: relative;
  transition: color 200ms ease, opacity 200ms ease;
}

.nav a:hover{
  color:#000000;
  opacity:1;
}

.nav a.pixcon{ color:#111; }
.nav a.blog{ color:#ffb04a; }  

/* Blog post featured image */
.post-featured{
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  max-height: 420px;          /* caps the height */
}

.post-featured img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(0,0,0,0.15);          /* key line */
  display: block;
}


/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  background:#fff;
  overflow:hidden;
  padding-top: var(--navH);
}

.hero-wedge{
  position:absolute;
  left:0;
  right:0;
  top:0;
  height: 190vh;
  background: var(--purple);
  clip-path: polygon(0 52%, 100% 19%, 100% 100%, 0 100%);
  z-index: 1;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-wedge::before{
  content:"";
  position:absolute;
  left:0; right:0; top:0;
  height: 240px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0.85) 30%,
    rgba(255,255,255,0.0) 100%
  );
  pointer-events:none;
}

.hero-inner{
  width: min(var(--maxw), calc(100% - 56px));
  margin: 0 auto;
  min-height: calc(100vh - var(--navH));
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: flex-start;   /* change this */
  padding-top: 100px;        /* add this */
  position: relative;
  z-index: 3;
}


.hero-left{
  max-width: 100%;
}


.kicker{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: 24px;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  background: linear-gradient(90deg,#ffcc66,#ffb04a,#ffcc66);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}


.title{
  font-family: "Press Start 2P", system-ui, sans-serif;
  color: var(--purple);
  margin: 0;
  font-size: clamp(45px, 3.6vw, 58px);
  line-height: 1.15;
  text-transform: uppercase;
}

.title span{
  display:block;
  white-space: nowrap;
}


.sub{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-top: 22px;
  max-width: 560px;
}

.ig{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 2px solid rgba(0,0,0,0.82);
  display: grid;
  place-items: center;
  color: rgba(0,0,0,0.82);
  text-decoration: none;
  cursor: pointer;
  margin-top: 58px;
  user-select:none;
}
.ig:hover{
  background: rgba(122,70,214,0.08);
  border-color: var(--purple);
  color: var(--purple);
}

.hero-right{
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: -160px;
  right: -120px;   /* THIS pushes it outside container */
}

#arcadeCanvas{
  width: 720px;
  height: 820px;
}

#arcadeCanvas:active{ cursor: grabbing; }

section.block{ padding: 110px 26px; }
.container{
  width: min(var(--maxw), calc(100% - 56px));
  margin: 0 auto;
}

.h2{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: 26px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}
.p{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.85;
  margin: 0;
  max-width: 900px;
  opacity: 0.92;
}

/* Purple sections */
.purple{
  background: var(--purple);
  color:#fff;
  position: relative;
  overflow:hidden;
}

.grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card{
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 140px;
}
.card h3{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  font-size: 13px;
}
.card p{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  margin: 0;
  line-height: 1.7;
  font-size: 14px;
  opacity: 0.92;
}

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease, transform 1000ms ease;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1{ transition-delay: 90ms; }
.reveal.delay-2{ transition-delay: 180ms; }
.reveal.delay-3{ transition-delay: 270ms; }

/* ABOUT */
.about-purple{
  background: var(--purple);
  color:#fff;
  position: relative;
}
.about-wrap{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}
.tv-card{
  position: relative;
  padding: 0;
  background: none;
  border: none;
  width: min(640px, 100%);
}
.tv-gif{
  position: relative;
  z-index: 1;
  width: 100%;
  display:block;
  image-rendering: pixelated;
  filter: drop-shadow(0 28px 70px rgba(0,0,0,0.45));
}

.about-bubble{
  position: relative;
  border-radius: 22px;
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.about-title{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.25;
  margin: 0 0 18px 0;
  text-transform: uppercase;
}
.about-lead, .about-body{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.9;
  margin: 0 0 14px 0;
  opacity: 0.95;
  max-width: 760px;
}
.about-body{ opacity: 0.92; }

.about-switch{
  position:absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  display:flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
  pointer-events:auto;
}

.arrow-btn{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(0,0,0,0.12);
  color: rgba(255,255,255,0.95);
  display:grid;
  place-items:center;
  cursor:pointer;
  user-select:none;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}
.arrow-btn:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.55);
}
.arrow-btn:active{ transform: translateY(0); }

.about-panel{ display:none; }
.about-panel.is-active{ display:block; }

/* COINER */
.coiner-wrap{
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 34px;
  align-items: start;
}
.coiner-left{ padding-top: 4px; }
.coiner-brand{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: 34px;
  line-height: 1.1;
  text-transform: lowercase;
  margin: 0 0 18px 0;
}
.step-bubble{
  border-radius: 22px;
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 18px 50px rgba(0,0,0,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 16px;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}
.step-bubble:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.14);
}
.step-bubble.is-active{
  border-color: rgba(255,255,255,0.75);
  background: rgba(0,0,0,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.18);
}
.step-h{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  font-size: 22px;
  margin: 0 0 10px 0;
}
.step-p{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  opacity: 0.95;
}
.step-small{
  margin-top: 10px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  font-size: 12px;
  opacity: 0.95;
  letter-spacing: 0.02em;
}
.coiner-right{ padding-top: 78px; }

.coiner-prompt{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: clamp(18px, 2.4vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px 0;
  color: #ffb04a;
  text-align: center;
  animation: pixBlink 1.05s steps(2, end) infinite;
}
@keyframes pixBlink{
  0%, 48% { opacity: 1; }
  50%, 100% { opacity: 0.35; }
}

.select-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  justify-items: center;
  max-width: 720px;
  margin: 0 auto;
  margin-top: 6px;
}
.select-card{
  width: 100%;
  max-width: 210px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  outline: none;
}
.select-frame{
  width: 100%;
  border: 3px solid rgba(255,255,255,0.85);
  padding: 12px;
  border-radius: 10px;
  background: rgba(0,0,0,0.10);
  transition: transform 140ms ease, filter 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}
.select-frame img{
  width: 100%;
  height: auto;
  display: block;
  image-rendering: pixelated;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.30));
}
.select-label{
  font-family: "Press Start 2P", system-ui, sans-serif;
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.95);
  opacity: 0.95;
}
.select-card:hover .select-frame,
.select-card:focus-visible .select-frame{
  box-shadow: 0 0 0 6px rgba(255,255,255,0.18);
  filter: brightness(1.18);
  transform: translateY(-2px);
}
.select-card.is-selected .select-frame{
  border-color: rgba(255,255,255,1);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.22);
  filter: brightness(1.22);
  transform: translateY(-2px);
}

/* ARCADES - FIXED FULLSCREEN SAFE */
.arcades-top{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}
.tv-card--video{
  width: min(520px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(0,0,0,0.10);
  box-shadow: 0 18px 60px rgba(0,0,0,0.25);
  position: relative;
}
.tv-video{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.arcades-title{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.05;
  margin: 0 0 14px 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.98);
}
.arcades-subtitle{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.2;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb04a;
}
.arcades-p{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.85;
  margin: 0 0 14px 0;
  opacity: 0.94;
  max-width: 720px;
}

/* Partners */
.partners-block{
  margin-top: 28px;
  padding-top: 0;
  border-top: none;
  text-align: center;
}
.partners-head{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px 0;
  opacity: 0.92;
  text-align: center;
}
.partners-strip{
  border-radius: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  position: relative;
}
.partners-strip::before,
.partners-strip::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 90px;
  z-index: 2;
  pointer-events:none;
}
.partners-strip::before{
  left:0;
  background: linear-gradient(to right, rgba(122,70,214,1), rgba(122,70,214,0));
}
.partners-strip::after{
  right:0;
  background: linear-gradient(to left, rgba(122,70,214,1), rgba(122,70,214,0));
}
.partners-marquee{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: partnersScroll 28s linear infinite;
}
.partners-track{
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 14px 18px;
  width: max-content;
  flex: 0 0 auto;
}
.partners-track img{
  height: 34px;
  width: auto;
  opacity: 0.92;
  transition: opacity 140ms ease, transform 140ms ease;
}
.partners-track img:hover{
  opacity: 1;
  transform: translateY(-1px);
}
@keyframes partnersScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* PIXCON (text left + TV gif right, no bubble card) */
.pixcon-top{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}
.pixcon-title{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.05;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  color: rgba(255,255,255,0.98);
}
.pixcon-subtitle{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.2;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffb04a;
}
.pixcon-p{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.85;
  margin: 0 0 14px 0;
  opacity: 0.94;
  max-width: 720px;
}
.pixcon-gif{
  width: min(420px, 92%);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 28px 70px rgba(0,0,0,0.45));
}
/* PIXCON ACTION BUTTONS */
.pixcon-actions{
  display: flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.pixcon-btn{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  user-select: none;
  white-space: nowrap;
}

/* Primary = APK download */
.pixcon-btn.primary{
  background: #ffb04a;
  color: #0b0b0f;
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.pixcon-btn.primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}

/* Secondary = Web app */
.pixcon-btn.secondary{
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}

.pixcon-btn.secondary:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
}


/* Contact + footer */
.dark{ background:#0a0a10; color:#fff; }
.contact-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items:start;
}
.box{
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255,255,255,0.04);
}
.row{
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
}
.row:last-child{ border-bottom:none; }
.box a{ color:#fff; text-decoration:none; font-weight: 900; }
.box a:hover{ text-decoration: underline; }

footer{
  background:#07070c;
  color: rgba(255,255,255,0.72);
  padding: 22px 26px;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 13px;
}
.footer-inner{
  width: min(var(--maxw), calc(100% - 56px));
  margin: 0 auto;
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}

/* Responsive */
@media (max-width: 980px){
	.pixcon-actions{
  justify-content: center;
}
  .hero-inner{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 0 60px;
  }
  .hero-left{
    text-align: center;
    max-width: 100%;
  }
  .kicker{ font-size: 20px; line-height: 1.2; }

.title span{
    white-space: normal;
  }
  
  .sub{
    font-size: 14px;
    line-height: 1.7;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }
  .ig{ margin: 26px auto 0; }
  
  .hero-right{
    align-items: center;
    min-height: 520px;
    padding-top: 10px;
  }
  #arcadeCanvas{ width: 100%; height: 520px; }
  .hero-wedge{ clip-path: polygon(0 72%, 100% 49%, 100% 100%, 0 100%); }

  .about-wrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-switch{
    position: static;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 12px;
  }

  .coiner-wrap{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .coiner-right{
    padding-top: 0;
  }

  .arcades-top{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .tv-card--video{
    width: min(560px, 100%);
    margin: 0 auto;
    aspect-ratio: 16 / 11;
  }

  .pixcon-top{
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Mobile nav */
@media (max-width: 768px){
  .nav a{ display: none; }
  .nav-toggle{ display: flex; }
}

/* APPLY FORM */

.apply-form{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.apply-input{
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 2px solid rgba(0,0,0,0.15);
  background: #f9f9fb;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.apply-input::placeholder{
  color: rgba(0,0,0,0.45);
  font-weight: 600;
}

.apply-input:focus{
  border-color: var(--purple);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(122,70,214,0.15);
}

.apply-input select{
  cursor: pointer;
}

.apply-btn{
  align-self: center;
  margin-top: 10px;
}

/* Partnership Section Only */
.partnership-section .about-wrap {
  align-items: stretch;
}

.partnership-section .about-copy {
  display: flex;
}

.partnership-section .about-bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  padding: 40px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  transition: all 0.3s ease;
}

.partnership-section .about-title {
  color: #f6b04c;
  font-family: 'Press Start 2P', cursive;
  font-size: 18px;
  margin-bottom: 20px;
}

.partnership-section .about-body,
.partnership-section .about-lead {
  color: #f3eaff;
  line-height: 1.7;
}

.partnership-section .about-body strong {
  color: #f6b04c;
}

.partnership-section .about-bubble:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 176, 76, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/*ANIMATE AND STUFF*/


.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms ease, transform 1000ms ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Own One Hero (video background) ===== */

.hero-video{
  position: relative;
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(122, 70, 214, 0.18);
}

.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  filter: blur(6px) brightness(0.45) saturate(1.15) contrast(1.05);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 45%, rgba(122, 70, 214, 0.18), rgba(0,0,0,0) 65%),
    linear-gradient(180deg, rgba(0,0,0,0.72), rgba(0,0,0,0.80));
}

.hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 56px 16px;
}

.hero-content{
  max-width: 920px;
  margin: 0 auto;
}

.hero-eyebrow{
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(230, 220, 255, 0.9);
  margin-bottom: 18px;
  text-shadow: 0 0 14px rgba(122, 70, 214, 0.25);
}

.hero-title{
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 4.2vw, 64px);
  text-transform: uppercase;
  text-shadow:
    0 0 24px rgba(122, 70, 214, 0.35),
    0 0 44px rgba(122, 70, 214, 0.18);
}

.hero-sub{
  margin: 18px auto 0;
  max-width: 760px;
  color: rgba(230, 220, 255, 0.92);
  font-size: 18px;
  line-height: 1.6;
  text-shadow: 0 0 18px rgba(0,0,0,0.6);
}

.hero-actions{
  margin-top: 26px;
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta{
  box-shadow:
    0 0 0 1px rgba(122, 70, 214, 0.22),
    0 10px 30px rgba(122, 70, 214, 0.28);
}

.hero-link{
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  color: rgba(230, 220, 255, 0.92);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(230, 220, 255, 0.22);
  background: rgba(0,0,0,0.16);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.hero-link:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,0.28);
  border-color: rgba(230, 220, 255, 0.36);
}


/* Mobile tuning */
@media (max-width: 520px){
  .hero-video{ min-height: calc(92vh - 120px); }
  .hero-sub{ font-size: 16px; }
  .hero-eyebrow{ font-size: 11px; }
}

/* ===============================
   OWN ONE PAGE OVERRIDES
   =============================== */

body.own-one{
  background: #000;
}

/* Transparent header only on Own One */
body.own-one .header{
  background: transparent !important;
  backdrop-filter: none !important;
}

/* Remove white logo bubble */
body.own-one .logo{
  background: transparent;
  border: none;
  box-shadow: none;
}

/* White nav links on video */
body.own-one .nav a{
  color: rgba(255,255,255,0.9);
}

body.own-one .nav a:hover{
  color: #ffffff;
}

/* Disable old wedge hero only here */
body.own-one .hero-wedge,
body.own-one .hero-wedge::before{
  display: none !important;
}

/* Make video hero true fullscreen */
body.own-one .hero-video{
  height: 100vh;
}

body.own-one .hero-inner{
  padding-top: 0;
}

/* ===============================
   OWN ONE HEADER OVERRIDE ONLY
   =============================== */

body.own-one .header{
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  z-index: 999;
}

/* Remove default hero spacing on Own One */
body.own-one .hero{
  padding-top: 0 !important;
  background: transparent !important;
}

/* Make video truly fullscreen */
body.own-one .hero-video{
  position: relative;
  height: 100vh;
  margin: 0;
}

/* Ensure video sits under header */
body.own-one .hero-media{
  top: 0;
}

/* Force body black behind everything */
body.own-one{
  background: #000 !important;
}
/* Default main spacing for normal pages */
main{
  padding-top: 120px;
}

/* Remove it only for Own One */
body.own-one main{
  padding-top: 0 !important;
}
/* ===============================
   OWN ONE HERO POSITIONING
   =============================== */

body.own-one .hero-video{
  display: flex;
  align-items: center;
  justify-content: center;
}

body.own-one .hero-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 0;
}

body.own-one .hero-content{
  text-align: center;
  transform: translateY(40px); /* pushes it slightly down */
}

/* =====================================================
   OWN ONE – CLEAN VIDEO HERO SYSTEM
   ===================================================== */

body.own-one{
  background: #000;
}

/* Transparent header only on Own One */
body.own-one .header{
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  z-index: 999;
}

body.own-one .logo{
  background: transparent;
  border: none;
  box-shadow: none;
}

body.own-one .nav a{
  color: rgba(255,255,255,0.9);
}

body.own-one .nav a:hover{
  color: #ffffff;
}

/* Disable old wedge hero */
body.own-one .hero-wedge,
body.own-one .hero-wedge::before{
  display: none !important;
}

/* Remove default hero spacing */
body.own-one .hero{
  padding-top: 0 !important;
  background: transparent !important;
}

/* Fullscreen video hero */
body.own-one .hero-video{
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

/* Center hero content */
body.own-one .hero-inner{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

body.own-one .hero-content{
  text-align: center;
  transform: translateY(40px);
  transition: opacity 400ms ease, transform 400ms ease;
}

/* Normal section flow (NO negative margins, NO sticky) */
body.own-one #models{
  position: relative;
  z-index: 2;
}

/* Fade hero text on scroll */
body.own-one.scrolled .hero-content{
  opacity: 0;
  transform: translateY(-40px);
}

/* Remove default main spacing */
body.own-one main{
  padding-top: 0 !important;
}

/* =====================================================
   V11 UPGRADES — scroll progress, nav, mobile, polish
   ===================================================== */

/* === SCROLL PROGRESS BAR === */
.scroll-progress{
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ffb04a, #ffcc66, #ffb04a);
  background-size: 200% 100%;
  z-index: 1001;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  animation: progressShimmer 2.4s linear infinite;
}
@keyframes progressShimmer{
  0%  { background-position: 200% 0; }
  100%{ background-position: -200% 0; }
}

/* === HEADER: smooth transition + scrolled glass === */
.header{
  transition: background 350ms ease, backdrop-filter 350ms ease, box-shadow 350ms ease;
}
.header.scrolled{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07), 0 4px 28px rgba(0,0,0,0.07);
}
/* Own One page keeps transparent header always */
body.own-one .header.scrolled{
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* === STORE NAV LINK (gold, like blog) === */
.nav a.store{ color: #ffb04a; }

/* === NAV LINK HOVER UNDERLINE (expanding from centre) === */
.nav a::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%; right: 50%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  opacity: 0.75;
  transition: left 220ms ease, right 220ms ease;
}
.nav a:hover::after{
  left: 0; right: 0;
}
/* Active section highlight */
.nav a.nav-active::after{
  left: 0; right: 0;
  opacity: 1;
}
.nav a.nav-active{
  opacity: 1;
}

/* === HAMBURGER BUTTON (hidden on desktop) === */
.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid rgba(0,0,0,0.13);
  border-radius: 11px;
  cursor: pointer;
  padding: 9px 10px;
  margin-left: auto;
  transition: background 200ms ease, border-color 200ms ease;
  flex-shrink: 0;
}
.nav-toggle:hover{
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.22);
}
.nav-toggle span{
  display: block;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 290ms cubic-bezier(0.22,1,0.36,1), opacity 200ms ease, width 290ms ease;
}
.nav-toggle span:nth-child(3){ width: 65%; }

/* Hamburger → X */
.nav-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* === MOBILE NAV PANEL === */
.mobile-nav-panel{
  position: fixed;
  top: var(--navH); left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(0,0,0,0.09);
  box-shadow: 0 10px 40px rgba(0,0,0,0.10);
  padding: 6px 28px 26px;
  z-index: 48;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    visibility 0s 300ms,
    opacity 300ms cubic-bezier(0.22,1,0.36,1),
    transform 300ms cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.mobile-nav-panel.is-open{
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}
.mobile-nav-panel a{
  display: flex;
  align-items: center;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(0,0,0,0.78);
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: color 160ms ease, padding-left 180ms ease;
}
.mobile-nav-panel a:last-child{ border-bottom: none; }
.mobile-nav-panel a:hover{ color: var(--purple); padding-left: 6px; }
.mobile-nav-panel a.store,
.mobile-nav-panel a.blog{ color: #ffb04a; }
.mobile-nav-panel a.store:hover,
.mobile-nav-panel a.blog:hover{ color: #e8993a; padding-left: 6px; }

/* === BACK TO TOP BUTTON === */
.back-to-top{
  position: fixed;
  bottom: 30px; right: 26px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--purple);
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(122,70,214,0.38);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 280ms ease, transform 280ms ease, box-shadow 200ms ease;
  pointer-events: none;
}
.back-to-top.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover{
  box-shadow: 0 12px 34px rgba(122,70,214,0.52);
  transform: translateY(-3px);
}
.back-to-top:active{ transform: translateY(0); }

/* === BUTTON POLISH === */
.pixcon-btn{
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease !important;
}
.pixcon-btn:active{
  transform: translateY(0) scale(0.97) !important;
}

/* === REVEAL — upgrade easing + directional variants === */
.reveal{
  transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 1000ms cubic-bezier(0.22,1,0.36,1);
}
.reveal-left{
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 1050ms cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal-right{
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 900ms cubic-bezier(0.22,1,0.36,1), transform 1050ms cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal-left.is-visible,
.reveal-right.is-visible{
  opacity: 1;
  transform: translate(0);
}
.reveal-left.delay-1{ transition-delay: 90ms; }
.reveal-left.delay-2{ transition-delay: 180ms; }
.reveal-right.delay-1{ transition-delay: 90ms; }
.reveal-right.delay-2{ transition-delay: 180ms; }

/* === OWN ONE — keep toggle white on dark bg === */
body.own-one .nav-toggle span{ background: rgba(255,255,255,0.9); }
body.own-one .nav-toggle{ border-color: rgba(255,255,255,0.25); }
body.own-one .nav-toggle:hover{ background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.45); }
