:root {
  color-scheme: dark;
  --black: #090405;
  --black-soft: #13090a;
  --cream: #fff2d0;
  --cream-muted: #d9c9aa;
  --gold: #f4b62c;
  --gold-strong: #ffd15a;
  --red: #8e1517;
  --red-deep: #4d0709;
  --line: rgba(255, 242, 208, 0.16);
  --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 {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 4, 5, 0.9);
  backdrop-filter: blur(18px);
}

.brand-link,
.nav-links,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand-link {
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand-avatar {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 2px solid rgba(244, 182, 44, 0.8);
  border-radius: 50%;
  box-shadow: 0 10px 28px var(--shadow);
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  color: var(--cream-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-strong);
}

.hero {
  position: relative;
  min-height: clamp(610px, 84svh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.92fr);
  align-items: end;
  gap: clamp(34px, 6vw, 86px);
  isolation: isolate;
  padding: clamp(92px, 12vh, 150px) clamp(20px, 6vw, 90px) clamp(64px, 9vh, 112px);
  background:
    linear-gradient(90deg, rgba(9, 4, 5, 0.98) 0%, rgba(9, 4, 5, 0.86) 42%, rgba(9, 4, 5, 0.5) 100%),
    linear-gradient(0deg, rgba(9, 4, 5, 0.96) 0%, rgba(9, 4, 5, 0) 34%),
    url("assets/youtube-banner.png") center / cover no-repeat;
}

.hero-copy {
  width: min(660px, 100%);
}

.hero .hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-strong);
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 900;
  text-transform: uppercase;
}

p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.96;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 7.5rem);
  text-shadow: 0 14px 30px var(--shadow);
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 7vw, 6.55rem);
}

h2 {
  max-width: 13ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
}

h3 {
  color: var(--gold-strong);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.hero-summary {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--cream);
  font-size: clamp(1.18rem, 2vw, 1.65rem);
  line-height: 1.35;
}

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

.release-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--cream-muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
}

.video-frame {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 242, 208, 0.22);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.56);
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.video-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 4, 5, 0.88), rgba(9, 4, 5, 0.22)),
    linear-gradient(0deg, rgba(9, 4, 5, 0.9), rgba(9, 4, 5, 0));
}

.video-poster-copy {
  position: absolute;
  inset: auto 24px 24px 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: 420px;
}

.video-poster-copy span {
  color: var(--gold-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-poster-copy strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.video-poster-copy em {
  color: var(--cream-muted);
  font-size: 1rem;
  font-style: normal;
  font-weight: 800;
  line-height: 1.4;
}

.instagram-poster {
  border: 1px solid rgba(255, 242, 208, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(244, 182, 44, 0.16), transparent 58%),
    var(--black-soft);
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.56);
}

.instagram-poster img {
  width: min(58%, 360px);
  height: auto;
  margin: clamp(24px, 8vw, 68px) auto;
  object-fit: contain;
  opacity: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 18px 40px var(--shadow);
}

.button-primary {
  background: var(--gold);
  color: #1d0b02;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-strong);
}

.button-secondary {
  border-color: rgba(255, 242, 208, 0.28);
  background: rgba(9, 4, 5, 0.58);
  color: var(--cream);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold-strong);
  color: var(--gold-strong);
}

.intro-band,
.backup-player,
.launch-update,
.release-band,
.section,
.site-footer {
  padding-inline: clamp(20px, 6vw, 90px);
}

.launch-update {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.58fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding-top: clamp(62px, 9vw, 112px);
  padding-bottom: clamp(62px, 9vw, 112px);
  border-block: 1px solid rgba(244, 182, 44, 0.24);
  background:
    linear-gradient(135deg, rgba(142, 21, 23, 0.9), rgba(9, 4, 5, 0.94) 62%),
    var(--black-soft);
}

.launch-copy {
  max-width: 720px;
}

.launch-copy h2 {
  max-width: 12ch;
}

.launch-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--cream);
  font-size: clamp(1.08rem, 1.7vw, 1.38rem);
  line-height: 1.48;
}

.release-points {
  display: grid;
  gap: 14px;
}

.release-points p {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(255, 242, 208, 0.16);
  border-radius: 8px;
  background: rgba(9, 4, 5, 0.5);
  color: var(--cream-muted);
  font-size: 1.02rem;
  line-height: 1.52;
}

.release-points strong {
  color: var(--cream);
}

.backup-player {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  padding-top: clamp(54px, 8vw, 94px);
  padding-bottom: clamp(54px, 8vw, 94px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(9, 4, 5, 0.98), rgba(77, 7, 9, 0.86)),
    var(--black-soft);
}

.backup-copy {
  max-width: 640px;
}

.backup-copy h2 {
  max-width: 13ch;
}

.backup-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--cream-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  line-height: 1.5;
}

.backup-player video {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 242, 208, 0.22);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.disablement-proof {
  margin: 0;
}

.disablement-proof img {
  width: min(100%, 420px);
  margin-inline: auto;
  border: 1px solid rgba(255, 242, 208, 0.18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.disablement-proof figcaption {
  max-width: 420px;
  margin: 12px auto 0;
  color: var(--cream-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.intro-band {
  border-block: 1px solid var(--line);
  background: var(--red-deep);
}

.intro-band p {
  max-width: 1020px;
  margin: 0 auto;
  padding-block: clamp(34px, 6vw, 66px);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 3.3rem);
  line-height: 1.12;
  text-align: center;
}

.section {
  padding-top: clamp(78px, 11vw, 140px);
  padding-bottom: clamp(78px, 11vw, 140px);
  background:
    linear-gradient(180deg, rgba(19, 9, 10, 0) 0%, rgba(19, 9, 10, 0.9) 100%),
    var(--black);
}

.section-tight {
  padding-top: clamp(66px, 9vw, 112px);
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto clamp(34px, 6vw, 64px);
}

.section-summary {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--cream-muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.feature-card {
  min-height: 236px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(142, 21, 23, 0.28), rgba(255, 242, 208, 0.06));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.feature-card p,
.release-band p {
  margin: 20px 0 0;
  color: var(--cream-muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.section-actions {
  max-width: 1120px;
  margin: 28px auto 0;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold-strong);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cream);
}

.merchtent-section {
  background:
    linear-gradient(180deg, rgba(19, 9, 10, 0.92), rgba(9, 4, 5, 0.98)),
    var(--black-soft);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.merch-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(19, 9, 10, 0.95);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.shirt-mockup {
  height: clamp(250px, 24vw, 318px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 209, 90, 0.22), transparent 36%),
    linear-gradient(145deg, rgba(142, 21, 23, 0.38), rgba(255, 242, 208, 0.08));
}

.shirt-mockup-art {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 209, 90, 0.24), transparent 42%),
    linear-gradient(145deg, rgba(27, 10, 8, 0.96), rgba(96, 16, 18, 0.42));
}

.merch-image {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 18px;
  object-fit: contain;
}

.merch-image-contain {
  padding: 18px;
  object-fit: contain;
}

.merch-copy {
  display: grid;
  align-content: start;
  padding: clamp(22px, 3vw, 30px);
}

.merch-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--cream-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.release-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-top: clamp(46px, 8vw, 82px);
  padding-bottom: clamp(46px, 8vw, 82px);
  border-block: 1px solid rgba(244, 182, 44, 0.26);
  background:
    linear-gradient(90deg, rgba(142, 21, 23, 0.92), rgba(19, 9, 10, 0.96)),
    var(--red);
}

.release-band h2 {
  max-width: 15ch;
}

.release-band .button {
  justify-self: end;
}

.channel-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.channel-list a,
.channel-item {
  display: grid;
  gap: 10px;
  min-height: 126px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black-soft);
}

.channel-list a:hover,
.channel-list a:focus-visible {
  border-color: rgba(244, 182, 44, 0.75);
  transform: translateY(-2px);
}

.channel-item-muted {
  opacity: 0.66;
}

.channel-list span,
.channel-item span {
  color: var(--gold-strong);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.channel-list strong,
.channel-item strong {
  align-self: end;
  color: var(--cream);
  font-size: 1rem;
  line-height: 1.25;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 104px;
  border-top: 1px solid var(--line);
  color: var(--cream-muted);
}

.site-footer span {
  color: var(--cream);
  font-weight: 900;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    background-position: 57% center;
  }

  .feature-grid,
  .backup-player,
  .launch-update,
  .merch-grid,
  .support-grid,
  .channel-list,
  .release-band {
    grid-template-columns: 1fr;
  }

  .release-band .button {
    justify-self: start;
  }

  .launch-copy {
    max-width: none;
  }
}

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

  .brand-link {
    font-size: 0.98rem;
  }

  .brand-avatar {
    width: 40px;
    height: 40px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(9, 4, 5, 0.58) 0%, rgba(9, 4, 5, 0.76) 38%, rgba(9, 4, 5, 0.98) 82%),
      url("assets/youtube-banner.png") center 54px / 690px auto no-repeat;
  }

  h1 {
    font-size: clamp(3.05rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .button {
    width: 100%;
  }

  .intro-band p {
    text-align: left;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
