@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@1,700;1,800&display=swap');

:root {
  --ink: #111111;
  --paper: #f7f3e8;
  --acid: #f3ff63;
  --pink: #ff6daf;
  --blue: #72d9ff;
  --orange: #ff784e;
  --line: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: .8rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .055;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: var(--line);
  position: relative;
  z-index: 50;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: "Archivo Black", sans-serif;
}

.brand-mark {
  width: 46px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: var(--line);
  background: var(--acid);
  font-family: "Archivo Black", sans-serif;
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-name {
  font-size: 1.35rem;
  letter-spacing: -.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.35rem;
  width: 100%;
  height: 3px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: var(--line);
  padding: .65rem 1rem;
  background: var(--pink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  padding: 0;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--ink);
  margin: 6px auto;
  transition: transform .2s ease;
}

.hero {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0 5rem;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  font-size: .78rem;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 4px;
  background: var(--pink);
}

.hero h1,
.section-heading h2,
.manifesto h2,
.newsletter h2 {
  margin: .8rem 0 1.2rem;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.065em;
  line-height: .92;
}

.hero h1 {
  font-size: clamp(4.6rem, 8vw, 8.5rem);
}

em {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  text-transform: none;
  letter-spacing: -.045em;
}

.hero h1 em {
  display: inline-block;
  color: var(--pink);
  transform: rotate(-2deg);
  text-shadow: 4px 4px 0 var(--ink);
  -webkit-text-stroke: 2px var(--ink);
}

.hero-text {
  max-width: 600px;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border: var(--line);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translate(4px, 4px);
  box-shadow: 1px 1px 0 var(--ink);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.text-link {
  font-weight: 800;
  border-bottom: 2px solid var(--ink);
  padding-bottom: .2rem;
}

.text-link span {
  display: inline-block;
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-art {
  min-height: 540px;
  position: relative;
  isolation: isolate;
}

.sheet {
  position: absolute;
  border: var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
}

.sheet-back {
  width: 68%;
  height: 76%;
  right: 2%;
  top: 8%;
  background: var(--blue);
  transform: rotate(8deg);
}

.sheet-back span {
  font-size: 2rem;
}

.sheet-back strong {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .8;
  color: var(--paper);
  -webkit-text-stroke: 2px var(--ink);
}

.sheet-middle {
  width: 72%;
  height: 72%;
  left: 10%;
  top: 15%;
  background: var(--pink);
  transform: rotate(-6deg);
}

.sheet-middle span,
.sheet-middle small {
  font-size: 1rem;
  letter-spacing: .12em;
}

.sheet-middle strong {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: .9;
}

.sheet-front {
  width: 68%;
  height: 70%;
  left: 18%;
  top: 20%;
  background: var(--acid);
  transform: rotate(1.5deg);
  overflow: hidden;
}

.paper-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,17,17,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.15) 1px, transparent 1px);
  background-size: 28px 28px;
}

.sheet-front p {
  position: relative;
  z-index: 2;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: .88;
  transform: rotate(-4deg);
}

.scribble {
  position: absolute;
  right: 10%;
  bottom: 8%;
  z-index: 2;
  font-size: 4rem;
}

.tape {
  position: absolute;
  z-index: 10;
  width: 105px;
  height: 34px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(17,17,17,.35);
}

.tape-one {
  left: 18%;
  top: 16%;
  transform: rotate(-12deg);
}

.tape-two {
  right: 8%;
  bottom: 13%;
  transform: rotate(15deg);
}

.sticker {
  position: absolute;
  z-index: 15;
  width: 100px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  line-height: .9;
}

.sticker-one {
  left: 1%;
  bottom: 11%;
  background: var(--orange);
  transform: rotate(-14deg);
}

.sticker-two {
  right: -2%;
  top: 3%;
  background: var(--paper);
  transform: rotate(12deg);
  box-shadow: 5px 5px 0 var(--ink);
}

.ticker {
  border-top: var(--line);
  border-bottom: var(--line);
  background: var(--ink);
  color: var(--acid);
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  animation: ticker 24s linear infinite;
}

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

.section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 7rem 0;
}

.section-heading h2 {
  font-size: clamp(3rem, 6vw, 6rem);
  max-width: 900px;
}

.section-heading.compact h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.product-card {
  border: var(--line);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translate(-3px, -5px) rotate(-.5deg);
  box-shadow: 11px 13px 0 var(--ink);
}

.card-yellow { background: var(--acid); }
.card-pink { background: var(--pink); }
.card-blue { background: var(--blue); }

.product-visual {
  min-height: 370px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: var(--line);
}

.mini-pad {
  width: 58%;
  min-height: 260px;
  padding: 2rem 1.4rem;
  background: var(--paper);
  border: var(--line);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-5deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.mini-pad small {
  text-transform: uppercase;
  letter-spacing: .1em;
}

.mini-pad strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 2.3rem;
  line-height: .95;
  margin: 1rem 0;
}

.mini-pad span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 700;
}

.mini-print {
  width: 64%;
  min-height: 280px;
  background: var(--ink);
  color: #fff;
  border: var(--line);
  box-shadow: 8px 8px 0 var(--paper);
  transform: rotate(4deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.mini-print span,
.mini-print strong {
  font-family: "Archivo Black", sans-serif;
  line-height: .8;
}

.mini-print span { font-size: 2.4rem; }
.mini-print strong { font-size: 3rem; color: var(--pink); }
.mini-print small {
  margin-top: 1rem;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-style: italic;
}

.visual-cards {
  position: relative;
}

.mini-card {
  position: absolute;
  width: 45%;
  min-height: 180px;
  border: var(--line);
  box-shadow: 6px 6px 0 var(--ink);
  display: grid;
  place-items: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-align: center;
  line-height: .9;
}

.card-a {
  left: 12%;
  top: 18%;
  background: var(--paper);
  transform: rotate(-12deg);
}

.card-b {
  right: 10%;
  top: 28%;
  background: var(--acid);
  transform: rotate(8deg);
}

.card-c {
  left: 27%;
  bottom: 9%;
  background: var(--orange);
  transform: rotate(-2deg);
}

.product-info {
  padding: 1.25rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.product-info p {
  margin: 0 0 .25rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 800;
}

.product-info h3 {
  margin: 0;
  font-size: 1.2rem;
}

.product-info a {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 1.3rem;
  transition: transform .2s ease;
}

.product-info a:hover {
  transform: rotate(8deg);
}

.manifesto {
  background: var(--ink);
  color: #fff;
  min-height: 680px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 5rem;
  padding: 6rem max(1rem, calc((100vw - var(--max)) / 2));
  overflow: hidden;
}

.manifesto-stamp {
  width: min(430px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 5px solid var(--acid);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--acid);
  transform: rotate(-10deg);
  box-shadow: 0 0 0 15px var(--ink), 0 0 0 19px var(--pink);
  position: relative;
}

.manifesto-stamp::before,
.manifesto-stamp::after {
  content: "✦";
  position: absolute;
  font-size: 2.5rem;
}

.manifesto-stamp::before { top: 10%; }
.manifesto-stamp::after { bottom: 10%; }

.manifesto-stamp span,
.manifesto-stamp strong {
  font-family: "Archivo Black", sans-serif;
  line-height: .78;
}

.manifesto-stamp span { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.manifesto-stamp strong { font-size: clamp(3rem, 6vw, 5.8rem); color: var(--pink); }
.manifesto-stamp small { margin-top: 1.2rem; letter-spacing: .25em; font-weight: 800; }

.eyebrow-light span { background: var(--acid); }

.manifesto h2 {
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.manifesto-copy > p:not(.eyebrow) {
  font-size: 1.08rem;
  max-width: 680px;
  color: rgba(255,255,255,.78);
}

.button-light {
  margin-top: 1rem;
  background: var(--acid);
  color: var(--ink);
}

.feature-list {
  margin-top: 3rem;
  border-top: var(--line);
}

.feature-list article {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: var(--line);
}

.feature-list span {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.5rem;
  color: var(--pink);
}

.feature-list h3 {
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
}

.feature-list p {
  margin: 0;
  max-width: 430px;
}

.journal {
  border-top: var(--line);
}

.journal-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.article-card {
  border-top: var(--line);
  padding-top: 1rem;
}

.article-image {
  min-height: 380px;
  border: var(--line);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.article-one .article-image {
  background: var(--orange);
  background-image:
    radial-gradient(circle at 20% 20%, var(--pink) 0 8%, transparent 8.5%),
    radial-gradient(circle at 80% 72%, var(--acid) 0 11%, transparent 11.5%);
}

.article-two .article-image {
  background: var(--blue);
  background-image: repeating-linear-gradient(-35deg, transparent 0 18px, rgba(17,17,17,.12) 19px 21px);
}

.article-image span {
  position: relative;
  z-index: 2;
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: .88;
  transform: rotate(-4deg);
}

.pencil {
  position: absolute;
  right: 7%;
  top: 5%;
  font-size: 8rem;
  transform: rotate(18deg);
}

.article-card > p {
  margin: 1.25rem 0 .35rem;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: #5a5a5a;
}

.article-card h3 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}

.article-card > a {
  font-weight: 800;
}

.newsletter {
  background: var(--acid);
  border-top: var(--line);
  border-bottom: var(--line);
  padding: 6rem max(1rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 5rem;
  align-items: end;
}

.newsletter h2 {
  font-size: clamp(3.2rem, 6vw, 6.3rem);
}

.newsletter-copy > p:last-child {
  max-width: 600px;
  font-size: 1.05rem;
}

.signup-form label {
  display: block;
  font-weight: 800;
  margin-bottom: .65rem;
}

.input-row {
  display: flex;
}

.input-row input {
  min-width: 0;
  flex: 1;
  height: 58px;
  border: var(--line);
  background: var(--paper);
  padding: 0 1rem;
  outline: none;
}

.input-row input:focus {
  box-shadow: inset 0 0 0 3px var(--pink);
}

.input-row button {
  border: var(--line);
  border-left: 0;
  background: var(--ink);
  color: #fff;
  padding: 0 1.25rem;
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  font-size: .82rem;
  font-weight: 600;
}

.site-footer {
  background: var(--paper);
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 5rem 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}

.footer-brand {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: .75rem;
}

.footer-brand strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  letter-spacing: -.05em;
}

.footer-brand p {
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-links h3 {
  margin: 0 0 1rem;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.footer-links a {
  display: block;
  margin: .65rem 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  border-top: var(--line);
  font-size: .85rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-copy {
    padding-top: 2rem;
  }

  .hero-art {
    width: min(640px, 100%);
    margin: 0 auto;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .manifesto,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .manifesto-stamp {
    width: min(360px, 80vw);
    margin: 0 auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: var(--acid);
    flex-direction: column;
    justify-content: center;
    font-family: "Archivo Black", sans-serif;
    font-size: 2rem;
    transform: translateY(-100%);
    transition: transform .28s ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .menu-toggle.active span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 2rem;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .hero-art {
    min-height: 430px;
  }

  .sheet-back {
    width: 72%;
    right: 3%;
  }

  .sheet-middle {
    width: 75%;
    left: 7%;
  }

  .sheet-front {
    width: 73%;
    left: 13%;
  }

  .sticker {
    width: 78px;
    font-size: .8rem;
  }

  .ticker-track {
    font-size: .9rem;
  }

  .section {
    padding: 5rem 0;
  }

  .product-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .product-card:last-child {
    grid-column: auto;
  }

  .product-visual {
    min-height: 320px;
  }

  .manifesto {
    gap: 4rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .manifesto h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .feature-list article {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }

  .feature-list article p {
    grid-column: 2;
  }

  .journal-head {
    display: block;
  }

  .journal-head .text-link {
    display: inline-block;
    margin-top: 1rem;
  }

  .article-image {
    min-height: 300px;
  }

  .newsletter {
    gap: 2rem;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row button {
    min-height: 54px;
    border-left: var(--line);
    border-top: 0;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
  }

  .footer-bottom p {
    margin: 0;
  }
}

@media (max-width: 430px) {
  .hero-art {
    min-height: 370px;
  }

  .sheet-front p {
    font-size: 2.25rem;
  }

  .tape {
    width: 78px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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