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

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{
  scroll-padding-top: calc(var(--navH) + 40px);
}
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: var(--headerTop);
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--maxw), calc(100% - 32px));
  min-height: var(--navH);
  z-index: 50;
  display:flex;
  align-items:center;
  gap: 16px;
  padding: 12px 18px;
  pointer-events:auto;
}

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

.logo{
  width: 58px;
  height: 58px;
  border-radius: 0;
  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{
  flex: 1 1 auto;
  display:flex;
  gap: 8px;
  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{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration:none;
  color: rgba(255,255,255,0.84);
  opacity:0.95;
  position: relative;
  transition: color 200ms ease, opacity 200ms ease, background 200ms ease;
}

.nav a:hover{
  color:#ffffff;
  background: rgba(255,255,255,0.08);
  opacity:1;
}

.nav a.store,
.nav a.blog{ color:#ffd27a; }

/* 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;
  display: flex;
  align-items: center;
  background: #08080f;
  overflow:hidden;
  padding-top: 0;
}

.landing-hero{
  position: sticky;
  top: 0;
  z-index: 0;
}

.landing-hero ~ *{
  position: relative;
  z-index: 3;
}

.landing-hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  will-change: opacity, transform;
  background:
    radial-gradient(circle at 18% 18%, rgba(124, 58, 237, 0.22), transparent 38%),
    radial-gradient(circle at 82% 14%, rgba(245, 158, 11, 0.14), transparent 32%),
    #08080f;
}

.landing-hero-poster,
.landing-hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: blur(4px) brightness(0.42) saturate(1.18);
}

.landing-hero-poster{
  opacity: 1;
}

.landing-hero-video{
  opacity: 0;
  transition: opacity 700ms ease;
  will-change: opacity;
}

.landing-hero-media.is-ready .landing-hero-video{
  opacity: 1;
}

html.hero-poster-mode .landing-hero-video{
  display: none;
}

.landing-hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 50% 45%, rgba(122, 70, 214, 0.12), rgba(0,0,0,0) 65%),
    linear-gradient(
      to bottom,
      rgba(8, 8, 15, 0.5) 0%,
      rgba(8, 8, 15, 0.28) 40%,
      rgba(8, 8, 15, 0.72) 100%
    );
  z-index: 1;
}

.landing-hero-shell{
  width: min(var(--maxw), calc(100% - 56px));
  margin: 0 auto;
  min-height: calc(100vh - var(--navH));
  display: flex;
  align-items: center;
  position: relative;
  z-index: 3;
  padding: calc(var(--navH) + 70px) 0 88px;
}

.landing-hero-copy{
  max-width: 760px;
  will-change: opacity, transform;
  animation: landingHeroFadeUp 800ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.landing-hero-title{
  margin: 0 0 26px;
  font-family: "Press Start 2P", system-ui, sans-serif;
  font-size: clamp(26px, 4.8vw, 58px);
  line-height: 1.22;
  text-transform: uppercase;
}

.landing-hero-line{
  display: block;
  color: #ffffff;
}

.landing-hero-line--accent{
  background: linear-gradient(135deg, #a78bfa 0%, #ffd27a 72%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 36px rgba(167, 139, 250, 0.35));
}

.landing-hero-sub{
  margin: 0 0 40px;
  max-width: 600px;
  color: rgba(255,255,255,0.82);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.75;
}

.landing-hero-actions{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-hero-actions .pixcon-btn{
  min-width: 220px;
}

@keyframes landingHeroFadeUp{
  from{
    opacity: 0;
    transform: translateY(28px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce){
  .landing-hero-video{
    display: none;
  }
}

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;
}

#arcades{
  margin-top: 0;
  padding-top: 134px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 20px 48px rgba(0,0,0,0.18);
}

#arcades::before{
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 136px;
  pointer-events: none;
  background:
    radial-gradient(120% 90px at 50% 0%, rgba(255,255,255,0.2), rgba(255,255,255,0) 58%),
    linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0) 72%);
  opacity: 0.55;
}

.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;
}
  .header{
    top: 16px;
    width: calc(100% - 20px);
    min-height: 74px;
    padding: 10px 12px;
  }
  .logo{
    width: 50px;
    height: 50px;
    border-radius: 0;
  }
  .landing-hero-shell{
    padding: calc(var(--navH) + 52px) 0 72px;
  }
  .landing-hero-copy{
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
  }
  .landing-hero-title{
    font-size: clamp(26px, 8vw, 42px);
  }
  .landing-hero-sub{
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .landing-hero-actions{
    justify-content: center;
  }
  .landing-hero-actions .pixcon-btn{
    width: min(320px, 100%);
    min-width: 0;
  }
  #arcades{
    margin-top: 0;
    padding-top: 118px;
    border-radius: 28px 28px 0 0;
  }

  .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;
  }
}

/* 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: 0;
}

/* 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 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}
.home-page .header,
.home-page .header.scrolled,
body.own-one .header,
body.own-one .header.scrolled{
  background: linear-gradient(180deg, rgba(10,10,16,0.78), rgba(10,10,16,0.56)) !important;
  backdrop-filter: blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 26px;
  box-shadow: 0 18px 52px rgba(0,0,0,0.28) !important;
}

.home-page .logo,
body.own-one .logo{
  background: transparent;
  border: none;
}

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

.nav a::after{
  display: none;
}

.nav a.nav-active{
  opacity: 1;
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* === HAMBURGER BUTTON (hidden on desktop) === */
.nav-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 118px;
  height: 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  cursor: pointer;
  padding: 0 14px 0 16px;
  margin-left: auto;
  transition: background 200ms ease, border-color 200ms ease;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover{
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}
.nav-toggle-label{
  color: rgba(255,255,255,0.92);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-toggle-icon{
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 16px;
  flex-shrink: 0;
}
.nav-toggle-icon span{
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.92);
  border-radius: 2px;
  transition: transform 290ms cubic-bezier(0.22,1,0.36,1), opacity 200ms ease, width 290ms ease;
}
.nav-toggle-icon span:nth-child(2){ width: 72%; align-self: flex-end; }
.nav-toggle-icon span:nth-child(3){ width: 88%; align-self: flex-end; }

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

/* === MOBILE NAV PANEL === */
.mobile-nav-panel{
  position: fixed;
  top: calc(var(--headerTop) + var(--navH) + 10px);
  left: 50%;
  right: auto;
  width: min(calc(100% - 32px), 680px);
  background: rgba(10,10,16,0.94);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  box-shadow: 0 20px 54px rgba(0,0,0,0.28);
  padding: 10px 22px 18px;
  z-index: 48;
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, -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: translate(-50%, 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(255,255,255,0.84);
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  transition: color 160ms ease, padding-left 180ms ease, background 180ms ease, transform 180ms ease;
}
.mobile-nav-panel a + a{ margin-top: 8px; }
.mobile-nav-panel a:last-child{ border-bottom: none; }
.mobile-nav-panel a:hover{
  color: #ffffff;
  padding-left: 20px;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.mobile-nav-panel a.store,
.mobile-nav-panel a.blog{ color: #ffd27a; }
.mobile-nav-panel a.store:hover,
.mobile-nav-panel a.blog:hover{ color: #ffe3a3; padding-left: 20px; }
.mobile-nav-panel a.nav-active{
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

/* === 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-icon 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); }

@media (max-width: 1100px){
  .header{
    justify-content: space-between;
    gap: 12px;
  }

  .nav{
    display: none;
  }

  .nav-toggle{
    display: inline-flex;
  }

  .mobile-nav-panel{
    top: calc(var(--headerTop) + var(--navH) + 8px);
    left: auto;
    right: 10px;
    width: min(420px, calc(100vw - 20px));
    padding: 14px;
    border-radius: 28px;
    max-height: min(72vh, 560px);
    overflow-y: auto;
    transform: translateY(-10px) scale(0.96);
    transform-origin: top right;
  }

  .mobile-nav-panel.is-open{
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 640px){
  :root{
    --headerTop: 10px;
    --navH: 66px;
  }

  html{
    scroll-padding-top: calc(var(--navH) + 28px);
  }

  .header{
    top: var(--headerTop);
    width: calc(100% - 16px);
    min-height: var(--navH);
    padding: 8px 10px;
    border-radius: 22px;
  }

  .logo{
    width: 44px;
    height: 44px;
  }

  .nav-toggle{
    width: 52px;
    min-width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
    border-radius: 16px;
  }

  .nav-toggle-label{
    display: none;
  }

  .nav-toggle-icon{
    width: 18px;
    gap: 4px;
  }

  .mobile-nav-panel{
    top: calc(var(--headerTop) + var(--navH) + 8px);
    right: 8px;
    width: calc(100vw - 16px);
    padding: 12px;
    border-radius: 24px;
  }

  .mobile-nav-panel a{
    min-height: 52px;
    font-size: 13px;
    padding: 14px 16px;
  }
}
