:root {
  --ink: #0b0c0b;
  --paper: #d8d4c6;
  --paper-bright: #f0ecde;
  --acid: #d6ff22;
  --rust: #ce4b24;
  --muted: #8c8c81;
  --line: rgba(240, 236, 222, 0.18);
  --condensed: "Handjet", "Courier New", monospace;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --pixel: "Handjet", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper-bright);
  font-family: var(--mono);
  font-size: 17px;
}

body.modal-open {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(22px, 4vw, 70px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wordmark {
  display: block;
  width: clamp(150px, 14vw, 215px);
}

.wordmark img {
  width: 100%;
  height: auto;
  image-rendering: pixelated;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 14px;
  font-family: var(--pixel);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--acid);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: background 160ms ease, color 160ms ease;
}

.nav-cta:hover {
  background: var(--paper-bright);
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #11140f;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 6, 0.95) 0%, rgba(6, 7, 6, 0.56) 43%, rgba(6, 7, 6, 0.1) 73%),
    linear-gradient(0deg, rgba(6, 7, 6, 0.9) 0%, transparent 38%),
    url("https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/4682020/62a42b241e67f31a9f7a8f6025eea4a82d19c73c/ss_62a42b241e67f31a9f7a8f6025eea4a82d19c73c.1920x1080.jpg?t=1780267592")
      center / cover;
  filter: saturate(0.68) contrast(1.13);
  transform: scale(1.03);
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 72% 42%, transparent 0, rgba(0, 0, 0, 0.15) 36%, rgba(0, 0, 0, 0.6) 100%);
  content: "";
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 8vw 8vw;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  max-width: 860px;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(22px, 7vw, 120px) 100px;
}

.eyebrow,
.section-index {
  color: var(--acid);
  font-family: var(--pixel);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 34px;
  height: 1px;
  margin: 0 14px 3px 0;
  background: currentColor;
  content: "";
}

.hero-title {
  width: min(700px, 72vw);
  min-width: 0;
  align-self: flex-start;
  margin: 24px 0 18px;
}

.hero-title img {
  width: 100%;
  height: auto;
  filter: drop-shadow(10px 12px 0 rgba(0, 0, 0, 0.36));
  image-rendering: pixelated;
}

.hero-copy {
  margin: 32px 0;
  font-family: var(--condensed);
  font-size: clamp(25px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-family: var(--pixel);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--acid);
  color: #10120a;
}

.button-primary:hover {
  background: var(--paper-bright);
}

.steam-mark {
  font-size: 18px;
}

.text-link {
  border-bottom: 1px solid var(--paper-bright);
  padding: 10px 0;
  font-family: var(--pixel);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 7px;
  color: var(--acid);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 4vw, 70px);
  bottom: 34px;
  display: flex;
  gap: 24px;
  font-family: var(--pixel);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta span::before {
  color: var(--acid);
  content: "+ ";
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 30px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 9px;
  font-family: var(--pixel);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--acid);
  content: "";
  animation: scroll 1.7s infinite ease-in-out;
}

@keyframes scroll {
  from { transform: translateY(-110%); }
  to { transform: translateY(240%); }
}

.section {
  padding: clamp(80px, 11vw, 170px) clamp(22px, 7vw, 120px);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(100px, 0.45fr) 2fr;
  gap: 6vw;
  background: var(--paper);
  color: var(--ink);
}

.manifesto .section-index,
.media-section .section-index,
.experiments .section-index {
  color: #5f6058;
}

.kicker {
  margin: 0 0 22px;
  color: var(--rust);
  font-family: var(--pixel);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.display-heading {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(58px, 9vw, 140px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.82;
  text-transform: uppercase;
}

.display-heading span {
  color: transparent;
  -webkit-text-stroke: 1.5px currentColor;
}

.manifesto-detail {
  display: grid;
  max-width: 850px;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  margin: 70px 0 0 auto;
  font-size: 17px;
  line-height: 1.8;
}

.manifesto-detail p {
  margin: 0;
}

.manifesto-detail p:first-child::first-letter {
  float: left;
  margin: 6px 8px 0 0;
  color: var(--rust);
  font-family: var(--condensed);
  font-size: 62px;
  font-weight: 600;
  line-height: 0.65;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #141512;
}

.feature {
  position: relative;
  display: flex;
  min-height: 410px;
  align-items: flex-end;
  gap: 20px;
  overflow: hidden;
  padding: 38px;
  border-right: 1px solid var(--line);
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.feature::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 6, 0.96), rgba(6, 7, 6, 0.08));
  content: "";
  transition: background 300ms ease;
}

.feature::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: inherit;
  content: "";
  filter: grayscale(0.85);
  transition: filter 300ms ease, transform 600ms ease;
}

.feature:hover::after {
  filter: grayscale(0.2);
  transform: scale(1.04);
}

.feature-destruction {
  background-image: url("https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/4682020/0819b826e1d7cf5798250bf58f62f7e9d6221f08/ss_0819b826e1d7cf5798250bf58f62f7e9d6221f08.600x338.jpg?t=1780267592");
}

.feature-combat {
  background-image: url("https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/4682020/a0ffc36201c693c27d51764ad23c52219a066a74/ss_a0ffc36201c693c27d51764ad23c52219a066a74.600x338.jpg?t=1780267592");
}

.feature-companion {
  background-image: url("https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/4682020/4b81dac8b57d491764884aaa5bbc74bf1ddebf62/ss_4b81dac8b57d491764884aaa5bbc74bf1ddebf62.600x338.jpg?t=1780267592");
}

.feature-number {
  align-self: flex-start;
  color: var(--acid);
  font-size: 13px;
}

.feature h3 {
  margin: 0;
  font-family: var(--condensed);
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 0.88;
  text-transform: uppercase;
}

.feature p {
  max-width: 320px;
  margin: 22px 0 0;
  color: #bcbcaf;
  font-size: 15px;
  line-height: 1.7;
}

.media-section {
  background: #090a09;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(48px, 7vw, 100px);
}

.section-heading .section-index {
  margin-bottom: 30px;
}

.section-note {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.trailer-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #171916;
  cursor: pointer;
  text-align: left;
}

.trailer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.1);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 500ms ease;
}

.trailer-card:hover img {
  filter: saturate(1);
  transform: scale(1.025);
}

.trailer-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 6, 5, 0.85), transparent 60%);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(5, 6, 5, 0.25);
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 180ms ease;
}

.trailer-card:hover .play-button {
  background: var(--acid);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid white;
}

.trailer-card:hover .play-button i {
  border-left-color: var(--ink);
}

.trailer-label {
  position: absolute;
  bottom: 32px;
  left: 36px;
  display: grid;
  gap: 4px;
}

.trailer-label small,
.trailer-corner {
  color: var(--acid);
  font-family: var(--pixel);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.trailer-label strong {
  font-family: var(--condensed);
  font-size: clamp(32px, 4vw, 64px);
  font-weight: 500;
  text-transform: uppercase;
}

.trailer-corner {
  position: absolute;
  right: 32px;
  bottom: 32px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.gallery-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #171916;
  cursor: zoom-in;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.5);
  transition: filter 300ms ease, transform 500ms ease;
}

.gallery-item:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.gallery-item span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  background: rgba(5, 6, 5, 0.8);
  font-family: var(--pixel);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.experiments {
  background: var(--paper);
  color: var(--ink);
}

.experiments .display-heading span {
  color: var(--rust);
  -webkit-text-stroke: 0;
}

.experiments .section-note {
  color: #5e5f58;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1px;
  background: rgba(11, 12, 11, 0.25);
}

.project-card {
  background: var(--paper);
}

.project-art {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(214, 255, 34, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 255, 34, 0.08) 1px, transparent 1px),
    #171c11;
  background-size: 30px 30px;
}

.project-art-alt {
  background:
    radial-gradient(circle at center, rgba(206, 75, 36, 0.3), transparent 45%),
    repeating-linear-gradient(45deg, #20120f 0 2px, #130d0b 2px 8px);
}

.project-art-dark {
  background: #121311;
}

.project-glyph {
  color: var(--acid);
  font-family: var(--condensed);
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 600;
  letter-spacing: -0.1em;
  text-shadow: 12px 10px 0 rgba(214, 255, 34, 0.08);
}

.project-art-alt .project-glyph {
  color: var(--rust);
}

.scanline {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 18%;
  background: linear-gradient(transparent, rgba(214, 255, 34, 0.12), transparent);
  animation: scan 4s linear infinite;
}

@keyframes scan {
  to { transform: translateY(700%); }
}

.project-info {
  padding: 28px;
  border-top: 1px solid rgba(11, 12, 11, 0.2);
}

.status {
  color: #66675f;
  font-family: var(--pixel);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-live {
  color: var(--rust);
}

.project-info h3 {
  margin: 16px 0 12px;
  font-family: var(--condensed);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.project-info p {
  min-height: 62px;
  margin: 0 0 28px;
  color: #555750;
  font-size: 14px;
  line-height: 1.7;
}

.project-link {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid rgba(11, 12, 11, 0.25);
  padding: 16px 0 0;
  background: none;
  color: #555750;
  font-family: var(--pixel);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 80vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 100px 22px;
  text-align: center;
  isolation: isolate;
}

.final-backdrop {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(7, 8, 7, 0.64), rgba(7, 8, 7, 0.92)),
    url("https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/4682020/9f0cce3df6f9779d8b8a1b2be162bc58b7f8d075/ss_9f0cce3df6f9779d8b8a1b2be162bc58b7f8d075.1920x1080.jpg?t=1780267592")
      center / cover;
}

.final-cta h2 {
  margin: 20px 0 40px;
  font-family: var(--condensed);
  font-size: clamp(55px, 9vw, 130px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.84;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 32px clamp(22px, 4vw, 70px);
  border-top: 1px solid var(--line);
  color: #77796f;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-mark {
  width: 150px;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a:hover {
  color: var(--acid);
}

dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  background: rgba(6, 7, 6, 0.96);
  color: var(--paper-bright);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 26px;
  width: 45px;
  height: 45px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: white;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 26px;
}

.lightbox figure {
  display: grid;
  height: 100%;
  place-content: center;
  margin: 0;
  padding: 70px 10vw;
}

.lightbox figure img {
  max-width: 80vw;
  max-height: 76vh;
  box-shadow: 0 20px 80px black;
}

.lightbox figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.trailer-modal-content {
  display: flex;
  min-height: 100%;
  max-width: 1000px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin: auto;
  padding: 80px 24px;
}

.trailer-modal h2 {
  margin: 12px 0 24px;
  font-family: var(--condensed);
  font-size: clamp(50px, 8vw, 100px);
  line-height: 0.8;
  text-transform: uppercase;
}

.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 28px;
  overflow: hidden;
  background: #151714;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

.video-placeholder p {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.2);
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 1px;
    background: white;
  }

  .site-nav {
    position: fixed;
    z-index: 2;
    inset: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: rgba(9, 10, 9, 0.98);
    font-family: var(--condensed);
    font-size: 28px;
    transform: translateX(100%);
    transition: transform 350ms ease;
  }

  .site-nav.open {
    transform: none;
  }

  .nav-cta {
    margin-top: 20px;
    font-family: var(--mono);
    font-size: 14px;
  }

  .hero-meta {
    display: none;
  }

  .scroll-cue {
    left: auto;
    right: 25px;
    transform: none;
  }

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

  .feature-band {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 330px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery-wide {
    grid-column: span 1;
  }

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

  .project-art {
    aspect-ratio: 16 / 8;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .hero-content {
    width: 100%;
    justify-content: flex-end;
  }

  .hero-backdrop {
    background:
      linear-gradient(0deg, rgba(6, 7, 6, 0.97) 0%, rgba(6, 7, 6, 0.2) 80%),
      url("https://shared.akamai.steamstatic.com/store_item_assets/steam/apps/4682020/62a42b241e67f31a9f7a8f6025eea4a82d19c73c/ss_62a42b241e67f31a9f7a8f6025eea4a82d19c73c.1920x1080.jpg?t=1780267592")
        63% center / cover;
  }

  .hero-title {
    width: calc(100vw - 68px);
    margin-top: 14px;
  }

  .hero-actions {
    width: calc(100vw - 68px);
    min-width: 0;
    align-self: flex-start;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .text-link {
    align-self: flex-start;
  }

  .manifesto-detail {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .trailer-card {
    aspect-ratio: 4 / 3;
  }

  .play-button {
    width: 62px;
    height: 62px;
  }

  .trailer-label {
    bottom: 18px;
    left: 18px;
  }

  .trailer-corner {
    display: none;
  }

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

  .gallery-item {
    min-height: 220px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    margin-bottom: 0;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 24px;
  }

  .lightbox figure {
    padding: 70px 16px;
  }

  .lightbox figure img {
    max-width: 100%;
  }
}
