:root {
  --ink: #07111c;
  --soft-ink: #526170;
  --paper: #fbfdff;
  --aqua: #38ddff;
  --aqua-deep: #008dbb;
  --pink: #ff8bd6;
  --hot-pink: #ff45b7;
  --lime: #caff48;
  --line: rgba(7, 17, 28, 0.15);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  background: linear-gradient(180deg, #f7fdff 0%, #ffffff 48%, #f4fbff 100%);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0.06;
  background-image: repeating-linear-gradient(0deg, rgba(7, 17, 28, 0.8) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 242, 252, 0.86)),
    linear-gradient(125deg, #e6fbff 0%, #fff4fc 52%, #f6ffe4 100%);
  transition: opacity 420ms ease, visibility 420ms ease;
}

.loader::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.56;
  background:
    radial-gradient(circle at 22% 20%, rgba(56, 221, 255, 0.42), transparent 18rem),
    radial-gradient(circle at 78% 74%, rgba(255, 139, 214, 0.36), transparent 18rem),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.34) 5px 7px);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-panel {
  position: relative;
  width: min(100%, 27rem);
  padding: 1.4rem;
  border: 1px solid rgba(7, 17, 28, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    12px 12px 0 rgba(56, 221, 255, 0.2),
    -12px -12px 0 rgba(255, 139, 214, 0.18);
  backdrop-filter: blur(18px) saturate(1.25);
}

.loader-panel img {
  width: min(100%, 14rem);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 14px rgba(0, 142, 188, 0.16));
}

.loader-panel p {
  margin: 0 0 0.85rem;
  color: var(--soft-ink);
  font-weight: 900;
  text-transform: uppercase;
}

.loader-bar {
  height: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(7, 17, 28, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.loader-bar span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--aqua), var(--pink), var(--lime));
  transition: width 160ms ease;
}

.loader-count {
  display: block;
  margin-top: 0.55rem;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: right;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 max(1rem, calc((100% - var(--max)) / 2));
  border-bottom: 1px solid rgba(7, 17, 28, 0.08);
  background: rgba(250, 254, 255, 0.76);
  backdrop-filter: blur(18px) saturate(1.25);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(0, 83, 112, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 2.05rem;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(0, 142, 188, 0.12));
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
  min-width: 0;
}

.site-nav a {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 0.86rem;
  border: 1px solid rgba(7, 17, 28, 0.32);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(56, 221, 255, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.site-nav a:nth-child(2) {
  box-shadow: 4px 4px 0 rgba(255, 139, 214, 0.24);
}

.site-nav a.is-active {
  border-color: rgba(7, 17, 28, 0.74);
  background: rgba(255, 139, 214, 0.78);
  box-shadow: 5px 5px 0 rgba(202, 255, 72, 0.42);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  border-color: rgba(7, 17, 28, 0.74);
  background: rgba(202, 255, 72, 0.88);
  box-shadow: 5px 5px 0 rgba(255, 139, 214, 0.42);
  transform: translateY(-2px);
}

.cover {
  position: relative;
  min-height: 100svh;
  padding: 6rem max(1rem, calc((100% - var(--max)) / 2)) 1rem;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 246, 253, 0.9)),
    linear-gradient(125deg, #eafcff 0%, #fff4fc 48%, #f7ffe2 100%);
}

.cover-backdrop {
  position: absolute;
  inset: 4.5rem 0 auto;
  height: 52%;
  z-index: -4;
  background: url("assets/hero-bg.png") center / cover no-repeat;
  opacity: 0.72;
  filter: saturate(1.2) contrast(1.04);
}

.cover-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.78)),
    linear-gradient(90deg, rgba(56, 221, 255, 0.18), rgba(255, 139, 214, 0.16));
}

.cover-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(108deg, transparent 0 37%, rgba(255, 255, 255, 0.64) 46%, transparent 58%),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.24) 5px 7px);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.cover-layout {
  min-height: calc(100svh - 7rem);
  display: grid;
  grid-template-columns: minmax(19rem, 0.78fr) minmax(24rem, 1fr);
  align-items: center;
  gap: 3.5rem;
}

.cover-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.issue-label,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--aqua-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover h1 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 8.4rem;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cover h1 span {
  display: block;
}

.cover h1 span:first-child {
  color: rgba(7, 17, 28, 0.05);
  -webkit-text-stroke: 1px rgba(7, 17, 28, 0.55);
}

.cover h1 span:last-child {
  color: var(--ink);
  text-shadow: 0.08em 0.08em 0 rgba(56, 221, 255, 0.35);
}

.dek {
  width: 100%;
  max-width: 30rem;
  margin: 1.4rem 0 0;
  color: var(--soft-ink);
  font-size: 1.12rem;
  line-height: 1.75;
}

.cover-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  margin-top: 1.6rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 8px 8px 0 rgba(56, 221, 255, 0.45);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.cover-link:hover,
.cover-link:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 rgba(255, 139, 214, 0.5);
}

.cover-editorial {
  position: relative;
  z-index: 2;
  min-height: 33rem;
  border: 1px solid rgba(7, 17, 28, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, rgba(56, 221, 255, 0.18), rgba(255, 139, 214, 0.18));
  box-shadow: 18px 18px 0 rgba(255, 139, 214, 0.2);
  overflow: hidden;
  backdrop-filter: blur(7px);
}

.cover-editorial::before {
  content: "";
  position: absolute;
  inset: 2.15rem 0 0;
  background:
    linear-gradient(rgba(7, 17, 28, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 28, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(560px) rotateX(54deg) translateY(24%);
  transform-origin: bottom;
  opacity: 0.32;
}

.cover-window,
.window-bar {
  height: 2.15rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0 0.55rem;
  border-bottom: 1px solid rgba(7, 17, 28, 0.18);
  background: linear-gradient(90deg, rgba(219, 250, 255, 0.9), rgba(255, 238, 251, 0.88));
}

.cover-window span,
.window-bar span {
  margin-right: auto;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.trait-stage {
  position: absolute;
  left: 50%;
  top: 11%;
  width: min(56%, 22rem);
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 28px 50px rgba(0, 85, 120, 0.15),
    0 0 0 8px rgba(255, 255, 255, 0.08);
  transform: translate3d(-50%, 0, 0);
  aspect-ratio: 1;
}

.trait-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  user-select: none;
  pointer-events: none;
  transition: opacity 180ms ease, filter 180ms ease, transform 220ms ease;
}

.trait-layer.is-changing {
  opacity: 0.35;
  filter: blur(3px) saturate(1.4);
  transform: scale(1.015);
}

.trait-bg {
  z-index: 1;
}

.trait-body {
  z-index: 2;
}

.trait-cloth {
  z-index: 3;
}

.trait-eyes {
  z-index: 4;
}

.trait-brows {
  z-index: 5;
}

.trait-mouth {
  z-index: 6;
}

.trait-hair {
  z-index: 7;
}

.shine-line {
  position: absolute;
  inset: -30% auto -30% -32%;
  width: 26%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-18deg);
  animation: masthead-shine 2.8s ease-out infinite;
  mix-blend-mode: screen;
  z-index: 8;
}

.cover-sticker {
  position: absolute;
  z-index: 3;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(7, 17, 28, 0.28);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.trait-button {
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.trait-button:hover,
.trait-button:focus-visible {
  transform: translateY(-2px) rotate(-1deg);
  background: rgba(202, 255, 72, 0.9);
  box-shadow: 7px 7px 0 rgba(56, 221, 255, 0.26);
}

.trait-button.is-clicked {
  background: rgba(255, 139, 214, 0.86);
}

.sticker-bg {
  top: 9%;
  right: 3%;
  background: rgba(255, 255, 255, 0.7);
}

.sticker-body {
  left: 7%;
  top: 27%;
  background: rgba(255, 139, 214, 0.78);
}

.sticker-hair {
  right: 8%;
  top: 38%;
  background: rgba(202, 255, 72, 0.8);
}

.sticker-eyes {
  left: 8%;
  bottom: 29%;
  background: rgba(202, 255, 72, 0.8);
  box-shadow: 7px 7px 0 rgba(7, 17, 28, 0.12);
}

.sticker-brows {
  right: 5%;
  bottom: 30%;
  background: rgba(255, 255, 255, 0.72);
}

.sticker-mouth {
  left: 21%;
  bottom: 13%;
  background: rgba(255, 255, 255, 0.72);
}

.sticker-outfit {
  right: 11%;
  bottom: 12%;
  background: rgba(255, 139, 214, 0.72);
}

.cover-footer {
  position: absolute;
  left: max(1rem, calc((100% - var(--max)) / 2));
  right: max(1rem, calc((100% - var(--max)) / 2));
  bottom: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(7, 17, 28, 0.16);
  border-bottom: 1px solid rgba(7, 17, 28, 0.16);
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
}

.cover-footer span {
  min-height: 3rem;
  display: grid;
  place-items: center;
  padding: 0.45rem 0.7rem;
  color: rgba(7, 17, 28, 0.72);
  font-size: 0.85rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.cover-footer span + span {
  border-left: 1px solid rgba(7, 17, 28, 0.12);
}

.gallery,
.film,
.site-footer {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.gallery {
  padding: 5.4rem 0 4.2rem;
}

.gallery-heading {
  display: grid;
  grid-template-columns: minmax(18rem, 0.95fr) minmax(16rem, 0.75fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.gallery h2,
.film h2 {
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 4rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-heading p,
.film-copy p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.02rem;
  line-height: 1.72;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 0.7rem;
}

.look {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid rgba(7, 17, 28, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: #eef9fb;
  cursor: pointer;
}

.look-large {
  grid-column: span 2;
  grid-row: span 2;
}

.look-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.look::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.62) 46%, transparent 62%);
  transform: translateX(-70%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.look:hover::before,
.look:focus-visible::before {
  opacity: 1;
  transform: translateX(70%);
}

.look img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.look:hover img,
.look:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.02);
}

.look span {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  z-index: 3;
  padding: 0.45rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(7, 17, 28, 0.58);
  font-size: 0.86rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.film {
  display: grid;
  grid-template-columns: minmax(18rem, 0.84fr) minmax(20rem, 1fr);
  gap: 3.5rem;
  align-items: center;
  padding: 2.5rem 0 5rem;
}

.film-window {
  overflow: hidden;
  border: 1px solid rgba(7, 17, 28, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(56, 221, 255, 0.18), rgba(255, 139, 214, 0.16)),
    #e8fbff;
  box-shadow: 16px 16px 0 rgba(56, 221, 255, 0.18);
}

.film-window video {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.film-copy p {
  margin-top: 1rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0 2rem;
  border-top: 1px solid var(--line);
  color: var(--soft-ink);
}

.site-footer span,
.site-footer a {
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--aqua-deep);
}

.look-modal {
  width: min(100% - 2rem, 46rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 28px 70px rgba(7, 17, 28, 0.38);
}

.look-modal::backdrop {
  background: rgba(7, 17, 28, 0.68);
  backdrop-filter: blur(10px);
}

.look-modal img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: linear-gradient(135deg, #e5fbff, #fff2fb);
}

.look-modal p {
  margin: 0;
  padding: 0.85rem 1rem 1rem;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 1.45rem;
  text-transform: uppercase;
}

.modal-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  color: #ffffff;
  background: rgba(7, 17, 28, 0.68);
  font-weight: 900;
  cursor: pointer;
}

.submit-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 244, 252, 0.82)),
    linear-gradient(125deg, #eafcff 0%, #fff5fc 48%, #f8ffe4 100%);
}

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

.submit-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(18rem, 0.72fr);
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1rem;
}

.submit-copy,
.quest-panel,
.submit-card {
  position: relative;
  border: 1px solid rgba(7, 17, 28, 0.16);
  border-radius: 8px;
  overflow: hidden;
}

.submit-copy {
  min-height: 25rem;
  padding: 2rem;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 253, 0.9)),
    linear-gradient(120deg, rgba(56, 221, 255, 0.28), rgba(255, 139, 214, 0.22) 52%, rgba(202, 255, 72, 0.16));
  box-shadow: 18px 18px 0 rgba(255, 139, 214, 0.18);
}

.submit-copy::after,
.quest-panel::after,
.submit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(255, 255, 255, 0.68) 46%, transparent 57%),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(255, 255, 255, 0.26) 5px 7px);
  mix-blend-mode: screen;
}

.submit-copy > *,
.quest-panel > *,
.submit-card > * {
  position: relative;
  z-index: 1;
}

.submit-copy h1 {
  max-width: 46rem;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 5.5rem;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.submit-copy p:not(.section-kicker) {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
  line-height: 1.68;
}

.tweet-draft,
.submit-button,
.submit-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.tweet-draft {
  width: fit-content;
  margin-top: 1.35rem;
  padding: 0.74rem 1rem;
  color: var(--ink);
  background: rgba(202, 255, 72, 0.88);
  box-shadow: 8px 8px 0 rgba(255, 139, 214, 0.46);
}

.tweet-draft:hover,
.tweet-draft:focus-visible,
.submit-button:hover,
.submit-button:focus-visible,
.submit-secondary:hover,
.submit-secondary:focus-visible {
  transform: translateY(-2px);
}

.quest-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.32)),
    linear-gradient(135deg, rgba(56, 221, 255, 0.16), rgba(202, 255, 72, 0.18));
  box-shadow: 12px 12px 0 rgba(56, 221, 255, 0.18);
}

.quest-window-title {
  min-height: 2.35rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  border-bottom: 1px solid rgba(7, 17, 28, 0.16);
  background: linear-gradient(90deg, rgba(219, 250, 255, 0.9), rgba(255, 238, 251, 0.88));
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quest-steps {
  list-style: none;
  margin: 0;
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
}

.quest-steps li {
  min-height: 5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.8rem;
  border: 1px solid rgba(7, 17, 28, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(7, 17, 28, 0.76);
  font-weight: 800;
  line-height: 1.4;
}

.quest-steps span {
  flex: 0 0 3.1rem;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 17, 28, 0.18);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 139, 214, 0.7);
  font-family: "Arial Black", Impact, sans-serif;
}

.quest-steps a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.submit-card {
  padding: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    linear-gradient(135deg, rgba(255, 139, 214, 0.16), rgba(56, 221, 255, 0.14));
  box-shadow: 18px 18px 0 rgba(7, 17, 28, 0.06);
}

.quest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.quest-field {
  display: grid;
  gap: 0.45rem;
}

.quest-field span {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quest-field input {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.82rem 0.9rem;
  border: 1px solid rgba(7, 17, 28, 0.26);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 800;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.quest-field input:focus {
  border-color: rgba(7, 17, 28, 0.78);
  background: #ffffff;
  box-shadow: 5px 5px 0 rgba(56, 221, 255, 0.2);
}

.quest-field input::placeholder {
  color: rgba(82, 97, 112, 0.66);
}

.quest-field-small {
  max-width: 18rem;
}

.quest-submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}

.quest-submit-row p {
  max-width: 34rem;
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.92rem;
  line-height: 1.55;
}

.submit-button {
  padding: 0.78rem 1rem;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 8px 8px 0 rgba(56, 221, 255, 0.42);
}

.submit-button:hover,
.submit-button:focus-visible {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 8px 8px 0 rgba(255, 139, 214, 0.48);
}

.submit-secondary {
  width: fit-content;
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 7px 7px 0 rgba(255, 139, 214, 0.42);
}

.submit-errors,
.submit-success {
  border: 1px solid rgba(7, 17, 28, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.submit-errors {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  color: #7f154d;
}

.submit-errors strong {
  display: block;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.submit-errors ul {
  margin: 0;
  padding-left: 1.2rem;
}

.submit-success {
  min-height: 22rem;
  display: grid;
  align-content: center;
  padding: 2rem;
}

.submit-success h2 {
  max-width: 42rem;
  margin: 0;
  font-family: "Arial Black", Impact, sans-serif;
  font-size: 4.2rem;
  line-height: 0.92;
  text-transform: uppercase;
}

.submit-success p:not(.section-kicker) {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--soft-ink);
  font-size: 1.03rem;
  line-height: 1.65;
}

.bot-field {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes masthead-shine {
  0% {
    left: -32%;
  }

  58%,
  100% {
    left: 118%;
  }
}

@media (max-width: 1040px) {
  .cover h1 {
    font-size: 6.8rem;
  }

  .gallery h2,
  .film h2 {
    font-size: 3.2rem;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 4.5rem;
  }

  .site-header {
    height: 4rem;
  }

  .cover {
    padding-top: 5.2rem;
  }

  .cover-layout,
  .gallery-heading,
  .film {
    grid-template-columns: 1fr;
  }

  .cover-layout {
    align-content: center;
    min-height: calc(100svh - 6rem);
    gap: 1.1rem;
  }

  .cover-copy {
    text-align: center;
  }

  .dek {
    margin-left: auto;
    margin-right: auto;
  }

  .cover-editorial {
    min-height: 23rem;
    width: min(100%, 36rem);
    margin: 0 auto 3.4rem;
  }

  .trait-stage {
    top: 15%;
    width: min(62%, 20rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .submit-hero,
  .quest-form {
    grid-template-columns: 1fr;
  }

  .submit-copy {
    min-height: 21rem;
  }

  .submit-copy h1,
  .submit-success h2 {
    font-size: 3.8rem;
  }

  .quest-field-small {
    max-width: none;
  }
}

@media (max-width: 700px) {
  .cover {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
    padding-inline: 1rem;
  }

  .brand img {
    height: 1.55rem;
  }

  .site-nav {
    display: flex;
    gap: 0.1rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    min-height: 2rem;
    padding: 0.42rem 0.52rem;
    font-size: 0.7rem;
    white-space: nowrap;
    box-shadow: 3px 3px 0 rgba(56, 221, 255, 0.18);
  }

  .cover {
    padding-inline: 1rem;
  }

  .cover h1 {
    font-size: 4.25rem;
  }

  .dek {
    max-width: 20rem;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .cover-editorial {
    min-height: 18rem;
  }

  .trait-stage {
    left: 50%;
    top: 18%;
    width: min(74%, 17rem);
  }

  .cover-sticker {
    font-size: 0.68rem;
    padding: 0.42rem 0.52rem;
  }

  .sticker-bg {
    display: none;
  }

  .sticker-body {
    left: 4%;
    top: 27%;
  }

  .sticker-hair {
    right: 4%;
    top: 37%;
  }

  .sticker-eyes {
    left: 4%;
    bottom: 23%;
  }

  .sticker-brows {
    right: 4%;
    bottom: 25%;
  }

  .sticker-mouth {
    left: 12%;
    bottom: 10%;
  }

  .sticker-outfit {
    right: 8%;
    bottom: 10%;
  }

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

  .cover-footer span {
    min-height: 2.15rem;
    font-size: 0.75rem;
  }

  .cover-footer span + span {
    border-left: 0;
    border-top: 1px solid rgba(7, 17, 28, 0.12);
  }

  .gallery {
    padding-top: 4rem;
  }

  .gallery h2,
  .film h2 {
    font-size: 2.45rem;
  }

  .gallery-grid {
    gap: 0.52rem;
  }

  .look-large {
    grid-column: span 2;
  }

  .look-tall {
    grid-row: span 1;
    aspect-ratio: 1;
  }

  .look span {
    left: 0.38rem;
    right: 0.38rem;
    bottom: 0.38rem;
    font-size: 0.72rem;
  }

  .film {
    padding-bottom: 3.8rem;
    gap: 1.5rem;
  }

  .site-footer {
    display: grid;
  }

  .submit-shell {
    width: min(100% - 2rem, var(--max));
    padding: 5.2rem 0 3.6rem;
  }

  .submit-hero {
    gap: 0.8rem;
  }

  .submit-copy,
  .submit-card {
    padding: 1rem;
  }

  .submit-copy {
    min-height: 18rem;
    box-shadow: 10px 10px 0 rgba(255, 139, 214, 0.16);
  }

  .submit-copy h1,
  .submit-success h2 {
    font-size: 2.85rem;
  }

  .submit-copy p:not(.section-kicker),
  .submit-success p:not(.section-kicker) {
    font-size: 0.95rem;
  }

  .quest-steps {
    padding: 0.8rem;
  }

  .quest-steps li {
    min-height: 4.4rem;
    padding: 0.65rem;
    font-size: 0.9rem;
  }

  .quest-steps span {
    flex-basis: 2.6rem;
  }

  .quest-submit-row {
    display: grid;
  }

  .submit-button,
  .tweet-draft,
  .submit-secondary {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .cover h1 {
    font-size: 3.8rem;
  }
}

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