:root {
  --ink: #0c1218;
  --paper: #f6f8fa;
  --white: #ffffff;
  --muted: #5f6f7b;
  --line: #dfe7eb;
  --teal: #17b8c9;
  --teal-dark: #087e8a;
  --soft-teal: #e9f9fb;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(12,18,24,.09);
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% -10%, rgba(23,184,201,.09), transparent 34rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246,248,250,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(223,231,235,.75);
}
.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -.03em;
}
.brand img { width: 37px; height: 37px; object-fit: contain; }
.brand span small {
  display: block;
  margin-top: -5px;
  color: var(--teal-dark);
  font-size: .58rem;
  letter-spacing: .24em;
  font-weight: 800;
}
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .94rem; font-weight: 700; }
.nav-links a { text-decoration: none; color: #34444f; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-cta { border: 1px solid var(--ink); border-radius: 999px; padding: 9px 16px; }

.hero { padding: clamp(72px, 10vw, 132px) 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(44px, 7vw, 84px); align-items: center; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--teal); }
h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: -.045em; }
h1 { max-width: 760px; font-size: clamp(3.25rem, 8vw, 7.2rem); font-weight: 900; }
h2 { font-size: clamp(2.1rem, 5vw, 4rem); font-weight: 880; }
h3 { font-size: 1.35rem; font-weight: 820; }
.accent { color: var(--teal-dark); }
.lede { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.25rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 820;
  border: 1px solid var(--ink);
}
.button:hover { transform: translateY(-1px); }
.button.secondary { background: transparent; color: var(--ink); }

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  padding: 34px;
  border-radius: 34px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.hero-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -130px;
  bottom: -140px;
  border-radius: 50%;
  background: rgba(23,184,201,.16);
}
.hero-card .studio-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  margin: 44px auto 28px;
  filter: brightness(0) invert(1);
  opacity: .98;
}
.hero-card p { position: relative; z-index: 1; max-width: 360px; margin: 0 auto; text-align: center; color: #bfcbd3; }

.section { padding: 82px 0; }
.section.white { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 36px; }
.section-head p { max-width: 520px; margin: 0; color: var(--muted); }

.game-card {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(12,18,24,.045);
}
.game-icon { width: 160px; aspect-ratio: 1; border-radius: 28px; overflow: hidden; background: #0a0d1c; }
.game-card p { margin: 10px 0 0; color: var(--muted); }
.status {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft-teal);
  color: var(--teal-dark);
  font-size: .76rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.arrow-link { color: var(--teal-dark); font-weight: 850; text-decoration: none; white-space: nowrap; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: rgba(255,255,255,.72); }
.value .num {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: .82rem;
  font-weight: 900;
}
.value p { margin: 10px 0 0; color: var(--muted); }

.page-hero { padding: 76px 0 48px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.8rem); }
.page-hero .lede { max-width: 760px; }
.content-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.prose { max-width: 800px; }
.prose h2 { margin-top: 46px; font-size: 1.75rem; letter-spacing: -.03em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 28px; }
.prose p, .prose li { color: #4f606c; }
.prose ul { padding-left: 22px; }
.prose a { color: var(--teal-dark); font-weight: 740; }
.note {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  border-radius: 0 14px 14px 0;
  background: var(--soft-teal);
  color: #31505a;
}
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.support-card { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.support-card p { color: var(--muted); }
.support-card a { color: var(--teal-dark); font-weight: 850; }
.game-detail { display: grid; grid-template-columns: 260px 1fr; gap: 42px; align-items: center; }
.game-detail .game-icon { width: 100%; border-radius: 38px; }
.meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.meta span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f606c;
  background: white;
  font-size: .85rem;
  font-weight: 700;
}
.site-footer { padding: 46px 0; color: #64747f; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
.mobile-toggle { display: none; border: 0; background: transparent; font: inherit; font-weight: 850; }

@media (max-width: 800px) {
  .hero-grid, .game-detail { grid-template-columns: 1fr; }
  .hero-card { min-height: 380px; }
  .game-card { grid-template-columns: 92px 1fr; }
  .game-icon { width: 92px; border-radius: 20px; }
  .game-card .arrow-link { grid-column: 2; }
  .values, .support-grid { grid-template-columns: 1fr; }
  .section-head { align-items: start; flex-direction: column; }
  .mobile-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-cta { text-align: center; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}