:root {
  --ink: #171717;
  --ink-soft: #242323;
  --red: #ef3b3b;
  --red-dark: #b92329;
  --paper: #eeeae2;
  --muted: #a6a19a;
  --line: rgba(23, 23, 23, 0.18);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  width: min(100%, var(--max));
  height: 100px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
}

.wordmark {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: var(--red);
}
.wordmark span { color: var(--paper); font-weight: 400; }
.site-header .wordmark { font-weight: 400; }

.site-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; }
.site-nav > a { position: relative; }
.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 220ms ease;
}
.site-nav > a:hover::after { right: 0; }
.menu-button { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  height: 100vh;
  max-height: 1050px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 150px max(4vw, calc((100vw - var(--max)) / 2 + 4vw)) 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(370px, .85fr);
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 99px 4vw auto;
  height: 1px;
  background: rgba(255,255,255,.14);
}

.hero-copy { position: relative; z-index: 2; }
.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 40px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 10px;
  font-weight: 700;
}
.eyebrow span { width: 32px; height: 2px; background: var(--red); }
.hero h1 {
  margin: 0;
  font-size: clamp(68px, 8.5vw, 142px);
  line-height: .82;
  letter-spacing: clamp(-7px, -.055em, -3px);
  font-weight: 800;
}
.hero h1 em { color: var(--red); font-style: normal; }
.hero-lower {
  margin-top: 65px;
  display: flex;
  align-items: center;
  gap: clamp(45px, 8vw, 130px);
}
.hero-lower > p { max-width: 400px; margin: 0; color: #bbb6ae; font-size: 15px; line-height: 1.7; }
.round-link {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background 220ms, color 220ms, transform 220ms;
}
.round-link b { font-size: 16px; }
.round-link:hover { background: var(--paper); color: var(--ink); transform: translateY(4px); }

.hero-mark {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(34vw, 470px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.nova-core {
  width: 47%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  display: grid;
  place-items: center;
  box-shadow: 0 0 70px rgba(239,59,59,.18);
}
.nova-core span { font-size: clamp(80px, 10vw, 150px); font-weight: 900; letter-spacing: -12px; transform: translateX(-5px); }
.orbit { position: absolute; inset: 5%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.orbit-one::before, .orbit-two::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--paper);
}
.orbit-one { animation: spin 18s linear infinite; }
.orbit-one::before { top: 11%; left: 19%; }
.orbit-two { inset: 16%; border-style: dashed; animation: spin 14s linear infinite reverse; }
.orbit-two::before { bottom: 4%; right: 28%; background: var(--red); }
.hero-mark > p {
  position: absolute;
  bottom: 0;
  margin: 0;
  font-size: 9px;
  letter-spacing: 2.5px;
  color: #88847f;
}
.hero-index { position: absolute; right: 4vw; bottom: 42px; color: #6a6762; font-size: 11px; }
@keyframes spin { to { transform: rotate(360deg); } }

.section-pad { padding: 120px max(5vw, calc((100vw - var(--max)) / 2 + 5vw)); }
.section-label { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.section-label span { color: var(--red); }
.section-label p { margin: 0; }
.section-label.light { border-color: rgba(255,255,255,.2); }

.studio-content {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 9vw;
  padding: 65px 0 110px;
  align-items: end;
}
.studio h2, .contact h2 {
  margin: 0;
  font-size: clamp(58px, 7.5vw, 112px);
  line-height: .88;
  letter-spacing: -.065em;
}
.studio h2 { font-size: clamp(48px, 5.6vw, 82px); line-height: .94; }
.studio h2 span, .contact h2 span { color: var(--red); }
.studio-copy { max-width: 510px; }
.studio-copy p { color: #55514c; font-size: 15px; line-height: 1.8; }
.studio-copy .lead { color: var(--ink); font-size: clamp(21px, 2vw, 28px); line-height: 1.35; letter-spacing: -.025em; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.values-grid article { padding: 32px 34px 12px 0; }
.values-grid article + article { border-left: 1px solid var(--line); padding-left: 34px; }
.values-grid article > span { font-size: 10px; color: var(--red); font-weight: 700; letter-spacing: 1px; }
.values-grid h3 { margin: 48px 0 14px; font-size: 23px; letter-spacing: -.04em; }
.values-grid p { margin: 0; max-width: 330px; color: #66615b; font-size: 13px; line-height: 1.7; }

.game { background: var(--red); color: var(--paper); overflow: hidden; }
.game-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 8vw; align-items: center; padding-top: 40px; }
.game-visual {
  min-height: 640px;
  position: relative;
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.game-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 420px;
  height: 420px;
  border: 80px solid var(--red-dark);
  border-radius: 50%;
  left: -220px;
  top: -230px;
  opacity: .75;
}
.game-visual > p {
  position: absolute;
  left: 42px;
  bottom: 35px;
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 2px;
  color: var(--muted);
}
.cat {
  position: absolute;
  width: 220px;
  height: 190px;
  border-radius: 48% 48% 44% 44%;
  background: var(--paper);
  color: var(--ink);
}
.cat-one { top: 18%; left: 14%; transform: rotate(-8deg); }
.cat-two { width: 175px; height: 152px; top: 38%; right: 8%; transform: rotate(9deg); background: var(--red); }
.cat-three { width: 140px; height: 122px; top: 5%; right: 12%; transform: rotate(14deg); background: #827c74; }
.cat .ear { position: absolute; top: -31%; width: 48%; height: 58%; background: inherit; clip-path: polygon(50% 0, 100% 100%, 0 83%); }
.cat .ear.left { left: 0; transform: rotate(-12deg); }
.cat .ear.right { right: 0; transform: rotate(12deg) scaleX(-1); }
.cat .eye { position: absolute; top: 43%; width: 11%; height: 15%; border-radius: 50%; background: var(--ink); }
.cat .eye.left { left: 27%; }
.cat .eye.right { right: 27%; }
.cat .nose { position: absolute; left: 47%; top: 62%; width: 7%; height: 7%; background: var(--red-dark); transform: rotate(45deg); border-radius: 40% 40% 60% 40%; }
.cat-two .nose { background: var(--paper); }

.game-copy .kicker { margin: 0 0 32px; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
.game-copy h2 { margin: 0; font-size: clamp(78px, 10vw, 150px); line-height: .73; letter-spacing: -.075em; }
.game-copy h2 em { color: var(--ink); font-style: normal; }
.game-description { max-width: 460px; margin: 58px 0 38px; font-size: 18px; line-height: 1.6; }
.platforms { display: flex; flex-wrap: wrap; gap: 8px; }
.platforms span { padding: 11px 15px; border: 1px solid rgba(255,255,255,.4); border-radius: 100px; font-size: 10px; text-transform: uppercase; letter-spacing: 1.2px; }
.platforms span:last-child { background: var(--ink); border-color: var(--ink); }
.wishlist-button {
  margin-top: 18px;
  width: min(100%, 280px);
  padding: 18px 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.wishlist-button span { font-size: 16px; }

.contact { min-height: 710px; display: flex; flex-direction: column; }
.contact-content { margin: auto 0 10px; }
.contact-content > p { margin: 55px 0 32px; color: #625d57; font-size: 15px; }
.contact h2 { font-size: clamp(66px, 9vw, 138px); }
.contact-content > a {
  margin-top: 70px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  font-size: clamp(18px, 2.2vw, 30px);
  letter-spacing: -.03em;
  transition: color 180ms, padding 180ms;
}
.contact-content > a:hover { color: var(--red); padding-left: 12px; padding-right: 12px; }

footer {
  background: var(--ink);
  color: var(--paper);
  padding: 38px max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
  gap: 20px;
}
footer p { margin: 0; color: #8c8882; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
footer p:last-child { text-align: right; }

/* Blog */
.blog-page .site-header {
  position: relative;
  left: auto;
  transform: none;
  width: 100%;
  max-width: none;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  background: var(--ink);
}

.blog-listing { min-height: 560px; padding-top: 70px; }
.posts-grid { padding-top: 0; }
.posts-status { color: #6e6962; font-size: 13px; }
.post-card { border-bottom: 1px solid var(--line); }
.post-card > a {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) 1.35fr;
  gap: clamp(35px, 6vw, 90px);
  padding: 38px 0;
  align-items: stretch;
}
.post-visual {
  min-height: 290px;
  padding: 28px;
  background: var(--red);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}
.post-visual > span {
  position: relative;
  z-index: 2;
  font-size: clamp(38px, 5vw, 74px);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.07em;
}
.post-visual i {
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 220px;
  height: 220px;
  border: 55px solid var(--ink);
  border-radius: 50%;
  transition: transform 400ms ease;
}
.post-card > a:hover .post-visual i { transform: scale(1.12) rotate(12deg); }
.post-card-content { padding: 14px 0 8px; display: flex; flex-direction: column; align-items: flex-start; }
.post-meta {
  margin: 0 0 34px;
  color: var(--red-dark);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}
.post-card h2 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.055em;
}
.post-excerpt {
  max-width: 620px;
  margin: 28px 0 38px;
  color: #625d57;
  font-size: 14px;
  line-height: 1.7;
}
.read-more {
  margin-top: auto;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}
.posts-error { padding: 65px 0; }
.posts-error h2 { margin: 0 0 12px; font-size: clamp(28px, 4vw, 48px); letter-spacing: -.04em; }
.posts-error p { color: #6e6962; }

.article-view { background: var(--paper); }
.article-header {
  padding: 45px max(8vw, calc((100vw - 1180px) / 2)) 70px;
  background: var(--ink);
  color: var(--paper);
}
.article-back {
  display: inline-block;
  margin-bottom: 38px;
  color: #aaa59e;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.article-back:hover { color: var(--red); }
.article-header .post-meta { color: var(--red); margin-bottom: 22px; }
.article-header h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(54px, 8vw, 116px);
  line-height: .9;
  letter-spacing: -.065em;
}
.article-lead {
  max-width: 720px;
  margin: 50px 0 0 auto;
  color: #bbb5ae;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.55;
}
.article-body { max-width: 760px; margin: 0 auto; padding: 85px 25px 55px; }
.article-body p { margin: 0 0 28px; color: #4e4a45; font-size: 17px; line-height: 1.9; }
.article-body h2 { margin: 38px 0 24px; font-size: clamp(34px, 5vw, 54px); line-height: 1; letter-spacing: -.05em; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 750ms ease, transform 750ms cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .site-header { height: 78px; }
  .hero::after { top: 77px; }
  .menu-button { display: flex; flex-direction: column; gap: 6px; background: none; border: 0; color: inherit; padding: 12px 0 12px 12px; z-index: 2; }
  .menu-button span:not(.sr-only) { width: 25px; height: 1px; background: currentColor; transition: transform 180ms; }
  .menu-button.open span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    padding: 30px 4vw;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,.14);
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }
  .site-nav.open { display: flex; }
  .hero { height: auto; min-height: 850px; grid-template-columns: 1fr; padding-top: 135px; }
  .hero-mark { position: absolute; width: 340px; right: -85px; bottom: -20px; opacity: .55; }
  .hero-copy { align-self: start; }
  .hero h1 { font-size: clamp(65px, 15vw, 118px); }
  .hero-lower { gap: 30px; }
  .hero-lower > p { max-width: 330px; }
  .hero-index { display: none; }
  .section-pad { padding-top: 85px; padding-bottom: 85px; }
  .studio-content, .game-layout { grid-template-columns: 1fr; gap: 65px; }
  .studio-content { padding-bottom: 75px; }
  .studio-copy { margin-left: 15vw; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { padding: 30px 0; }
  .values-grid article + article { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; }
  .values-grid h3 { margin-top: 26px; }
  .game-visual { min-height: 530px; }
  .game-copy { padding-bottom: 25px; }
  .post-card > a { grid-template-columns: 1fr; gap: 28px; }
  .post-card-content { min-height: 340px; }
  .article-header { padding-left: 5vw; padding-right: 5vw; }
}

@media (max-width: 560px) {
  .hero { min-height: 760px; padding-left: 22px; padding-right: 22px; }
  .hero h1 { font-size: 61px; line-height: .88; letter-spacing: -4px; }
  .eyebrow { line-height: 1.5; margin-bottom: 32px; }
  .hero-lower { margin-top: 50px; align-items: flex-end; }
  .hero-lower > p { font-size: 13px; }
  .round-link { width: 76px; height: 76px; flex-basis: 76px; }
  .hero-mark { width: 280px; right: -110px; bottom: 5px; }
  .section-pad { padding-left: 22px; padding-right: 22px; }
  .studio h2, .contact h2 { font-size: 54px; }
  .studio-copy { margin-left: 0; }
  .studio-copy .lead { font-size: 21px; }
  .game-layout { gap: 45px; }
  .game-visual { min-height: 420px; }
  .cat-one { width: 160px; height: 140px; left: 8%; }
  .cat-two { width: 130px; height: 113px; }
  .cat-three { width: 100px; height: 87px; }
  .game-copy h2 { font-size: 84px; }
  .game-description { margin-top: 45px; font-size: 16px; }
  .contact { min-height: 620px; }
  .contact-content > a { font-size: 16px; }
  .blog-listing { padding-top: 45px; }
  .post-card > a { padding: 28px 0 40px; }
  .post-visual { min-height: 230px; }
  .post-card-content { min-height: 300px; }
  .article-header { padding: 38px 22px 55px; }
  .article-back { margin-bottom: 32px; }
  .article-header h1 { font-size: 51px; }
  .article-lead { margin-top: 35px; font-size: 17px; }
  .article-body { padding-top: 60px; padding-bottom: 40px; }
  .article-body p { font-size: 16px; }
  footer { grid-template-columns: 1fr; gap: 18px; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
