:root {
  --ink: #101014;
  --ink-soft: #232029;
  --paper: #f6f0e7;
  --paper-2: #fffaf2;
  --white: #ffffff;
  --purple: #7c3aed;
  --purple-dark: #3b147c;
  --purple-black: #180c27;
  --lime: #d2ff52;
  --pink: #ff76b9;
  --orange: #ff9e3d;
  --blue: #84d8ff;
  --green: #477f52;
  --line: rgba(16, 16, 20, 0.16);
  --shadow: 0 24px 70px rgba(25, 12, 45, 0.18);
  --radius: 26px;
  --radius-lg: 42px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--purple) var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

figure {
  margin: 0;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(86px, 10vw, 150px) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-family: "Space Mono", monospace;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-title {
  max-width: 900px;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.65rem, 7vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .94;
}

.section-intro {
  max-width: 600px;
  margin: 26px 0 0;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  color: rgba(16, 16, 20, .72);
}

.scribble {
  font-family: "Caveat", cursive;
  font-weight: 700;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(210, 255, 82, .6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 8px rgba(210, 255, 82, 0);
  }
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
  letter-spacing: -.01em;
  box-shadow: 5px 5px 0 var(--ink);
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .22s ease;
}

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

.button:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-lime {
  background: var(--lime);
}

.button-purple {
  border-color: var(--white);
  background: var(--purple);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--white);
}

.button-purple:hover {
  box-shadow: 8px 8px 0 var(--white);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--lime);
}

.button-dark:hover {
  box-shadow: 8px 8px 0 var(--lime);
}

.button-ghost {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.button-arrow {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: .95rem;
  transition: transform .25s var(--ease);
}

.button-lime .button-arrow {
  color: var(--lime);
}

.button-purple .button-arrow,
.button-dark .button-arrow,
.button-ghost .button-arrow {
  background: var(--lime);
  color: var(--ink);
}

.button:hover .button-arrow {
  transform: rotate(-25deg);
}

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 110;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--lime), var(--orange));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  color: var(--white);
  transition: padding .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(246, 240, 231, .9);
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(16, 16, 20, .08);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: #0d1015;
  box-shadow: 0 0 0 4px rgba(210, 255, 82, .12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -.035em;
}

.brand-copy small {
  margin-top: 4px;
  font-family: "Space Mono", monospace;
  font-size: .52rem;
  letter-spacing: .18em;
  opacity: .7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links > a:not(.button) {
  position: relative;
  padding: 10px 0;
  font-size: .86rem;
  font-weight: 750;
}

.nav-links > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s var(--ease);
}

.nav-links > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .button {
  min-height: 44px;
  padding: 10px 17px;
  font-size: .8rem;
}

.site-header.scrolled .button {
  border-color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

.site-header.scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 4px;
  background: currentColor;
  content: "";
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(930px, 100svh);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 132px 0 80px;
  background:
    radial-gradient(circle at var(--spot-x, 78%) var(--spot-y, 18%), rgba(255, 118, 185, .34), transparent 23rem),
    radial-gradient(circle at 10% 82%, rgba(210, 255, 82, .12), transparent 25rem),
    linear-gradient(145deg, #170b27 0%, #41158a 51%, #120a1d 100%);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
  mask-image: radial-gradient(circle at 50% 40%, #000, transparent 82%);
}

.hero::after {
  position: absolute;
  right: -12vw;
  bottom: -21vw;
  width: 48vw;
  height: 48vw;
  border: 2px solid rgba(210, 255, 82, .26);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(210, 255, 82, .035),
    0 0 0 120px rgba(210, 255, 82, .025),
    0 0 0 180px rgba(210, 255, 82, .018);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .72fr);
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
}

.hero-copy {
  padding: 34px 0;
}

.hero .pill {
  color: rgba(255, 255, 255, .86);
}

.hero h1 {
  max-width: 770px;
  margin: 28px 0 24px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.35rem, 7.7vw, 7.2rem);
  font-weight: 850;
  letter-spacing: -.075em;
  line-height: .88;
}

.hero h1 .hero-line {
  display: block;
}

.hero h1 .accent {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--ink);
}

.hero h1 .accent::before {
  position: absolute;
  z-index: -1;
  inset: .04em -.09em .02em;
  border-radius: .14em;
  background: var(--lime);
  content: "";
  transform: rotate(-1.5deg);
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.hero-lead strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: rgba(255, 255, 255, .62);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-note::before {
  width: 35px;
  height: 1px;
  background: var(--pink);
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 435px);
  justify-self: end;
}

.hero-poster {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 10px solid var(--paper-2);
  border-radius: 28px;
  box-shadow: 18px 22px 0 var(--lime), 0 35px 90px rgba(0, 0, 0, .42);
  transform: rotate(2.5deg);
  transition: transform .5s var(--ease);
}

.hero-poster:hover {
  transform: rotate(-.8deg) translateY(-8px);
}

.ig-art {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #d7cfc4;
}

.ig-art > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translateY(-16.71%);
}

.hero-tape {
  position: absolute;
  z-index: 4;
  top: -18px;
  left: 50%;
  width: 124px;
  height: 38px;
  background: rgba(255, 224, 157, .84);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
  transform: translateX(-50%) rotate(-3deg);
  backdrop-filter: blur(3px);
}

.floating-note {
  position: absolute;
  z-index: 5;
  right: -52px;
  bottom: 64px;
  width: 162px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  background: var(--pink);
  color: var(--ink);
  font-family: "Caveat", cursive;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-6deg);
}

.hero-badge {
  position: absolute;
  z-index: 5;
  top: 42px;
  left: -52px;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(8deg);
  animation: drift 5s ease-in-out infinite;
}

@keyframes drift {
  50% {
    transform: rotate(3deg) translateY(-10px);
  }
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-1deg) scale(1.015);
}

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

.ticker-track span {
  padding: 15px 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(.95rem, 2vw, 1.25rem);
  font-weight: 800;
  letter-spacing: -.02em;
  white-space: nowrap;
}

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

/* Manifesto */
.manifesto {
  overflow: hidden;
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
}

.manifesto-art {
  position: relative;
  max-width: 410px;
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 16px 16px 0 var(--purple);
  transform: rotate(-2deg);
}

.manifesto-art .ig-art {
  border-radius: 19px;
}

.manifesto-sticker {
  position: absolute;
  right: -35px;
  bottom: 70px;
  padding: 11px 17px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(8deg);
}

.manifesto-copy blockquote {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .96;
}

.manifesto-copy blockquote em {
  position: relative;
  color: var(--purple);
  font-style: normal;
}

.manifesto-copy p {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(16, 16, 20, .68);
  font-size: 1.08rem;
}

.manifesto-signature {
  display: inline-block;
  margin-top: 22px;
  color: var(--purple);
  font-size: 2.25rem;
  transform: rotate(-4deg);
}

/* Services */
.services {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.services::before {
  position: absolute;
  top: -170px;
  right: -170px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(210, 255, 82, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(210, 255, 82, .03), 0 0 0 96px rgba(210, 255, 82, .02);
  content: "";
}

.services .section-kicker {
  color: var(--lime);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 60px;
}

.services-head p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 1.05rem;
}

.service-list {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, .9fr) minmax(250px, .75fr) 42px;
  align-items: center;
  gap: 24px;
  padding: 31px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: color .25s ease, padding .25s var(--ease);
}

.service-item::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--lime);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .3s var(--ease);
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-item:hover {
  padding-right: 20px;
  padding-left: 20px;
  color: var(--ink);
}

.service-item:hover::before {
  transform: scaleY(1);
}

.service-number {
  font-family: "Space Mono", monospace;
  font-size: .78rem;
  color: var(--pink);
}

.service-item:hover .service-number {
  color: var(--purple);
}

.service-item h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 3.4rem);
  letter-spacing: -.05em;
  line-height: 1;
}

.service-item p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .94rem;
}

.service-item:hover p {
  color: rgba(16, 16, 20, .72);
}

.service-plus {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.25rem;
  transition: transform .3s var(--ease);
}

.service-item:hover .service-plus {
  transform: rotate(90deg);
}

.services-cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 42px;
}

/* Work */
.work {
  overflow: hidden;
  background: var(--paper-2);
}

.work-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.work-head-copy {
  max-width: 820px;
}

.work-controls {
  display: flex;
  gap: 11px;
  flex: 0 0 auto;
}

.round-button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.round-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--purple);
}

.work-rail {
  display: grid;
  grid-auto-columns: minmax(280px, 390px);
  grid-auto-flow: column;
  gap: 28px;
  overflow-x: auto;
  padding: 10px max(20px, calc((100vw - 1180px) / 2)) 40px;
  scroll-padding-inline: max(20px, calc((100vw - 1180px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}

.work-rail::-webkit-scrollbar {
  display: none;
}

.work-card {
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 27px;
  background: var(--white);
  text-align: left;
  box-shadow: 9px 9px 0 var(--ink);
  cursor: zoom-in;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.work-card:nth-child(3n + 1) {
  transform: rotate(-1.5deg);
}

.work-card:nth-child(3n + 2) {
  transform: rotate(1.4deg);
}

.work-card:hover {
  z-index: 2;
  box-shadow: 14px 14px 0 var(--purple);
  transform: rotate(0) translateY(-8px);
}

.work-card .ig-art {
  border-bottom: 2px solid var(--ink);
}

.portfolio-image {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-bottom: 2px solid var(--ink);
  background: #d7cfc4;
}

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

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

.work-meta span {
  display: block;
}

.work-meta strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -.025em;
}

.work-meta small {
  margin-top: 2px;
  color: rgba(16, 16, 20, .56);
  font-size: .73rem;
}

.work-index {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: "Space Mono", monospace;
  font-size: .64rem;
  font-weight: 700;
}

.work-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 30px;
}

.work-bottom p {
  max-width: 560px;
  margin: 0;
  color: rgba(16, 16, 20, .6);
}

/* About */
.about {
  overflow: hidden;
  background: var(--purple);
  color: var(--white);
}

.about::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 118, 185, .36), transparent 20rem),
    linear-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .075) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  content: "";
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.about .section-kicker {
  color: var(--lime);
}

.about-copy .section-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.about-copy .section-title span {
  color: var(--lime);
}

.about-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 1.08rem;
}

.about-copy > p strong {
  color: var(--white);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 35px;
}

.fact {
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(12px);
}

.fact strong {
  display: block;
  color: var(--lime);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  letter-spacing: -.06em;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .7);
  font-size: .75rem;
}

.about-photo {
  position: relative;
  justify-self: end;
  width: min(100%, 405px);
  padding: 13px 13px 58px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: var(--paper-2);
  box-shadow: 16px 16px 0 var(--lime);
  transform: rotate(3deg);
}

.about-photo .ig-art {
  border: 1px solid rgba(16, 16, 20, .2);
  border-radius: 16px;
}

.about-caption {
  position: absolute;
  bottom: 12px;
  left: 22px;
  color: var(--ink);
  font-family: "Caveat", cursive;
  font-size: 1.55rem;
  font-weight: 700;
  transform: rotate(-2deg);
}

.about-flower {
  position: absolute;
  right: -23px;
  bottom: 38px;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--pink);
  color: var(--ink);
  font-size: 2rem;
  box-shadow: 5px 5px 0 var(--ink);
}

/* Process */
.process {
  background: var(--paper);
}

.process-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.process-head p {
  max-width: 380px;
  margin: 0;
  color: rgba(16, 16, 20, .64);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.process-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 2px solid var(--ink);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.process-card:nth-child(2) {
  background: var(--pink);
}

.process-card:nth-child(3) {
  background: var(--lime);
}

.process-card::after {
  position: absolute;
  right: -32px;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 18px rgba(16, 16, 20, .06), 0 0 0 36px rgba(16, 16, 20, .035);
}

.process-number {
  font-family: "Space Mono", monospace;
  font-size: .73rem;
  font-weight: 700;
}

.process-card h3 {
  margin: auto 0 12px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  letter-spacing: -.055em;
  line-height: 1;
}

.process-card p {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin: 0;
  color: rgba(16, 16, 20, .68);
  font-size: .92rem;
}

/* Contact */
.contact {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 118, 185, .35), transparent 24rem),
    linear-gradient(145deg, #180b27, #4d1b9c 58%, #1a0d29);
  color: var(--white);
}

.contact::before {
  position: absolute;
  top: 30px;
  left: 4vw;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(210, 255, 82, .34);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 24px rgba(210, 255, 82, .035);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .7fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.contact .section-kicker {
  color: var(--lime);
}

.contact .section-title {
  font-size: clamp(3.1rem, 7.3vw, 7rem);
}

.contact-copy > p {
  max-width: 580px;
  margin: 28px 0;
  color: rgba(255, 255, 255, .7);
  font-size: 1.08rem;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: .78rem;
  font-weight: 750;
  transition: background .2s ease, transform .2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, .17);
  transform: translateY(-2px);
}

.social-monogram {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: .6rem;
  font-weight: 700;
}

.contact-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 30px;
  background: rgba(255, 255, 255, .1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

.contact-form h3 {
  margin: 0 0 8px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.7rem;
  letter-spacing: -.04em;
}

.contact-form > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .62);
  font-size: .85rem;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.field label {
  font-size: .72rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  background: rgba(15, 8, 24, .44);
  color: var(--white);
  padding: 14px 15px;
  outline: none;
  transition: border .2s ease, background .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field select option {
  background: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, .38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--lime);
  background: rgba(15, 8, 24, .66);
  box-shadow: 0 0 0 4px rgba(210, 255, 82, .11);
}

.contact-form .button {
  width: 100%;
  margin-top: 7px;
}

.form-note {
  margin: 14px 0 0 !important;
  font-family: "Space Mono", monospace;
  font-size: .62rem !important;
  line-height: 1.5;
  text-align: center;
}

.site-footer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: #100817;
  color: rgba(255, 255, 255, .62);
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .73rem;
}

.footer-wrap strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--lime);
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  display: none;
}

.mobile-cta .button {
  min-height: 48px;
  padding: 12px 17px;
  box-shadow: 4px 4px 0 var(--ink);
}

/* Artwork dialog */
.art-dialog {
  width: min(94vw, 590px);
  max-height: 94svh;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: var(--paper-2);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .5);
}

.art-dialog::backdrop {
  background: rgba(10, 6, 14, .85);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  z-index: 5;
  top: 13px;
  right: 13px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
}

.dialog-art {
  border-bottom: 2px solid var(--ink);
}

.dialog-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px 20px;
}

.dialog-copy strong {
  display: block;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.12rem;
}

.dialog-copy small {
  color: rgba(16, 16, 20, .55);
}

.dialog-controls {
  display: flex;
  gap: 9px;
}

.dialog-controls .round-button {
  width: 42px;
  height: 42px;
  box-shadow: 3px 3px 0 var(--ink);
}

/* Reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js .reveal-delay-1 {
  transition-delay: .1s;
}

.js .reveal-delay-2 {
  transition-delay: .2s;
}

/* Coming soon page */
.soon-page {
  min-height: 100svh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 15%, rgba(255, 118, 185, .4), transparent 24rem),
    radial-gradient(circle at 8% 88%, rgba(210, 255, 82, .15), transparent 25rem),
    linear-gradient(145deg, #100818 0%, #44148b 56%, #12081c 100%);
  color: var(--white);
}

.soon-page::before {
  position: fixed;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: radial-gradient(circle at 50% 45%, #000, transparent 85%);
  pointer-events: none;
}

.soon-page::after {
  position: fixed;
  z-index: 0;
  top: -180px;
  right: -150px;
  width: 470px;
  height: 470px;
  border: 2px solid rgba(210, 255, 82, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(210, 255, 82, .03), 0 0 0 130px rgba(210, 255, 82, .018);
  content: "";
  pointer-events: none;
}

.soon-nav {
  position: relative;
  z-index: 4;
  padding: 20px 0;
}

.soon-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.soon-nav .brand-mark {
  width: 56px;
  height: 56px;
}

.soon-location {
  color: rgba(255, 255, 255, .58);
  font-family: "Space Mono", monospace;
  font-size: .66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.soon-main {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - 130px);
  align-items: center;
  padding: 35px 0 75px;
}

.soon-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .63fr);
  align-items: center;
  gap: clamp(55px, 9vw, 120px);
}

.soon-copy h1 {
  max-width: 800px;
  margin: 25px 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(3.7rem, 8.4vw, 8rem);
  font-weight: 850;
  letter-spacing: -.08em;
  line-height: .86;
}

.soon-copy h1 span {
  position: relative;
  display: inline-block;
  z-index: 0;
  color: var(--ink);
}

.soon-copy h1 span::before {
  position: absolute;
  z-index: -1;
  inset: .02em -.08em .03em;
  border-radius: .14em;
  background: var(--lime);
  content: "";
  transform: rotate(-1.5deg);
}

.soon-lead {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.soon-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 31px;
}

.soon-status span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .62);
  font-family: "Space Mono", monospace;
  font-size: .59rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.soon-status span:first-child {
  border-color: var(--lime);
  color: var(--lime);
}

.soon-art-wrap {
  position: relative;
  width: min(100%, 390px);
  justify-self: end;
}

.soon-art-card {
  position: relative;
  z-index: 2;
  padding: 10px 10px 52px;
  border: 2px solid var(--ink);
  border-radius: 27px;
  background: var(--paper-2);
  box-shadow: 17px 17px 0 var(--lime), 0 35px 90px rgba(0, 0, 0, .36);
  transform: rotate(3deg);
}

.soon-art-card .ig-art {
  border: 1px solid rgba(16, 16, 20, .2);
  border-radius: 17px;
}

.soon-art-card figcaption {
  position: absolute;
  bottom: 10px;
  left: 20px;
  color: var(--ink);
  font-family: "Caveat", cursive;
  font-size: 1.45rem;
  font-weight: 700;
}

.soon-note {
  position: absolute;
  z-index: 4;
  right: -48px;
  bottom: 66px;
  padding: 13px 16px;
  border: 2px solid var(--ink);
  background: var(--pink);
  color: var(--ink);
  font-family: "Caveat", cursive;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 5px 5px 0 var(--ink);
  transform: rotate(-8deg);
}

.soon-mini-logo {
  position: absolute;
  z-index: 4;
  top: -36px;
  left: -38px;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: #0d1015;
  box-shadow: 7px 7px 0 var(--pink);
  transform: rotate(-7deg);
}

.soon-mini-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soon-footer {
  position: relative;
  z-index: 3;
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
}

.soon-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.soon-footer a:hover {
  color: var(--lime);
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .hero-grid,
  .manifesto-grid,
  .about-grid,
  .contact-grid,
  .soon-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 800px;
  }

  .hero-visual {
    width: min(78vw, 430px);
    margin-right: 6vw;
    justify-self: center;
  }

  .manifesto-art {
    width: min(78vw, 410px);
    justify-self: center;
  }

  .manifesto-copy {
    max-width: 800px;
  }

  .services-head {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 55px minmax(0, 1fr) 38px;
  }

  .service-item p {
    display: none;
  }

  .about-photo {
    width: min(78vw, 405px);
    justify-self: center;
    order: -1;
  }

  .contact-form {
    max-width: 620px;
  }

  .soon-copy {
    max-width: 820px;
  }

  .soon-art-wrap {
    width: min(76vw, 390px);
    margin-right: 7vw;
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 10px 0;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 100px 28px 38px;
    background:
      radial-gradient(circle at 90% 20%, rgba(255, 118, 185, .34), transparent 18rem),
      var(--purple-black);
    color: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links > a:not(.button) {
    padding: 10px 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: clamp(2.1rem, 10vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
  }

  .nav-links .button {
    min-height: 52px;
    margin-top: 22px;
    padding: 14px 22px;
    border-color: var(--ink) !important;
    background: var(--lime);
    color: var(--ink);
    box-shadow: 5px 5px 0 var(--ink) !important;
  }

  .site-header.menu-active {
    background: transparent;
    color: var(--white);
    box-shadow: none;
  }

  .site-header.menu-active .brand-mark {
    border-color: rgba(255, 255, 255, .3);
  }

  .site-header.menu-active .menu-toggle {
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .1);
  }

  .hero {
    padding: 116px 0 78px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.25rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    width: min(80vw, 370px);
    margin-top: 12px;
    margin-right: 2vw;
  }

  .floating-note {
    right: -22px;
  }

  .hero-badge {
    left: -24px;
    width: 92px;
    height: 92px;
  }

  .section-title,
  .about-copy .section-title,
  .contact .section-title {
    font-size: clamp(2.75rem, 13.5vw, 4.65rem);
  }

  .manifesto-grid {
    gap: 64px;
  }

  .manifesto-art {
    width: min(80vw, 360px);
  }

  .manifesto-sticker {
    right: -18px;
  }

  .manifesto-copy blockquote {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .service-item {
    grid-template-columns: 42px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 25px 2px;
  }

  .service-item h3 {
    font-size: clamp(1.55rem, 8vw, 2.25rem);
  }

  .services-cta .button {
    width: 100%;
  }

  .work-head,
  .process-head,
  .work-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-head {
    display: flex;
  }

  .work-controls {
    align-self: flex-end;
  }

  .work-rail {
    grid-auto-columns: minmax(260px, 82vw);
    gap: 19px;
  }

  .work-bottom .button {
    width: 100%;
  }

  .about-facts {
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
  }

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

  .process-card {
    min-height: 270px;
  }

  .contact-form {
    padding: 23px 18px;
  }

  .footer-wrap,
  .soon-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: block;
  }

  .soon-nav .brand-copy small {
    display: block;
  }

  .soon-location {
    display: none;
  }

  .soon-main {
    padding-top: 45px;
  }

  .soon-copy h1 {
    font-size: clamp(3.45rem, 17vw, 5.7rem);
  }

  .soon-actions .button {
    width: 100%;
  }

  .soon-art-wrap {
    width: min(78vw, 350px);
    margin-top: 20px;
    margin-right: 3vw;
  }

  .soon-note {
    right: -22px;
  }

  .soon-mini-logo {
    left: -24px;
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 390px) {
  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-copy strong {
    font-size: .92rem;
  }

  .hero-badge,
  .soon-mini-logo {
    display: none;
  }

  .floating-note,
  .soon-note {
    right: -8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Kinetic layer for the full site */
.hero-word-loop {
  display: flex;
  align-items: center;
  gap: .35em;
  min-height: 43px;
  margin-top: 23px;
  color: rgba(255, 255, 255, .62);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 650;
  letter-spacing: -.03em;
}

.rotating-word {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 2px 11px 4px;
  border-radius: 10px;
  background: var(--pink);
  color: var(--ink);
  transform: rotate(-1.5deg);
  transition: opacity .3s ease, transform .45s var(--ease), filter .3s ease;
}

.rotating-word.word-out {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(-18px) rotate(4deg) scale(.9);
}

.rotating-word.word-in {
  animation: wordArrive .55s var(--ease);
}

.hero-logo-poster {
  animation: heroLogoFloat 6s ease-in-out infinite;
}

.hero-tape {
  animation: tapeFlutter 5s ease-in-out infinite;
}

.hero-float-word {
  position: absolute;
  z-index: 7;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-float-1 {
  top: 15%;
  right: -55px;
  background: var(--lime);
  animation: heroChipOne 4.6s ease-in-out infinite;
}

.hero-float-2 {
  bottom: 26%;
  left: -70px;
  background: var(--pink);
  animation: heroChipTwo 5.2s ease-in-out infinite;
}

.hero-float-3 {
  right: -40px;
  bottom: 10%;
  background: var(--blue);
  animation: heroChipThree 4.9s ease-in-out infinite;
}

.manifesto-art {
  animation: manifestoBreathe 8s ease-in-out infinite;
}

.work-card {
  animation: portfolioHover 8s ease-in-out infinite;
  animation-delay: calc(var(--card-order, 0) * -.7s);
}

.work-card:nth-child(2) {
  --card-order: 1;
}

.work-card:nth-child(3) {
  --card-order: 2;
}

.work-card:nth-child(4) {
  --card-order: 3;
}

.work-card:nth-child(5) {
  --card-order: 4;
}

.work-card:nth-child(6) {
  --card-order: 5;
}

.work-card:nth-child(7) {
  --card-order: 6;
}

.work-card:hover,
.work-card:focus-visible {
  animation-play-state: paused;
}

.reviews {
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 118, 185, .42), transparent 22rem),
    var(--blue);
}

.reviews[hidden] {
  display: none;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
  align-items: end;
  gap: 45px;
  margin-bottom: 48px;
}

.reviews-head > p {
  margin: 0;
  color: rgba(16, 16, 20, .68);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.review-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 26px;
  background: var(--paper-2);
  box-shadow: 8px 8px 0 var(--ink);
  animation: reviewEnter .7s var(--ease) both, reviewDrift 7s ease-in-out infinite 1s;
}

.review-card:nth-child(even) {
  background: var(--lime);
  transform: rotate(1deg);
}

.review-stars {
  color: var(--purple);
  font-size: 1.05rem;
  letter-spacing: .18em;
}

.review-card blockquote {
  margin: 28px 0;
  font-family: "Caveat", cursive;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.22;
}

.review-author {
  display: grid;
  font-size: .82rem;
}

.review-author strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
}

.review-author span {
  color: rgba(16, 16, 20, .58);
}

@keyframes wordArrive {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px) rotate(-5deg) scale(.9);
  }
}

@keyframes heroLogoFloat {
  0%,
  100% {
    transform: rotate(2.5deg) translateY(0);
  }
  50% {
    transform: rotate(.5deg) translateY(-12px);
  }
}

@keyframes tapeFlutter {
  0%,
  100% {
    transform: translateX(-50%) rotate(-3deg);
  }
  50% {
    transform: translateX(-50%) rotate(1deg) translateY(-3px);
  }
}

@keyframes heroChipOne {
  50% {
    transform: rotate(6deg) translate(8px, -11px);
  }
}

@keyframes heroChipTwo {
  50% {
    transform: rotate(-6deg) translate(-5px, 12px);
  }
}

@keyframes heroChipThree {
  50% {
    transform: rotate(5deg) translate(8px, 7px);
  }
}

@keyframes manifestoBreathe {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }
  50% {
    transform: rotate(.5deg) translateY(-9px);
  }
}

@keyframes portfolioHover {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}

@keyframes reviewEnter {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(-2deg);
  }
}

@keyframes reviewDrift {
  50% {
    translate: 0 -6px;
  }
}

/* Phone-first rebuild for the construction page */
@media (max-width: 760px) {
  .soon-page {
    min-height: 100svh;
    overflow-x: hidden;
  }

  .soon-nav {
    padding: 10px 0 4px;
  }

  .soon-nav-inner {
    min-height: 58px;
  }

  .soon-nav .brand {
    gap: 9px;
  }

  .soon-nav .brand-copy strong {
    font-size: .9rem;
  }

  .soon-nav .brand-copy small {
    display: none;
  }

  .soon-main {
    min-height: auto;
    padding: 28px 0 62px;
  }

  .soon-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

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

  .soon-copy .pill {
    margin-inline: auto;
  }

  .soon-copy h1 {
    max-width: 10ch;
    margin: 22px auto 20px;
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: .87;
  }

  .soon-lead {
    max-width: 34rem;
    margin-inline: auto;
    font-size: .98rem;
  }

  .soon-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 25px;
  }

  .soon-actions .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: .82rem;
  }

  .soon-status {
    justify-content: center;
    margin-top: 23px;
  }

  .soon-status span {
    padding: 7px 9px;
    font-size: .53rem;
  }

  .soon-art-wrap {
    width: min(76vw, 315px);
    margin: 0 auto 20px;
    justify-self: center;
  }

  .soon-art-card {
    padding: 7px 7px 45px;
    border-radius: 22px;
    box-shadow: 11px 12px 0 var(--lime), 0 25px 65px rgba(0, 0, 0, .4);
  }

  .soon-art-card figcaption {
    bottom: 8px;
    left: 15px;
    font-size: 1.08rem;
  }

  .soon-orbit {
    inset: -20px;
  }

  .soon-post-card {
    display: none;
  }

  .soon-note {
    right: -13px;
    bottom: 55px;
    padding: 9px 11px;
    font-size: 1rem;
  }

  .soon-float-word {
    padding: 6px 9px;
    font-size: .5rem;
  }

  .soon-float-word.float-1 {
    top: 9%;
    right: -17px;
  }

  .soon-float-word.float-2 {
    top: 48%;
    left: -24px;
  }

  .soon-float-word.float-3 {
    right: -18px;
    bottom: 20%;
  }

  .soon-spark.spark-2,
  .soon-spark.spark-4,
  .soon-spark.spark-5 {
    display: none;
  }

  .soon-marquee-track span {
    padding: 10px 14px;
    font-size: .78rem;
  }

  .soon-footer {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .soon-footer-inner {
    align-items: center;
    text-align: center;
  }

  .hero {
    padding-top: 106px;
  }

  .hero-grid {
    gap: 64px;
  }

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

  .hero-word-loop {
    min-height: 38px;
    font-size: 1.06rem;
  }

  .hero-visual {
    width: min(74vw, 315px);
    margin: 0 auto;
  }

  .hero-poster {
    border-width: 7px;
    border-radius: 23px;
    box-shadow: 11px 13px 0 var(--pink), 0 28px 65px rgba(0, 0, 0, .42);
  }

  .hero-float-word {
    padding: 6px 9px;
    font-size: .49rem;
  }

  .hero-float-1 {
    right: -20px;
  }

  .hero-float-2 {
    left: -22px;
  }

  .hero-float-3 {
    right: -18px;
  }

  .reviews-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

@media (max-width: 430px) {
  .soon-copy h1 {
    font-size: clamp(2.72rem, 13.4vw, 3.6rem);
  }

  .soon-art-wrap {
    width: min(72vw, 285px);
  }

  .soon-float-word.float-2,
  .hero-float-2 {
    display: none;
  }

  .floating-note {
    right: -10px;
    width: 132px;
    font-size: 1.14rem;
  }

  .hero-badge {
    left: -12px;
    width: 78px;
    height: 78px;
    font-size: .57rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-poster,
  .hero-tape,
  .hero-float-word,
  .manifesto-art,
  .work-card,
  .review-card {
    animation-duration: 10s !important;
    animation-iteration-count: infinite !important;
  }
}

/* Brand presence + lively construction page */
.brand-mark {
  width: 52px;
  height: 64px;
  border-radius: 15px;
}

.brand-mark img {
  object-fit: cover;
  object-position: center;
}

.logo-art {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--purple-black);
}

.logo-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-poster {
  border-color: rgba(255, 255, 255, .94);
  background: var(--purple-black);
  box-shadow: 18px 22px 0 var(--pink), 0 35px 90px rgba(0, 0, 0, .48);
}

.contact-brand-stamp {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  padding: 9px 17px 9px 9px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}

.contact-brand-stamp img {
  width: 53px;
  height: 66px;
  border-radius: 11px;
  object-fit: cover;
  box-shadow: 3px 3px 0 var(--lime);
}

.contact-brand-stamp span {
  display: grid;
}

.contact-brand-stamp strong {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .9rem;
}

.contact-brand-stamp small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .58);
  font-size: .68rem;
}

.soon-page {
  --soon-x: 78%;
  --soon-y: 15%;
  background:
    radial-gradient(circle at var(--soon-x) var(--soon-y), rgba(255, 118, 185, .48), transparent 21rem),
    radial-gradient(circle at 8% 88%, rgba(210, 255, 82, .17), transparent 24rem),
    linear-gradient(145deg, #100818 0%, #4d149c 54%, #12081c 100%);
  background-size: 115% 115%, 115% 115%, 100% 100%;
  animation: soonAurora 10s ease-in-out infinite alternate;
}

.soon-page::before {
  animation: soonGridMove 20s linear infinite;
}

.soon-page::after {
  border-style: dashed;
  animation: soonRingTurn 30s linear infinite;
}

.soon-nav .brand-mark {
  width: 58px;
  height: 72px;
  border-radius: 17px;
  box-shadow: 0 0 0 5px rgba(210, 255, 82, .12), 0 12px 28px rgba(0, 0, 0, .24);
}

.soon-main {
  min-height: calc(100svh - 220px);
  padding: 20px 0 58px;
}

.soon-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .62fr);
  gap: clamp(58px, 7vw, 105px);
}

.soon-copy h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  line-height: .88;
}

.soon-lead {
  max-width: 560px;
}

.soon-art-wrap {
  width: min(100%, 380px);
}

.soon-art-card {
  padding: 10px 10px 56px;
  box-shadow: 18px 18px 0 var(--lime), 0 35px 100px rgba(0, 0, 0, .46);
  animation: soonCardFloat 5.5s ease-in-out infinite;
}

.soon-logo-art {
  border: 1px solid rgba(16, 16, 20, .2);
  border-radius: 17px;
}

.soon-art-card figcaption {
  font-size: 1.55rem;
}

.soon-note {
  right: -44px;
  bottom: 82px;
  animation: soonNoteBob 3.8s ease-in-out infinite;
}

.soon-orbit {
  position: absolute;
  z-index: 0;
  inset: -44px;
  border: 1px dashed rgba(255, 255, 255, .42);
  border-radius: 50%;
  animation: soonRingTurn 24s linear infinite reverse;
}

.soon-orbit::before,
.soon-orbit::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.soon-orbit::before {
  top: 33px;
  right: 38px;
  width: 18px;
  height: 18px;
  background: var(--lime);
  box-shadow: 0 0 28px rgba(210, 255, 82, .85);
}

.soon-orbit::after {
  bottom: 31px;
  left: 48px;
  width: 13px;
  height: 13px;
  background: var(--pink);
  box-shadow: 0 0 24px rgba(255, 118, 185, .85);
}

.soon-post-card {
  position: absolute;
  z-index: 5;
  bottom: -40px;
  left: -84px;
  overflow: hidden;
  width: 122px;
  padding: 6px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper-2);
  box-shadow: 7px 7px 0 var(--pink);
  transform: rotate(-8deg);
  animation: soonPostFloat 4.8s ease-in-out infinite;
}

.soon-post-card .ig-art {
  border-radius: 11px;
}

.soon-float-word {
  position: absolute;
  z-index: 6;
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: "Space Mono", monospace;
  font-size: .61rem;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 4px 4px 0 var(--ink);
}

.soon-float-word.float-1 {
  top: 11%;
  right: -72px;
  background: var(--orange);
  transform: rotate(8deg);
  animation: soonChipOne 4.2s ease-in-out infinite;
}

.soon-float-word.float-2 {
  top: 45%;
  left: -92px;
  background: var(--lime);
  transform: rotate(-8deg);
  animation: soonChipTwo 5s ease-in-out infinite;
}

.soon-float-word.float-3 {
  right: -68px;
  bottom: 23%;
  background: var(--blue);
  transform: rotate(-5deg);
  animation: soonChipThree 4.6s ease-in-out infinite;
}

.soon-status span {
  animation: soonChipGlow 4s ease-in-out infinite;
}

.soon-status span:nth-child(2) {
  animation-delay: -.8s;
}

.soon-status span:nth-child(3) {
  animation-delay: -1.6s;
}

.soon-status span:nth-child(4) {
  animation-delay: -2.4s;
}

.soon-spark {
  position: fixed;
  z-index: 1;
  color: var(--lime);
  font-size: clamp(1.2rem, 2.6vw, 2.4rem);
  pointer-events: none;
  filter: drop-shadow(0 0 12px rgba(210, 255, 82, .45));
  animation: soonSpark 5s ease-in-out infinite;
}

.soon-spark.spark-1 {
  top: 18%;
  left: 4%;
}

.soon-spark.spark-2 {
  top: 31%;
  right: 5%;
  color: var(--pink);
  animation-delay: -1s;
}

.soon-spark.spark-3 {
  bottom: 24%;
  left: 8%;
  color: var(--orange);
  animation-delay: -2s;
}

.soon-spark.spark-4 {
  right: 38%;
  bottom: 10%;
  color: var(--blue);
  animation-delay: -3s;
}

.soon-spark.spark-5 {
  top: 10%;
  left: 48%;
  color: var(--white);
  animation-delay: -4s;
}

.soon-marquee {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-.65deg) scale(1.01);
}

.soon-marquee-track {
  display: flex;
  width: max-content;
  animation: ticker 20s linear infinite;
}

.soon-marquee-track span {
  padding: 12px 18px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
}

@keyframes soonAurora {
  to {
    background-position: 8% 5%, -6% -5%, center;
  }
}

@keyframes soonGridMove {
  to {
    background-position: 54px 54px, 54px 54px;
  }
}

@keyframes soonRingTurn {
  to {
    transform: rotate(360deg);
  }
}

@keyframes soonCardFloat {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }
  50% {
    transform: rotate(1.2deg) translateY(-13px);
  }
}

@keyframes soonPostFloat {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-12px);
  }
}

@keyframes soonNoteBob {
  0%,
  100% {
    transform: rotate(-8deg) translateY(0);
  }
  50% {
    transform: rotate(-4deg) translateY(-10px);
  }
}

@keyframes soonChipOne {
  50% {
    transform: rotate(3deg) translate(7px, -12px);
  }
}

@keyframes soonChipTwo {
  50% {
    transform: rotate(-3deg) translate(-5px, 11px);
  }
}

@keyframes soonChipThree {
  50% {
    transform: rotate(2deg) translate(8px, 9px);
  }
}

@keyframes soonChipGlow {
  50% {
    border-color: var(--lime);
    color: var(--white);
    background: rgba(210, 255, 82, .08);
  }
}

@keyframes soonSpark {
  0%,
  100% {
    opacity: .42;
    transform: translateY(0) rotate(0) scale(.78);
  }
  50% {
    opacity: 1;
    transform: translateY(-16px) rotate(90deg) scale(1.18);
  }
}

@media (max-width: 960px) {
  .soon-main {
    min-height: auto;
  }

  .soon-art-wrap {
    width: min(74vw, 410px);
    margin-top: 45px;
  }
}

@media (max-width: 760px) {
  .brand-mark {
    width: 46px;
    height: 57px;
    border-radius: 13px;
  }

  .soon-nav .brand-mark {
    width: 48px;
    height: 60px;
    border-radius: 14px;
  }

  .soon-art-wrap {
    width: min(76vw, 360px);
    margin-right: 2vw;
  }

  .soon-post-card {
    bottom: -31px;
    left: -25px;
    width: 112px;
  }

  .soon-note {
    right: -17px;
    bottom: 66px;
  }

  .soon-float-word.float-1 {
    right: -18px;
  }

  .soon-float-word.float-2 {
    left: -25px;
  }

  .soon-float-word.float-3 {
    right: -20px;
  }

  .soon-spark.spark-5 {
    display: none;
  }
}

@media (max-width: 390px) {
  .soon-post-card,
  .soon-float-word.float-2 {
    display: none;
  }

  .soon-orbit {
    inset: -25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon-page {
    animation-duration: 18s !important;
    animation-iteration-count: infinite !important;
  }

  .soon-page::before,
  .soon-page::after,
  .soon-orbit,
  .soon-marquee-track {
    animation-duration: 35s !important;
    animation-iteration-count: infinite !important;
  }

  .soon-art-card,
  .soon-post-card,
  .soon-note,
  .soon-float-word,
  .soon-spark,
  .soon-status span {
    animation-duration: 8s !important;
    animation-iteration-count: infinite !important;
  }
}

[hidden] {
  display: none !important;
}

.experience {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(181, 255, 58, .16), transparent 25rem),
    radial-gradient(circle at 90% 80%, rgba(255, 118, 185, .2), transparent 28rem),
    var(--ink);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: clamp(45px, 7vw, 96px);
  align-items: start;
}

.experience-intro {
  position: sticky;
  top: 120px;
}

.experience-intro .section-kicker {
  color: var(--lime);
}

.experience-intro > p:last-child {
  max-width: 38rem;
  color: rgba(255, 255, 255, .72);
}

.experience-grid {
  display: grid;
  gap: 18px;
}

.experience-card {
  position: relative;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 28px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 55px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), border-color .35s var(--ease), background .35s var(--ease);
}

.experience-card:nth-child(even) {
  margin-left: clamp(0px, 5vw, 60px);
}

.experience-card:hover {
  transform: translateY(-7px) rotate(-.5deg);
  border-color: var(--lime);
  background: rgba(255, 255, 255, .12);
}

.experience-card > span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-family: "Space Mono", monospace;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.experience-card h3 {
  margin: 0 0 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.experience-card p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
}

.collection-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .55fr);
  gap: 45px;
  align-items: end;
  margin-bottom: 48px;
}

.collection-head > p {
  margin: 0;
  color: rgba(16, 16, 20, .64);
}

.portfolio-showcase {
  background:
    radial-gradient(circle at 92% 8%, rgba(181, 255, 58, .52), transparent 26rem),
    var(--paper-2);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-grid .work-card {
  width: 100%;
  min-width: 0;
}

.work-description {
  display: block;
  padding: 0 19px 20px;
  color: rgba(16, 16, 20, .66);
  font-size: .82rem;
  line-height: 1.5;
}

.templates {
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 118, 185, .3), transparent 26rem),
    linear-gradient(135deg, #2a0c4a, var(--purple));
}

.templates .section-kicker,
.templates .collection-head > p {
  color: rgba(255, 255, 255, .76);
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.template-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: 9px 9px 0 var(--lime);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.template-card:hover {
  transform: translateY(-8px) rotate(-.4deg);
  box-shadow: 14px 14px 0 var(--pink);
}

.template-preview {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: #d8cedf;
  cursor: zoom-in;
}

.template-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.template-card:hover .template-preview img {
  transform: scale(1.035);
}

.template-body {
  padding: 24px;
}

.template-type {
  font-family: "Space Mono", monospace;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.template-body h3 {
  margin: 8px 0 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.55rem;
}

.template-body > p {
  min-height: 3.2em;
  margin: 0 0 20px;
  color: rgba(16, 16, 20, .66);
}

.template-prices {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.template-prices > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid rgba(16, 16, 20, .16);
}

.template-prices span {
  font-size: .76rem;
}

.template-prices strong {
  font-family: "Space Mono", monospace;
  font-size: .82rem;
}

.template-cta {
  width: 100%;
  font-size: .75rem;
}

.review-card {
  overflow: hidden;
  padding: 0;
}

.review-content {
  display: flex;
  min-height: 285px;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
}

.review-media {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: #d8cedf;
  cursor: zoom-in;
}

.review-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}

.review-media:hover img {
  transform: scale(1.04);
}

@media (max-width: 980px) {
  .experience-layout,
  .collection-head {
    grid-template-columns: 1fr;
  }

  .experience-intro {
    position: static;
  }

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

@media (min-width: 761px) and (max-width: 1100px) {
  .nav-links {
    gap: 12px;
  }

  .nav-links > a:not(.button) {
    font-size: .7rem;
  }

  .nav-links .button {
    padding-inline: 13px;
    font-size: .72rem;
  }

  .site-header .brand-copy small {
    display: none;
  }
}

@media (max-width: 680px) {
  .experience-card:nth-child(even) {
    margin-left: 0;
  }

  .portfolio-grid,
  .templates-grid {
    grid-template-columns: 1fr;
  }

  .collection-head {
    gap: 20px;
    margin-bottom: 34px;
  }

  .template-body > p {
    min-height: 0;
  }
}

/* Final mobile contract: keep this block last */
html {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 760px) {
  .soon-page {
    min-height: 100svh;
    overflow-x: hidden;
  }

  .soon-nav {
    padding: 10px 0 4px;
  }

  .soon-nav-inner {
    min-height: 58px;
  }

  .soon-nav .brand {
    gap: 9px;
  }

  .soon-nav .brand-copy strong {
    font-size: .9rem;
  }

  .soon-nav .brand-copy small {
    display: none;
  }

  .soon-main {
    min-height: auto;
    padding: 28px 0 62px;
  }

  .soon-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 64px;
  }

  .soon-copy {
    width: 100%;
    text-align: center;
  }

  .soon-copy .pill {
    margin-inline: auto;
  }

  .soon-copy h1 {
    max-width: 10ch;
    margin: 22px auto 20px;
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: .87;
  }

  .soon-lead {
    width: 100%;
    max-width: 34rem;
    margin-inline: auto;
    font-size: .98rem;
  }

  .soon-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 25px;
  }

  .soon-actions .button {
    width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    font-size: .82rem;
  }

  .soon-status {
    justify-content: center;
    margin-top: 23px;
  }

  .soon-status span {
    padding: 7px 9px;
    font-size: .53rem;
  }

  .soon-art-wrap {
    width: min(76vw, 315px);
    margin: 0 auto 20px;
    justify-self: center;
  }

  .soon-art-card {
    padding: 7px 7px 45px;
    border-radius: 22px;
    box-shadow: 11px 12px 0 var(--lime), 0 25px 65px rgba(0, 0, 0, .4);
  }

  .soon-art-card figcaption {
    bottom: 8px;
    left: 15px;
    font-size: 1.08rem;
  }

  .soon-orbit {
    inset: -20px;
  }

  .soon-post-card {
    display: none;
  }

  .soon-note {
    right: -13px;
    bottom: 55px;
    padding: 9px 11px;
    font-size: 1rem;
  }

  .soon-float-word {
    padding: 6px 9px;
    font-size: .5rem;
  }

  .soon-float-word.float-1 {
    top: 9%;
    right: -17px;
  }

  .soon-float-word.float-2 {
    top: 48%;
    left: -24px;
  }

  .soon-float-word.float-3 {
    right: -18px;
    bottom: 20%;
  }

  .soon-spark.spark-2,
  .soon-spark.spark-4,
  .soon-spark.spark-5 {
    display: none;
  }

  .soon-marquee-track span {
    padding: 10px 14px;
    font-size: .78rem;
  }

  .soon-footer {
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }

  .soon-footer-inner {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .soon-copy h1 {
    font-size: clamp(2.72rem, 13.4vw, 3.6rem);
  }

  .soon-art-wrap {
    width: min(72vw, 285px);
  }

  .soon-float-word.float-2 {
    display: none;
  }
}
