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

:root {
  --bg:      #ffffff;
  --bg2:     #f1f5f9;
  --panel:   #ffffff;
  --panel2:  #f8fafc;
  --line:    #e2e8f0;
  --text:    #0f172a;
  --muted:   #64748b;
  --accent:  #0369a1;
  --accent2: #0284c7;
  --sky:     #0ea5e9;
  --sky-lt:  #e0f2fe;
  --navy:    #0f172a;
  --radius:  1rem;
  --notice-h: 2.35rem;
  --nav-h:   72px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }

.site-notice {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.55rem 1.25rem;
  background: linear-gradient(90deg, #0c4a6e, #0369a1);
  color: #e0f2fe;
  font-size: 0.84rem;
  text-align: center;
}

.site-notice a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-notice strong { color: #fff; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Nav ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 2.35rem; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 300ms ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  padding: 0.4rem 0.85rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 150ms, background 150ms;
}

.nav-links a:hover { color: var(--text); background: var(--bg2); }

.nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 150ms;
  flex-shrink: 0;
}

.nav-cta:hover { background: var(--accent2); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(3,105,161,0.3); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 200ms ease;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem 1.5rem;
  background: #fff;
  border-top: 1px solid var(--line);
  gap: 0.25rem;
}

.nav-mobile a {
  padding: 0.65rem 0.5rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--notice-h) + var(--nav-h) + 4rem) 2rem 5rem;
  background: #ffffff;
}

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

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(3,105,161,0.08) 0%, transparent 70%);
  top: -200px; right: -100px;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.07) 0%, transparent 70%);
  bottom: -150px; left: -100px;
}

.hero-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(224,242,254,0.8) 0%, transparent 70%);
  top: 20%; left: 10%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 60% 0%, black 0%, transparent 65%);
}

.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid rgba(3,105,161,0.25);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--sky-lt);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-gradient {
  background: linear-gradient(120deg, var(--accent) 0%, var(--sky) 60%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.6s 0.3s ease both;
}

.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 180ms ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(3,105,161,0.25);
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(3,105,161,0.35); }

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

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

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat span { font-size: 0.75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--line); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  animation: fadeUp 0.6s 0.6s ease both;
}

.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}

/* ── Sections ──────────────────────────────────────────── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ── Catalog Controls ──────────────────────────────────── */
.catalog-controls {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.view-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 150ms ease;
}

.view-btn.active,
.view-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--sky-lt);
}

/* ── Carousel ──────────────────────────────────────────── */
.carousel-wrap {
  position: relative;
  padding: 0 3.5rem;
}

.carousel-track-outer {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.game-card {
  flex-shrink: 0;
  width: calc((100%) / 3 - 0.85rem);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.game-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--card-gradient, linear-gradient(135deg, rgba(14,165,233,0.04), transparent));
  opacity: 0;
  transition: opacity 220ms ease;
  border-radius: var(--radius);
}

.game-card:hover { transform: translateY(-6px); border-color: var(--card-accent, var(--accent)); box-shadow: var(--shadow-lg); }
.game-card:hover::before { opacity: 1; }

.card-emoji {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.card-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.card-category {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--card-accent, var(--accent));
  margin-bottom: 0.75rem;
}

.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.card-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--sky-lt);
  color: var(--accent);
  border: 1px solid rgba(3,105,161,0.15);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 150ms ease;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover { border-color: var(--accent); color: var(--accent); background: var(--sky-lt); box-shadow: var(--shadow-md); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }

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

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 200ms ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}

/* ── List View ─────────────────────────────────────────── */
.list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 0.75rem;
}

.list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 0.75rem;
  transition: all 180ms ease;
  cursor: pointer;
}

.list-item:hover {
  border-color: var(--accent);
  background: var(--sky-lt);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.list-emoji {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.list-info { min-width: 0; }

.list-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.list-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--card-accent, var(--accent));
}

/* ── Games section bg ──────────────────────────────────── */
.games-section {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ── Featured release ──────────────────────────────────── */
.featured-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.featured-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.featured-body {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
  max-width: 34rem;
}

.featured-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.featured-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--text);
  font-weight: 500;
}

.featured-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--sky);
}

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

.featured-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.featured-card-glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(circle, rgba(14,165,233,0.2), transparent 70%);
  filter: blur(24px);
}

.featured-card-inner {
  position: relative;
  width: min(100%, 320px);
  padding: 2.25rem 2rem;
  border-radius: 1.25rem;
  border: 1.5px solid rgba(3,105,161,0.2);
  background: linear-gradient(160deg, #fff 0%, var(--sky-lt) 100%);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.featured-emoji { font-size: 3rem; display: block; margin-bottom: 0.75rem; }
.featured-card-inner h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.35rem;
}
.featured-card-inner p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.25rem; }
.featured-badge {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── Legal pages ───────────────────────────────────────── */
.legal-page {
  padding: calc(var(--nav-h) + 5.5rem) 0 4rem;
}

.legal-updated {
  color: var(--muted);
  margin: -0.5rem 0 2rem;
}

.legal-body {
  max-width: 46rem;
  color: var(--text);
  line-height: 1.75;
}

.legal-lead {
  font-size: 1.05rem;
  color: var(--muted);
  padding: 1.25rem 1.35rem;
  background: var(--sky-lt);
  border: 1px solid rgba(3, 105, 161, 0.18);
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.legal-lead strong { color: var(--accent); }

.legal-toc {
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
}

.legal-toc p {
  margin: 0 0 0.75rem;
  font-weight: 700;
  color: var(--navy);
}

.legal-toc ol {
  margin: 0;
  padding-left: 1.35rem;
  display: grid;
  gap: 0.35rem;
}

.legal-toc a {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.legal-toc a:hover { text-decoration: underline; }

.legal-footer-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-style: italic;
}

.legal-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2rem 0 0.75rem;
}

.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
}

.legal-body ul {
  margin: 0.5rem 0 1rem 1.25rem;
}

.legal-body a { color: var(--accent); font-weight: 600; }
.legal-body a:hover { text-decoration: underline; }

.footer-copy a {
  color: #94a3b8;
  margin-left: 0.35rem;
}

.footer-copy a:hover { color: #fff; }

/* ── About ─────────────────────────────────────────────── */
.about-section {
  background: #fff;
}

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

.about-body {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg2);
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  transition: border-color 150ms, box-shadow 150ms;
}

.pillar:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.pillar-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pillar strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.pillar p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* About card stack */
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card-stack {
  position: relative;
  width: 300px;
  height: 380px;
}

.about-card {
  position: absolute;
  width: 280px;
  height: 360px;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
}

.about-card-back {
  background: var(--bg2);
  transform: rotate(6deg) translate(20px, 12px);
  opacity: 0.5;
}

.about-card-mid {
  background: #e8f4fb;
  transform: rotate(3deg) translate(10px, 6px);
  opacity: 0.75;
}

.about-card-front {
  background: linear-gradient(160deg, #fff 0%, var(--sky-lt) 100%);
  border-color: rgba(3,105,161,0.2);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: rotate(-1deg);
  box-shadow: var(--shadow-lg);
}

.acard-emoji { font-size: 3rem; }
.acard-title { font-family: 'Syne', sans-serif; font-size: 1.3rem; font-weight: 800; color: var(--navy); }
.acard-sub { font-size: 0.82rem; color: var(--muted); }
.acard-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }
.acard-tags span {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--sky-lt);
  color: var(--accent);
  border: 1px solid rgba(3,105,161,0.2);
}
.acard-badge {
  margin-top: auto;
  padding: 0.55rem 0.85rem;
  background: var(--accent);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/* ── Studio ────────────────────────────────────────────── */
.studio-section {
  background: var(--bg2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.studio-steps::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}

.studio-step {
  position: relative;
  padding-top: 3.5rem;
  padding: 3.5rem 1rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
  transition: border-color 180ms, box-shadow 180ms;
}

.studio-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.step-num {
  position: absolute;
  top: -1px;
  left: 1.5rem;
  width: 2.8rem;
  height: 2.8rem;
  background: var(--accent);
  border-radius: 0 0 0.5rem 0.5rem;
  display: grid;
  place-items: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  z-index: 1;
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Contact ───────────────────────────────────────────── */
.contact-section {
  background: #fff;
  border-top: 1px solid var(--line);
}

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

.contact-body {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 1rem 0 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.contact-icon { font-size: 1.2rem; }
.contact-item a { color: var(--accent); font-weight: 600; }
.contact-item a:hover { color: var(--accent2); text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg2);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--line);
}

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

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

.form-group input,
.form-group textarea {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 0.55rem;
  padding: 0.75rem 1rem;
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 150ms, box-shadow 150ms;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(3,105,161,0.1);
}

.form-note {
  font-size: 0.85rem;
  color: #16a34a;
  text-align: center;
  min-height: 1.2em;
  font-weight: 600;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 3.5rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: auto;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-name { font-weight: 800; font-size: 0.95rem; color: #fff; }
.footer-legal { font-size: 0.75rem; color: #64748b; margin-top: 0.1rem; }

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

.footer-links a {
  font-size: 0.88rem;
  color: #94a3b8;
  font-weight: 500;
  transition: color 150ms;
}

.footer-links a:hover { color: #fff; }

.footer-copy {
  width: 100%;
  font-size: 0.78rem;
  color: #475569;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
  line-height: 1.7;
}

/* ── Animations ────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .featured-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .studio-steps { grid-template-columns: 1fr 1fr; }
  .studio-steps::before { display: none; }
  .game-card { width: calc(50% - 0.625rem); }
}

@media (max-width: 600px) {
  .site-notice { font-size: 0.78rem; padding: 0.5rem 0.85rem; }
  .hero { padding-top: calc(var(--notice-h) + var(--nav-h) + 2rem); }
  .hero-stats { gap: 1.5rem; }
  .hero-stat strong { font-size: 1.6rem; }
  .game-card { width: calc(100% - 0); }
  .studio-steps { grid-template-columns: 1fr; }
  .carousel-wrap { padding: 0 2.5rem; }
  .section-inner { padding: 4rem 1.25rem; }
  .list-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}
