@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./fonts/geist.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('./fonts/geist-mono.woff2') format('woff2');
}
:root {
  --font-geist-sans: 'Geist';
  --font-geist-mono: 'Geist Mono';
}
@layer base {
  /*
  1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
  2. Remove default margins and padding
  3. Reset all borders.
*/
  *,
::after,
::before,
::backdrop,
::file-selector-button {
    box-sizing: border-box;
    /* 1 */
    margin: 0;
    /* 2 */
    padding: 0;
    /* 2 */
    border: 0 solid;
    /* 3 */
  }
  /*
  1. Use a consistent sensible line-height in all browsers.
  2. Prevent adjustments of font size after orientation changes in iOS.
  3. Use a more readable tab size.
  4. Use the user's configured `sans` font-family by default.
  5. Use the user's configured `sans` font-feature-settings by default.
  6. Use the user's configured `sans` font-variation-settings by default.
  7. Disable tap highlights on iOS.
*/
  html,
:host {
    line-height: 1.5;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    tab-size: 4;
    /* 3 */
    font-family: --theme(
    --default-font-family,
    ui-sans-serif,
    system-ui,
    sans-serif,
    'Apple Color Emoji',
    'Segoe UI Emoji',
    'Segoe UI Symbol',
    'Noto Color Emoji'
  );
    /* 4 */
    font-feature-settings: --theme(--default-font-feature-settings, normal);
    /* 5 */
    font-variation-settings: --theme(--default-font-variation-settings, normal);
    /* 6 */
    -webkit-tap-highlight-color: transparent;
    /* 7 */
  }
  /*
  1. Add the correct height in Firefox.
  2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
  3. Reset the default border style to a 1px solid border.
*/
  hr {
    height: 0;
    /* 1 */
    color: inherit;
    /* 2 */
    border-top-width: 1px;
    /* 3 */
  }
  /*
  Add the correct text decoration in Chrome, Edge, and Safari.
*/
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  /*
  Remove the default font size and weight for headings.
*/
  h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  /*
  Reset links to optimize for opt-in styling instead of opt-out.
*/
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  /*
  Add the correct font weight in Edge and Safari.
*/
  b,
strong {
    font-weight: bolder;
  }
  /*
  1. Use the user's configured `mono` font-family by default.
  2. Use the user's configured `mono` font-feature-settings by default.
  3. Use the user's configured `mono` font-variation-settings by default.
  4. Correct the odd `em` font sizing in all browsers.
*/
  code,
kbd,
samp,
pre {
    font-family: --theme(
    --default-mono-font-family,
    ui-monospace,
    SFMono-Regular,
    Menlo,
    Monaco,
    Consolas,
    'Liberation Mono',
    'Courier New',
    monospace
  );
    /* 1 */
    font-feature-settings: --theme(--default-mono-font-feature-settings, normal);
    /* 2 */
    font-variation-settings: --theme(--default-mono-font-variation-settings, normal);
    /* 3 */
    font-size: 1em;
    /* 4 */
  }
  /*
  Add the correct font size in all browsers.
*/
  small {
    font-size: 80%;
  }
  /*
  Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
  sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  /*
  1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
  2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
  3. Remove gaps between table borders by default.
*/
  table {
    text-indent: 0;
    /* 1 */
    border-color: inherit;
    /* 2 */
    border-collapse: collapse;
    /* 3 */
  }
  /*
  Use the modern Firefox focus style for all focusable elements.
*/
  :-moz-focusring {
    outline: auto;
  }
  /*
  Add the correct vertical alignment in Chrome and Firefox.
*/
  progress {
    vertical-align: baseline;
  }
  /*
  Add the correct display in Chrome and Safari.
*/
  summary {
    display: list-item;
  }
  /*
  Make lists unstyled by default.
*/
  ol,
ul,
menu {
    list-style: none;
  }
  /*
  1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
  2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
      This can trigger a poorly considered lint error in some tools but is included by design.
*/
  img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
    display: block;
    /* 1 */
    vertical-align: middle;
    /* 2 */
  }
  /*
  Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
  img,
video {
    max-width: 100%;
    height: auto;
  }
  /*
  1. Inherit font styles in all browsers.
  2. Remove border radius in all browsers.
  3. Remove background color in all browsers.
  4. Ensure consistent opacity for disabled states in all browsers.
*/
  button,
input,
select,
optgroup,
textarea,
::file-selector-button {
    font: inherit;
    /* 1 */
    font-feature-settings: inherit;
    /* 1 */
    font-variation-settings: inherit;
    /* 1 */
    letter-spacing: inherit;
    /* 1 */
    color: inherit;
    /* 1 */
    border-radius: 0;
    /* 2 */
    background-color: transparent;
    /* 3 */
    opacity: 1;
    /* 4 */
  }
  /*
  Restore default font weight.
*/
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  /*
  Restore indentation.
*/
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  /*
  Restore space after button.
*/
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  /*
  Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
*/
  ::placeholder {
    opacity: 1;
  }
  /*
  Set the default placeholder color to a semi-transparent version of the current text color in browsers that do not
  crash when using `color-mix(…)` with `currentcolor`. (https://github.com/tailwindlabs/tailwindcss/issues/17194)
*/
  @supports (not (-webkit-appearance: -apple-pay-button)) /* Not Safari */ or
  (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: color-mix(in oklab, currentcolor 50%, transparent);
    }
  }
  /*
  Prevent resizing textareas horizontally by default.
*/
  textarea {
    resize: vertical;
  }
  /*
  Remove the inner padding in Chrome and Safari on macOS.
*/
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  /*
  1. Ensure date/time inputs have the same height when empty in iOS Safari.
  2. Ensure text alignment can be changed on date/time inputs in iOS Safari.
*/
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    /* 1 */
    text-align: inherit;
    /* 2 */
  }
  /*
  Prevent height from changing on date/time inputs in macOS Safari when the input is set to `display: block`.
*/
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  /*
  Remove excess padding from pseudo-elements in date/time inputs to ensure consistent height across browsers.
*/
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit,
::-webkit-datetime-edit-year-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute-field,
::-webkit-datetime-edit-second-field,
::-webkit-datetime-edit-millisecond-field,
::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  /*
  Center dropdown marker shown on inputs with paired `<datalist>`s in Chrome. (https://github.com/tailwindlabs/tailwindcss/issues/18499)
*/
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  /*
  Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
  :-moz-ui-invalid {
    box-shadow: none;
  }
  /*
  Correct the inability to style the border radius in iOS Safari.
*/
  button,
input:where([type='button'], [type='reset'], [type='submit']),
::file-selector-button {
    appearance: button;
  }
  /*
  Correct the cursor style of increment and decrement buttons in Safari.
*/
  ::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
    height: auto;
  }
  /*
  Make elements with the HTML hidden attribute stay hidden by default.
*/
  [hidden]:where(:not([hidden='until-found'])) {
    display: none !important;
  }
}
:root {
  --paper: #f7f5ed;
  --ink: #242720;
  --gold: #cc8e18;
  --bright: #f2c94d;
  --muted: #686b60;
  --line: #dadbd0;
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans),Arial,Helvetica,sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}
::selection {
  background: var(--bright);
  color: var(--ink);
}
.wrap {
  width: min(1240px,calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 24px;
  background: var(--ink);
  color: white;
  padding: 15px;
  z-index: 50;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 116px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: block;
  position: relative;
  width: 225px;
  aspect-ratio: 1967/454;
  overflow: hidden;
}
.wordmark img {
  position: absolute;
  width: 101.6777%;
  max-width: none;
  height: auto;
  left: 0;
  top: -171.1454%;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 550;
}
.site-header nav>a {
  transition: color .2s;
}
.site-header nav>a:hover {
  color: var(--gold);
}
.nav-steam {
  border: 1px solid #bfc2b4;
  padding: 12px 18px;
}
.nav-steam span {
  margin-left: 22px;
  font-size: 20px;
}
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 12px;
  min-height: 622px;
  padding-block: 70px 95px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font: 500 11px/1.6 var(--font-geist-mono),monospace;
  letter-spacing: .09em;
  margin: 0 0 23px;
}
.pixel-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--gold);
  box-shadow: 3px 3px 0 #e4bd71;
}
.hero h1 {
  font-size: clamp(56px,6.9vw,94px);
  line-height: 1.025;
  font-weight: 730;
  letter-spacing: -.068em;
  margin: 0 0 28px;
}
.gold-word {
  color: var(--gold);
  position: relative;
}
.period {
  color: var(--ink);
}
.hero-description {
  font-size: 18px;
  line-height: 1.75;
  max-width: 435px;
  margin: 0 0 32px;
  color: #676b5f;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  padding: 17px 23px;
  min-height: 55px;
  transition: transform .2s,background .2s,box-shadow .2s;
}
.button span {
  font-size: 23px;
  line-height: 1;
}
.button:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 #b69242;
}
.button-ink {
  background: var(--ink);
  color: var(--paper);
}
.text-link {
  font-size: 13px;
  border-bottom: 1px solid #bfc1b7;
  padding-block: 8px;
}
.text-link span {
  margin-left: 12px;
}
.hero-art {
  position: relative;
  height: 405px;
  isolation: isolate;
}
.art-grid {
  position: absolute;
  inset: -25px -20px;
  background-image: linear-gradient(#dfdfd380 1px,transparent 1px),linear-gradient(90deg,#dfdfd380 1px,transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse,black 20%,transparent 72%);
  z-index: -1;
}
.gem {
  display: inline-block;
  position: relative;
  width: 40px;
  aspect-ratio: 452/454;
  overflow: hidden;
  flex-shrink: 0;
}
.gem img {
  position: absolute;
  max-width: none;
  width: 442.4779%;
  height: auto;
  top: -171.1454%;
  left: 0;
}
.hero-gem {
  position: absolute;
  width: 315px;
  left: calc(50% - 158px);
  top: 16px;
  filter: drop-shadow(16px 22px 0 #d7ab4620);
  transform: rotate(-9deg);
}
.art-coordinate,.art-caption {
  position: absolute;
  font: 500 10px/1.6 var(--font-geist-mono),monospace;
  letter-spacing: .06em;
  color: #858675;
}
.art-coordinate {
  top: 0;
  left: 30px;
}
.art-caption {
  left: 37px;
  bottom: 18px;
}
.indie-stamp {
  position: absolute;
  bottom: 20px;
  right: -5px;
  width: 132px;
  height: 158px;
  background: var(--ink);
  color: var(--paper);
  transform: rotate(8deg);
  padding: 14px 16px;
  box-shadow: 7px 7px 0 #d9b458;
}
.indie-stamp span {
  display: block;
  font: 8px/1.5 var(--font-geist-mono),monospace;
  letter-spacing: .08em;
  white-space: nowrap;
}
.indie-stamp strong {
  display: block;
  font-size: 27px;
  line-height: 1;
  letter-spacing: -.04em;
  margin: 10px 0;
  font-weight: 750;
}
.pixel-spark {
  position: absolute;
  width: 27px;
  height: 27px;
  clip-path: polygon(37% 0,63% 0,63% 28%,72% 28%,72% 37%,100% 37%,100% 63%,72% 63%,72% 72%,63% 72%,63% 100%,37% 100%,37% 72%,28% 72%,28% 63%,0 63%,0 37%,28% 37%,28% 28%,37% 28%);
  background: var(--ink);
}
.spark-one {
  right: 30px;
  top: 40px;
}
.spark-two {
  left: 25px;
  top: 242px;
  width: 18px;
  height: 18px;
  background: var(--gold);
}
.hero-footnote {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  display: flex;
  justify-content: space-between;
  font: 9px/1.5 var(--font-geist-mono),monospace;
  letter-spacing: .08em;
  color: #777c6d;
}
.hero-footnote a {
  display: flex;
  gap: 22px;
}
.ticker {
  background: var(--bright);
  border-block: 1px solid #d3ac3d;
  overflow: hidden;
  padding: 17px 0;
}
.ticker>div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 43px;
  white-space: nowrap;
  min-width: max-content;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .08em;
}
.ticker b {
  font-size: 20px;
  line-height: 1;
}
.games-section {
  padding-block: 88px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 34px;
  gap: 24px;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
}
.section-heading h2,.studio-section h2 {
  font-size: 58px;
  line-height: 1.1;
  letter-spacing: -.055em;
  font-weight: 650;
  margin: 0;
}
.gold-dot {
  color: var(--gold);
}
.section-heading>p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
  margin: 0 0 5px;
}
.game-feature {
  display: grid;
  grid-template-columns: 1.24fr 1fr;
  background: #252d25;
  color: var(--paper);
  overflow: hidden;
}
.game-art {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #434b3a;
}
.game-art>img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.game-art:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,#172b3333,transparent 40%,#0e1a24aa);
}
.game-number,.game-image-caption {
  position: absolute;
  z-index: 1;
  left: 25px;
  font: 10px/1.5 var(--font-geist-mono),monospace;
  letter-spacing: .08em;
}
.game-number {
  top: 25px;
  background: var(--paper);
  color: var(--ink);
  padding: 9px 13px;
}
.game-image-caption {
  bottom: 23px;
  color: #fff;
}
.game-info {
  padding: 42px 43px;
}
.game-status {
  font-size: 9px;
  letter-spacing: .1em;
  color: #e4c25f;
  margin-bottom: 25px;
}
.game-status .pixel-dot {
  background: var(--bright);
  box-shadow: none;
  width: 6px;
  height: 6px;
  flex-basis: 6px;
}
.game-info h3 {
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 620;
  margin: 0 0 21px;
}
.game-info h3>span {
  display: block;
  color: var(--bright);
  font-size: 27px;
  font-weight: 430;
  margin-top: 7px;
  letter-spacing: -.025em;
}
.game-description {
  color: #c5cbbd;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 21px;
}
.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 30px;
}
.game-tags>span {
  border: 1px solid #53604e;
  padding: 5px 10px;
  color: #d3d9c9;
  font: 9px/1.5 var(--font-geist-mono),monospace;
}
.button-gold {
  background: var(--bright);
  color: var(--ink);
  width: 100%;
  padding-block: 15px;
  min-height: 51px;
}
.button-gold:hover {
  background: #ffda6c;
  box-shadow: 4px 4px 0 #0e190e;
}
.platform-note {
  margin: 13px 0 0;
  color: #b1bba8;
  font: 8px/1.6 var(--font-geist-mono),monospace;
  letter-spacing: .09em;
}
.coming-next {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 22px;
  padding: 30px 25px;
  border: 1px solid var(--line);
}
.next-dots {
  display: flex;
  gap: 5px;
  background: #ede9db;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.next-dots i {
  width: 5px;
  height: 5px;
  background: #9d842f;
}
.coming-next h3 {
  font-size: 18px;
  font-weight: 550;
  letter-spacing: -.025em;
  margin: 0 0 6px;
}
.coming-next p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.coming-label {
  font: 9px/1.6 var(--font-geist-mono),monospace;
  letter-spacing: .04em;
  white-space: nowrap;
  margin-left: auto;
}
.coming-label span {
  font-size: 20px;
  margin-left: 22px;
}
.studio-section {
  background: #eceee4;
  border-top: 1px solid #e1e4d8;
  padding-block: 79px;
}
.studio-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
}
.studio-section h2 {
  font-size: 52px;
  margin-top: 29px;
}
.studio-copy>p {
  font-size: 15px;
  line-height: 1.85;
  color: #5b6356;
  margin: 0 0 19px;
}
.studio-copy>p:first-child {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  letter-spacing: -.025em;
}
.studio-signoff {
  display: flex;
  align-items: center;
  gap: 12px;
  font: 10px/1.5 var(--font-geist-mono),monospace;
  letter-spacing: .05em;
  margin-top: 27px;
}
.studio-signoff .gem {
  width: 29px;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: 41px 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 38px;
}
.footer-top .wordmark {
  width: 205px;
}
.footer-top>p {
  font-size: 19px;
  font-weight: 450;
  letter-spacing: -.025em;
  color: #d8ddcf;
}
.footer-link {
  font-size: 12px;
  border-bottom: 1px solid #69735f;
  padding-bottom: 9px;
}
.footer-link span {
  margin-left: 27px;
  font-size: 19px;
}
.footer-bottom {
  border-top: 1px solid #495042;
  padding-top: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #a9b09e;
  font-size: 10px;
}
.footer-bottom>span:nth-child(2) {
  font: 8px/1.6 var(--font-geist-mono),monospace;
  letter-spacing: .05em;
}
@media(min-width:1600px) {
  .hero {
    min-height: 680px;
  }
  .hero h1 {
    font-size: 96px;
  }
  .hero-art {
    height: 430px;
  }
  .hero-gem {
    width: 350px;
    left: calc(50% - 175px);
  }
}
@media(max-width:1050px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .hero {
    grid-template-columns: 1.25fr 1fr;
    gap: 0;
  }
  .hero h1 {
    font-size: 70px;
  }
  .hero-art {
    height: 345px;
  }
  .hero-gem {
    width: 270px;
    left: calc(50% - 135px);
  }
  .indie-stamp {
    width: 115px;
    height: 139px;
    bottom: 0;
    right: 0;
    padding: 12px;
  }
  .indie-stamp strong {
    font-size: 23px;
  }
  .indie-stamp span {
    font-size: 7px;
  }
  .art-caption {
    left: 5px;
    bottom: 0;
  }
  .hero-actions {
    gap: 18px;
  }
  .text-link {
    font-size: 12px;
  }
  .button {
    gap: 20px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 370px;
  }
  .game-feature {
    grid-template-columns: 1.05fr 1fr;
  }
  .game-info {
    padding: 32px;
  }
  .game-info h3 {
    font-size: 35px;
  }
  .studio-inner {
    gap: 45px;
  }
  .studio-section h2 {
    font-size: 43px;
  }
  .game-image-caption {
    font-size: 8px;
  }
  .footer-bottom>span:nth-child(2) {
    display: none;
  }
}
@media(max-width:760px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 89px;
    gap: 15px;
  }
  .wordmark {
    width: 172px;
  }
  .site-header nav {
    gap: 20px;
    font-size: 12px;
  }
  .nav-steam {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 49px 0 70px;
    min-height: auto;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: .04em;
  }
  .hero h1 {
    font-size: clamp(58px,10vw,79px);
    letter-spacing: -.065em;
    margin-bottom: 24px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 25px;
  }
  .hero-actions {
    gap: 23px;
  }
  .button {
    font-size: 13px;
    padding: 15px 19px;
    min-height: 51px;
  }
  .text-link {
    font-size: 12px;
  }
  .hero-art {
    height: 255px;
    margin: 10px auto 12px;
    width: min(390px,100%);
  }
  .hero-gem {
    width: 225px;
    top: 0;
    left: calc(50% - 125px);
  }
  .indie-stamp {
    right: 6px;
    bottom: 10px;
    width: 104px;
    height: 126px;
  }
  .indie-stamp strong {
    font-size: 20px;
  }
  .indie-stamp span {
    font-size: 6px;
  }
  .art-grid {
    inset: -10px -10px;
    background-size: 25px 25px;
  }
  .art-coordinate {
    top: 13px;
    left: 10px;
  }
  .art-caption {
    font-size: 8px;
    left: 15px;
    bottom: 0;
  }
  .spark-one {
    width: 19px;
    height: 19px;
    right: 32px;
    top: 25px;
  }
  .spark-two {
    left: 13px;
    top: 143px;
    width: 15px;
    height: 15px;
  }
  .hero-footnote {
    bottom: 22px;
    font-size: 7px;
  }
  .hero-footnote a {
    gap: 12px;
  }
  .ticker {
    padding-block: 15px;
  }
  .ticker>div {
    gap: 25px;
    font-size: 11px;
  }
  .games-section {
    padding-block: 55px;
  }
  .section-heading {
    gap: 14px;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 44px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 9px;
  }
  .section-heading>p {
    font-size: 11px;
  }
  .game-feature {
    grid-template-columns: 1fr;
  }
  .game-art {
    min-height: 310px;
  }
  .game-info {
    padding: 29px;
  }
  .game-info h3 {
    font-size: 39px;
  }
  .game-info h3>span {
    font-size: 26px;
  }
  .game-status {
    margin-bottom: 18px;
  }
  .game-description {
    max-width: 480px;
  }
  .game-image-caption {
    font-size: 8px;
  }
  .coming-next {
    gap: 16px;
    padding: 22px 18px;
    align-items: flex-start;
  }
  .next-dots {
    width: 39px;
    height: 44px;
  }
  .coming-next h3 {
    font-size: 15px;
    line-height: 1.45;
  }
  .coming-next p {
    font-size: 12px;
  }
  .coming-label {
    display: none;
  }
  .studio-section {
    padding-block: 54px;
  }
  .studio-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .studio-section h2 {
    font-size: 44px;
    margin-top: 18px;
  }
  .studio-section .eyebrow {
    font-size: 9px;
  }
  .studio-copy>p:first-child {
    font-size: 21px;
  }
  .studio-copy>p {
    font-size: 14px;
  }
  .footer-top {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 27px;
  }
  .footer-top>p {
    font-size: 15px;
  }
  .footer-top .wordmark {
    width: 173px;
  }
  .footer-link {
    font-size: 12px;
    margin-top: 4px;
  }
  .footer-bottom {
    font-size: 9px;
    gap: 12px;
  }
  .site-footer {
    padding-top: 32px;
  }
  .studio-signoff {
    font-size: 9px;
  }
}
@media(max-width:390px) {
  .site-header nav {
    gap: 12px;
    font-size: 11px;
  }
  .site-header .wordmark {
    width: 153px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding-inline: 16px;
    gap: 16px;
  }
  .text-link {
    font-size: 11px;
  }
  .section-heading>p {
    font-size: 10px;
  }
  .game-art {
    min-height: 260px;
  }
  .game-info {
    padding: 26px;
  }
  .footer-top {
    display: block;
  }
  .footer-top>p {
    margin-block: 20px;
  }
  .footer-link {
    display: inline-block;
  }
}
.game-art>img {
  object-position: 25% center;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  align-items: start;
  gap: 45px;
  padding-top: 10px;
  padding-bottom: 40px;
}
.footer-brand>p {
  font-size: 31px;
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -.04em;
  margin: 25px 0 0;
}
.footer-address .eyebrow,.footer-contact .eyebrow {
  color: #c7ceb9;
  font-size: 9px;
  margin: 6px 0 18px;
}
.footer-address address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.95;
  color: #d1d6c8;
}
.footer-contact>a {
  display: flex;
  align-items: center;
  font-size: 13px;
  min-height: 32px;
  color: #d1d6c8;
}
.footer-contact>a:hover {
  color: var(--bright);
}
.footer-contact>.footer-link {
  font-size: 12px;
  margin-top: 15px;
  min-height: 42px;
  justify-content: space-between;
  max-width: 230px;
}
@media(max-width:900px) {
  .footer-top {
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
  }
  .footer-brand {
    grid-column: 1/-1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .footer-brand>p {
    font-size: 27px;
    margin: 0;
  }
  .footer-top .wordmark {
    width: 200px;
  }
}
@media(max-width:480px) {
  .footer-top {
    gap: 30px 18px;
  }
  .footer-brand>p {
    font-size: 20px;
  }
  .footer-top .wordmark {
    width: 160px;
  }
  .footer-address address,.footer-contact>a {
    font-size: 11px;
  }
  .footer-contact>.footer-link {
    font-size: 10px;
    gap: 8px;
  }
  .footer-link span {
    margin-left: 0;
  }
  .footer-bottom {
    align-items: center;
  }
  .footer-bottom>a {
    white-space: nowrap;
  }
}
.site-header nav>a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.text-link,.footer-link,.footer-bottom>a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media(max-width:760px) {
  .site-header nav>a.nav-steam {
    display: none;
  }
}
@media(max-width:360px) {
  .hero h1 {
    font-size: 49px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 14px;
  }
  .text-link {
    font-size: 10px;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*:before,*:after {
    transition: none!important;
    animation: none!important;
  }
}
