:root {
  color-scheme: dark;
  --bg: #11100f;
  --panel: #1b1917;
  --panel-soft: #24211d;
  --lime: #a7ff18;
  --lime-deep: #6fa900;
  --cream: #f4eee1;
  --tan: #c99f62;
  --steel: #d7d0c3;
  --muted: #a79f91;
  --line: rgba(244, 238, 225, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(167, 255, 24, 0.16), transparent 28rem),
    radial-gradient(circle at 82% 26%, rgba(201, 159, 98, 0.14), transparent 24rem),
    linear-gradient(135deg, #090908 0%, var(--bg) 46%, #201d18 100%);
  color: var(--cream);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

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

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.topbar,
main,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(17, 16, 15, 0.72);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 5;
  box-shadow: var(--shadow);
}

.brand,
.nav,
.link-stack {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-transform: lowercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: #12110f;
  font-weight: 950;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(167, 255, 24, 0.12);
}

.nav {
  gap: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
}

.nav a:hover {
  color: var(--cream);
  border-color: var(--line);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 22px auto 0;
}

.poster {
  min-height: clamp(620px, 86vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0a09;
  box-shadow: var(--shadow);
}

.poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.26) 42%, rgba(8, 7, 6, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 7, 6, 0.84) 0%, transparent 50%);
}

.poster-media,
.poster-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.poster-media img {
  object-fit: cover;
  transform: scale(1.02);
}

.poster-copy {
  position: relative;
  z-index: 2;
  width: min(690px, 100%);
  padding: clamp(28px, 6vw, 72px);
}

.eyebrow,
.small-label {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(4.2rem, 15vw, 11rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: lowercase;
}

.poster-copy p:last-child,
.drop p,
.crew p {
  color: var(--steel);
  font-size: 1.08rem;
  line-height: 1.7;
}

.launch-deck {
  margin-top: -66px;
  display: grid;
  grid-template-columns: 0.8fr minmax(280px, 0.95fr) 0.72fr;
  align-items: end;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.ticker-card,
.mascot,
.link-stack,
.drop,
.crew article {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(36, 33, 29, 0.94), rgba(18, 17, 15, 0.96));
  box-shadow: var(--shadow);
}

.ticker-card {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
}

.ticker-card strong {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  word-break: break-word;
}

.copy-button,
.button {
  min-height: 46px;
  border: 1px solid rgba(167, 255, 24, 0.34);
  background: rgba(167, 255, 24, 0.08);
  color: var(--cream);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.copy-button {
  width: fit-content;
  padding: 0 18px;
}

.button {
  justify-content: center;
  padding: 0 18px;
}

.button.primary {
  background: var(--lime);
  color: #10100e;
  border-color: var(--lime);
}

.copy-button:hover,
.button:hover {
  transform: translateY(-2px);
  border-color: var(--lime);
}

.mascot {
  margin: 0;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 8%, rgba(167, 255, 24, 0.28), transparent 20rem),
    linear-gradient(145deg, rgba(244, 238, 225, 0.12), rgba(24, 22, 19, 0.98));
}

.mascot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.mascot figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 2px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mascot figcaption strong {
  color: var(--lime);
  text-transform: lowercase;
}

.link-stack {
  min-height: 220px;
  padding: 18px;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.link-stack .button {
  width: 100%;
}

.drop {
  margin-top: 70px;
  padding: clamp(24px, 5vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.7fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.drop h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 6vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.crew {
  margin: 18px 0 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.crew article {
  min-height: 210px;
  padding: 24px;
}

.crew span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(167, 255, 24, 0.1);
  color: var(--lime);
  font-weight: 950;
}

.crew h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

@media (max-width: 860px) {
  .topbar,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .poster {
    min-height: 580px;
  }

  .poster::before {
    background:
      linear-gradient(0deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.4) 68%, rgba(8, 7, 6, 0.12) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.4), transparent);
  }

  .poster-copy {
    padding: 28px;
  }

  .launch-deck,
  .drop,
  .crew {
    grid-template-columns: 1fr;
  }

  .launch-deck {
    margin-top: 18px;
  }

  .ticker-card,
  .link-stack {
    min-height: auto;
    clip-path: none;
  }
}

@media (max-width: 540px) {
  main,
  .topbar,
  .footer {
    width: min(100% - 20px, 1180px);
  }

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

  .nav a {
    padding: 9px 8px;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.5rem);
  }

  .poster {
    min-height: 520px;
  }

  .poster-media img {
    object-position: 50% 50%;
  }
}
