@import "/static/css/variables";

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fn);
  cursor: none;
  overflow-x: hidden;

  &.hov {
    .cur-dot {
      width: 5px;
      height: 5px;
      background: var(--teal);
    }

    .cur-ring {
      width: 52px;
      height: 52px;
      border-color: var(--orange);
    }
  }

  &.clk .cur-dot {
    width: 14px;
    height: 14px;
  }

  &::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: .025;
  }
}

.form-response {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  font-size: .9rem;

  &.success {
    background: rgba(0, 180, 159, 0.15);
    color: var(--teal);
    border: 1px solid var(--teal);
  }

  &.error {
    background: rgba(255, 82, 82, 0.15);
    color: var(--red);
    border: 1px solid var(--red);
  }
}

::selection {
  background: var(--orange);
  color: #fff;
}

#cur {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
}

.cur-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s, background .2s;
}

.cur-ring {
  position: absolute;
  width: 38px;
  height: 38px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .18s cubic-bezier(.25, .46, .45, .94),
    height .18s cubic-bezier(.25, .46, .45, .94),
    border-color .2s;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem 5rem;
  transition: padding .4s, background .4s, box-shadow .4s;

  &.scrolled {
    background: rgba(240, 250, 250, 0.92);
    backdrop-filter: blur(18px);
    padding: 1rem 5rem;
    box-shadow: 0 1px 0 var(--border);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .top {
  font-family: var(--fn);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: .06em;
  color: var(--teal);
}

.logo-text .bot {
  font-family: var(--fn);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-top: .12rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;

  &.nav-links a {
    font-family: var(--fm);
    font-size: .68rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    position: relative;
    transition: color .3s;
  }

  &.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width .3s;
  }

  &.nav-links a:hover {
    color: var(--teal);
  }

  &.nav-links a:hover::after {
    width: 100%;
  }
}

.nav-cta {
  font-family: var(--fm);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: .65rem 1.5rem;
  cursor: none;
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
  transition: background .3s;

  &:hover {
    background: var(--orange-l);
  }
}

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5rem;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: blobFloat ease-in-out infinite;
}

.blob1 {
  width: 600px;
  height: 600px;
  background: rgba(26, 171, 171, .13);
  top: -10%;
  right: -5%;
  animation-duration: 12s;
}

.blob2 {
  width: 400px;
  height: 400px;
  background: rgba(242, 101, 34, .1);
  bottom: 5%;
  left: 10%;
  animation-duration: 9s;
  animation-delay: -3s;
}

.blob3 {
  width: 300px;
  height: 300px;
  background: rgba(26, 171, 171, .08);
  top: 40%;
  left: 40%;
  animation-duration: 15s;
  animation-delay: -7s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(.97);
  }
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(26, 171, 171, .18) 1.5px, transparent 1.5px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-eyebrow {
  font-family: var(--fm);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .8rem;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp .7s .3s forwards;

  &::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
  }
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--fn);
  font-weight: 900;
  font-size: clamp(4.5rem, 13vw, 13rem);
  line-height: .9;
  letter-spacing: -.02em;
  margin-top: 1.2rem;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;

  .line1 {
    color: var(--teal);
    display: block;
  }

  .line2 {
    color: transparent;
    display: block;
    -webkit-text-stroke: 2.5px var(--teal);
  }
}

.glitch {
  position: relative;
  display: inline-block;

  &::before,
  &::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
  }

  &::before {
    color: var(--orange);
    clip-path: polygon(0 0, 100% 0, 100% 38%, 0 38%);
    animation: gTop 4s infinite .8s;
  }

  &::after {
    color: var(--teal-l);
    clip-path: polygon(0 62%, 100% 62%, 100% 100%, 0 100%);
    animation: gBot 4s infinite 1.4s;
  }
}

@keyframes gTop {

  0%,
  86%,
  100% {
    transform: translate(0);
    opacity: 0;
  }

  88% {
    transform: translate(-5px, -2px);
    opacity: .85;
  }

  90% {
    transform: translate(4px, 1px);
    opacity: .85;
  }

  92% {
    transform: translate(0);
    opacity: 0;
  }
}

@keyframes gBot {

  0%,
  82%,
  100% {
    transform: translate(0);
    opacity: 0;
  }

  84% {
    transform: translate(5px, 2px);
    opacity: .85;
  }

  86% {
    transform: translate(-3px, -1px);
    opacity: .85;
  }

  88% {
    transform: translate(0);
    opacity: 0;
  }
}

.hero-sub {
  position: relative;
  z-index: 2;
  font-size: clamp(.95rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-top: 2.8rem;
  opacity: 0;
  animation: fadeUp .8s 1s forwards;
}

.btn-primary {
  font-family: var(--fm);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  padding: 1rem 2.4rem;
  border: none;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  position: relative;
  overflow: hidden;
  transition: background .3s;

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .15);
    transform: translateX(-101%);
    transition: transform .4s ease;
  }

  &:hover {
    background: var(--teal-l);
  }

  &:hover::after {
    transform: translateX(0);
  }
}

.btn-ghost {
  font-family: var(--fm);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  padding: .9rem 2rem;
  cursor: none;
  text-decoration: none;
  display: inline-block;
  transition: background .3s, color .3s;
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);

  &:hover {
    background: var(--orange);
    color: #fff;
  }
}

.hero-controller {
  position: absolute;
  right: 6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  z-index: 2;
  opacity: 0;
  animation: fadeLeft .9s .7s forwards;
}

.ctrl-svg {
  width: 100%;
  height: 100%;
  animation: ctrlFloat 4s ease-in-out infinite;
}

@keyframes ctrlFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-18px) rotate(-4deg);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}

.hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  z-index: 2;
  opacity: 0;
  animation: fadeUp .6s 1.2s forwards;
}

.hstrip-item {
  flex: 1;
  padding: 1.2rem 2rem;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;

  &:last-child {
    border-right: none;
  }
}

.hstrip-num {
  font-family: var(--fn);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--teal);
  line-height: 1;
}

.hstrip-label {
  font-family: var(--fm);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--teal);
  padding: .9rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 20s linear infinite;

  span {
    font-family: var(--fn);
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .85);
    padding: 0 2.5rem;
    white-space: nowrap;
  }

  .dot {
    color: var(--orange-l);
    padding: 0 .3rem;
  }
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.sec-label {
  font-family: var(--fm);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .8rem;

  &::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
  }
}

.sec-title {
  font-family: var(--fn);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: .95;
  color: var(--dark);
}

#about {
  padding: 9rem 5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--orange), var(--teal));
  }
}

.about-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin-top: 1.8rem;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.8rem;
}

.tag {
  font-family: var(--fm);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(26, 171, 171, .1);
  color: var(--teal);
  border: 1px solid rgba(26, 171, 171, .25);
  padding: .35rem .9rem;
  border-radius: 2px;
  transition: background .3s, color .3s;

  &:hover {
    background: var(--teal);
    color: #fff;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3rem;
  background: var(--border);
  border: 1px solid var(--border);
}

.stat-cell {
  background: var(--surface);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  transition: background .3s;

  &:hover {
    background: rgba(26, 171, 171, .06);
  }
}

.stat-n {
  font-family: var(--fn);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--teal);
  line-height: 1;

  span {
    font-size: 1.6rem;
    color: var(--orange);
  }
}

.stat-l {
  font-family: var(--fm);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-visual {
  position: relative;
}

.av-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(26, 171, 171, .08);
}

.av-card-title {
  font-family: var(--fm);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.4rem;
}

.platform-row {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.plat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plat-name {
  font-family: var(--fm);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--dark);
  min-width: 80px;
}

.plat-bar-wrap {
  flex: 1;
  height: 6px;
  background: var(--bg2);
  border-radius: 3px;
  overflow: hidden;
}

.plat-bar {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-l));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.25, .46, .45, .94);

  &.orange {
    background: linear-gradient(90deg, var(--orange), var(--orange-l));
  }
}

.plat-pct {
  font-family: var(--fm);
  font-size: .62rem;
  color: var(--muted);
  min-width: 32px;
  text-align: right;
}

.av-float {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  background: var(--orange);
  color: #fff;
  padding: 1.2rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(242, 101, 34, .3);
}

.av-float-num {
  font-family: var(--fn);
  font-weight: 900;
  font-size: 2rem;
  line-height: 1;
}

.av-float-label {
  font-family: var(--fm);
  font-size: .58rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .85;
}

#showcase {
  padding: 8rem 5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--orange));
  }
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;

  .sec-label {
    color: var(--orange-l);

    &::before {
      background: var(--orange-l);
    }
  }

  .sec-title {
    color: #fff;
  }
}

.showcase-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .45);
  max-width: 320px;
  line-height: 1.7;
  align-self: flex-end;
}

.games-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 3px;
}

.game-bg {
  position: absolute;
  inset: 0;
  transition: transform .7s cubic-bezier(.25, .46, .45, .94);
  opacity: .5;
}

.game-card {
  position: relative;
  overflow: hidden;
  cursor: none;
  background: var(--dark2);
  background-size: cover;
  background-position: center;

  &:first-child {
    grid-row: span 2;
  }

  &:hover .game-bg {
    transform: scale(1.06);
  }
}

.gb1 {
  background: radial-gradient(ellipse at 40% 40%, rgba(26, 171, 171, .35) 0%, transparent 70%), var(--dark2);
}

.gb2 {
  background: radial-gradient(ellipse at 60% 40%, rgba(242, 101, 34, .3) 0%, transparent 70%), var(--dark2);
}

.gb3 {
  background: radial-gradient(ellipse at 30% 60%, rgba(26, 171, 171, .2) 0%, transparent 70%), var(--dark2);
}

.gb4 {
  background: radial-gradient(ellipse at 70% 50%, rgba(255, 200, 0, .2) 0%, transparent 70%), var(--dark2);
}

.gb5 {
  background: radial-gradient(ellipse at 50% 40%, rgba(200, 50, 200, .2) 0%, transparent 70%), var(--dark2);
}

.gs {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
}

.gs1 {
  width: 70%;
  height: 70%;
  background: rgba(26, 171, 171, .2);
  top: 5%;
  left: 15%;
}

.gs2 {
  width: 60%;
  height: 60%;
  background: rgba(242, 101, 34, .18);
  bottom: 5%;
  right: 5%;
}

.gs3 {
  width: 60%;
  height: 60%;
  background: rgba(26, 171, 171, .15);
  top: 20%;
  right: 10%;
}

.gs4 {
  width: 55%;
  height: 55%;
  background: rgba(255, 200, 50, .15);
  bottom: 10%;
  left: 5%;
}

.gs5 {
  width: 55%;
  height: 55%;
  background: rgba(200, 80, 255, .15);
  top: 10%;
  left: 20%;
}

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .1) 60%, transparent 100%);
}

.game-border {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  transition: border-color .3s;
  pointer-events: none;
  z-index: 5;
}

.game-card {
  &:hover {
    .game-border {
      border-color: var(--teal);
    }
  }

  &.-single {
    &:hover {
      .game-border {
        border-color: transparent;
      }
    }
  }
}

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.8rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform .4s;
}

.game-card:hover .game-info {
  transform: translateY(0);
}

.game-genre {
  font-family: var(--fm);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange-l);
  margin-bottom: .4rem;
}

.game-title {
  font-family: var(--fn);
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: .95;
  color: #fff;
}

.game-meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: .6rem;
  font-family: var(--fm);
  font-size: .58rem;
  color: rgba(255, 255, 255, .45);
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s;
}

.game-card:hover .game-meta {
  max-height: 30px;
}

.badge {
  background: rgba(26, 171, 171, .25);
  color: var(--teal-l);
  border: 1px solid rgba(26, 171, 171, .3);
  padding: .1rem .5rem;
  font-size: .58rem;
  letter-spacing: .1em;
}

.game-num {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--fn);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  z-index: 1;
  transition: color .3s;
}

.game-card:hover .game-num {
  color: rgba(255, 255, 255, .12);
}

.see-all {
  display: flex;
  align-items: center;
  gap: .8rem;
  font-family: var(--fm);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-l);
  text-decoration: none;
  margin-top: 2rem;
  transition: gap .3s, color .3s;
  cursor: none;
}

.see-all:hover {
  gap: 1.4rem;
  color: var(--orange-l);
}

#process {
  padding: 8rem 5rem;
  background: var(--surface);
  position: relative;
}

#process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5rem;
  right: 5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}

.pstep {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
  opacity: .4;
  transition: opacity .4s;
  cursor: none;
}

.pstep:hover {
  opacity: 1;
}

.pstep-num {
  font-family: var(--fn);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--teal);
  min-width: 2.2rem;
  line-height: 1;
  transition: color .3s;
}

.pstep:hover .pstep-num {
  color: var(--orange);
}

.pstep-title {
  font-family: var(--fn);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .4rem;
}

.pstep-desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

.process-visual {
  position: sticky;
  top: 9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-ring-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.pv-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  animation: pSpin 20s linear infinite;
}

.pv-mid {
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  border: 2px solid rgba(26, 171, 171, .2);
  animation: pSpin 14s linear infinite reverse;
}

.pv-inner {
  position: absolute;
  inset: 28%;
  border-radius: 50%;
  border: 2px dashed rgba(242, 101, 34, .2);
  animation: pSpin 10s linear infinite;
}

@keyframes pSpin {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

.ring-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.pv-outer .ring-dot {
  background: var(--teal);
  box-shadow: 0 0 14px var(--teal);
}

.pv-mid .ring-dot {
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
}

.pv-inner .ring-dot {
  background: var(--muted);
}

.pv-center {
  position: absolute;
  inset: 38%;
  background: linear-gradient(135deg, var(--teal), var(--teal-d));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(26, 171, 171, .3);
  animation: pvPulse 2.5s ease-in-out infinite;
}

@keyframes pvPulse {

  0%,
  100% {
    box-shadow: 0 0 30px rgba(26, 171, 171, .25);
  }

  50% {
    box-shadow: 0 0 55px rgba(26, 171, 171, .45);
  }
}

.pv-center svg {
  width: 36px;
  height: 36px;
}

#contact {
  padding: 8rem 5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: start;
  background: var(--bg2);
}

.contact-title {
  font-family: var(--fn);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: .9;
  margin: 1.2rem 0 1.5rem;
}

.contact-title .line-outline {
  color: transparent;
  -webkit-text-stroke: 2.5px var(--teal);
}

.contact-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 400px;
}

.clinks {
  display: flex;
  flex-direction: column;
}

.clink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  text-decoration: none;
  transition: padding-left .3s, color .3s;
  cursor: none;
}

.clink:hover {
  padding-left: .8rem;
  color: var(--teal);
}

.clink-lbl {
  font-family: var(--fm);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.clink-val {
  font-size: .9rem;
  font-weight: 600;
}

.clink:hover .clink-lbl {
  color: var(--orange);
}

.form-card {
  background: var(--surface);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 50px rgba(26, 171, 171, .07);
}

.form-card-title {
  font-family: var(--fn);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.8rem;
  color: var(--dark);
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.3rem;
}

.fg label {
  font-family: var(--fm);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.fg input,
.fg textarea,
.fg select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--dark);
  font-family: var(--fn);
  font-size: .95rem;
  padding: .85rem 1rem;
  outline: none;
  width: 100%;
  cursor: none;
  border-radius: 2px;
  transition: border-color .3s, background .3s;
  appearance: none;
  -webkit-appearance: none;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus {
  border-color: var(--teal);
  background: #fff;
}

.fg textarea {
  height: 130px;
  resize: none;
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-send {
  font-family: var(--fm);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 1.1rem;
  width: 100%;
  cursor: none;
  margin-top: .3rem;
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.btn-send::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  transform: translateX(-101%);
  transition: transform .4s;
}

.btn-send:hover {
  background: var(--teal-l);
}

.btn-send:hover::after {
  transform: translateX(0);
}

footer {
  background: var(--dark);
  padding: 3rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 3px solid var(--teal);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.footer-logo .top {
  font-family: var(--fn);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: .06em;
  color: var(--teal);
}

.footer-logo .bot {
  font-family: var(--fn);
  font-weight: 600;
  font-size: .55rem;
  letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
}

.footer-copy {
  font-family: var(--fm);
  font-size: .6rem;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .3);
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
}

.footer-socials a {
  font-family: var(--fm);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  text-decoration: none;
  transition: color .3s;
}

.footer-socials a:hover {
  color: var(--orange-l);
}

section {
  &.game-header {
    height: 75vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column-reverse;

    .game-title {
      margin-left: auto;
      margin-right: auto;
      max-width: 80vw;
      width: 80vw;
      text-align: left;
      text-transform: uppercase;
      font-size: 5em;
      z-index: 110;
      margin-bottom: 1em;

      span {
        max-width: 40%;
      }
    }

    &::after {
      content: '';
      display: block;
      background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.8));
      position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      z-index: 100;
    }
  }

  &.game-description {
    margin-top: 3em;
    margin-bottom: 3em;
    margin-left: auto;
    margin-right: auto;
    max-width: 80vw;
    text-justify: distribute;
    font-size: 1.1em;
    line-height: 1.5;
    color: rgba(255,255,255,.85);

    .body {
      margin-bottom: 1em;
    }

    .single-game-genre {
      text-transform: uppercase;
      font-family: var(--fm);
      color: var(--orange);
    }

    .single-game-meta {
      text-transform: uppercase;
      font-family: var(--fm);
      color: rgba(255,255,255,.45);
    }
  }

  &.game-media {
    display: grid;
    margin-left: auto;
    margin-right: auto;
    max-width: 80vw;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    margin-bottom: 3em;

    img {
      object-fit: contain;
      width: 100%;
    }
  }

  &.game-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 80vw;
    position: relative;
    margin-bottom: 3em;

    img {
      height: 50px;
      width: auto;
    }

    a,
    a:visited,
    a:active,
    a:hover {
      color: var(--bg);
      text-decoration: underline;
    }
  }

  &.all-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    margin-top: 100px;
    background: var(--dark);

    .-single {
      &:first-child {
        grid-row: unset;
      }
    }
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(44px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.vis,
.reveal-left.vis,
.reveal-right.vis {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: .12s;
}

.delay-2 {
  transition-delay: .24s;
}

.delay-3 {
  transition-delay: .36s;
}

.delay-4 {
  transition-delay: .48s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:900px) {
  nav {
    padding: 1.2rem 1.5rem;
  }

  nav.scrolled {
    padding: .8rem 1.5rem;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  #hero {
    padding: 0 1.5rem;
  }

  .hero-controller {
    display: none;
  }

  .hero-strip {
    position: relative;
  }

  .hstrip-item {
    padding: 1rem 1.2rem;
  }

  #about,
  #contact {
    grid-template-columns: 1fr;
    padding: 5rem 1.5rem;
    gap: 3rem;
  }

  #showcase,
  #process {
    padding: 5rem 1.5rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .game-card:first-child {
    grid-row: auto;
  }

  .game-card {
    aspect-ratio: 16/9;
  }

  .showcase-header {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .process-inner {
    display: block;
  }

  .process-visual {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem 1.5rem;
  }

  .fg-row {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}