:root {
  --bg: #050816;
  --bg-soft: #0a1026;
  --surface: rgba(10, 17, 40, 0.72);
  --surface-strong: rgba(14, 22, 48, 0.96);
  --surface-border: rgba(255, 255, 255, 0.08);
  --text: #f5f7ff;
  --text-soft: rgba(245, 247, 255, 0.74);
  --muted: rgba(245, 247, 255, 0.55);
  --accent: #75f0ff;
  --accent-2: #b999ff;
  --accent-3: #8dffb3;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(117, 240, 255, 0.12), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(185, 153, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #030611 0%, #060916 42%, #040612 100%);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.ambient {
  position: fixed;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.32;
  z-index: 0;
}

.ambient-left {
  top: 5rem;
  left: -10rem;
  background: rgba(117, 240, 255, 0.2);
}

.ambient-right {
  top: 20rem;
  right: -8rem;
  background: rgba(185, 153, 255, 0.18);
}

.site-header,
.section,
.site-footer,
.marquee {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 1rem auto 0;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(6, 10, 24, 0.52);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  position: sticky;
  top: 1rem;
}

.site-header[data-scrolled="true"] {
  background: rgba(6, 10, 24, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.site-nav {
  display: inline-flex;
  gap: 1.5rem;
  color: var(--text-soft);
}

.site-nav a:hover,
.contact-links a:hover,
.footer-links a:hover,
.game-card a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #7ca9ff 65%, var(--accent-2));
  color: #03101d;
  font-weight: 700;
  border: 0;
  box-shadow: 0 16px 32px rgba(117, 240, 255, 0.18);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.button:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 22px 38px rgba(117, 240, 255, 0.24);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 6rem 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding-top: 3rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 7.4rem);
  line-height: 0.95;
  max-width: 12ch;
}

h1 span {
  color: transparent;
  background: linear-gradient(135deg, var(--accent), #e8fbff 45%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  max-width: 13ch;
}

h3 {
  font-size: 1.45rem;
}

.hero-text,
.section-heading p,
.info-panel p,
.featured-game p,
.game-card p,
.timeline-card p,
.contact-shell p,
.contact-card p,
.prose p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-actions,
.game-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.contact-points {
  display: grid;
  gap: 0.35rem;
}

.contact-points p {
  margin: 0;
}

.hero-copy {
  display: grid;
  gap: 1.6rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-metrics li {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.hero-metrics span {
  color: var(--muted);
  line-height: 1.5;
}

.hero-logo-card,
.featured-game,
.game-card,
.info-panel,
.timeline-card,
.contact-shell,
.detail-card,
.prose {
  background: linear-gradient(180deg, rgba(19, 28, 57, 0.8), rgba(8, 12, 28, 0.78));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
}

.hero-logo-card {
  position: relative;
  min-height: 42rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding-bottom: 12rem;
  transform-style: preserve-3d;
  transition:
    transform 0.5s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: radial-gradient(circle at center, black 32%, transparent 85%);
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(29rem, 68%);
  transform: translateY(1.5rem);
  filter:
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 72px rgba(117, 240, 255, 0.2));
  transition: transform 0.5s ease, filter 0.5s ease;
}

.floating-shot {
  position: absolute;
  z-index: 3;
  width: 11rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.3s ease;
}

.floating-shot-left {
  left: 1.25rem;
  top: 3rem;
  transform: rotate(-8deg);
}

.floating-shot-right {
  right: 1.25rem;
  top: 9rem;
  transform: rotate(8deg);
}

.signal-card {
  position: absolute;
  z-index: 4;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  padding: 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(4, 6, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.45s ease, border-color 0.3s ease;
}

.signal-label,
.chip,
.card-index,
.timeline-card span,
.detail-card span {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.signal-title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
}

.signal-copy {
  margin-bottom: 0;
}

.marquee {
  overflow: hidden;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.marquee-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-grid,
.split-section,
.roadmap-section,
.contact-section {
  display: grid;
  gap: 2rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 50rem;
}

.games-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
}

.featured-game,
.game-card,
.info-panel,
.timeline-card,
.detail-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.featured-game {
  min-height: 30rem;
  display: grid;
  align-content: end;
}

.featured-game-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.3rem;
  margin-bottom: 1rem;
}

.featured-game-title-wrap {
  display: grid;
  gap: 0.45rem;
}

.featured-game-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.95;
}

.featured-game-subtitle {
  margin: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.game-orb {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 16rem;
  height: 16rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(117, 240, 255, 0.42), rgba(117, 240, 255, 0.04) 55%, transparent 68%);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.feature-list span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-game .game-actions {
  margin-top: 0.4rem;
  align-items: flex-start;
}

.featured-game .button {
  flex: 0 0 auto;
}

.game-logo,
.page-game-logo {
  width: min(18rem, 100%);
  object-fit: contain;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.game-logo {
  width: 11rem;
  aspect-ratio: 1;
  padding: 1rem;
  border-radius: 28%;
  background: linear-gradient(180deg, rgba(21, 36, 74, 0.92), rgba(10, 18, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.32);
}

.page-game-logo {
  width: 10rem;
  aspect-ratio: 1;
  padding: 0.9rem;
  border-radius: 28%;
  background: linear-gradient(180deg, rgba(21, 36, 74, 0.9), rgba(10, 18, 40, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.3);
}

.games-stack,
.studio-grid,
.roadmap-grid,
.detail-grid {
  display: grid;
  gap: 1rem;
}

.games-stack {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.studio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.game-card a,
.contact-card a,
.footer-links a {
  color: var(--accent);
  font-weight: 600;
}

.social-links a {
  color: var(--accent);
  font-weight: 600;
}

.social-icon-link {
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem 0.75rem 0.8rem;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.social-icon-link img {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
}

.social-icon-link span {
  font-weight: 600;
  color: var(--text-soft);
}

.social-icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 240, 255, 0.28);
  background: rgba(117, 240, 255, 0.08);
}

.social-icon-static {
  opacity: 0.86;
  cursor: default;
}

.social-icon-static span {
  color: var(--text);
}

.social-icon-static:hover {
  transform: none;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.footer-social-link {
  width: 3rem;
  min-height: 3rem;
  padding: 0;
  gap: 0;
}

.footer-social-link span {
  display: none;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.mockup-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mockup-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 1.3rem;
  background: linear-gradient(180deg, rgba(19, 28, 57, 0.82), rgba(8, 12, 28, 0.9));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.mockup-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(117, 240, 255, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 38px;
  padding: 0.85rem;
  background: linear-gradient(180deg, #161d31 0%, #090d19 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 45px rgba(0, 0, 0, 0.35);
}

.phone-mockup img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 0.55rem;
  transform: translateX(-50%);
  width: 34%;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(3, 6, 17, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 1;
}

.mockup-copy h3 {
  margin-bottom: 0.6rem;
}

.mockup-copy p {
  color: var(--text-soft);
  line-height: 1.7;
}

.shot-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(19, 28, 57, 0.82), rgba(8, 12, 28, 0.86));
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
  position: relative;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.shot-card img {
  width: 100%;
  aspect-ratio: 16 / 14;
  object-fit: contain;
  background:
    radial-gradient(circle at top, rgba(117, 240, 255, 0.12), transparent 38%),
    rgba(3, 6, 17, 0.92);
  padding: 1.25rem;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.shot-copy {
  padding: 1.4rem;
}

.shot-copy p {
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-shell {
  padding: 2rem;
  border-radius: calc(var(--radius-xl) + 4px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1rem;
}

.contact-form-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.55rem;
}

.form-field span {
  font-size: 0.92rem;
  color: var(--text-soft);
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(6, 10, 24, 0.82);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(117, 240, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(117, 240, 255, 0.08);
  background: rgba(8, 14, 32, 0.94);
}

.form-field textarea {
  resize: vertical;
  min-height: 10rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.recaptcha-wrap {
  min-height: 78px;
}

.contact-status {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.contact-status.is-visible {
  display: block;
}

.contact-status.is-success {
  background: rgba(32, 201, 151, 0.14);
  border: 1px solid rgba(32, 201, 151, 0.28);
  color: #b8ffe4;
}

.contact-status.is-error {
  background: rgba(255, 99, 132, 0.12);
  border: 1px solid rgba(255, 99, 132, 0.25);
  color: #ffd3dc;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 0 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--text-soft);
}

.brand-footer {
  margin-bottom: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.inner-page .section {
  padding-top: 4rem;
}

.game-page {
  padding-top: 4rem;
}

.prose {
  width: min(calc(100% - 2rem), 880px);
  margin-top: 4rem;
  padding: 2rem;
  border-radius: var(--radius-xl);
}

.prose h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

.prose h2 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.featured-game::after,
.game-card::after,
.info-panel::after,
.timeline-card::after,
.detail-card::after,
.shot-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(117, 240, 255, 0.12), transparent 34%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-logo-card:hover {
  transform: perspective(1200px) rotateX(4deg) rotateY(-4deg) translateY(-8px);
  border-color: rgba(117, 240, 255, 0.22);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.45);
}

.hero-logo-card:hover .hero-grid {
  transform: scale(1.04) translateY(4px);
  opacity: 0.9;
}

.hero-logo-card:hover .hero-logo {
  transform: translateZ(24px) scale(1.03);
  filter:
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.12))
    drop-shadow(0 0 80px rgba(117, 240, 255, 0.2));
}

.hero-logo-card:hover .floating-shot-left {
  transform: rotate(-12deg) translate(-8px, -10px) scale(1.04);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.45);
  border-color: rgba(117, 240, 255, 0.26);
}

.hero-logo-card:hover .floating-shot-right {
  transform: rotate(12deg) translate(10px, -12px) scale(1.04);
  box-shadow: 0 30px 55px rgba(0, 0, 0, 0.45);
  border-color: rgba(185, 153, 255, 0.28);
}

.hero-logo-card:hover .signal-card {
  transform: translateY(-4px) translateZ(18px);
  border-color: rgba(255, 255, 255, 0.16);
}

.featured-game:hover,
.game-card:hover,
.info-panel:hover,
.timeline-card:hover,
.detail-card:hover,
.shot-card:hover,
.contact-shell:hover {
  transform: translateY(-8px);
  border-color: rgba(117, 240, 255, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.featured-game:hover::after,
.game-card:hover::after,
.info-panel:hover::after,
.timeline-card:hover::after,
.detail-card:hover::after,
.shot-card:hover::after {
  opacity: 1;
}

.featured-game:hover .game-logo {
  transform: scale(1.03) translateY(-2px);
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.18));
}

.mockup-card:hover {
  transform: translateY(-8px);
  border-color: rgba(117, 240, 255, 0.18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.mockup-card:hover::after {
  opacity: 1;
}

.mockup-card:hover .phone-mockup img {
  transform: scale(1.03);
}

.shot-card:hover img {
  transform: scale(1.06) rotate(-1deg);
  filter: saturate(1.08) contrast(1.04);
}

.site-nav a,
.contact-links a,
.footer-links a,
.game-card a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.contact-links a:hover,
.footer-links a:hover,
.game-card a:hover {
  transform: translateX(3px);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero,
  .games-layout,
  .contact-shell,
  .studio-grid,
  .roadmap-grid,
  .detail-grid,
  .mockup-grid,
  .mockup-grid-wide {
    grid-template-columns: 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card {
    min-height: 34rem;
    padding-bottom: 10.5rem;
  }

  .hero-logo {
    width: min(24rem, 66%);
    transform: translateY(0.5rem);
  }

  .floating-shot {
    width: 9rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .featured-game-head {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-header {
    border-radius: 28px;
    padding: 1rem;
    top: 0.8rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: 4.5rem 0;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  h2 {
    max-width: none;
  }

  .hero-logo-card {
    min-height: 27rem;
    padding-bottom: 11rem;
  }

  .hero-logo {
    width: min(18rem, 72%);
    transform: translateY(-0.25rem);
  }

  .featured-game-title {
    font-size: 2.2rem;
  }

  .floating-shot {
    display: none;
  }

  .shot-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-card:hover,
  .featured-game:hover,
  .game-card:hover,
  .info-panel:hover,
  .timeline-card:hover,
  .detail-card:hover,
  .shot-card:hover,
  .contact-shell:hover,
  .mockup-card:hover {
    transform: translateY(-4px);
  }

  .signal-card,
  .featured-game,
  .game-card,
  .info-panel,
  .timeline-card,
  .contact-shell,
  .detail-card,
  .prose {
    padding: 1.25rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icon-link span {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marquee-track {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .hero-logo-card,
  .hero-grid,
  .hero-logo,
  .floating-shot,
  .signal-card,
  .featured-game,
  .game-card,
  .info-panel,
  .timeline-card,
  .detail-card,
  .contact-shell,
  .shot-card,
  .mockup-card,
  .shot-card img,
  .phone-mockup img,
  .site-nav a,
  .contact-links a,
  .footer-links a,
  .game-card a,
  .game-logo,
  .page-game-logo {
    transition: none;
  }

  .hero-logo-card:hover,
  .featured-game:hover,
  .game-card:hover,
  .info-panel:hover,
  .timeline-card:hover,
  .detail-card:hover,
  .shot-card:hover,
  .contact-shell:hover,
  .mockup-card:hover,
  .button:hover,
  .site-nav a:hover,
  .contact-links a:hover,
  .footer-links a:hover,
  .game-card a:hover,
  .shot-card:hover img,
  .mockup-card:hover .phone-mockup img,
  .featured-game:hover .game-logo,
  .hero-logo-card:hover .hero-grid,
  .hero-logo-card:hover .hero-logo,
  .hero-logo-card:hover .floating-shot-left,
  .hero-logo-card:hover .floating-shot-right,
  .hero-logo-card:hover .signal-card {
    transform: none;
  }
}
