:root {
  --paper: #eef1f2;
  --surface: #ffffff;
  --ink: #101214;
  --muted: #626a70;
  --line: #cfd6da;
  --gold: #a9813d;
  --brick: #8e4a35;
  --steel: #243f4d;
  --night: #070b10;
  --blue: #dbe5ea;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 18, 20, 0.04) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(16, 18, 20, 0.035) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar,
.hero,
.asset-strip,
.section,
.contact {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(238, 241, 242, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--surface);
  background: var(--ink);
  border: 1px solid var(--gold);
  font-family: Georgia, serif;
}

.brand strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

nav {
  display: flex;
  justify-content: end;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(56px, 8vw, 104px) 0;
}

.eyebrow,
.label {
  margin-bottom: 14px;
  color: var(--brick);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 6vw, 6.1rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

h1 {
  max-width: 12ch;
}

h2 {
  max-width: 12ch;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
}

.hero-copy p,
.section-head p,
.campaign-card p,
.game-preview p,
.asset-strip p,
.contact p {
  color: var(--muted);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.16rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.actions a,
.contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  font-weight: 900;
}

.actions a + a {
  background: var(--surface);
  color: var(--ink);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(16, 18, 20, 0.18);
}

.hero-media video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.media-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 18px;
  color: var(--surface);
  background: rgba(7, 11, 16, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.media-note span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.asset-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.asset-strip article {
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.asset-strip article:last-child {
  border-right: 0;
}

.asset-strip span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 950;
}

.section {
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head.light {
  color: var(--surface);
}

.section-head.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.campaign-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 14px;
}

.campaign-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.campaign-card.feature {
  grid-row: span 2;
}

.campaign-card img,
.campaign-card video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.campaign-card.feature img {
  aspect-ratio: 4 / 5;
}

.reel-card video {
  aspect-ratio: 9 / 12;
}

.campaign-card div,
.game-preview div {
  padding: 20px;
}

.interactive {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--night);
}

.interactive-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
}

.game-preview {
  overflow: hidden;
  color: var(--surface);
  background: #0c1527;
  border: 1px solid rgba(105, 216, 255, 0.18);
}

.game-preview video {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.main-game {
  grid-row: span 2;
}

.main-game video {
  aspect-ratio: 16 / 11;
}

.game-preview .label {
  color: #f3cf7a;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.work-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.work-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

.work-grid span,
.work-grid h3 {
  display: block;
  padding-inline: 18px;
}

.work-grid span {
  padding-top: 18px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-grid h3 {
  padding-bottom: 18px;
}

.contact {
  padding: clamp(72px, 9vw, 126px) 0;
  border-top: 1px solid var(--line);
}

.contact h2 {
  max-width: 13ch;
}

.contact p:not(.eyebrow) {
  max-width: 640px;
  font-size: 1.12rem;
}

@media (max-width: 980px) {
  nav {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr;
  }

  .hero,
  .section-head {
    grid-template-columns: 1fr;
  }

  .asset-strip,
  .campaign-grid,
  .interactive-grid,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .campaign-card.feature,
  .main-game {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .brand small {
    display: none;
  }

  h1,
  h2 {
    font-size: clamp(2.55rem, 13.5vw, 4.25rem);
  }

  .asset-strip,
  .campaign-grid,
  .interactive-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .campaign-card.feature,
  .main-game {
    grid-column: auto;
  }

  .media-note {
    position: static;
    width: auto;
  }
}
