/* ===========================
   RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080b12;
  --bg2: #0d1120;
  --bg3: #111827;
  --accent: #6ee7b7;
  --accent2: #818cf8;
  --accent3: #f472b6;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(255,255,255,0.07);
  --radius: 16px;
  --font: 'Inter', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

::selection { background: var(--accent); color: #000; }

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

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

/* ===========================
   NAV
   =========================== */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  overflow: visible;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 160px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #000;
}
.btn-primary:hover {
  background: #a7f3d0;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(110, 231, 183, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===========================
   SECTION LABEL
   =========================== */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.label-line {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}

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

/* ===========================
   HERO
   =========================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110,231,183,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110,231,183,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6ee7b7 0%, transparent 70%);
  top: -200px; right: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #818cf8 0%, transparent 70%);
  bottom: -100px; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #f472b6 0%, transparent 70%);
  top: 30%; left: 60%;
  animation: float 12s ease-in-out infinite;
  opacity: 0.2;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding-top: 80px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s forwards;
}
.hero-title .line:nth-child(1) { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) { animation-delay: 0.45s; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===========================
   GAMES SECTION
   =========================== */
#games {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

/* Block canvas visual */
.game-feature-visual {
  position: relative;
}

.game-canvas {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 4px;
  padding: 20px;
  opacity: 0.6;
}

.block-cell {
  border-radius: 6px;
  transition: background 0.4s, transform 0.3s;
}

.game-overlay-text {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  text-align: center;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 0 60px rgba(110, 231, 183, 0.5);
}

.game-badge {
  position: relative;
  background: var(--accent);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 100px;
  display: inline-block;
  z-index: 3;
}

.game-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent2);
  margin-bottom: 0.75rem;
}

.game-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.game-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.game-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.game-highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
}

.hi-icon { font-size: 1rem; }

.game-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Games grid */
.games-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
}
.carousel-btn:hover {
  background: rgba(110, 231, 183, 0.1);
  border-color: var(--accent);
}
.carousel-prev { left: -60px; }
.carousel-next { right: -60px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

.game-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: transform 0.3s, border-color 0.3s;
  cursor: pointer;
}
.game-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 231, 183, 0.2);
}

.game-card-art {
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}

.tbd-1 {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e3a5f 100%);
}
.tbd-1::after {
  content: '?';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  font-family: var(--font-display);
}

.tbd-2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
}
.tbd-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(129, 140, 248, 0.05) 20px,
    rgba(129, 140, 248, 0.05) 21px
  );
}
.tbd-2::after {
  content: '◈';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(129, 140, 248, 0.3);
}

.tbd-3 {
  background: linear-gradient(135deg, #1c1917 0%, #292524 50%, #44403c 100%);
}
.tbd-3::after {
  content: '···';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.1);
  font-family: var(--font-display);
}

.game-card-info { padding: 1.25rem; }

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent3);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.game-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.game-card-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===========================
   GAME VISUAL SHOWCASE
   =========================== */

/* Header row: badge only */
.visual-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}

/* Large icon — left-aligned above characters */
.app-icon-large-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--bg2);
  box-shadow:
    0 0 0 4px rgba(110,231,183,0.08),
    0 20px 50px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.app-icon-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}

.app-icon-fallback-large {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  background: linear-gradient(135deg, #0d1120, #111827);
}

.app-icon-large-wrap:not(.icon-missing) .app-icon-fallback-large { display: none; }
.app-icon-large-wrap.icon-missing .app-icon-large { display: none; }

/* Visual showcase: left col + right col */
.visual-showcase {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
}

/* LEFT COLUMN: icon + two characters */
.visual-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.characters-row {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

/* Character slots */
.character-slot {
  width: 120px;
  height: 380px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  flex-shrink: 0;
}

.character-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.character-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
}

/* Silhouette shape */
.char-silhouette {
  width: 68px;
  height: 240px;
  background: linear-gradient(180deg,
    rgba(110,231,183,0.07) 0%,
    rgba(110,231,183,0.03) 60%,
    rgba(110,231,183,0.01) 100%
  );
  border: 1.5px dashed rgba(110,231,183,0.18);
  border-radius: 44px 44px 20px 20px;
  position: relative;
  overflow: hidden;
}
.char-silhouette::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px dashed rgba(110,231,183,0.22);
}
.char-silhouette::after {
  content: '?';
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.75rem;
  font-weight: 700;
  color: rgba(110,231,183,0.12);
  font-family: var(--font-display);
}

.char-label {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(110,231,183,0.3);
  text-align: center;
  line-height: 1.4;
}

/* RIGHT COLUMN: iPhone pushed to right edge */
.visual-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 1rem;
}

/* Phone screen container */
.iphone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.iphone-mockup {
  width: 240px;
  background: #1c1c1e;
  border-radius: 46px;
  border: 2.5px solid #3a3a3c;
  padding: 10px;
  position: relative;
  box-shadow:
    0 0 0 1px #2c2c2e,
    0 40px 90px rgba(0,0,0,0.75),
    0 0 80px rgba(110,231,183,0.05),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.iphone-island {
  display: block;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

.iphone-screen-area {
  width: 100%;
  aspect-ratio: 1242 / 2688;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.screen-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screen-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder screen background */
.screen-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(160deg, #0d1120 0%, #111827 50%, #0d1a30 100%);
}

.screen-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(110,231,183,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
}

.screen-placeholder-label {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(110,231,183,0.2);
}

/* Each slide gets a subtle tinted bg */
.screen-slide:nth-child(1) .screen-placeholder { background: linear-gradient(160deg, #0d1120, #111827); }
.screen-slide:nth-child(2) .screen-placeholder { background: linear-gradient(160deg, #0f0d20, #1a1131); }
.screen-slide:nth-child(3) .screen-placeholder { background: linear-gradient(160deg, #0d1a10, #111f14); }
.screen-slide:nth-child(4) .screen-placeholder { background: linear-gradient(160deg, #1a0d10, #1f1114); }
.screen-slide:nth-child(5) .screen-placeholder { background: linear-gradient(160deg, #0d1420, #11192f); }
.screen-slide:nth-child(6) .screen-placeholder { background: linear-gradient(160deg, #1a1a0d, #1f1f11); }

/* Screen dots */
.screen-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.screen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.screen-dot.active {
  background: var(--accent);
  transform: scale(1.5);
}

/* App Store badge button */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  background: #000;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  line-height: 1;
}
.btn-appstore:hover {
  background: #111;
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.appstore-apple {
  flex-shrink: 0;
  opacity: 0.9;
}
.appstore-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.appstore-text small {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  opacity: 0.8;
  line-height: 1;
}
.appstore-text {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.2;
}

/* ===========================
   ABOUT
   =========================== */
#about {
  padding: 8rem 2rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.about-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.3s;
}
.stat:hover { border-color: rgba(110, 231, 183, 0.3); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===========================
   STUDIO VALUES
   =========================== */
#studio {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(110, 231, 183, 0.2);
}

.value-icon {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   CONTACT
   =========================== */
#contact {
  padding: 8rem 2rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-email {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 2rem;
  position: relative;
}
.contact-email::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}
.contact-email:hover::after { width: 100%; }

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.2s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(110, 231, 183, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #4b5563; }
.form-group select option { background: var(--bg3); }

.form-success {
  display: none;
  background: rgba(110, 231, 183, 0.1);
  border: 1px solid rgba(110, 231, 183, 0.3);
  border-radius: 10px;
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--accent);
  text-align: center;
}
.form-success.show { display: block; }

/* ===========================
   FOOTER
   =========================== */
footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer-logo-img {
  height: 160px;
  width: auto;
  display: block;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

.footer-copy {
  font-size: 0.8rem;
  color: #4b5563;
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .game-feature { grid-template-columns: 1fr; gap: 3rem; }
  .character-slot { width: 90px; height: 320px; }
  .char-silhouette { width: 58px; height: 200px; }
  .iphone-mockup { width: 200px; border-radius: 40px; }
  .iphone-screen-area { border-radius: 17px; }
  .app-icon-large-wrap { width: 110px; height: 110px; border-radius: 26px; }
  .iphone-island { display: none; }
}

@media (max-width: 600px) {
  .visual-showcase { gap: 0.5rem; }
  .character-slot { width: 72px; height: 240px; }
  .char-silhouette { width: 48px; height: 155px; }
  .iphone-mockup { width: 155px; border-radius: 32px; }
  .iphone-screen-area { border-radius: 13px; }
  .app-icon-large-wrap { width: 88px; height: 88px; border-radius: 20px; }
  .iphone-island { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,11,18,0.97);
    backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--text); }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .games-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .game-highlights { grid-template-columns: 1fr; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
}
