:root {
  --ink: oklch(18% 0.035 250);
  --ink-soft: oklch(31% 0.045 250);
  --paper: oklch(96% 0.02 83);
  --paper-deep: oklch(91% 0.055 78);
  --chalk: oklch(98% 0.012 83);
  --cherry: oklch(57% 0.22 25);
  --pink: oklch(71% 0.2 355);
  --blue: oklch(62% 0.18 235);
  --mango: oklch(86% 0.16 88);
  --mint: oklch(84% 0.12 165);
  --grape: oklch(58% 0.18 305);
  --melon: oklch(74% 0.18 145);
  --line: oklch(18% 0.035 250 / 18%);
  --shadow: 0 24px 70px oklch(18% 0.035 250 / 18%);
  --radius: 8px;
  --font-display: "Caprasimo", Georgia, serif;
  --font-body: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, oklch(86% 0.16 88 / 34%), transparent 24rem),
    radial-gradient(circle at 88% 22%, oklch(71% 0.2 355 / 22%), transparent 22rem),
    var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  translate: 0 -160%;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-decoration: none;
}

.skip-link:focus {
  translate: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 2px solid var(--ink);
  background: var(--chalk);
}

.brand-mark,
.nav-links,
.nav-cta {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  gap: 0.7rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark__stamp {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mango);
  font-family: var(--font-display);
  line-height: 1;
}

.nav-links {
  gap: 0.4rem;
}

.nav-links a,
.nav-cta {
  min-height: 2.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  outline: 3px solid oklch(62% 0.18 235 / 45%);
  outline-offset: 2px;
  background: var(--paper-deep);
}

.nav-cta {
  gap: 0.45rem;
  border: 2px solid var(--ink);
  background: var(--pink);
}

.nav-cta svg,
.button svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 76svh;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero__wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(96% 0.02 83 / 92%) 0%, oklch(96% 0.02 83 / 78%) 31%, transparent 64%),
    linear-gradient(0deg, oklch(18% 0.035 250 / 22%) 0%, transparent 26%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(46rem, calc(100% - 2rem));
  padding: 5rem 1rem 8.5rem;
  margin-left: max(1rem, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.84rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.diagram-band h2,
.launch h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.92;
  font-weight: 400;
  text-wrap: balance;
}

.hero h1 {
  max-width: 7ch;
  font-size: 7.8rem;
}

.hero__lede {
  max-width: 43rem;
  margin: 1.2rem 0 0;
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.88rem 1.15rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
  outline: 3px solid oklch(62% 0.18 235 / 45%);
  outline-offset: 3px;
}

.button--primary {
  background: var(--mango);
}

.button--ghost {
  background: var(--chalk);
}

.hero__ticker {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.hero__ticker span {
  min-height: 4.2rem;
  display: grid;
  place-items: center;
  padding: 0.8rem;
  text-align: center;
  border-right: 2px solid oklch(96% 0.02 83 / 24%);
}

.hero__ticker span:nth-child(2) {
  background: oklch(57% 0.22 25);
}

.hero__ticker span:nth-child(3) {
  background: oklch(62% 0.18 235);
}

.hero__ticker span:nth-child(4) {
  background: oklch(58% 0.18 305);
  border-right: 0;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid var(--ink);
  background: var(--mango);
}

.intro-band__item {
  min-height: 7rem;
  display: grid;
  align-content: center;
  gap: 0.25rem;
  padding: 1.1rem clamp(1rem, 3vw, 2rem);
  border-right: 2px solid var(--ink);
}

.intro-band__item:last-child {
  border-right: 0;
}

.intro-band__item strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.intro-band__item span {
  font-weight: 800;
}

.section,
.diagram-band {
  padding: 6rem max(1rem, calc((100vw - 1180px) / 2));
}

.section__header {
  display: grid;
  gap: 1rem;
  max-width: 62rem;
  margin-bottom: 3rem;
}

.section__header--compact {
  max-width: 50rem;
}

.section h2,
.diagram-band h2,
.launch h2 {
  font-size: 4.2rem;
}

.section__header p:not(.eyebrow),
.diagram-band p,
.flavors__content > p,
.launch__copy p {
  max-width: 67ch;
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

.mechanism {
  background:
    linear-gradient(135deg, transparent 0 45%, oklch(71% 0.2 355 / 18%) 45% 56%, transparent 56%),
    var(--chalk);
}

.mechanism__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.photo-frame {
  margin: 0;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-frame--tilt {
  transform: rotate(-1deg);
}

.photo-frame figcaption {
  margin-top: 0.8rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.layer-diagram {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--ink);
}

.layer-diagram h3 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.layer {
  display: grid;
  grid-template-columns: 2.4rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.95rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
}

.layer--film {
  background: oklch(96% 0.03 255);
  transform: translateX(-0.35rem);
}

.layer--tattoo {
  background: var(--pink);
  transform: translateX(0.65rem);
}

.layer--barrier {
  background: var(--mint);
  transform: translateX(-0.1rem);
}

.layer--candy {
  background: var(--mango);
  transform: translateX(0.3rem);
}

.layer__tag {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--chalk);
  font-family: var(--font-display);
}

.layer strong,
.layer p {
  margin: 0;
}

.layer p {
  margin-top: 0.2rem;
  color: var(--ink-soft);
}

.steps {
  background: var(--paper-deep);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.step-card {
  min-height: 23rem;
  display: grid;
  grid-template-rows: auto 9rem auto 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--chalk);
  box-shadow: 5px 5px 0 var(--ink);
}

.step-card__number {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.step-card h3,
.collector-map h3,
.pack-card h3,
.calculator h3 {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.1;
}

.step-card p,
.collector-map p,
.pack-card p,
.calculator p {
  margin: 0;
  color: var(--ink-soft);
}

.step-visual {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
}

.step-visual--unwrap span:nth-child(1) {
  position: absolute;
  left: 30%;
  top: 20%;
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cherry);
}

.step-visual--unwrap span:nth-child(2) {
  position: absolute;
  left: 46%;
  top: 50%;
  width: 0.55rem;
  height: 5rem;
  background: var(--ink);
  transform: rotate(-20deg);
}

.step-visual--unwrap span:nth-child(3) {
  position: absolute;
  right: 18%;
  top: 24%;
  width: 4.2rem;
  height: 5.5rem;
  border: 2px solid var(--ink);
  background: repeating-linear-gradient(45deg, var(--pink) 0 10px, var(--chalk) 10px 20px);
  transform: rotate(14deg);
}

.step-visual--wet span {
  position: absolute;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 50% 0;
  background: var(--blue);
  transform: rotate(-45deg);
}

.step-visual--wet span:nth-child(1) {
  left: 26%;
  top: 22%;
  width: 2.5rem;
  height: 2.5rem;
}

.step-visual--wet span:nth-child(2) {
  left: 46%;
  top: 42%;
  width: 3.4rem;
  height: 3.4rem;
}

.step-visual--wet span:nth-child(3) {
  right: 24%;
  top: 18%;
  width: 2rem;
  height: 2rem;
}

.step-visual--press span:nth-child(1) {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 2rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: oklch(77% 0.08 58);
}

.step-visual--press span:nth-child(2) {
  position: absolute;
  left: 28%;
  top: 16%;
  width: 44%;
  height: 48%;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background:
    radial-gradient(circle at 32% 38%, var(--cherry) 0 13%, transparent 14%),
    radial-gradient(circle at 62% 50%, var(--mango) 0 12%, transparent 13%),
    var(--chalk);
  transform: rotate(-5deg);
}

.step-visual--wear span:nth-child(1) {
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 18%;
  height: 2.4rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: oklch(76% 0.09 50);
  transform: rotate(-9deg);
}

.step-visual--wear span:nth-child(2),
.step-visual--wear span:nth-child(3) {
  position: absolute;
  border: 2px solid var(--ink);
  background: var(--pink);
}

.step-visual--wear span:nth-child(2) {
  left: 36%;
  top: 28%;
  width: 2.6rem;
  height: 2.6rem;
  clip-path: polygon(50% 0, 62% 35%, 100% 35%, 70% 56%, 82% 95%, 50% 70%, 18% 95%, 30% 56%, 0 35%, 38% 35%);
}

.step-visual--wear span:nth-child(3) {
  right: 30%;
  top: 25%;
  width: 3rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--cherry);
}

.diagram-band {
  display: grid;
  grid-template-columns: minmax(18rem, 0.55fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.diagram-band p {
  color: oklch(93% 0.02 83);
}

.sleeve-diagram {
  width: 100%;
  min-height: 20rem;
  border: 2px solid oklch(96% 0.02 83 / 52%);
  border-radius: var(--radius);
  background: var(--paper);
}

.diagram-shadow {
  fill: none;
  stroke: oklch(18% 0.035 250 / 24%);
  stroke-width: 24;
  stroke-linecap: round;
}

.diagram-pop line {
  stroke: var(--ink);
  stroke-width: 18;
  stroke-linecap: round;
}

.diagram-pop circle {
  fill: var(--cherry);
  stroke: var(--ink);
  stroke-width: 8;
}

.diagram-pop path {
  fill: none;
  stroke: oklch(96% 0.02 83 / 50%);
  stroke-width: 8;
  stroke-linecap: round;
}

.diagram-layer path {
  stroke: var(--ink);
  stroke-width: 6;
  stroke-linejoin: round;
}

.diagram-layer--film path {
  fill: oklch(96% 0.03 255);
}

.diagram-layer--tattoo > path:first-child {
  fill: var(--pink);
}

.diagram-layer--barrier path {
  fill: var(--mint);
}

.diagram-layer text,
.diagram-callouts text {
  fill: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 25px;
}

.diagram-callouts path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 5;
  stroke-linecap: round;
}

.flavors {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.85fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  background: var(--chalk);
}

.flavors__media img {
  width: 100%;
  aspect-ratio: 1.26;
  object-fit: cover;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.flavors__content {
  display: grid;
  gap: 1.1rem;
}

.flavor-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.flavor-chip {
  min-height: 4.2rem;
  display: grid;
  gap: 0.1rem;
  justify-items: start;
  padding: 0.85rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
  box-shadow: 3px 3px 0 var(--ink);
}

.flavor-chip span {
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.flavor-chip:hover,
.flavor-chip:focus-visible,
.flavor-chip.is-active {
  outline: 3px solid oklch(62% 0.18 235 / 45%);
  outline-offset: 2px;
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--ink);
}

.mini-builder {
  display: grid;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.mini-builder p {
  margin: 0;
}

.mini-builder__swatch {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cherry);
  box-shadow: inset 0 0 0 0.8rem oklch(98% 0.012 83 / 18%);
}

.mini-builder[data-color="blue"] .mini-builder__swatch {
  background: var(--blue);
}

.mini-builder[data-color="mango"] .mini-builder__swatch {
  background: var(--mango);
}

.mini-builder[data-color="mint"] .mini-builder__swatch {
  background: var(--mint);
}

.mini-builder[data-color="grape"] .mini-builder__swatch {
  background: var(--grape);
}

.mini-builder[data-color="melon"] .mini-builder__swatch {
  background: var(--melon);
}

.proof {
  background:
    linear-gradient(90deg, var(--pink) 0 34%, transparent 34%),
    var(--paper);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.proof__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 1.05fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: stretch;
}

.collector-map {
  display: grid;
  align-content: center;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--chalk);
  box-shadow: 8px 8px 0 var(--ink);
}

.tattoo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(4rem, 1fr));
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.mark {
  position: relative;
  min-height: 5rem;
  border: 2px dashed var(--ink);
  border-radius: 6px;
  background: var(--paper);
}

.mark::before,
.mark::after {
  content: "";
  position: absolute;
}

.mark--cherry::before,
.mark--cherry::after {
  width: 1.35rem;
  height: 1.35rem;
  bottom: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--cherry);
}

.mark--cherry::before {
  left: 1.2rem;
}

.mark--cherry::after {
  right: 1.2rem;
}

.mark--bolt::before {
  inset: 0.8rem 1rem;
  background: var(--mango);
  clip-path: polygon(38% 0, 78% 0, 58% 38%, 88% 38%, 24% 100%, 42% 54%, 12% 54%);
  border: 2px solid var(--ink);
}

.mark--star::before {
  inset: 0.8rem;
  background: var(--pink);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 69% 56%, 80% 95%, 50% 72%, 20% 95%, 31% 56%, 2% 35%, 39% 35%);
}

.mark--sun::before {
  inset: 1rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--mango);
  box-shadow: 0 0 0 0.7rem oklch(86% 0.16 88 / 30%);
}

.mark--snake::before {
  left: 1rem;
  top: 1rem;
  width: 4.2rem;
  height: 2.9rem;
  border: 0.7rem solid var(--melon);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.mark--planet::before {
  left: 1.1rem;
  top: 1.1rem;
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--grape);
}

.mark--planet::after {
  left: 0.9rem;
  top: 2.3rem;
  width: 4.2rem;
  height: 0.8rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.mark--heart::before {
  left: 50%;
  top: 50%;
  width: 2.8rem;
  height: 2.8rem;
  background: var(--cherry);
  transform: translate(-50%, -42%) rotate(45deg);
}

.mark--heart::after {
  left: calc(50% - 1.55rem);
  top: calc(50% - 1.35rem);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--cherry);
  box-shadow: 1.45rem 0 0 var(--cherry);
}

.mark--swirl::before {
  left: 50%;
  top: 50%;
  width: 3.4rem;
  height: 3.4rem;
  border: 0.55rem solid var(--blue);
  border-left-color: var(--paper);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
}

.packs {
  background: var(--chalk);
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.pack-card {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 18rem;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--ink);
}

.pack-card--featured {
  background: var(--mint);
}

.pack-card__label {
  width: fit-content;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--mango);
  font-size: 0.85rem;
  font-weight: 800;
}

.pack-card strong {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.calculator {
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) minmax(18rem, 1fr) minmax(14rem, 0.7fr);
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper-deep);
}

.calculator__control {
  display: grid;
  gap: 0.65rem;
}

.calculator label,
.field-row label {
  font-weight: 800;
}

.calculator input[type="range"] {
  width: 100%;
  accent-color: var(--cherry);
}

.calculator output {
  font-weight: 800;
}

.calculator__result {
  display: grid;
  gap: 0.3rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--chalk);
}

.calculator__result span {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
}

.calculator__result small {
  color: var(--ink-soft);
  font-weight: 700;
}

.launch {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.72fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: 6rem max(1rem, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, var(--cherry) 0 38%, var(--pink) 38% 65%, var(--blue) 65%);
  color: var(--paper);
}

.launch h2 {
  max-width: 10ch;
}

.launch__copy p {
  color: oklch(96% 0.02 83);
}

.signup-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--chalk);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
}

.field-row {
  display: grid;
  gap: 0.4rem;
}

.field-row input,
.field-row select {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.75rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
}

.field-row input:focus-visible,
.field-row select:focus-visible {
  outline: 3px solid oklch(62% 0.18 235 / 45%);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.form-note.is-success {
  color: oklch(36% 0.12 155);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem max(1rem, calc((100vw - 1180px) / 2));
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 5.4rem;
  }

  .hero__ticker,
  .intro-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__ticker span:nth-child(2),
  .intro-band__item:nth-child(2) {
    border-right: 0;
  }

  .mechanism__grid,
  .diagram-band,
  .flavors,
  .proof__grid,
  .launch,
  .calculator {
    grid-template-columns: 1fr;
  }

  .section h2,
  .diagram-band h2,
  .launch h2 {
    font-size: 3.25rem;
  }

  .proof {
    background: var(--paper);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    padding: 0.75rem;
  }

  .brand-mark span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 0.55rem 0.7rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero__image {
    object-position: 64% center;
  }

  .hero__wash {
    background:
      linear-gradient(90deg, oklch(96% 0.02 83 / 94%) 0%, oklch(96% 0.02 83 / 74%) 58%, transparent 100%),
      linear-gradient(0deg, oklch(18% 0.035 250 / 22%) 0%, transparent 30%);
  }

  .hero__content {
    width: calc(100% - 1rem);
    padding: 3.6rem 0.75rem 11rem;
    margin-left: 0;
  }

  .hero h1 {
    font-size: 3.55rem;
  }

  .hero__lede {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .hero__ticker {
    font-size: 0.84rem;
  }

  .hero__ticker span {
    min-height: 3.6rem;
  }

  .intro-band {
    grid-template-columns: 1fr;
  }

  .intro-band__item,
  .intro-band__item:nth-child(2) {
    min-height: 5.4rem;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .intro-band__item:last-child {
    border-bottom: 0;
  }

  .section,
  .diagram-band,
  .launch {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .section h2,
  .diagram-band h2,
  .launch h2 {
    font-size: 2.45rem;
  }

  .flavor-list,
  .tattoo-grid {
    grid-template-columns: 1fr;
  }

  .mini-builder {
    grid-template-columns: 1fr;
  }

  .step-card {
    min-height: auto;
  }
}

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