@font-face {
  font-family: "Impact Local";
  src: local("Impact");
  font-display: swap;
}

:root {
  --ink: #080806;
  --paper: #f4efe7;
  --bone: #e8d9bd;
  --red: #ef2d12;
  --pink: #ed3b93;
  --yellow: #efc600;
  --blue: #1244b8;
  --oxblood: #4e1412;
  --smoke: #726b60;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  background: rgba(244, 239, 231, 0.9);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(16px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  background: var(--ink);
  color: var(--paper);
  font-family: "Impact Local", Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.06em;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta {
  padding: 0.7rem 0.9rem;
  color: var(--paper);
  background: var(--ink);
}

main {
  overflow: hidden;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.eyebrow,
.machine-label,
.form-note {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
.poster-card strong,
.prompt-text,
.show-card h2 {
  font-family: "Impact Local", Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(4rem, 13vw, 10rem);
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.lede,
.deck-section p,
.show-copy,
.preorder p {
  max-width: 42rem;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero {
  min-height: calc(100vh - 84px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 0.95rem 1.1rem 0.85rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.button.primary {
  color: var(--paper);
  background: var(--ink);
}

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.poster-stack {
  position: relative;
  display: grid;
  min-height: 660px;
  isolation: isolate;
}

.poster-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(78vw, 440px);
  min-height: 560px;
  padding: 1.5rem;
  border: 3px solid var(--ink);
  box-shadow: 18px 18px 0 var(--ink);
}

.poster-card span {
  max-width: 12rem;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.poster-card strong {
  font-size: clamp(5rem, 14vw, 10rem);
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.poster-red {
  left: 6%;
  top: 0;
  z-index: 3;
  background: var(--red);
}

.poster-blue {
  right: 5%;
  top: 9rem;
  z-index: 2;
  width: min(68vw, 350px);
  min-height: 440px;
  color: var(--paper);
  background: var(--blue);
  transform: rotate(5deg);
}

.poster-pink {
  right: 24%;
  bottom: 0;
  z-index: 1;
  width: min(64vw, 330px);
  min-height: 380px;
  background: var(--pink);
  transform: rotate(-4deg);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 2px solid var(--ink);
  background: var(--yellow);
}

.proof-strip p {
  margin: 0;
  padding: 1rem;
  border-right: 2px solid var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.proof-strip p:last-child {
  border-right: 0;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem 0;
}

.about-copy {
  padding-top: 0.5rem;
}

.about-copy p {
  max-width: 42rem;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
}

.deck-section {
  align-items: stretch;
}

.prompt-machine {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  padding: clamp(1.3rem, 4vw, 2.2rem);
  color: var(--paper);
  background: var(--ink);
}

.prompt-text {
  max-width: 13ch;
  margin: 0 0 2rem;
  font-family: "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.prompt-machine .button {
  align-self: flex-start;
  color: var(--paper);
  border-color: var(--paper);
}

.image-feature {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem clamp(4rem, 8vw, 7rem);
}

.image-panel {
  display: block;
  min-height: 100%;
  border: 2px solid var(--ink);
  background: var(--bone);
}

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

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--paper);
  background: var(--oxblood);
}

.feature-copy h2 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.feature-button {
  align-self: flex-start;
  margin-top: 1rem;
  color: var(--paper);
  border-color: var(--paper);
}

.show-section {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
  padding-inline: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
}

.show-card {
  min-height: 460px;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--yellow);
}

.show-card h2 {
  margin-top: 4rem;
  font-size: clamp(4rem, 9vw, 8rem);
}

.show-copy {
  color: var(--bone);
}

.ethos {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 1.25rem;
}

.ethos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 2px solid var(--ink);
}

.ethos article {
  min-height: 330px;
  padding: 1.4rem;
  border-right: 2px solid var(--ink);
}

.ethos article:last-child {
  border-right: 0;
}

.ethos span {
  display: block;
  margin-bottom: 5rem;
  font-weight: 900;
}

.preorder {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 3.5rem) 1.25rem;
  background: var(--pink);
  border: 2px solid var(--ink);
}

.signup-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signup-form div {
  display: flex;
  gap: 0.5rem;
}

input {
  min-width: 0;
  flex: 1;
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 0.95rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.form-note {
  margin: 0.9rem 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem;
  border-top: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .section-grid,
  .about-section,
  .image-feature,
  .preorder {
    grid-template-columns: 1fr;
  }

  .poster-stack {
    min-height: 560px;
  }

  .poster-card {
    width: min(82vw, 380px);
    min-height: 480px;
  }

  .proof-strip,
  .ethos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip p:nth-child(2) {
    border-right: 0;
  }

  .proof-strip p:nth-child(-n + 2) {
    border-bottom: 2px solid var(--ink);
  }

  .ethos article:nth-child(2) {
    border-right: 0;
  }

  .ethos article:last-child {
    grid-column: 1 / -1;
    border-top: 2px solid var(--ink);
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer,
  .signup-form div {
    align-items: stretch;
    flex-direction: column;
  }

  nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .nav-cta {
    grid-column: 1 / -1;
    text-align: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .poster-stack {
    min-height: 500px;
  }

  .poster-card {
    min-height: 380px;
    box-shadow: 10px 10px 0 var(--ink);
  }

  .poster-card strong {
    font-size: clamp(4.5rem, 26vw, 7rem);
  }

  .poster-blue,
  .poster-pink {
    display: none;
  }

  .proof-strip,
  .ethos-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip p,
  .ethos article {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .proof-strip p:last-child,
  .ethos article:last-child {
    border-bottom: 0;
  }
}
