:root {
  color-scheme: dark;
  --blue: #078dca;
  --orange: #ff9d00;
  --ink: #050607;
  --paper: #f4f7f8;
  --acid: #b7ff39;
  --muted: rgba(244, 247, 248, 0.68);
  --line: rgba(244, 247, 248, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: #050607;
  color: var(--paper);
  font-family: Inter, system-ui, sans-serif;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px clamp(18px, 4vw, 58px);
  background: rgba(5, 6, 7, 0.86);
  border-bottom: 1px solid rgba(244, 247, 248, 0.1);
}

.brand {
  display: grid;
  width: 62px;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--blue);
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 30px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

nav a {
  transition: color 180ms ease, transform 180ms ease;
}

nav a:hover {
  color: var(--paper);
  transform: translateY(-2px);
}

main {
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 7vw, 120px);
  align-items: center;
  min-height: 92vh;
  padding: 118px clamp(20px, 6vw, 90px) 34px;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 6vw, 90px);
  bottom: 56px;
  z-index: -1;
  color: rgba(244, 247, 248, 0.035);
  content: "HG001";
  font-family: "Archivo Black", Inter, system-ui, sans-serif;
  font-size: clamp(4rem, 14vw, 13rem);
  line-height: 1;
}

.hero-copy {
  max-width: 680px;
  animation: rise-in 650ms ease both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Archivo Black", Inter, system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(5.2rem, 17vw, 15rem);
  line-height: 0.78;
  text-shadow: none;
}

h2 {
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.88;
}

.tagline {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--paper);
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-link,
.ghost-link,
.mail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  font-weight: 900;
  letter-spacing: 0.04em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-link {
  background: var(--orange);
  color: #080808;
}

.ghost-link,
.mail-link {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.primary-link:hover,
.ghost-link:hover,
.mail-link:hover {
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-3px);
}

.release-art {
  position: relative;
  display: grid;
  grid-template-columns: minmax(160px, 360px) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-items: center;
  margin: 0;
  animation: rise-in 700ms 80ms ease both;
}

.release-art img {
  width: min(78%, 360px);
  max-height: 68vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 36px rgba(0, 0, 0, 0.58));
}

figcaption {
  display: grid;
  gap: 4px;
  min-width: 190px;
  padding: 16px;
  border-left: 4px solid var(--orange);
  background: #050607;
}

figcaption span {
  font-size: 1.55rem;
  font-weight: 900;
}

figcaption strong {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.release-panel,
.contact-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
  margin: 0 clamp(20px, 6vw, 90px) 34px;
  padding: clamp(24px, 5vw, 52px) 0;
  border-top: 1px solid var(--line);
}

.release-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
}

.contact-band {
  min-height: 32vh;
  margin-bottom: 0;
  align-items: center;
}

.mail-link {
  width: fit-content;
  max-width: 100%;
  overflow-wrap: anywhere;
  justify-self: end;
  color: var(--paper);
  font-size: clamp(1rem, 2.1vw, 1.55rem);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
}

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

  .brand {
    width: 58px;
  }

  .hero,
  .release-panel,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 104px;
  }

  .release-art {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .release-art img {
    width: min(82%, 330px);
  }

  figcaption {
    min-width: 160px;
    justify-self: start;
  }

  .mail-link {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  nav {
    gap: 12px;
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(5rem, 31vw, 8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
