:root {
  color-scheme: light;
  --paper: #fff4d8;
  --ink: #14213d;
  --pink: #ff4f87;
  --orange: #ff7043;
  --yellow: #ffd83d;
  --blue: #56d7f5;
  --line: rgba(20, 33, 61, 0.2);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 92%, rgba(86, 215, 245, 0.38) 0 16vw, transparent 16.2vw),
    var(--paper);
}

.page {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 1600px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2.6rem) clamp(1.2rem, 5vw, 5.5rem);
  overflow: hidden;
}

.masthead,
.footer {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.masthead {
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}

.brand,
.edition,
.status,
.fineprint,
.coming,
.summary,
.signoff {
  margin: 0;
}

.brand,
.edition,
.status,
.fineprint {
  font-size: clamp(0.7rem, 1vw, 0.84rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand strong {
  color: #c91752;
}

.edition {
  white-space: nowrap;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  padding: clamp(3rem, 8vh, 7rem) 0;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: max-content;
  margin-bottom: clamp(1.2rem, 3vw, 2.4rem);
  padding: 0.65rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
}

.status span {
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
}

h1 {
  max-width: 9ch;
  margin: 0;
  font-family: "Arial Black", Arial, Helvetica, sans-serif;
  font-size: clamp(4.2rem, 14.2vw, 13rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.78;
  text-wrap: balance;
  text-transform: uppercase;
}

h1 span {
  display: block;
}

h1 em {
  position: relative;
  color: #c91752;
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: 0.02em;
  bottom: -0.12em;
  left: 0.08em;
  height: 0.09em;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform: rotate(-1.4deg);
}

.message {
  display: grid;
  grid-template-columns: auto minmax(16rem, 30rem);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  width: min(100%, 53rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.coming {
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  white-space: nowrap;
}

.summary {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2.3vw, 1.65rem);
  line-height: 1.25;
}

.shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.shape--sun {
  top: 17%;
  right: clamp(-8rem, -6vw, -2rem);
  width: clamp(13rem, 29vw, 29rem);
  aspect-ratio: 1;
  border: clamp(0.7rem, 1.5vw, 1.4rem) solid var(--ink);
  border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
  background: var(--yellow);
  transform: rotate(12deg);
}

.shape--swoop {
  right: 7%;
  bottom: 6%;
  width: clamp(8rem, 18vw, 17rem);
  aspect-ratio: 1.2;
  border: clamp(1.4rem, 3vw, 2.8rem) solid var(--pink);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.shape--dot {
  top: 37%;
  right: 32%;
  width: clamp(2.6rem, 6vw, 5.5rem);
  aspect-ratio: 1;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
}

.footer {
  align-items: end;
  padding-top: 1rem;
  border-top: 2px solid var(--ink);
}

.signoff {
  max-width: 28ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-style: italic;
  line-height: 1.25;
}

.fineprint {
  text-align: right;
}

::selection {
  background: var(--pink);
  color: var(--ink);
}

@media (max-width: 720px) {
  .page {
    padding-bottom: 1.3rem;
  }

  .hero {
    align-content: center;
    padding: 3.5rem 0 4.5rem;
  }

  h1 {
    font-size: clamp(4rem, 22vw, 7rem);
    line-height: 0.82;
  }

  .message {
    grid-template-columns: 1fr;
    justify-items: start;
    max-width: 24rem;
  }

  .shape--sun {
    top: 23%;
    right: -8rem;
    opacity: 0.82;
  }

  .shape--dot {
    top: 16%;
    right: 8%;
  }

  .shape--swoop {
    right: -4rem;
    bottom: 10%;
  }

  .footer {
    display: grid;
    gap: 1rem;
  }

  .fineprint {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .edition {
    display: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: var(--ink);
  }
}
