* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #bdbdbd;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

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

a:hover {
  color: #fff;
}

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

/* =========================
   HOME PAGE
========================= */

.home-page {
  min-height: 100vh;
  background: #000;
}

.home-container {
  width: 100%;
  min-height: 100vh;
  padding: 72px 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.local-clock {
  width: 100%;
  margin: 0 auto 42px;
  display: block;
  color: #d8d8d8;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(7px, 0.6vw, 9px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-align: center;
  white-space: nowrap;
}

.hero {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

.logo-link {
  display: inline-flex;
  width: fit-content;
  height: fit-content;
  line-height: 0;
}

.logo-video {
  width: min(32vw, 320px);
  height: auto;
  object-fit: contain;
}

.release-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.release-section--first {
  margin-top: 0;
}

.release-section--spaced {
  margin-top: 115px;
}

.release-link {
  display: inline-flex;
  width: fit-content;
  height: fit-content;
  line-height: 0;
}

.release-video {
  width: min(32vw, 360px);
  height: auto;
  object-fit: contain;
}

/* =========================
   RELEASE PAGES
========================= */

.release-page {
  min-height: 100vh;
  background: #000;
}

.release-container {
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cover {
  width: 100%;
  max-width: 430px;
  height: auto;
  margin: 0 auto 22px;
  object-fit: contain;
}

.buttons {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  width: 100%;
  min-height: 38px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #f2f2f2;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.button:hover {
  border-color: #fff;
  color: #fff;
}

/* Share / Purchase: SAME SYSTEM AS MAIN BUTTONS */

.release-actions {
  width: 100%;
  max-width: 430px;
  margin: 12px auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

button.share-button,
button.purchase-button {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  min-height: 38px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

button.share-button:hover {
  border-color: #fff;
  color: #fff;
}

button.purchase-button,
button.purchase-button:disabled {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  min-height: 38px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.22);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Courier New", Courier, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  cursor: not-allowed;
}

/* Release divider */

.release-container > .divider {
  width: 100%;
  max-width: 430px;
  height: 1px;
  margin: 72px auto 34px;
  background: rgba(255, 255, 255, 0.18);
}

/* =========================
   TEXT / LEGAL / DNA PAGES
========================= */

.info-page,
.text-page,
.legal-page {
  min-height: 100vh;
  background: #000;
}

.info-container,
.text-container,
.legal-container,
.page-container,
.dna-container {
  width: min(100%, 760px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 96px 24px 110px;
  color: #bdbdbd;
}

.info-container h1,
.text-container h1,
.legal-container h1,
.page-container h1,
.dna-container h1 {
  margin: 0 0 34px;
  color: #f4f4f4;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-container h2,
.text-container h2,
.legal-container h2,
.page-container h2,
.dna-container h2 {
  margin: 46px 0 16px;
  color: #f4f4f4;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.info-container p,
.text-container p,
.legal-container p,
.page-container p,
.dna-container p {
  margin: 0 0 22px;
  color: #bdbdbd;
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.info-container a,
.text-container a,
.legal-container a,
.page-container a,
.dna-container a {
  color: #d8d8d8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info-container a:hover,
.text-container a:hover,
.legal-container a:hover,
.page-container a:hover,
.dna-container a:hover {
  color: #fff;
}

/* Full-width legal/DNA dividers */

.info-container > .divider,
.text-container > .divider,
.legal-container > .divider,
.page-container > .divider,
.dna-container > .divider {
  width: 100%;
  max-width: none;
  height: 1px;
  margin: 46px 0 34px;
  background: rgba(255, 255, 255, 0.18);
}

/* =========================
   SOCIAL / CONTACT
========================= */

.social-section,
.contact-section {
  width: 100%;
  margin-top: 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-line {
  margin: 0 0 4px;
}

/* =========================
   BACK + FOOTER
========================= */

.back {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.56);
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.back:hover {
  color: #fff;
}

.site-footer {
  width: 100%;
  margin-top: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.24);
}

.disabled-footer-link {
  color: rgba(255, 255, 255, 0.16) !important;
  cursor: not-allowed;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 700px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
    font-size: 10px;
  }

  .home-container {
    padding-top: 56px;
    padding-bottom: 110px;
  }

  .local-clock {
    margin-bottom: 34px;
    font-size: 8px;
    letter-spacing: 0.18em;
  }

  .hero {
    margin-bottom: 74px;
  }

  .logo-video {
    width: min(52vw, 260px);
  }

  .release-video {
    width: min(58vw, 300px);
  }

  .release-section--spaced {
    margin-top: 92px;
  }

  .release-container {
    max-width: 100%;
    padding: 54px 22px 80px;
  }

  .cover {
    width: 100%;
    max-width: 88vw;
    margin-bottom: 20px;
  }

  .buttons {
    width: 100%;
    max-width: 88vw;
    gap: 10px;
  }

  .button {
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .release-actions {
    width: 100%;
    max-width: 88vw;
    margin-top: 10px;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  button.share-button,
  button.purchase-button,
  button.purchase-button:disabled {
    min-height: 44px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .release-container > .divider {
    width: 100%;
    max-width: 88vw;
    margin: 58px auto 30px;
  }

  .info-container,
  .text-container,
  .legal-container,
  .page-container,
  .dna-container {
    width: 100%;
    padding: 74px 24px 90px;
  }

  .info-container p,
  .text-container p,
  .legal-container p,
  .page-container p,
  .dna-container p {
    font-size: 10px;
    line-height: 1.9;
  }

  .info-container > .divider,
  .text-container > .divider,
  .legal-container > .divider,
  .page-container > .divider,
  .dna-container > .divider {
    width: 100%;
    max-width: none;
    margin: 42px 0 30px;
  }

  .site-footer {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 7px;
    letter-spacing: 0.16em;
  }
}