:root {
  --paper: #fbfbfa;
  --paper-soft: #f1f2f1;
  --ink: #070707;
  --muted: #5f6265;
  --cyan: #02a9c7;
  --orange: #ff7415;
  --silver: #d7d9dc;
  --white: #ffffff;
  --shadow: rgba(7, 7, 7, 0.14);
  --line: rgba(7, 7, 7, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 0 calc(100% - 82px), var(--cyan) calc(100% - 82px) calc(100% - 55px), var(--paper) calc(100% - 55px) calc(100% - 46px), var(--orange) calc(100% - 46px) calc(100% - 18px), transparent calc(100% - 18px)),
    radial-gradient(circle at 18% 10%, var(--white), transparent 24rem),
    linear-gradient(180deg, var(--paper), #f6f6f5 60%, #eceeed);
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 7, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(7, 7, 7, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

button {
  font: inherit;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--silver);
}

.brand-mark span {
  width: 24px;
  height: 15px;
  border: 4px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 18px 18px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.06em;
}

.brand-copy span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 900;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav a,
.nav button,
.primary,
.secondary {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav a:hover,
.nav button:hover,
.primary:hover,
.secondary:hover {
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.hero {
  display: grid;
  min-height: min(760px, calc(100vh - 82px));
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  padding: 32px 0 44px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.stamp {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 3px solid var(--ink);
  padding: 8px 12px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--silver);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.stamp::before {
  width: 30px;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan) 0 48%, var(--orange) 52% 100%);
  content: "";
}

h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(56px, 10vw, 136px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.45;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary,
.secondary {
  min-width: 150px;
}

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

.secondary {
  background: var(--paper-soft);
}

.poster {
  position: relative;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 14px 0 var(--ink), 0 26px 60px var(--shadow);
  overflow: hidden;
}

.poster img {
  display: block;
  width: 100%;
  height: min(620px, 68vh);
  min-height: 440px;
  object-fit: cover;
  object-position: center;
}

.poster::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  width: 46px;
  content: "";
  background: linear-gradient(90deg, var(--cyan) 0 45%, var(--white) 45% 58%, var(--orange) 58% 100%);
}

.poster-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  border: 3px solid var(--ink);
  padding: 10px 12px;
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.banner {
  width: min(1360px, calc(100% - 32px));
  margin: 10px auto 0;
  border-block: 5px solid var(--ink);
  background: var(--white);
  overflow: hidden;
}

.banner img {
  display: block;
  width: 100%;
  height: clamp(210px, 31vw, 390px);
  object-fit: cover;
}

.ticker {
  display: flex;
  overflow: hidden;
  margin: 36px 0;
  border-block: 4px solid var(--ink);
  background: var(--ink);
}

.ticker-track {
  display: flex;
  min-width: max-content;
  animation: crawl 17s linear infinite;
}

.ticker span {
  padding: 14px 22px;
  color: var(--white);
  font-size: clamp(20px, 3.2vw, 42px);
  text-transform: uppercase;
  white-space: nowrap;
}

.layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 22px;
  padding: 20px 0 72px;
}

.manifesto,
.notes {
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 9px 9px 0 var(--silver);
}

.manifesto {
  display: grid;
  align-content: space-between;
  gap: 30px;
  padding: clamp(22px, 4vw, 38px);
}

.manifesto h2,
.notes h2,
.final h2 {
  margin: 0;
  font-size: clamp(34px, 5.8vw, 76px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.manifesto p,
.final p {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 3px solid var(--ink);
  padding: 0 12px;
  background: var(--paper-soft);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.notes {
  padding: clamp(20px, 3vw, 30px);
}

.note-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.note {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  border-top: 3px solid var(--ink);
  padding-top: 14px;
}

.note b {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 3px solid var(--ink);
  background: var(--paper-soft);
  font-size: 18px;
}

.note:nth-child(2) b {
  background: var(--cyan);
}

.note:nth-child(3) b {
  background: var(--orange);
}

.note h3 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.note p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.final {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  border: 5px solid var(--ink);
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(2, 169, 199, 0.15), transparent 42%, rgba(255, 116, 21, 0.15)),
    var(--white);
  box-shadow: 12px 12px 0 var(--ink);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 36px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

@keyframes crawl {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 900px) {
  body {
    background:
      linear-gradient(90deg, transparent 0 calc(100% - 32px), var(--cyan) calc(100% - 32px) calc(100% - 22px), var(--orange) calc(100% - 18px) calc(100% - 8px), transparent calc(100% - 8px)),
      linear-gradient(180deg, var(--paper), #eceeed);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero,
  .layout {
    grid-template-columns: 1fr;
  }

  .poster {
    order: -1;
  }

  h1 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .shell,
  .banner,
  .final {
    width: min(100% - 22px, 1180px);
  }

  .nav a,
  .nav button,
  .primary,
  .secondary {
    min-height: 38px;
    padding: 0 10px;
    font-size: 11px;
  }

  .poster img {
    min-height: 340px;
    height: 58vh;
  }

  .poster::after {
    right: 10px;
    width: 32px;
  }

  .note {
    grid-template-columns: 1fr;
  }

  .note b {
    width: 54px;
    height: 54px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
