:root {
  color-scheme: dark;
  --bg: #05090b;
  --panel: #0b1215;
  --panel-2: #10191c;
  --text: #f4f6f1;
  --muted: #bac3c1;
  --line: rgba(244, 246, 241, 0.16);
  --accent: #d6a84d;
  --green: #183027;
  --shadow: rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 42px;
  background: rgba(5, 9, 11, 0.88);
  border-bottom: 1px solid rgba(244, 246, 241, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.brand-mark {
  width: 22px;
  height: 30px;
  display: inline-block;
  background:
    linear-gradient(135deg, transparent 47%, var(--text) 49% 53%, transparent 55%),
    radial-gradient(ellipse at 40% 30%, var(--text) 0 48%, transparent 50%);
  transform: rotate(-28deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 15px;
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
}

.store-link,
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: var(--text);
  border: 1px solid rgba(244, 246, 241, 0.42);
  border-radius: 8px;
  background: rgba(5, 9, 11, 0.46);
  box-shadow: 0 12px 30px var(--shadow);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 28px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.04);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 11, 0.88) 0%, rgba(5, 9, 11, 0.58) 34%, rgba(5, 9, 11, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 9, 11, 0.18), rgba(5, 9, 11, 0.24));
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 118px 0 150px;
}

h1,
h2,
p {
  margin: 0;
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 11vw, 144px);
  line-height: 0.92;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-line {
  margin-top: 28px;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.02;
  font-weight: 500;
}

.hero-copy {
  margin-top: 24px;
  max-width: 420px;
  color: rgba(244, 246, 241, 0.9);
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.35;
}

.primary-action {
  margin-top: 34px;
  min-width: 176px;
  font-size: 20px;
  font-weight: 700;
}

.gallery {
  background:
    linear-gradient(180deg, #071014 0%, #05090b 100%);
  padding: 38px 38px 44px;
}

.gallery-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.release-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 38px 84px;
}

.release-info h2,
.plain-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  font-weight: 500;
}

.release-info p,
.plain-hero p,
.policy p,
.support-list p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.info-links {
  display: flex;
  gap: 14px;
}

.info-links a,
.support-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(16, 25, 28, 0.86), rgba(11, 18, 21, 0.86));
}

.info-links a {
  padding: 14px 18px;
  color: var(--text);
}

.plain-page {
  max-width: 980px;
  min-height: calc(100vh - 142px);
  margin: 0 auto;
  padding: 92px 34px 82px;
}

.plain-hero {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.plain-hero a,
.policy a {
  color: var(--accent);
}

.support-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.support-list article {
  padding: 22px;
}

.support-list h2,
.policy h2 {
  font-size: 22px;
  line-height: 1.2;
}

.support-list p {
  font-size: 15px;
  line-height: 1.55;
}

.policy {
  margin-top: 36px;
}

.policy h2 {
  margin-top: 32px;
}

.policy p {
  margin-top: 10px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 70px;
  color: rgba(244, 246, 241, 0.58);
  border-top: 1px solid var(--line);
}

@media (max-width: 780px) {
  .site-header {
    min-height: 64px;
    padding: 0 18px;
  }

  .brand {
    font-size: 24px;
  }

  .nav {
    gap: 14px;
    font-size: 14px;
  }

  .store-link {
    display: none;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 92px 0 120px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 88px);
  }

  .hero-line {
    font-size: clamp(30px, 9vw, 48px);
  }

  .gallery {
    padding: 24px 18px 34px;
  }

  .gallery-inner,
  .release-info,
  .support-list {
    grid-template-columns: 1fr;
  }

  .release-info {
    padding: 52px 22px 64px;
  }

  .info-links {
    flex-wrap: wrap;
  }
}
