* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #111;
  color: #f2f2f2;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.hero {
  display: grid;
  gap: 32px;
}

.hero-text {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b7b7b7;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
}

.hero-pitch {
  max-width: 700px;
  margin: 0 0 28px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #d5d5d5;
}

.primary-button {
  display: inline-block;
  padding: 15px 22px;

  background: #f2f2f2;
  color: #111;

  text-decoration: none;
  font-weight: bold;

  border-radius: 8px;

  transition:
    transform 0.15s ease,
    background 0.15s ease;
}

.primary-button:hover {
  background: #ffffff;
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.gameplay-proof {
  margin-top: 96px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.section-heading p:last-child {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #d5d5d5;
}

.gameplay-video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #000;
}

.steam-input {
  margin-top: 80px;
}

.cursor-modes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.cursor-mode {
  padding: 28px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #181818;
}

.mode-label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b7b7b7;
}

.cursor-mode h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.cursor-mode p:last-child {
  margin: 0;
  line-height: 1.6;
  color: #d5d5d5;
}

@media (max-width: 700px) {
  .cursor-modes {
    grid-template-columns: 1fr;
  }
}

.quick-setup {
  margin-top: 80px;
}

.setup-steps {
  display: grid;
  gap: 12px;
}

.setup-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;

  padding: 18px 20px;

  border-top: 1px solid #333;
}

.setup-step:last-child {
  border-bottom: 1px solid #333;
}

.step-number {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #888;
}

.setup-step p {
  margin: 0;
  line-height: 1.6;
}

.key-idea {
  margin-top: 24px;
  padding: 24px 28px;

  border-left: 4px solid #f2f2f2;
  background: #181818;
}

.key-idea p:last-child {
  margin: 0;
  max-width: 760px;

  font-size: 1.1rem;
  line-height: 1.6;
}

.control-map {
  margin-top: 96px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #333;
}

th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #b7b7b7;
}

td {
  line-height: 1.5;
}

.limitations {
  margin-top: 96px;
}

.limitation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;

  border-top: 1px solid #333;
}

.limitation-item {
  padding: 24px 0;
  border-bottom: 1px solid #333;
}

.limitation-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.limitation-item p {
  margin: 0;
  line-height: 1.6;
  color: #cfcfcf;
}

@media (max-width: 700px) {
  .limitation-list {
    grid-template-columns: 1fr;
  }
}

.development-story {
  margin-top: 96px;
}

.story-intro {
  max-width: 760px;
  margin-bottom: 32px;
}

.story-intro p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d5d5d5;
}

.story-steps {
  border-top: 1px solid #333;
}

.story-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;

  padding: 24px 0;
  border-bottom: 1px solid #333;
}

.story-number {
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #888;
}

.story-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.story-step p {
  max-width: 760px;
  margin: 0;
  line-height: 1.6;
  color: #cfcfcf;
}

.story-conclusion {
  margin-top: 32px;
  padding: 28px;

  border-left: 4px solid #f2f2f2;
  background: #181818;
}

.story-conclusion p {
  max-width: 800px;
  margin: 0;

  font-size: 1.15rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .story-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
}

.design-proof {
  margin-top: 96px;
}

.proof-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  margin-bottom: 28px;
}

.proof-note {
  padding: 24px 28px;

  border: 1px solid #333;
  border-radius: 8px;

  background: #181818;
}

.proof-note h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.proof-note p:last-child {
  margin: 0;
  line-height: 1.6;
  color: #cfcfcf;
}

@media (max-width: 700px) {
  .proof-notes {
    grid-template-columns: 1fr;
  }
}

.pointer-proof {
  margin-top: 96px;
}

.pointer-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;

  margin-bottom: 28px;
}

.pointer-feature {
  padding: 24px 28px;

  border: 1px solid #333;
  border-radius: 8px;

  background: #181818;
}

.pointer-feature h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.pointer-feature p {
  margin: 0;
  line-height: 1.6;
  color: #cfcfcf;
}

@media (max-width: 800px) {
  .pointer-features {
    grid-template-columns: 1fr;
  }
}

.glyph-overlay {
  margin-top: 96px;
}

.overlay-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.overlay-note > div {
  padding: 28px;

  border: 1px solid #333;
  border-radius: 8px;

  background: #181818;
}

.overlay-note h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
}

.overlay-note p:not(.mode-label) {
  margin: 0 0 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

.overlay-note p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .overlay-note {
    grid-template-columns: 1fr;
  }
}

.install-status {
  margin-top: 96px;
  padding-bottom: 64px;
}

.install-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;

  padding: 32px;

  border: 1px solid #333;
  border-radius: 8px;

  background: #181818;
}

.install-primary h3 {
  margin: 0 0 14px;
  font-size: 1.4rem;
}

.install-primary > p:not(.mode-label) {
  margin: 0 0 24px;
  line-height: 1.6;
  color: #cfcfcf;
}

.project-metadata dl {
  margin: 0;
}

.project-metadata dl > div {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;

  padding: 10px 0;
  border-bottom: 1px solid #333;
}

.project-metadata dl > div:first-child {
  padding-top: 0;
}

.project-metadata dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.project-metadata dt {
  color: #999;
}

.project-metadata dd {
  margin: 0;
}

.install-fallback {
  max-width: 860px;
  margin-top: 24px;
}

.install-fallback p {
  margin: 0;
  line-height: 1.6;
  color: #cfcfcf;
}

@media (max-width: 800px) {
  .install-panel {
    grid-template-columns: 1fr;
  }

  .project-metadata dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.playtest-status {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;

  margin-top: 48px;
  padding: 28px;

  border: 1px solid #3f3f3f;
  border-radius: 8px;

  background: #181818;
}

.status-badge {
  align-self: start;

  padding: 8px 12px;

  border: 1px solid #555;
  border-radius: 999px;

  font-size: 0.78rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.06em;

  white-space: nowrap;
}

.status-copy h2 {
  margin: 0 0 16px;
  font-size: 1.6rem;
}

.status-copy p {
  max-width: 820px;
  margin: 0 0 14px;

  line-height: 1.6;
  color: #cfcfcf;
}

.status-copy p:last-child {
  margin-bottom: 0;
}

.status-warning {
  padding-top: 14px;
  border-top: 1px solid #333;
}

@media (max-width: 700px) {
  .playtest-status {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .status-badge {
    justify-self: start;
  }
}

.site-footer {
  padding: 32px 0 8px;
  border-top: 1px solid #333;
}

.site-footer p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.6;
  color: #888;
}

.table-hint {
  display: none;
}

@media (max-width: 700px) {
  .table-hint {
    display: block;
    margin: 0 0 16px;

    font-size: 0.85rem;
    line-height: 1.5;
    color: #999;
  }

  .table-wrap {
    -webkit-overflow-scrolling: touch;
  }
}

.gameplay-gallery {
  margin-top: 96px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.video-gallery-item {
  min-width: 0;
  padding: 20px;
  background: #181818;
  border: 1px solid #333;
  border-radius: 8px;
}

.video-gallery-heading {
  margin-bottom: 16px;
}

.video-gallery-heading span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
}

.video-gallery-heading h3 {
  margin: 0;
  font-size: 1.25rem;
}

.video-gallery video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

@media (max-width: 700px) {
  .video-gallery {
    grid-template-columns: 1fr;
  }
}

.release-entry + .release-entry {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #333;
}

.release-entry h3 {
  margin: 0 0 12px;
}

.release-entry p {
  margin: 0 0 18px;
  line-height: 1.6;
  color: #d5d5d5;
}
