:root {
  color-scheme: dark;
  --ink: #f7f3ee;
  --muted: #d7d0c7;
  --paper: #f8f5ef;
  --paper-ink: #202326;
  --line: rgba(255, 255, 255, 0.24);
  --accent: #f0c34f;
  --accent-ink: #1d1c18;
  --green: #7ab887;
  --blue: #7da7c8;
  --red: #c56a5b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--paper-ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 10px clamp(16px, 4vw, 48px);
  color: var(--ink);
  background: rgba(17, 20, 22, 0.74);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 0.94rem;
}

.site-nav a,
.site-footer a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.language-switch {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid var(--line);
}

.language-switch button {
  min-width: 42px;
  min-height: 34px;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"] {
  color: var(--accent-ink);
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 96px clamp(18px, 6vw, 72px) 80px;
  overflow: hidden;
  color: var(--ink);
  background: #111416;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 30%, rgba(125, 167, 200, 0.26), transparent 34%),
    linear-gradient(115deg, rgba(10, 12, 12, 0.94), rgba(22, 24, 24, 0.84) 48%, rgba(12, 14, 15, 0.98));
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  z-index: 2;
}

.hero-visual {
  position: relative;
  z-index: 1;
  perspective: 1200px;
}

.perspective-frame {
  width: min(760px, 100%);
  margin-left: auto;
  padding: 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: -34px 44px 80px rgba(0, 0, 0, 0.46);
  transform: rotateX(9deg) rotateY(-23deg) rotateZ(2deg);
  transform-origin: center;
}

.hero-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  filter: saturate(0.96) contrast(1.04);
}

.release-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  line-height: 0.95;
  font-weight: 850;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2.4vw, 1.45rem);
  line-height: 1.48;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(620px, 100%);
  margin: 24px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-facts div {
  min-height: 76px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-facts dt {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  font-weight: 800;
  text-decoration: none;
}

.primary-link {
  color: var(--accent-ink);
  background: var(--accent);
  border-color: var(--accent);
}

.secondary-link {
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
}

.intro-band {
  background: #202326;
  color: var(--ink);
  border-top: 5px solid var(--accent);
}

.intro-grid {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.intro-grid p {
  min-height: 132px;
  margin: 0;
  padding: 28px;
  display: flex;
  align-items: flex-end;
  background: #202326;
  line-height: 1.45;
}

.intro-grid p:nth-child(1) {
  border-top: 6px solid var(--green);
}

.intro-grid p:nth-child(2) {
  border-top: 6px solid var(--blue);
}

.intro-grid p:nth-child(3) {
  border-top: 6px solid var(--red);
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 80px 0;
}

.section-heading {
  max-width: none;
}

.section-heading p:not(.eyebrow),
.download-band p {
  color: #4e5559;
  font-size: 1.08rem;
  line-height: 1.6;
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 336px) minmax(0, 720px);
  gap: 34px;
  align-items: start;
  justify-content: start;
  margin-top: 36px;
}

.gallery-thumbs {
  display: grid;
  gap: 18px;
}

.gallery-thumb {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9c4ba;
  background: #151718;
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-thumb .thumb-light {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 160ms ease;
}

.gallery-thumb:hover .thumb-light,
.gallery-thumb:focus-within .thumb-light {
  opacity: 1;
}

.media-feature {
  overflow: hidden;
  max-width: 720px;
  padding: 16px 0;
  background: #000;
  display: flex;
  justify-content: flex-start;
}

.media-feature img {
  width: min(100%, 720px);
  max-width: none;
  height: auto;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 64px clamp(18px, 6vw, 72px);
  color: var(--paper-ink);
  background: #ece5d9;
  border-top: 1px solid #c9c4ba;
  border-bottom: 1px solid #c9c4ba;
}

.download-band h2,
.download-band p {
  max-width: 780px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 26px clamp(18px, 6vw, 72px);
  color: var(--ink);
  background: #111416;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .intro-grid,
  .gallery-showcase,
  .download-band {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    order: -1;
    max-width: 620px;
    margin: 0 auto;
  }

  .perspective-frame {
    transform: rotateX(7deg) rotateY(-13deg) rotateZ(1deg);
  }

  .gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .download-actions {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 58px;
    gap: 12px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 88vh;
    padding-top: 88px;
  }

  .hero-scrim {
    background: rgba(10, 12, 12, 0.72);
  }

  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    width: 100%;
  }

  .intro-grid p {
    min-height: auto;
  }
}
