:root {
  color-scheme: dark;
  --ink: #081018;
  --paper: #f6e9c9;
  --paper-soft: #d9cfb4;
  --yellow: #ffc329;
  --orange: #ff7a18;
  --cyan: #45d7e8;
  --panel: #111c27;
  --line: rgba(246, 233, 201, .18);
  --shadow: #02070b;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 18rem; overflow-x: hidden; background: var(--ink); }
img { display: block; max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 20;
  padding: .7rem 1rem;
  border-radius: .4rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(72rem, calc(100% - 2rem)); margin-inline: auto; }

header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  border-bottom: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(to bottom, rgba(4, 10, 15, .9), rgba(4, 10, 15, .42));
  backdrop-filter: blur(12px);
}

nav { min-height: 4.8rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.brand-mark {
  display: block;
  width: 2.8rem;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 195, 41, .7);
  border-radius: 50%;
  background: #000;
  box-shadow: 0 .35rem 1rem rgba(0, 0, 0, .45);
}
.brand-mark img {
  width: 128.5%;
  max-width: none;
  height: auto;
  transform: translateX(-11%);
}
.nav-links { display: flex; align-items: center; gap: 1.25rem; }
.nav-links a { color: var(--paper-soft); font-size: .92rem; font-weight: 750; text-decoration: none; }
.nav-links a:hover { color: var(--yellow); }

.hero {
  position: relative;
  min-height: 47rem;
  display: grid;
  align-items: end;
  isolation: isolate;
  background: #152333;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(4, 10, 15, .97) 0%, rgba(4, 10, 15, .82) 46%, rgba(4, 10, 15, .28) 78%, rgba(4, 10, 15, .5) 100%),
    url("/assets/salaryman-feature.png") center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(0deg, var(--ink) 0%, transparent 42%);
}
.halftone {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .16;
  background-image: radial-gradient(circle, #fff 1px, transparent 1.5px);
  background-size: 8px 8px;
  mask-image: linear-gradient(110deg, #000, transparent 62%);
}
.hero-content { width: min(72rem, calc(100% - 2rem)); max-width: 72rem; padding: 10rem 0 7rem; }
.eyebrow { margin: 0 0 1.15rem; color: var(--yellow); font-size: .82rem; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; letter-spacing: -.035em; }
h1 { margin-bottom: 1.25rem; max-width: 12ch; font-size: clamp(3.4rem, 9vw, 7.2rem); line-height: .88; text-transform: uppercase; text-wrap: balance; }
.hero-copy { max-width: 36rem; margin: 0; color: #edf1f3; font-size: clamp(1.08rem, 2vw, 1.35rem); line-height: 1.55; text-wrap: pretty; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: .75rem 1.15rem;
  border: 2px solid var(--paper);
  border-radius: .45rem;
  color: var(--paper);
  font-weight: 900;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--shadow); }
.button-primary { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.button-secondary { background: rgba(8, 16, 24, .68); }
a:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }

.studio-strip { border-block: 1px solid var(--line); background: #0d1720; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); }
.fact { padding: 1.3rem 1.6rem; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact strong { display: block; color: var(--yellow); font-size: .75rem; letter-spacing: .13em; text-transform: uppercase; }
.fact span { display: block; margin-top: .35rem; color: var(--paper-soft); font-size: .94rem; }

section.content { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-heading { display: grid; grid-template-columns: .75fr 1.25fr; gap: 3rem; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; font-size: clamp(2.4rem, 6vw, 4.8rem); line-height: .95; text-transform: uppercase; }
.section-heading p { align-self: end; margin: 0; color: var(--paper-soft); font-size: 1.08rem; line-height: 1.7; }

.game-card {
  display: grid;
  grid-template-columns: minmax(17rem, .9fr) minmax(20rem, 1.1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--panel);
  box-shadow: 0 2rem 5rem rgba(0,0,0,.28);
}
.game-art { position: relative; align-self: center; background: #142738; }
.game-art > img { width: 100%; height: auto; }
.game-details { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.game-title { display: flex; align-items: center; gap: 1rem; }
.game-title img {
  width: 5rem;
  height: auto;
  flex: 0 0 auto;
  border-radius: 1rem;
  box-shadow: 0 .8rem 2rem rgba(0,0,0,.35);
}
.game-title h3 { margin: 0; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1; }
.game-details > p { color: var(--paper-soft); font-size: 1.05rem; line-height: 1.7; }
.tags { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1rem 0 1.6rem; padding: 0; list-style: none; }
.tags li { padding: .45rem .65rem; border: 1px solid rgba(69, 215, 232, .45); border-radius: 99rem; color: #b9f7ff; font-size: .76rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.text-link { width: fit-content; color: var(--yellow); font-weight: 850; text-underline-offset: .28rem; }

.contact { position: relative; overflow: hidden; background: var(--yellow); color: var(--ink); }
.contact::after { content: "LUSOHAN"; position: absolute; right: -1rem; bottom: -2.2rem; color: rgba(8, 16, 24, .08); font-size: clamp(5rem, 18vw, 14rem); font-weight: 1000; line-height: 1; }
.contact-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 2rem; padding: clamp(4rem, 8vw, 7rem) 0; }
.contact h2 { margin-bottom: .8rem; max-width: 12ch; font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: .92; text-transform: uppercase; }
.contact p { max-width: 37rem; margin: 0; font-size: 1.05rem; line-height: 1.65; }
.contact .button { justify-self: end; border-color: var(--ink); background: var(--ink); color: var(--paper); }

footer { border-top: 1px solid var(--line); background: #050b10; }
.footer-inner { min-height: 7rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #95a3ad; font-size: .88rem; }
.footer-links { display: flex; gap: 1rem; }
.footer-links a { text-underline-offset: .2rem; }

@media (max-width: 760px) {
  .nav-links a:not(:last-child) { display: none; }
  .hero { min-height: auto; }
  .hero::after { background: linear-gradient(0deg, var(--ink) 0%, transparent 35%); }
  .hero-content { padding: 8rem 0 4rem; }
  h1 { font-size: clamp(3.2rem, 16vw, 5rem); }
  .facts { grid-template-columns: 1fr; padding-block: .4rem; }
  .fact { padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .fact:last-child { border-bottom: 0; }
  .section-heading, .game-card, .contact-inner { grid-template-columns: 1fr; }
  .section-heading { gap: 1.2rem; }
  .game-details { padding-top: 1rem; }
  .contact .button { justify-self: start; }
  .footer-inner { padding-block: 1.5rem; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
