:root {
  --paper: #fbfbf7;
  --surface: #ffffff;
  --ink: #19211f;
  --muted: #56615d;
  --line: #dfe5dc;
  --green: #0b7b61;
  --green-dark: #075441;
  --orange: #e96832;
  --gold: #f4c74f;
  --shadow: 0 18px 48px rgba(25, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 251, 247, 0.94);
  border-bottom: 1px solid rgba(223, 229, 220, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--green);
  color: #ffffff;
  border: 2px solid var(--ink);
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.site-nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 12px;
  color: var(--muted);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: #edf3ec;
}

.site-nav .nav-cta {
  color: #ffffff;
  background: var(--ink);
}

.hero {
  position: relative;
  display: flex;
  min-height: 76vh;
  align-items: center;
  padding: 88px clamp(18px, 5vw, 72px) 72px;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 18, 14, 0.92), rgba(7, 18, 14, 0.62) 48%, rgba(7, 18, 14, 0.24)),
    url("assets/somethings-off-hero.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--orange));
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.08;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.2rem;
}

.hero-actions,
.contact-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

.button.primary {
  background: var(--green);
  color: #ffffff;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--green-dark);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p,
.studio-copy p,
.contact-section p,
.game-summary p {
  color: var(--muted);
}

.game-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 36px;
  align-items: start;
}

.game-summary {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.game-icon {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(25, 33, 31, 0.18);
}

.game-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-weight: 700;
}

.feature-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 2px;
  content: "";
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.screenshot-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(25, 33, 31, 0.13);
}

.screenshot-grid img:first-child {
  grid-column: 1 / -1;
}

.studio-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 40px;
  align-items: center;
  background: #eef5ed;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.studio-facts div {
  min-height: 132px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.studio-facts strong,
.studio-facts span {
  display: block;
}

.studio-facts strong {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.studio-facts span {
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  justify-content: space-between;
  gap: 28px;
}

.contact-section > div {
  max-width: 720px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 70vh;
    padding-top: 72px;
    background-position: 58% center;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .game-layout,
  .studio-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .brand {
    white-space: normal;
  }

  .site-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-content {
    max-width: 21rem;
  }

  .hero-actions {
    width: 100%;
    max-width: 21rem;
  }

  .hero-copy {
    max-width: 19rem;
    font-size: 1.05rem;
    overflow-wrap: break-word;
  }

  .button {
    width: 100%;
  }

  .game-summary {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .screenshot-grid,
  .studio-facts {
    grid-template-columns: 1fr;
  }
}
