/* ============================================
   MOEZURU STUDIOS — STYLESHEET
   Dark Cyberpunk / AAA Game Publisher
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg: #040609;
  --bg-light: #0a0e14;
  --cyan: #00f2fe;
  --cyan-dim: #0082a6;
  --cyan-glow: rgba(0, 242, 254, 0.3);
  --cyan-glow-strong: rgba(0, 242, 254, 0.5);
  --white: #ffffff;
  --white-dim: rgba(255, 255, 255, 0.6);
  --white-muted: rgba(255, 255, 255, 0.4);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(0, 242, 254, 0.15);
  --border-dim: rgba(255, 255, 255, 0.08);

  --font-primary: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font-family: var(--font-primary);
}

::selection {
  background: var(--cyan);
  color: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: loaderFadeIn 0.8s ease forwards 0.2s;
}

.loader__text {
  color: var(--white);
}

.loader__text--accent {
  color: var(--cyan);
}

.loader__bar {
  width: 200px;
  height: 2px;
  background: var(--border-dim);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease forwards 0.5s;
}

.loader__progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dim));
  border-radius: 2px;
  transition: width 0.3s ease;
}

.loader__tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--white-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: loaderFadeIn 0.8s ease forwards 0.7s;
}

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

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

.cursor__ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(0, 242, 254, 0.6);
  border-radius: 50%;
  position: absolute;
  top: -20px;
  left: -20px;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cursor__dot {
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  box-shadow: 0 0 10px var(--cyan-glow);
}

.cursor--hover .cursor__ring {
  width: 60px;
  height: 60px;
  top: -30px;
  left: -30px;
  border-color: rgba(0, 242, 254, 0.3);
  background: rgba(0, 242, 254, 0.05);
}

/* ---------- Particle Canvas ---------- */
.particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Grid Background ---------- */
.grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 242, 254, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 1;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
  background: transparent;
}

.nav--scrolled {
  background: rgba(4, 6, 9, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-dim);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.nav__logo {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__logo-accent {
  color: var(--cyan);
}

.nav__dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  margin-left: 6px;
  box-shadow: 0 0 12px var(--cyan-glow-strong);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 8px var(--cyan-glow); }
  50% { box-shadow: 0 0 20px var(--cyan-glow-strong); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white-dim);
  transition: color var(--transition);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--cyan);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cyan);
  transition: all var(--transition);
  background: transparent;
  display: inline-block;
}

.nav__cta:hover {
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 20px var(--cyan-glow);
  border-color: var(--cyan);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  cursor: pointer;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.nav__hamburger--active .nav__hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.nav__hamburger--active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger--active .nav__hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ---------- Mobile Drawer ---------- */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  pointer-events: none;
  visibility: hidden;
}

.drawer--open {
  pointer-events: auto;
  visibility: visible;
}

.drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.drawer--open .drawer__overlay {
  opacity: 1;
}

.drawer__content {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: rgba(4, 6, 9, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid var(--border-dim);
  padding: 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
}

.drawer--open .drawer__content {
  transform: translateX(0);
}

.drawer__header {
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-dim);
}

.drawer__brand {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
}

.drawer__brand-accent {
  color: var(--cyan);
}

.drawer__links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.drawer__link {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white-dim);
  transition: all var(--transition);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.drawer__link:hover {
  color: var(--cyan);
  padding-left: 12px;
  border-bottom-color: var(--border);
}

.drawer__cta {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--cyan);
  text-align: center;
  transition: all var(--transition);
  margin-top: 2rem;
}

.drawer__cta:hover {
  background: rgba(0, 242, 254, 0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 140px 24px 100px;
}

.hero__container {
  max-width: var(--max-width);
  width: 100%;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cyan);
  padding: 8px 22px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  margin-bottom: 2.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--cyan-glow);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--white-dim);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero__btn {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 10px;
  transition: all var(--transition);
  display: inline-block;
}

.hero__btn--primary {
  background: var(--cyan);
  color: var(--bg);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.hero__btn--primary:hover {
  box-shadow: 0 0 50px var(--cyan-glow-strong);
  filter: brightness(1.1);
}

.hero__btn--secondary {
  border: 1px solid var(--border);
  color: var(--white);
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.hero__btn--secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header__label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--glass);
}

.section-header__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-header__desc {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Glass Card ---------- */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  transition: all var(--transition);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: var(--border);
}

/* ---------- Games Section ---------- */
.games {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
}

.games__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.games__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.game-card {
  position: relative;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-dim);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
  transform-style: preserve-3d;
}

.game-card__glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 242, 254, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.game-card__number {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 242, 254, 0.06);
  line-height: 1;
  pointer-events: none;
}

.game-card:hover {
  border-color: var(--border);
  box-shadow: 0 0 40px var(--cyan-glow), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.game-card:hover .game-card__glow {
  opacity: 1;
}

.game-card:hover .game-card__number {
  color: rgba(0, 242, 254, 0.12);
}

.game-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.game-card__badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--cyan);
  border: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-card__badge--hot {
  background: rgba(255, 100, 50, 0.12);
  color: #ff8c42;
  border-color: rgba(255, 140, 66, 0.25);
}

.game-card__badge--sim {
  background: rgba(100, 200, 100, 0.1);
  color: #7ddf64;
  border-color: rgba(125, 223, 100, 0.2);
}

.game-card__status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--cyan-dim);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-card__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

.game-card__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.game-card__desc {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.game-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.game-card__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-dim);
  color: var(--white-muted);
}

.game-card__link {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--cyan);
  text-align: center;
  transition: all var(--transition);
  display: block;
  position: relative;
  z-index: 1;
}

.game-card__link:hover {
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 20px var(--cyan-glow);
  border-color: var(--cyan);
}

.games__footer {
  text-align: center;
  padding-top: 1rem;
}

.games__all-link {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 14px 32px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--cyan);
  display: inline-block;
  transition: all var(--transition);
  background: var(--glass);
}

.games__all-link:hover {
  background: rgba(0, 242, 254, 0.1);
  box-shadow: 0 0 30px var(--cyan-glow);
  border-color: var(--cyan);
}

/* ---------- About Section ---------- */
.about {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
}

.about__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* Vision Column */
.about__vision {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about__vision-card {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about__vision-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyan), var(--cyan-dim), transparent);
  border-radius: 3px;
}

.about__vision-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--cyan);
}

.about__vision-text {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__vision-text:last-child {
  margin-bottom: 0;
}

/* Philosophy */
.about__philosophy {
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about__philosophy-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--cyan-dim), transparent);
  border-radius: 3px;
}

.about__philosophy-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--cyan);
}

.about__philosophy-text {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__pillar {
  padding: 1.25rem;
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition);
}

.about__pillar:hover {
  border-color: var(--border);
  background: var(--glass);
}

.about__pillar-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan-dim);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.5rem;
}

.about__pillar-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.about__pillar-text {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* Right Column */
.about__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Capabilities Grid */
.about__capabilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about__cap {
  padding: 1.5rem;
  text-align: center;
  cursor: default;
}

.about__cap:hover {
  box-shadow: 0 0 25px var(--cyan-glow);
  border-color: var(--border);
}

.about__cap-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.about__cap-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.about__cap-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan-dim);
}

/* Process Timeline */
.about__process {
  padding: 2rem;
}

.about__process-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--cyan);
}

.about__process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.about__step:last-child {
  padding-bottom: 0;
}

.about__step:last-child .about__step-line {
  display: none;
}

.about__step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--cyan);
  background: var(--bg);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.about__step-line {
  position: absolute;
  left: 5px;
  top: 16px;
  width: 2px;
  height: calc(100% - 4px);
  background: linear-gradient(to bottom, var(--cyan-dim), transparent);
}

.about__step-content {
  flex: 1;
}

.about__step-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.about__step-text {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.55;
}

/* Tech Stack */
.about__stack {
  padding: 2rem;
}

.about__stack-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--cyan);
}

.about__stack-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about__stack-item {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  color: var(--white-dim);
  background: rgba(255, 255, 255, 0.02);
  transition: all var(--transition);
}

.about__stack-item:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0, 242, 254, 0.05);
  box-shadow: 0 0 12px var(--cyan-glow);
}

/* ---------- Connect Section ---------- */
.connect {
  position: relative;
  z-index: 1;
  padding: 120px 24px;
}

.connect__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.connect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.connect__form {
  padding: 2.5rem;
}

.connect__field {
  margin-bottom: 1.5rem;
}

.connect__label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white-dim);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.connect__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  color: var(--white);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.connect__input::placeholder {
  color: var(--white-muted);
}

.connect__input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 20px var(--cyan-glow);
  background: rgba(0, 242, 254, 0.03);
}

.connect__textarea {
  min-height: 140px;
}

.connect__submit {
  width: 100%;
  padding: 16px;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 30px var(--cyan-glow);
}

.connect__submit:hover {
  box-shadow: 0 0 50px var(--cyan-glow-strong);
  filter: brightness(1.1);
}

/* Connect Info */
.connect__info-card {
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.connect__info-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--cyan), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.connect__info-text {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.connect__info-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.connect__info-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  transition: all var(--transition);
  background: rgba(255, 255, 255, 0.02);
}

.connect__info-link:hover {
  border-color: var(--border);
  background: var(--glass);
  box-shadow: 0 0 15px var(--cyan-glow);
}

.connect__info-link-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.connect__info-link-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.connect__info-link-url {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--cyan-dim);
  margin-top: 2px;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 1;
  padding: 80px 24px 40px;
  border-top: 1px solid var(--border-dim);
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer__logo {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  display: block;
}

.footer__logo-accent {
  color: var(--cyan);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--white-muted);
  margin-top: 0.5rem;
}

.footer__nav {
  display: flex;
  gap: 4rem;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__nav-title {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.footer__nav-link {
  font-size: 0.88rem;
  color: var(--white-muted);
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--cyan);
}

.footer__divider {
  height: 1px;
  background: var(--border-dim);
  margin-bottom: 2rem;
}

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

.footer__copy {
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer__built {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .games__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about__capabilities {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .footer__nav {
    gap: 3rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .cursor {
    display: none !important;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero {
    padding: 110px 24px 60px;
    min-height: 100svh;
  }

  .hero__title {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__stats {
    gap: 1.5rem;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__scroll {
    display: none;
  }

  .games {
    padding: 80px 24px;
  }

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

  .about {
    padding: 80px 24px;
  }

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

  .connect {
    padding: 80px 24px;
  }

  .connect__form {
    padding: 1.5rem;
  }

  .connect__info-card {
    padding: 1.5rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .footer {
    padding: 60px 24px 30px;
  }

  .footer__top {
    flex-direction: column;
  }

  .footer__nav {
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__btn {
    width: 100%;
    text-align: center;
  }

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

  .about__vision-card,
  .about__philosophy {
    padding: 1.5rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: 1rem;
  }

  .hero__badge {
    font-size: 0.68rem;
    padding: 6px 14px;
  }
}

/* ---------- Print ---------- */
@media print {
  .particle-canvas,
  .grid-bg,
  .cursor,
  .loader,
  .hero__scroll {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .nav {
    position: static;
    background: white;
  }

  .game-card,
  .glass-card {
    backdrop-filter: none;
    border: 1px solid #ccc;
  }

  .text-gradient,
  .hero__title-line--gradient {
    -webkit-text-fill-color: black;
    color: black;
  }
}

/* ---------- No-JS / GSAP Fallback ---------- */
/* If GSAP sets inline opacity:0 but never animates,
   this ensures content is still visible after 4 seconds */
@keyframes forceVisible {
  to {
    opacity: 1 !important;
    transform: none !important;
  }
}

.game-card,
.section-header > *,
.about__vision-card,
.about__philosophy,
.about__pillar,
.about__cap,
.about__step,
.about__stack-item,
.connect__form,
.connect__info-card,
.connect__info-link,
.games__footer,
.footer__top {
  animation: forceVisible 0s 5s forwards;
}
