@font-face {
  font-family: "Google Sans Flex";
  src: url("https://heypinky.design/assets/fonts/google-sans-flex-300.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: "Google Sans Flex";
  src: url("https://heypinky.design/assets/fonts/google-sans-flex-900.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

:root {
  color-scheme: light;
  --ink: #111;
  --panel-black: #000;
  --paper: #fff;
  --soft: #f1f1f1;
  --soft-dark: #dedede;
  --mid: #777;
  --line: #c9c9c9;
  --accent: #455bc8;
  --scrapbook-surface: #dee5ff;
  --journey-accent: var(--accent);
  --section-start-space: clamp(3.5rem, 6vw, 6rem);
  --section-end-space: clamp(5rem, 9vw, 9rem);
  --display-to-copy-space: clamp(2rem, 4vw, 3.5rem);
  --display-hero: clamp(3.25rem, 5.8vw, 6.15rem);
  --display-section: clamp(3rem, 5vw, 5.4rem);
  --display-chapter: clamp(2.6rem, 4.4vw, 4.75rem);
  --case-lead-size: clamp(1.15rem, 1.7vw, 1.55rem);
  --case-body-size: clamp(1rem, 1.35vw, 1.16rem);
  --supporting-copy-size: clamp(1.05rem, 1.45vw, 1.25rem);
  --max-width: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --radius: clamp(1.2rem, 2vw, 2rem);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Google Sans Flex",
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body:has(.about-dialog[open]) {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 900;
  text-wrap: balance;
}

.section-shell,
.site-header,
.site-footer {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  translate: 0 -200%;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
}

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

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  transition:
    min-height 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  min-height: 4.25rem;
  border-color: var(--line);
}

.wordmark {
  display: block;
  width: clamp(8rem, 11vw, 10.25rem);
  text-decoration: none;
}

.wordmark-image {
  display: block;
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.3vw, 2.2rem);
  font-size: 0.92rem;
  font-weight: 900;
}

.primary-nav > a:not(.button),
.nav-link {
  position: relative;
  padding: 0.35rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after,
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0.05rem;
  left: 0;
  height: 0.12rem;
  background: currentColor;
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.nav-link:hover::after {
  scale: 1 1;
  transform-origin: left;
}

.primary-nav > a[aria-current="page"]::after {
  scale: 1 1;
  transform-origin: left;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  transition:
    translate 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  translate: 0 -0.14rem;
  box-shadow: 0 0.3rem 0 var(--ink);
}

.button-small {
  min-height: 2.75rem;
}

.button-dark {
  background: var(--accent);
  color: var(--paper);
}

.button-light {
  border-color: var(--ink);
  background: var(--accent);
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 900;
}

.text-link span {
  transition: translate 160ms ease;
}

.text-link:hover span {
  translate: 0 0.18rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--mid);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.65fr) minmax(17rem, 0.65fr);
  padding-block: clamp(3rem, 5.5vw, 5rem) clamp(3rem, 5vw, 4.5rem);
}

.hero-copy {
  max-width: 69rem;
}

.hero h1 {
  max-width: 17ch;
  margin-bottom: var(--display-to-copy-space);
  font-size: var(--display-hero);
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.hero h1 span {
  display: block;
  color: var(--ink);
}

.hero-intro {
  max-width: 51rem;
  margin-bottom: 2.2rem;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-aside {
  display: grid;
  width: 100%;
  max-width: 30rem;
  align-self: start;
  gap: 1rem;
  justify-self: end;
  margin-top: 2.75rem;
}

.character-card {
  display: grid;
  min-height: 0;
  aspect-ratio: 1;
  place-items: stretch;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--soft);
}

.character-card :is(img, object) {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  scale: 1.04;
}

.character-card object {
  border: 0;
  pointer-events: none;
}

.availability {
  padding: 1rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  font-size: 0.9rem;
}

.expertise-bar {
  background: var(--scrapbook-surface);
}

.expertise-list {
  display: grid;
  align-items: baseline;
  gap: 2rem;
  grid-template-columns: 12rem 1fr;
  padding-block: 1.2rem;
}

.expertise-list .eyebrow,
.expertise-list p {
  margin-bottom: 0;
}

.expertise-list > p:last-child {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
}

.origin {
  padding-block: var(--section-start-space) var(--section-end-space);
}

.origin-heading {
  max-width: 78rem;
  margin-bottom: var(--display-to-copy-space);
}

.origin-heading h2,
.work-intro h2,
.approach-heading h2,
.archive h2 {
  margin-bottom: 0;
  font-size: var(--display-section);
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.journey-anchor {
  position: relative;
  margin-top: clamp(4rem, 8vw, 8rem);
}

.journey-progress {
  --journey-progress: 40%;
  --journey-mobile-progress: 60%;
  position: relative;
  z-index: 80;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  transition:
    padding 180ms ease,
    box-shadow 180ms ease;
}

.journey-progress.is-docked {
  position: fixed;
  top: var(--journey-top, 4.25rem);
  left: 50%;
  width: min(100%, var(--max-width));
  padding: 0.75rem var(--gutter) 0.8rem;
  translate: -50% 0;
  border-inline: 0;
  border-radius: 0 0 1.2rem 1.2rem;
  background: var(--paper);
  box-shadow: 0 0.8rem 1.7rem rgba(17, 17, 17, 0.11);
}

.journey-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.35rem, 2.8vw, 2.2rem);
}

.journey-heading .eyebrow {
  margin-bottom: 0.35rem;
}

.journey-heading-copy,
.journey-current {
  margin: 0;
}

.journey-heading-copy {
  color: var(--mid);
  font-size: 0.88rem;
}

.journey-current {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-progress.is-docked .journey-heading {
  align-items: center;
  margin-bottom: 0.6rem;
}

.journey-progress.is-docked .journey-heading-copy {
  display: none;
}

.journey-desktop {
  position: relative;
}

.journey-rail {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1rem;
  pointer-events: none;
}

.journey-rail-base,
.journey-rail-progress {
  position: absolute;
  top: 0.42rem;
  right: 0.55rem;
  left: 0;
  height: 2px;
}

.journey-rail-base {
  background: var(--ink);
}

.journey-rail-progress {
  right: auto;
  width: var(--journey-progress);
  background: var(--journey-accent);
  transition: width 300ms cubic-bezier(0.22, 0.8, 0.25, 1);
}

.journey-rail-arrow {
  position: absolute;
  top: 0.14rem;
  right: 0;
  width: 0.58rem;
  height: 0.58rem;
  border-top: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
  rotate: 45deg;
}

.journey-dot {
  position: absolute;
  top: 0;
  left: calc(var(--journey-index) * 20%);
  width: 0.88rem;
  aspect-ratio: 1;
  translate: -50% 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    scale 220ms ease;
}

.journey-dot.is-complete,
.journey-dot.is-active {
  border-color: var(--journey-accent);
  background: var(--journey-accent);
}

.journey-dot.is-active {
  scale: 1.3;
}

.journey-list {
  display: grid;
  padding: 2rem 0 0;
  margin: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.journey-list li {
  min-width: 0;
  padding-right: clamp(0.8rem, 2vw, 2rem);
  opacity: 0.46;
  transition: opacity 220ms ease;
}

.journey-list li.is-complete,
.journey-list li.is-active {
  opacity: 1;
}

.journey-list a {
  display: grid;
  align-items: start;
  gap: clamp(0.65rem, 1.25vw, 1rem);
  grid-template-columns: clamp(3.75rem, 5.5vw, 5.5rem) minmax(0, 1fr);
  color: inherit;
  text-decoration: none;
}

.journey-illustration {
  display: block;
  align-self: start;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.journey-illustration[src$="foundation.svg"] {
  translate: 0 3%;
}

.journey-illustration[src$="growth.png"],
.journey-illustration[src$="ideas.svg"] {
  translate: 0 6%;
}

.journey-copy {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
}

.journey-stage {
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-list strong {
  max-width: 13ch;
  font-size: clamp(1rem, 1.55vw, 1.35rem);
  line-height: 1.05;
  transition: color 220ms ease;
}

.journey-list li.is-active strong {
  color: var(--ink);
}

.journey-list a:hover strong {
  text-decoration-color: var(--journey-accent);
  text-decoration-line: underline;
  text-decoration-thickness: 0.18em;
  text-underline-offset: 0.18em;
}

.journey-description {
  max-width: 19rem;
  margin-top: 0.35rem;
  color: var(--mid);
  font-size: 0.72rem;
  line-height: 1.35;
}

.journey-progress.is-docked .journey-list {
  padding-top: 1.45rem;
}

.journey-progress.is-docked .journey-list a {
  gap: clamp(0.5rem, 0.9vw, 0.8rem);
  grid-template-columns: clamp(2.75rem, 4vw, 3.5rem) minmax(0, 1fr);
}

.journey-progress.is-docked .journey-list strong {
  font-size: clamp(0.82rem, 1.2vw, 1rem);
}

.journey-progress.is-docked .journey-stage {
  font-size: 0.56rem;
}

.journey-progress.is-docked .journey-description {
  display: none;
}

.journey-mobile {
  display: none;
}

#early-career-scrapbook,
#holy-turning-point,
#bears-growth,
#approach,
#contact {
  scroll-margin-top: 12rem;
}

#work {
  scroll-margin-top: clamp(12rem, 18vw, 17rem);
}

.origin-storyboard {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3.5rem);
}

.origin-essay {
  display: grid;
  max-width: none;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.origin-essay p {
  max-width: 36rem;
  margin-bottom: 0;
  color: #4d4d4d;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

.origin-essay p:last-child {
  margin-bottom: 0;
}

.scrapbook {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(
      7deg,
      transparent 0 0.25rem,
      rgba(74, 65, 49, 0.025) 0.27rem 0.3rem
    ),
    radial-gradient(
      circle at 15% 10%,
      rgba(255, 255, 255, 0.32),
      transparent 34%
    ),
    var(--scrapbook-surface);
}

.scrapbook-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 3vw, 2.5rem);
  border-bottom: 0;
  background: rgba(222, 229, 255, 0.9);
  color: var(--ink);
  backdrop-filter: blur(8px);
}

.scrapbook-heading .eyebrow {
  margin-bottom: 0.45rem;
  color: var(--mid);
}

.scrapbook-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
}

.scrapbook-status {
  flex: 0 0 auto;
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.scrapbook-window {
  position: relative;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  cursor: grab;
  touch-action: pan-y;
}

.scrapbook-window::-webkit-scrollbar {
  display: none;
}

.scrapbook-window.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.scrapbook-window:focus-visible {
  outline-offset: -0.35rem;
}

.scrapbook-track {
  display: flex;
  width: max-content;
  padding: clamp(1.25rem, 2.5vw, 2.25rem);
  gap: clamp(1rem, 2.5vw, 2rem);
}

.scrapbook-page {
  position: relative;
  isolation: isolate;
  width: clamp(32rem, 44vw, 42rem);
  min-height: clamp(31rem, 47vw, 43rem);
  flex: 0 0 auto;
  overflow: hidden;
  border: 0;
  background:
    repeating-linear-gradient(
      11deg,
      transparent 0 0.19rem,
      rgba(68, 60, 48, 0.028) 0.21rem 0.23rem
    ),
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.94), transparent 42%),
    #e9e7e0;
  box-shadow: 0.9rem 1.15rem 1.8rem rgba(12, 8, 35, 0.3);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.scrapbook-page-raster {
  aspect-ratio: 4 / 3;
  min-height: 0;
  background: transparent;
  box-shadow: none;
}

.scrapbook-page-raster::before {
  display: none;
}

.scrapbook-raster-artwork {
  width: 100%;
  height: 100%;
  filter: none;
  object-fit: contain;
}

.scrapbook-page::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(80, 71, 55, 0.06) 0 0.045rem, transparent 0.055rem),
    radial-gradient(circle at 75% 68%, rgba(80, 71, 55, 0.045) 0 0.04rem, transparent 0.05rem);
  background-size:
    0.55rem 0.55rem,
    0.72rem 0.72rem;
  content: "";
  opacity: 0.42;
  pointer-events: none;
}

.paper-scrap {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(104, 96, 79, 0.18);
  background:
    repeating-linear-gradient(
      4deg,
      transparent 0 0.22rem,
      rgba(94, 84, 65, 0.025) 0.24rem 0.27rem
    ),
    #f7f5ef;
  box-shadow:
    0.15rem 0.3rem 0.4rem rgba(69, 61, 48, 0.08),
    0.55rem 0.85rem 1.4rem rgba(55, 49, 39, 0.13);
}

.paper-scrap-back {
  top: 4%;
  left: 4%;
  width: 76%;
  height: 70%;
  clip-path: polygon(
    1% 2%,
    14% 0,
    27% 1.2%,
    42% 0.4%,
    58% 1.4%,
    73% 0.5%,
    89% 1.5%,
    100% 0.8%,
    99% 20%,
    100% 39%,
    99% 57%,
    100% 76%,
    98.5% 100%,
    82% 99%,
    67% 100%,
    49% 99%,
    34% 100%,
    16% 99%,
    0.5% 100%,
    1.4% 80%,
    0 63%,
    1.2% 44%,
    0 24%
  );
  rotate: -1deg;
}

.paper-scrap-bottom {
  bottom: 3%;
  left: 4%;
  width: 52%;
  height: 31%;
  clip-path: polygon(
    1% 3%,
    13% 0,
    29% 2%,
    44% 0.5%,
    60% 2%,
    78% 0.3%,
    100% 2%,
    98% 20%,
    100% 42%,
    98% 63%,
    100% 84%,
    96% 100%,
    80% 97%,
    66% 100%,
    50% 97%,
    36% 100%,
    18% 97%,
    0 100%
  );
  rotate: 1deg;
}

.scrapbook-photo {
  position: absolute;
  z-index: 1;
  padding: 0.8rem 0.8rem 2.7rem;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 0.55rem 0.65rem 0 rgba(0, 0, 0, 0.11);
}

.scrapbook-placeholder {
  display: grid;
  min-height: 19rem;
  place-content: center;
  padding: 1.5rem;
  background:
    linear-gradient(145deg, #ededed, #c7c7c7);
  color: #595959;
  text-align: center;
}

.scrapbook-placeholder span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scrapbook-placeholder strong {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.photo-caption {
  position: absolute;
  right: 1rem;
  bottom: 0.65rem;
  left: 1rem;
  margin: 0;
  font-size: 0.8rem;
  font-style: italic;
  text-align: center;
}

.scrapbook-photo-wide {
  top: 15%;
  left: 9%;
  width: 68%;
  rotate: -3deg;
}

.sims-print {
  z-index: 2;
  padding: 0.5rem 0.5rem 1.65rem;
}

.sims-print img {
  height: auto;
  object-fit: contain;
}

.sims-print-base {
  top: 8%;
  left: 7%;
  width: 29%;
  rotate: -3deg;
}

.sims-print-unleashed {
  top: 7%;
  left: 39%;
  width: 24%;
  rotate: 4deg;
}

.sims-print-livin-large {
  top: 45%;
  left: 9%;
  width: 26%;
  rotate: 3deg;
}

.sims-print-vacation {
  top: 42%;
  left: 38%;
  width: 25%;
  rotate: -4deg;
}

.scrapbook-page-sims .torn-note {
  right: 4%;
  bottom: 7%;
  width: 31%;
}

.scrapbook-page-sims .torn-note strong {
  font-size: clamp(1rem, 1.55vw, 1.45rem);
}

.sims-tape-base {
  z-index: 4;
  top: 8%;
  left: 15%;
  width: 5rem;
  height: 1.55rem;
  rotate: -7deg;
}

.sims-tape-vacation {
  z-index: 4;
  top: 41%;
  left: 46%;
  width: 4.5rem;
  height: 1.45rem;
  rotate: 5deg;
}

.art-credit {
  position: absolute;
  z-index: 3;
  bottom: 0.65rem;
  left: 0.9rem;
  max-width: 24rem;
  margin: 0;
  color: var(--mid);
  font-size: 0.6rem;
}

.scrapbook-photo-portrait {
  top: 9%;
  left: 10%;
  width: 49%;
  rotate: 2deg;
}

.scrapbook-photo-square {
  top: 12%;
  right: 8%;
  width: 60%;
  rotate: 3deg;
}

.torn-note,
.lined-note {
  position: absolute;
  z-index: 2;
  padding: 1.3rem;
  background: var(--paper);
}

.torn-note {
  right: 6%;
  bottom: 7%;
  width: 48%;
  border: 1px solid rgba(91, 82, 66, 0.24);
  background:
    repeating-linear-gradient(
      5deg,
      transparent 0 0.22rem,
      rgba(86, 77, 59, 0.024) 0.24rem 0.27rem
    ),
    #fbfaf6;
  box-shadow:
    0.15rem 0.3rem 0.4rem rgba(69, 61, 48, 0.08),
    0.45rem 0.75rem 1.15rem rgba(55, 49, 39, 0.14);
  clip-path: polygon(
    2% 0,
    100% 1%,
    98% 96%,
    91% 100%,
    82% 97%,
    70% 100%,
    59% 97%,
    46% 100%,
    34% 97%,
    22% 100%,
    12% 97%,
    0 100%
  );
  rotate: 2deg;
}

.torn-note-small {
  right: auto;
  bottom: 7%;
  left: 7%;
  width: 43%;
  rotate: -2deg;
}

.lined-note {
  right: 5%;
  bottom: 9%;
  width: 49%;
  border: 1px solid var(--ink);
  background:
    repeating-linear-gradient(
      to bottom,
      var(--paper) 0,
      var(--paper) 1.75rem,
      #d7d7d7 1.8rem
    );
  rotate: -2deg;
}

.lined-note-dark {
  right: 5%;
  bottom: 7%;
  width: 52%;
  background:
    repeating-linear-gradient(
      to bottom,
      #222 0,
      #222 1.75rem,
      #4a4a4a 1.8rem
    );
  color: var(--paper);
  rotate: 3deg;
}

.note-number,
.note-place {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-number {
  float: right;
  margin: 0;
}

.note-place {
  margin-bottom: 1.4rem;
  color: var(--mid);
}

.lined-note-dark .note-place {
  color: #bdbdbd;
}

.torn-note strong,
.lined-note strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.torn-note small,
.lined-note small {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  font-style: italic;
}

.paper-clip {
  position: absolute;
  z-index: 6;
  top: 2rem;
  left: 7rem;
  width: 1.25rem;
  height: 6.5rem;
  border: 0.22rem solid #66645f;
  border-radius: 999px;
  box-shadow:
    inset 0.08rem 0.06rem 0 rgba(255, 255, 255, 0.7),
    0.13rem 0.25rem 0.3rem rgba(35, 32, 27, 0.28);
  rotate: -13deg;
}

.paper-clip::after {
  position: absolute;
  top: 0.5rem;
  left: 0.24rem;
  width: 0.34rem;
  height: 4.9rem;
  border: 0.16rem solid #85827c;
  border-radius: 999px;
  content: "";
}

.paper-clip-large {
  top: 1rem;
  right: 12%;
  left: auto;
  height: 8rem;
  rotate: 7deg;
}

.archive-print,
.archive-sheet {
  position: absolute;
  z-index: 2;
  padding: 0.62rem;
  border: 1px solid rgba(73, 67, 56, 0.6);
  background:
    repeating-linear-gradient(
      3deg,
      transparent 0 0.2rem,
      rgba(82, 73, 57, 0.022) 0.22rem 0.24rem
    ),
    #fbfaf6;
  box-shadow:
    0.26rem 0.38rem 0 rgba(255, 255, 255, 0.65),
    0.55rem 0.8rem 1rem rgba(45, 40, 32, 0.2);
}

.archive-sheet {
  padding: 0.45rem;
  background: #f4f1e9;
}

.archive-print img,
.archive-sheet img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.retail-print-main {
  top: 7%;
  left: 5%;
  width: 53%;
  rotate: -2deg;
}

.retail-print-detail {
  top: 9%;
  right: 4%;
  width: 39%;
  rotate: 3deg;
}

.retail-print-maison {
  right: 5%;
  bottom: 5%;
  width: 31%;
  rotate: 2deg;
}

.retail-note {
  right: auto;
  bottom: 7%;
  left: 5%;
  width: 43%;
  rotate: -1deg;
}

.interior-drawing {
  top: 5%;
  left: 5%;
  width: 68%;
  rotate: -2deg;
}

.interior-print-main {
  top: 13%;
  right: 4%;
  width: 48%;
  rotate: 2deg;
}

.interior-print-worktable {
  top: 43%;
  left: 4%;
  width: 37%;
  rotate: 4deg;
}

.paper-clip-merch {
  top: 1rem;
  left: 9%;
}

.paper-clip-berlin {
  top: 1rem;
  right: 6%;
  left: auto;
  height: 5.5rem;
  rotate: 18deg;
}

.berlin-print-city {
  top: 5%;
  left: 5%;
  width: 58%;
  rotate: -1deg;
}

.berlin-print-graffiti {
  top: 11%;
  right: 3%;
  width: 44%;
  rotate: 3deg;
}

.berlin-print-airport {
  bottom: 4%;
  left: 4%;
  width: 29%;
  rotate: -4deg;
}

.berlin-print-reichstag {
  bottom: 6%;
  left: 35%;
  width: 31%;
  rotate: 1deg;
}

.berlin-note {
  right: 3%;
  bottom: 5%;
  width: 29%;
  rotate: -1deg;
}

.berlin-note strong {
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.berlin-note small {
  margin-top: 0.7rem;
}

.tape {
  position: absolute;
  z-index: 5;
  width: 7rem;
  height: 2.1rem;
  border: 1px solid rgba(112, 101, 81, 0.28);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 0 0.4rem,
      rgba(122, 111, 88, 0.08) 0.42rem 0.48rem
    ),
    rgba(210, 203, 184, 0.74);
  box-shadow: 0 0.22rem 0.35rem rgba(55, 49, 39, 0.12);
  opacity: 0.8;
}

.tape-top {
  top: 4%;
  left: 24%;
  rotate: -4deg;
}

.tape-corner {
  top: 8%;
  right: 8%;
  rotate: 9deg;
}

.tape-merch {
  top: 44%;
  left: 32%;
  width: 6rem;
  rotate: -5deg;
}

.tape-interiors {
  top: 16%;
  right: 21%;
  width: 8rem;
  rotate: 2deg;
}

.scrapbook-heading-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.scrapbook-nav {
  display: flex;
  gap: 0.55rem;
}

.scrapbook-button {
  display: grid;
  width: 2.7rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  cursor: pointer;
  font-size: 1.15rem;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.scrapbook-button:hover {
  background: var(--paper);
  color: var(--accent);
}

.story-next-marker {
  --story-next-size: 6.1rem;
  position: absolute;
  z-index: 3;
  right: 0.85rem;
  bottom: 1rem;
  display: grid;
  width: var(--story-next-size);
  min-width: var(--story-next-size);
  max-width: var(--story-next-size);
  height: var(--story-next-size);
  min-height: var(--story-next-size);
  max-height: var(--story-next-size);
  place-content: center;
  justify-items: center;
  gap: 0.35rem;
  padding: 0.4rem;
  margin: 0;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0.22rem 0.28rem 0 #dedede;
  color: var(--paper);
  rotate: -5deg;
  text-align: center;
  text-decoration: none;
  animation: story-next-float 3.6s ease-in-out infinite;
}

.story-next-marker[hidden] {
  display: none;
}

.story-next-marker::before {
  position: absolute;
  inset: -0.35rem;
  border: 1px solid var(--ink);
  border-radius: inherit;
  content: "";
  pointer-events: none;
  animation: story-next-ring 3.6s ease-out infinite;
}

.story-next-kicker {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.story-next-marker strong {
  display: grid;
  justify-items: center;
  font-size: clamp(0.5rem, 0.65vw, 0.62rem);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.035em;
  line-height: 1.02;
  text-transform: uppercase;
}

@keyframes story-next-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -0.45rem;
  }
}

@keyframes story-next-ring {
  0%,
  22% {
    opacity: 0;
    scale: 0.94;
  }

  34% {
    opacity: 0.42;
  }

  82%,
  100% {
    opacity: 0;
    scale: 1.12;
  }
}

.internship-turn {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
  width: 100vw;
  padding: clamp(4rem, 8vw, 8rem);
  margin-left: calc(50% - 50vw);
  margin-top: clamp(4rem, 8vw, 8rem);
  background: var(--panel-black);
  color: var(--paper);
}

.internship-visual {
  margin: 0;
}

.internship-visual img {
  width: 100%;
  max-height: 45rem;
  border: 1px solid var(--paper);
  border-radius: calc(var(--radius) * 0.75);
  object-fit: cover;
}

.internship-visual figcaption {
  margin-top: 0.8rem;
  color: #bdbdbd;
  font-size: 0.78rem;
}

.internship-copy .eyebrow {
  color: #bdbdbd;
}

.internship-copy h3 {
  max-width: 13ch;
  margin-bottom: 2rem;
  font-size: var(--display-section);
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.internship-copy > p:not(.eyebrow, .internship-note) {
  max-width: 42rem;
  color: #c8c8c8;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.internship-note {
  max-width: 34rem;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid #555;
  color: var(--paper);
  font-weight: 900;
}

.cloud-divider {
  position: relative;
  height: clamp(9rem, 18vw, 16rem);
  overflow: hidden;
  background: var(--paper);
  pointer-events: none;
}

.cloud-divider svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.cloud-divider-layer {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

.cloud-divider-fill {
  fill: var(--panel-black);
  stroke: none;
}

.cloud-divider-outline {
  fill: none;
  stroke: var(--paper);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.cloud-divider-meme {
  width: 100vw;
  height: clamp(7rem, 12vw, 10rem);
  margin-left: calc(50% - 50vw);
  margin-top: clamp(4rem, 8vw, 8rem);
}

.cloud-divider-meme .cloud-divider-layer-front {
  display: none;
}

.cloud-divider-meme + .internship-turn {
  margin-top: 0;
}

.cloud-divider-bears {
  height: clamp(8rem, 14vw, 12rem);
  background: var(--soft);
}

.cloud-divider-bears + .chapter-bears {
  border-top: 0;
}

.cloud-divider-contact {
  width: 100%;
  height: clamp(6rem, 11vw, 9rem);
}

.cloud-divider-contact + .contact {
  border-radius: 0;
}

[data-parallax] {
  translate: 0 var(--parallax-y, 0);
  will-change: translate;
}

[data-type-motion] {
  --type-scale-x: 1;
  --type-scale-y: 1;
  display: block;
  scale: var(--type-scale-x) var(--type-scale-y);
  transform-origin: left center;
  will-change: scale;
}

[data-type-motion="stretch"] {
  transform-origin: left bottom;
}

.work {
  position: relative;
  background: var(--panel-black);
}

.work-intro {
  position: relative;
  min-height: clamp(50rem, 66vw, 60rem);
  overflow: hidden;
  padding-top: clamp(3rem, 4vw, 5rem);
  background: var(--panel-black);
  color: var(--paper);
}

.work-intro .eyebrow,
.work-intro h2,
.work-intro-copy {
  position: relative;
  z-index: 1;
}

.work-intro .eyebrow {
  margin-bottom: 1rem;
  color: #bdbdbd;
}

.work-intro h2 {
  max-width: 23ch;
  font-size: var(--display-section);
}

.work-intro h2 span {
  display: block;
}

.work-intro-copy {
  max-width: 42rem;
  margin: var(--display-to-copy-space) 0 0;
  color: var(--paper);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  line-height: 1.45;
}

.work-intro-artwork {
  position: absolute;
  z-index: 0;
  top: clamp(20rem, 24vw, 23rem);
  right: 14%;
  left: 14%;
  margin: 0;
  pointer-events: none;
}

.work-intro-artwork img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.chapter {
  border-top: 1px solid var(--ink);
  padding-block: var(--section-start-space) var(--section-end-space);
}

.chapter-holy {
  background: var(--soft);
}

.chapter-bears {
  background: var(--panel-black);
  color: var(--paper);
}

.chapter-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(19rem, 0.75fr) minmax(0, 1.25fr);
}

.chapter-layout-reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(19rem, 0.75fr);
}

.chapter-layout-reverse .chapter-copy {
  grid-column: 2;
  grid-row: 1;
}

.chapter-layout-reverse .chapter-visual {
  grid-column: 1;
  grid-row: 1;
}

.chapter-number {
  display: inline-block;
  padding-bottom: 0.3rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.8rem;
  font-weight: 900;
}

.chapter-copy h3,
.proof-heading h3 {
  margin-bottom: 1.8rem;
  font-size: var(--display-chapter);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.chapter-copy > p:not(.eyebrow, .chapter-number) {
  max-width: 40rem;
  color: var(--mid);
  font-size: var(--supporting-copy-size);
}

.chapter-bears .eyebrow,
.chapter-bears .chapter-copy > p:not(.eyebrow, .chapter-number) {
  color: #bdbdbd;
}

.chapter-facts {
  margin: 3rem 0 0;
}

.chapter-facts > div {
  display: grid;
  gap: 1rem;
  grid-template-columns: 7rem 1fr;
  padding-block: 1rem;
  border-top: 1px solid var(--line);
}

.chapter-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}

.chapter-facts dt {
  color: var(--mid);
}

.chapter-facts dd {
  margin: 0;
}

.chapter-visual {
  margin: 0;
}

.chapter-visual img {
  width: 100%;
  min-height: 32rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  filter: grayscale(1);
  object-fit: cover;
}

.chapter-bears .chapter-visual img {
  border-color: var(--paper);
}

.chapter-visual figcaption,
.proof-visual figcaption,
.archive-preview figcaption {
  margin-top: 0.8rem;
  color: var(--mid);
  font-size: 0.78rem;
}

.chapter-bears .chapter-visual figcaption {
  color: #bdbdbd;
}

.chapter-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.chapter-tags li {
  padding: 0.45rem 0.7rem;
  border: 1px solid #777;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.holy-page-tags {
  margin: clamp(4rem, 8vw, 8rem) 0 clamp(2rem, 4vw, 4rem);
}

.holy-case-link {
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.chapter-bears .holy-case-link:hover,
.chapter-bears .holy-case-link:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0.3rem 0 #fff;
  color: var(--paper);
}

.case-preview {
  min-width: 0;
}

.case-preview-viewport {
  min-height: clamp(27rem, 40vw, 36rem);
  overflow: hidden;
  background: transparent;
}

.case-preview-track {
  position: relative;
  min-height: clamp(27rem, 40vw, 36rem);
}

.case-preview-slide {
  position: absolute;
  z-index: 1;
  top: clamp(0.75rem, 1.5vw, 1.25rem);
  bottom: clamp(0.75rem, 1.5vw, 1.25rem);
  left: 50%;
  display: flex;
  width: 68%;
  flex-direction: column;
  padding: clamp(1rem, 2vw, 1.5rem);
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) * 0.8);
  background: var(--scrapbook-surface);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1);
  color: var(--ink);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.78);
  transform-origin: center;
  transition:
    transform 620ms cubic-bezier(0.22, 0.8, 0.25, 1),
    opacity 320ms ease;
  will-change: transform, opacity;
}

.case-preview-slide[data-preview-position="-1"] {
  z-index: 2;
  opacity: 0.52;
  pointer-events: auto;
  transform: translateX(-112%) scale(0.84);
}

.case-preview-slide[data-preview-position="1"] {
  z-index: 2;
  opacity: 0.52;
  pointer-events: auto;
  transform: translateX(12%) scale(0.84);
}

.case-preview-slide.is-active {
  z-index: 4;
  box-shadow: 0 1.6rem 3.8rem rgba(0, 0, 0, 0.18);
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.case-preview-slide:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.case-preview-slide img,
.case-preview-slide video {
  display: block;
  width: 100%;
  height: clamp(17rem, 26vw, 23rem);
  margin-top: auto;
  border-radius: 0.65rem;
  background: var(--scrapbook-surface);
  filter: none;
  object-fit: cover;
}

.case-preview-slide-video video {
  background: #fff;
  object-fit: contain;
}

.case-preview-media-grid {
  display: grid;
  width: 100%;
  height: clamp(17rem, 26vw, 23rem);
  margin-top: auto;
  overflow: hidden;
  border-radius: 0.65rem;
  background: var(--paper);
  gap: 0.18rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.case-preview-media-grid img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.case-preview-slide figcaption {
  order: -1;
  padding: 0;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  border: 0;
  color: inherit;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 900;
  line-height: 1.05;
}

.case-preview-slide figcaption::before {
  display: block;
  width: max-content;
  padding-bottom: 0.25rem;
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  content: "01";
}

.case-preview-slide:nth-child(2) figcaption::before {
  content: "02";
}

.case-preview-slide:nth-child(3) figcaption::before {
  content: "03";
}

.case-preview-slide:nth-child(4) figcaption::before {
  content: "04";
}

.case-preview-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.75rem;
}

.case-preview-controls > div {
  display: flex;
  gap: 0.5rem;
}

.case-preview-dots {
  align-items: center;
}

.case-preview-dots span {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--line);
  transition:
    background 180ms ease,
    scale 180ms ease;
}

.case-preview-dots span.is-active {
  background: var(--ink);
  scale: 1.15;
}

.case-preview-controls button {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  place-items: center;
  transition:
    background 160ms ease,
    color 160ms ease,
    translate 160ms ease;
}

.case-preview-controls button:hover {
  background: var(--accent);
  color: var(--paper);
  translate: 0 -0.12rem;
}

.case-page-body {
  background: var(--paper);
}

.holy-page-hero {
  padding-block: clamp(3rem, 7vw, 7rem) clamp(4rem, 8vw, 8rem);
  background: var(--paper);
}

.holy-page-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
}

.holy-page-back:hover {
  text-decoration: underline;
}

.holy-page-heading {
  display: block;
}

.holy-page-heading h1 {
  max-width: 17ch;
  margin-bottom: var(--display-to-copy-space);
  font-size: var(--display-hero);
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.holy-page-heading h1 span {
  display: block;
  color: var(--ink);
}

.holy-page-lead {
  max-width: 51rem;
}

.holy-page-lead p {
  margin-bottom: 1.25rem;
  color: var(--mid);
  font-size: var(--case-lead-size);
  line-height: 1.4;
}

.holy-page-lead p:last-child {
  margin-bottom: 0;
}

.holy-page-facts {
  display: grid;
  grid-template-columns: 0.8fr 0.9fr 1.6fr;
  margin: clamp(4rem, 8vw, 8rem) 0 clamp(2rem, 4vw, 4rem);
  border-block: 1px solid var(--ink);
}

.holy-page-facts > div {
  padding: 1.4rem;
  border-right: 1px solid var(--ink);
}

.holy-page-facts > div:first-child {
  padding-left: 0;
}

.holy-page-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.holy-page-facts dt {
  margin-bottom: 0.45rem;
  color: var(--mid);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.holy-page-facts dd {
  margin: 0;
}

.holy-page-hero-visual {
  margin: 0;
}

.holy-page-hero-visual img {
  width: 100%;
  height: clamp(24rem, 52vw, 42rem);
  border-radius: var(--radius);
  object-fit: cover;
}

.holy-page-hero-visual figcaption {
  padding-top: 0.75rem;
  color: var(--mid);
  font-size: 0.76rem;
}

.holy-page-section {
  --holy-page-media-offset: clamp(6.5rem, 8vw, 8.5rem);

  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  padding-block: clamp(5rem, 9vw, 9rem);
  border-top: 1px solid var(--ink);
}

.holy-page-section > .holy-case-figure,
.holy-page-section > .holy-shoot-grid,
.holy-page-section > .holy-final-grid {
  margin-top: var(--holy-page-media-offset);
}

.holy-page-section .holy-story-copy h2 {
  max-width: 12ch;
  margin: 0 0 1.7rem;
  font-size: var(--display-chapter);
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.holy-page-section-channel .holy-story-copy {
  grid-row: 1 / 3;
}

.holy-page-closing {
  background: var(--soft);
}

.holy-page-next {
  padding-block: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--ink);
}

.holy-page-next a {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.5rem;
  border-block: 1px solid var(--ink);
  text-decoration: none;
}

.holy-page-next .eyebrow {
  margin: 0;
}

.holy-page-next strong {
  font-size: clamp(1.5rem, 3vw, 3rem);
  transition: translate 180ms ease;
}

.holy-page-next a:hover strong {
  translate: 0.25rem 0;
}

.holy-case-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0;
  margin-top: 2.5rem;
  border: 0;
  border-block: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.holy-case-trigger > span:first-child {
  display: grid;
  gap: 0.2rem;
}

.holy-case-trigger small {
  color: var(--mid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.holy-case-trigger strong {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.1;
  transition: translate 180ms ease;
}

.holy-case-toggle {
  min-width: 4.7rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.holy-case-trigger:hover strong {
  translate: 0.2rem 0;
}

.holy-case-trigger:hover .holy-case-toggle,
.holy-case-trigger[aria-expanded="true"] .holy-case-toggle {
  background: var(--accent);
  color: var(--paper);
}

.holy-case-content {
  padding-top: clamp(3rem, 7vw, 7rem);
  overflow: clip;
  opacity: 1;
}

.holy-case-surface {
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--paper);
}

.holy-case-intro {
  display: grid;
  gap: clamp(2.5rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  padding: clamp(2rem, 5vw, 5rem);
}

.holy-case-intro .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: calc(clamp(2.5rem, 6vw, 7rem) * -0.65);
}

.holy-case-intro h3 {
  max-width: 12ch;
  margin: 0;
  font-size: var(--display-section);
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.holy-case-lead {
  align-self: end;
}

.holy-case-lead p {
  margin-bottom: 1.25rem;
  color: var(--mid);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.holy-case-lead p:last-child {
  margin-bottom: 0;
}

.holy-story-section {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 7rem);
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  padding: clamp(2rem, 5vw, 5rem);
  border-top: 1px solid var(--ink);
}

.holy-story-copy {
  max-width: 38rem;
}

.holy-story-number {
  display: inline-block;
  padding-bottom: 0.2rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 900;
}

.holy-story-copy h4 {
  max-width: 12ch;
  margin: 0 0 1.7rem;
  font-size: clamp(2.25rem, 3.8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.96;
  text-wrap: balance;
}

.holy-story-copy > p:not(.holy-story-number, .holy-case-learning) {
  color: var(--mid);
  font-size: var(--case-body-size);
}

.holy-case-figure {
  margin: 0;
}

.holy-case-figure img {
  width: 100%;
  height: clamp(20rem, 36vw, 32rem);
  border-radius: 0.85rem;
  filter: none;
  object-fit: cover;
}

.holy-page-section > .holy-case-figure img,
.holy-page-section .holy-crm-overview img {
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.holy-case-figure figcaption {
  padding-top: 0.7rem;
  color: var(--mid);
  font-size: 0.75rem;
}

.holy-story-section-channel .holy-story-copy {
  grid-row: 1 / 3;
}

.holy-crm-overview,
.holy-motion-grid {
  grid-column: 2;
}

.holy-motion-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.holy-motion-card {
  overflow: hidden;
}

.holy-motion-card img {
  height: clamp(28rem, 48vw, 40rem);
  background: var(--soft);
  object-fit: contain;
  object-position: center;
}

.holy-shoot-grid {
  display: grid;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.holy-shoot-grid > .holy-case-figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.holy-shoot-prep img,
.holy-shoot-result img {
  height: clamp(32rem, 42vw, 42rem);
  min-height: 0;
  object-fit: cover;
}

.holy-shoot-stack {
  display: grid;
  height: clamp(32rem, 42vw, 42rem);
  gap: clamp(0.75rem, 1.5vw, 1rem);
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.holy-shoot-stack img,
.holy-shoot-stack video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0.85rem;
  background: var(--soft);
  object-fit: cover;
}

.holy-shoot-stack img {
  object-position: 28% center;
}

.holy-story-closing {
  grid-template-columns: 1fr;
}

.holy-story-closing .holy-story-copy {
  display: grid;
  max-width: none;
  column-gap: clamp(2.5rem, 6vw, 7rem);
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
}

.holy-story-closing .holy-story-number,
.holy-story-closing h4 {
  grid-column: 1;
}

.holy-story-closing .holy-story-copy > p:not(.holy-story-number) {
  grid-column: 2;
}

.holy-case-learning {
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--ink);
  color: var(--ink);
  font-size: clamp(1.5rem, 2.7vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.holy-final-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.holy-final-wide {
  grid-column: 1 / -1;
}

.holy-final-wide img {
  height: clamp(20rem, 32vw, 29rem);
}

.holy-final-grid > figure:not(.holy-final-wide) img {
  height: clamp(18rem, 26vw, 23rem);
}

.bears-hero-visual img {
  height: clamp(18rem, 37vw, 34rem);
  object-position: center;
}

.bears-system-heading h1 {
  max-width: 19ch;
  margin-bottom: 0;
}

.bears-system-hero {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.holy-page-facts + .bears-system-hero {
  margin-top: 0;
}

.bears-system-video {
  width: 100%;
}

.bears-system-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: 0 1.2rem 3.5rem rgba(17, 17, 17, 0.14);
  object-fit: cover;
}

.bears-system-copy {
  max-width: 51rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.bears-system-copy p {
  margin-bottom: 1.25rem;
  color: var(--mid);
  font-size: var(--case-lead-size);
  line-height: 1.48;
}

.bears-system-copy .holy-case-learning {
  padding-top: 0;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border-top: 0;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.15;
}

.bears-ad-grid,
.bears-campaign-media,
.bears-packaging-comparison {
  margin-top: var(--holy-page-media-offset);
}

.bears-ad-grid {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bears-ad-grid .holy-case-figure img {
  height: auto;
  aspect-ratio: 1;
}

.bears-campaign-media {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.bears-campaign-section {
  row-gap: clamp(2.5rem, 4vw, 4rem);
}

.bears-campaign-section .holy-story-copy {
  grid-row: 1;
}

.bears-packaging-section {
  align-items: stretch;
}

.bears-packaging-section .holy-story-copy {
  align-self: start;
}

.bears-packaging-section .bears-packaging-comparison {
  min-height: 0;
  margin-top: var(--holy-page-media-offset);
}

.bears-campaign-composition {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}

.bears-campaign-banner {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 0.85rem;
  background: var(--soft);
  object-fit: cover;
  object-position: center;
}

.bears-campaign-grid {
  display: grid;
  align-items: start;
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  grid-template-columns: minmax(0, 4fr) minmax(0, 5fr);
}

.bears-motion-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 0.85rem;
  background: var(--soft);
  object-fit: cover;
  object-position: center;
}

.bears-campaign-stills-grid {
  display: grid;
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bears-campaign-stills-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  background: var(--soft);
  object-fit: cover;
}

.bears-campaign-stills-grid .bears-campaign-still-model {
  object-position: center bottom;
}

.bears-email-module {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 7rem);
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
}

.bears-campaign-section > .bears-email-module {
  grid-column: 1 / -1;
}

.bears-email-copy {
  max-width: 30rem;
  margin: 0;
}

.bears-email-copy .eyebrow {
  margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.bears-email-copy h3 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(2.15rem, 3.6vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.bears-email-copy p {
  margin: 0;
  color: var(--mid);
  font-size: var(--case-body-size);
}

.bears-email-grid {
  display: grid;
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bears-email-frame {
  overflow: hidden;
  border-radius: 1rem;
  background: #e9e9e9;
  box-shadow: 0 1rem 2.8rem rgba(17, 17, 17, 0.11);
}

.bears-email-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  background: var(--paper);
  color: var(--mid);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bears-email-preview {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.bears-email-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}

.bears-email-preview-scroll {
  container-type: inline-size;
}

.bears-email-preview-scroll img {
  animation: bears-email-scroll 12s linear infinite;
  animation-play-state: paused;
  will-change: transform;
}

.bears-email-preview-scroll-long img {
  animation-duration: 15s;
}

.bears-email-preview-scroll-short img {
  animation-duration: 10s;
}

.bears-email-preview-scroll.is-running img {
  animation-play-state: running;
}

.bears-email-preview-scroll:hover img,
.bears-email-preview-scroll:focus img {
  animation-play-state: paused;
}

.bears-email-preview-scroll:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: -3px;
}

@keyframes bears-email-scroll {
  0%,
  8% {
    transform: translateY(0);
  }

  88%,
  100% {
    transform: translateY(calc(-100% + 125cqw));
  }
}

.bears-packaging-comparison {
  --comparison-position: 50%;
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: auto;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: clamp(1rem, 2vw, 1.5rem);
  background: #f4efe7;
  box-shadow: 0 1.2rem 3.5rem rgba(17, 17, 17, 0.12);
  isolation: isolate;
}

.bears-comparison-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 53% 42%, rgba(255, 255, 255, 0.9), transparent 37%),
    linear-gradient(135deg, #f7f3ed 0%, #efe9df 100%);
}

.bears-comparison-after {
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(135deg, #f8f4ee 0%, #f0ebe3 100%);
}

.bears-comparison-before {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.96), transparent 39%),
    linear-gradient(135deg, #f5f0e9 0%, #e9e3db 100%);
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
}

.bears-comparison-label {
  position: absolute;
  z-index: 8;
  top: clamp(1rem, 2.3vw, 2rem);
  display: inline-flex;
  gap: 0.35rem;
  align-items: baseline;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.45rem 1.4rem rgba(17, 17, 17, 0.08);
  font-size: clamp(0.72rem, 1.1vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.bears-comparison-label span {
  color: var(--mid);
  font-weight: 700;
}

.bears-comparison-label-before {
  left: clamp(1rem, 2.3vw, 2rem);
}

.bears-comparison-label-after {
  right: clamp(1rem, 2.3vw, 2rem);
}

.bears-comparison-flatlay {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.bears-comparison-after .bears-comparison-flatlay {
  transform: scale(1.15);
  transform-origin: center;
}

.bears-comparison-divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 2px;
  background: #fff;
  box-shadow: 0 0 0.7rem rgba(17, 17, 17, 0.22);
  pointer-events: none;
  transform: translateX(-50%);
}

.bears-comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: clamp(3rem, 5vw, 3.75rem);
  aspect-ratio: 1;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0.6rem 1.6rem rgba(17, 17, 17, 0.25);
  color: #fff;
  font-size: clamp(0.8rem, 1.3vw, 1rem);
  font-weight: 900;
  transform: translate(-50%, -50%);
}

.bears-comparison-range {
  position: absolute;
  z-index: 4;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
  opacity: 0;
  touch-action: pan-y;
}

.bears-comparison-range::-webkit-slider-runnable-track {
  height: 100%;
  background: transparent;
}

.bears-comparison-range::-webkit-slider-thumb {
  width: 1px;
  height: 100%;
  appearance: none;
}

.bears-comparison-range::-moz-range-track {
  height: 100%;
  background: transparent;
}

.bears-comparison-range::-moz-range-thumb {
  width: 1px;
  height: 100%;
  border: 0;
  background: transparent;
}

.bears-packaging-comparison:has(.bears-comparison-range:focus-visible) {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.bears-essentials-gallery {
  display: grid;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 7rem);
  grid-column: 1 / -1;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
}

.bears-essentials-fruit-intro {
  display: block;
  max-width: 38rem;
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.bears-essentials-fruit-intro p,
.bears-essentials-fruit-intro h3 {
  margin: 0;
}

.bears-essentials-fruit-intro h3 {
  max-width: 8ch;
  margin-bottom: clamp(1.25rem, 2vw, 1.7rem);
  font-size: var(--display-chapter);
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

.bears-essentials-fruit-intro > p:last-child {
  max-width: 34rem;
  color: var(--mid);
  font-size: var(--case-body-size);
}

.bears-essentials-fruit-intro .eyebrow {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.bears-essentials-fruit-grid {
  display: grid;
  gap: clamp(0.65rem, 1vw, 1rem);
  margin-top: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bears-essentials-fruit-grid .holy-case-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.bears-essentials-fruit-grid .holy-case-figure figcaption {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.bears-role-section .component-workflow-explainer {
  container-type: inline-size;
  align-self: start;
  margin-top: clamp(6.5rem, 7vw, 8.5rem);
  grid-column: 2;
  grid-row: 1;
}

.bears-role-section .component-motion {
  font-size: clamp(0.42rem, 1cqw, 0.72rem);
}

.bears-role-learning {
  width: 100%;
  max-width: none;
  padding-top: 0;
  margin: 0;
  border-top: 0;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
  grid-column: 1 / -1;
}

.codex-workflow-explainer {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  grid-column: 1 / -1;
}

.codex-motion {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1.2rem 3.5rem rgba(17, 17, 17, 0.14);
  font-size: clamp(0.48rem, 1.1vw, 1rem);
  isolation: isolate;
}

.codex-motion-scene {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  gap: 3.4em;
  padding: 4.2em;
  opacity: 0;
  transform: translateY(1.4em) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 600ms;
  visibility: hidden;
}

.codex-motion[data-step="0"] [data-codex-scene="0"],
.codex-motion[data-step="1"] [data-codex-scene="1"],
.codex-motion[data-step="2"] [data-codex-scene="2"],
.codex-motion[data-step="3"] [data-codex-scene="3"],
.codex-motion[data-step="4"] [data-codex-scene="4"],
.codex-motion[data-step="5"] [data-codex-scene="5"] {
  z-index: 2;
  opacity: 1;
  transform: none;
  transition-delay: 100ms;
  visibility: visible;
}

.codex-motion-copy {
  position: relative;
  z-index: 2;
  max-width: 37em;
}

.codex-motion-copy h3,
.codex-motion-copy p {
  margin: 0;
}

.codex-motion-copy h3 {
  margin-top: 0.35em;
  font-size: 4.25em;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.codex-motion-copy > p:last-of-type {
  margin-top: 1.15em;
  font-size: 1.65em;
  line-height: 1.2;
}

.codex-motion-kicker {
  color: var(--accent);
  font-size: 1em;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.codex-motion-copy-light,
.codex-motion-copy-light .codex-motion-kicker {
  color: var(--paper);
}

.codex-motion-source {
  grid-template-columns: minmax(0, 1.15fr) minmax(16em, 0.55fr);
}

.codex-motion-source::before,
.codex-motion-source::after {
  position: absolute;
  z-index: -1;
  width: 17em;
  aspect-ratio: 1;
  border-radius: 50%;
  content: "";
}

.codex-motion-source::before {
  top: -7em;
  right: -4em;
  background: var(--scrapbook-surface);
}

.codex-motion-source::after {
  bottom: -8em;
  left: -5em;
  background: var(--scrapbook-surface);
}

.codex-source-wrap {
  position: relative;
  width: min(100%, 23em);
  justify-self: end;
}

.codex-source-label {
  display: inline-flex;
  padding: 0.7em 1.1em;
  margin: 0 0 0.9em;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.78em;
  font-weight: 900;
  text-transform: uppercase;
}

.codex-source-ad {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1.5em;
  background: var(--scrapbook-surface);
  box-shadow: 0 1.3em 2.5em rgba(17, 17, 17, 0.16);
}

.codex-ad-market,
.codex-source-ad strong,
.codex-ad-cta {
  position: absolute;
  z-index: 2;
  left: 10%;
}

.codex-ad-market {
  top: 9%;
  font-size: 0.82em;
  font-weight: 900;
}

.codex-source-ad strong {
  top: 24%;
  font-size: 2.55em;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.78;
  text-transform: uppercase;
}

.codex-ad-cta {
  bottom: 8%;
  display: grid;
  width: 52%;
  height: 15%;
  place-items: center;
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.78em;
  font-weight: 900;
  text-transform: uppercase;
}

.codex-ad-shape {
  position: absolute;
  right: -27%;
  bottom: -10%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.codex-approved {
  position: absolute;
  z-index: 3;
  top: -0.55em;
  right: -0.55em;
  display: grid;
  width: 3.8em;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 1.4em;
  font-weight: 900;
  transform: scale(0);
  transition: transform 480ms cubic-bezier(0.34, 1.56, 0.64, 1) 650ms;
}

.codex-motion[data-step="0"] .codex-approved {
  transform: scale(1);
}

.codex-motion-rules {
  grid-template-columns: minmax(18em, 0.75fr) minmax(0, 1.25fr);
  background: var(--accent);
}

.codex-motion-rules .codex-motion-copy h3 {
  max-width: 10ch;
  font-size: 3.5em;
  line-height: 1.03;
  text-wrap: balance;
}

.codex-rule-list {
  padding: 1.2em 2.6em;
  margin: 0;
  border-radius: 2em;
  background: var(--paper);
  box-shadow: 0 1.2em 2.8em rgba(17, 17, 17, 0.17);
  list-style: none;
}

.codex-rule-list li {
  display: grid;
  align-items: center;
  gap: 1.25em;
  min-height: 4.35em;
  border-bottom: 1px solid var(--line);
  font-size: 1.05em;
  font-weight: 900;
  grid-template-columns: 2.4em 1fr;
  opacity: 0;
  transform: translateX(1.5em);
  transition:
    opacity 350ms ease,
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.codex-rule-list li:last-child {
  border-bottom: 0;
}

.codex-rule-list span {
  display: grid;
  width: 2.4em;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
}

.codex-rule-list li:nth-child(2) {
  transition-delay: 90ms;
}

.codex-rule-list li:nth-child(3) {
  transition-delay: 180ms;
}

.codex-rule-list li:nth-child(4) {
  transition-delay: 270ms;
}

.codex-motion[data-step="1"] .codex-rule-list li {
  opacity: 1;
  transform: none;
}

.codex-motion-flow {
  gap: 1.45em;
  grid-template-rows: auto auto minmax(0, 1fr);
  overflow: hidden;
  background: var(--soft);
}

.codex-motion-flow .codex-motion-copy {
  max-width: 54em;
}

.codex-motion-flow .codex-motion-copy h3 {
  max-width: 15ch;
  font-size: 3.35em;
  line-height: 1.03;
  text-wrap: balance;
}

.codex-flow-tabs {
  display: grid;
  width: min(76%, 67em);
  gap: 1em;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.codex-flow-tabs span {
  padding: 0.8em 1em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0.65em 1.4em rgba(69, 91, 200, 0.17);
  color: var(--paper);
  font-size: 0.76em;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(1em);
  transition:
    opacity 300ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.codex-flow-tabs span:nth-child(2) {
  transition-delay: 75ms;
}

.codex-flow-tabs span:nth-child(3) {
  transition-delay: 150ms;
}

.codex-flow-tabs span:nth-child(4) {
  transition-delay: 225ms;
}

.codex-motion[data-step="2"] .codex-flow-tabs span {
  opacity: 1;
  transform: none;
}

.codex-flow-stage {
  position: relative;
  align-self: stretch;
  min-height: 16em;
}

.codex-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.codex-flow-track,
.codex-flow-signal {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.codex-flow-track {
  stroke: var(--accent);
  stroke-width: 11;
}

.codex-flow-signal {
  stroke: var(--scrapbook-surface);
  stroke-dasharray: 1 38;
  stroke-dashoffset: 180;
  stroke-linecap: round;
  stroke-width: 10;
  animation: codex-flow-dash 950ms linear infinite paused;
}

.codex-motion[data-step="2"] .codex-flow-signal {
  animation-play-state: running;
}

@keyframes codex-flow-dash {
  to {
    stroke-dashoffset: 100;
  }
}

.codex-flow-source,
.codex-flow-core,
.codex-flow-markets {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.codex-flow-source {
  left: 1.5%;
  display: grid;
  align-items: center;
  grid-template-columns: 6.4em;
  font-size: 0.82em;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.codex-flow-source span {
  position: absolute;
  bottom: calc(100% + 0.7em);
  left: 0;
  padding: 0.6em 0.8em;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0.55em 1.2em rgba(69, 91, 200, 0.16);
  color: var(--paper);
  font-size: 0.72em;
  white-space: nowrap;
}

.codex-flow-source i {
  position: relative;
  width: 6.4em;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 0.45em solid var(--paper);
  border-radius: 0.8em;
  background: var(--scrapbook-surface);
  box-shadow: 0 0.8em 1.7em rgba(17, 17, 17, 0.16);
}

.codex-flow-source i::before {
  position: absolute;
  right: -34%;
  bottom: -12%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.codex-flow-source i::after {
  position: absolute;
  bottom: 9%;
  left: 9%;
  width: 48%;
  height: 11%;
  border-radius: 999px;
  background: var(--paper);
  content: "";
}

.codex-flow-core {
  left: 50%;
  display: grid;
  width: 18em;
  min-height: 8.5em;
  padding: 1.6em 2em;
  border-radius: 1.8em;
  background: var(--ink);
  box-shadow: 0 1em 2.4em rgba(17, 17, 17, 0.2);
  color: var(--paper);
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%) scale(0.86);
  transition: transform 650ms cubic-bezier(0.34, 1.56, 0.64, 1) 250ms;
}

.codex-motion[data-step="2"] .codex-flow-core {
  transform: translate(-50%, -50%) scale(1);
}

.codex-flow-core strong {
  font-size: 2.15em;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.codex-flow-core span {
  margin-top: 0.7em;
  color: var(--scrapbook-surface);
  font-size: 0.75em;
  font-weight: 900;
  text-transform: uppercase;
}

.codex-flow-markets {
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 25.5em;
  gap: 0.55em;
}

.codex-flow-markets span {
  position: relative;
  display: grid;
  width: 4.65em;
  height: 7.9em;
  padding: 0.65em 0.55em;
  border-radius: 1.1em;
  background: var(--paper);
  box-shadow: 0 0.85em 1.75em rgba(17, 17, 17, 0.14);
  font-weight: 900;
  grid-template-rows: auto minmax(0, 1fr);
  opacity: 0;
  transform: translateX(-1.4em);
  transition:
    opacity 320ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.codex-flow-markets span:nth-child(even) {
  margin-top: 3.1em;
}

.codex-flow-markets b {
  font-size: 0.72em;
  line-height: 1;
}

.codex-flow-markets i {
  position: relative;
  align-self: center;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 0.4em;
  background: var(--scrapbook-surface);
}

.codex-flow-markets i::before {
  position: absolute;
  right: -33%;
  bottom: -14%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.codex-flow-markets i::after {
  position: absolute;
  bottom: 9%;
  left: 9%;
  width: 52%;
  height: 10%;
  border-radius: 999px;
  background: var(--paper);
  content: "";
}

.codex-flow-markets span:nth-child(2) {
  transition-delay: 70ms;
}

.codex-flow-markets span:nth-child(3) {
  transition-delay: 140ms;
}

.codex-flow-markets span:nth-child(4) {
  transition-delay: 210ms;
}

.codex-flow-markets span:nth-child(5) {
  transition-delay: 280ms;
}

.codex-motion[data-step="2"] .codex-flow-markets span {
  opacity: 1;
  transform: none;
}

.codex-motion-matrix,
.codex-motion-review {
  grid-template-columns: minmax(20em, 0.7fr) minmax(0, 1.3fr);
}

.codex-motion-matrix {
  background: var(--scrapbook-surface);
}

.codex-motion-matrix .codex-motion-kicker {
  color: var(--ink);
}

.codex-motion-matrix .codex-motion-copy h3 {
  font-size: 3em;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.codex-motion-matrix .codex-motion-copy > p:last-of-type {
  font-size: 1.4em;
}

@media (min-width: 701px) and (max-width: 1100px) {
  .codex-motion-matrix,
  .codex-motion-review {
    gap: 2.4em;
    grid-template-columns: minmax(21em, 0.78fr) minmax(0, 1.22fr);
  }

  .codex-motion-matrix .codex-motion-copy h3 {
    font-size: 2.75em;
  }
}

.codex-variant-grid {
  display: grid;
  align-self: stretch;
  gap: 0.62em;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(0, 1fr));
}

.codex-variant-card {
  display: grid;
  min-width: 0;
  padding: 0.55em 0.65em;
  border-radius: 0.9em;
  background: var(--paper);
  box-shadow: 0 0.6em 1.2em rgba(17, 17, 17, 0.11);
  grid-template-rows: auto minmax(0, 1fr);
  opacity: 0;
  transform: translateY(1.2em) scale(0.96);
  transition:
    opacity 300ms ease calc(var(--i) * 16ms),
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i) * 16ms);
}

.codex-motion[data-step="3"] .codex-motion-matrix .codex-variant-card,
.codex-motion[data-step="4"] .codex-motion-review .codex-variant-card {
  opacity: 1;
  transform: none;
}

.codex-variant-header {
  display: flex;
  justify-content: space-between;
  gap: 0.4em;
  font-size: 0.63em;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.codex-variant-header b {
  overflow: hidden;
  color: var(--accent);
  text-overflow: ellipsis;
}

.codex-mini-stage {
  display: grid;
  min-height: 0;
  place-items: center;
}

.codex-mini-ad {
  position: relative;
  width: min(82%, calc(3.35em * var(--ratio)));
  max-height: 3.35em;
  overflow: hidden;
  aspect-ratio: var(--ratio);
  border-radius: 0.3em;
  background: var(--scrapbook-surface);
}

.codex-mini-ad::before {
  position: absolute;
  right: -22%;
  bottom: -20%;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.codex-mini-ad::after {
  position: absolute;
  bottom: 10%;
  left: 9%;
  width: 42%;
  height: 13%;
  border-radius: 999px;
  background: var(--paper);
  content: "";
}

.codex-motion-review {
  background: var(--accent);
}

.codex-review-grid-wrap {
  position: relative;
  align-self: stretch;
  min-width: 0;
  overflow: hidden;
}

.codex-variant-grid-review {
  height: 100%;
  align-self: center;
  max-height: 34em;
}

.codex-review-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  width: 0.5em;
  border-radius: 999px;
  background: var(--scrapbook-surface);
  box-shadow:
    0 0 0.4em rgba(222, 229, 255, 0.9),
    0 0 1.5em rgba(222, 229, 255, 0.7);
  opacity: 0;
}

.codex-motion[data-step="4"] .codex-review-scan {
  animation: codex-review-scan 1.9s ease-in-out 500ms infinite alternate;
  opacity: 1;
}

@keyframes codex-review-scan {
  to {
    left: calc(100% - 0.5em);
  }
}

.codex-check-list {
  display: grid;
  gap: 0.6em;
  padding: 0;
  margin: 2em 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.codex-check-list li {
  padding: 0.65em 0.9em;
  border-radius: 999px;
  background: var(--paper);
  color: var(--accent);
  font-size: 0.82em;
  font-weight: 900;
  text-transform: uppercase;
}

.codex-review-tag {
  position: absolute;
  right: 4.2em;
  bottom: 3.3em;
  z-index: 4;
  padding: 0.65em 1.1em;
  border-radius: 999px;
  background: var(--scrapbook-surface);
  font-size: 0.9em;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(2em);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1) 650ms;
}

.codex-review-tag::before {
  position: absolute;
  top: 50%;
  left: -1.5em;
  width: 0;
  height: 0;
  border-top: 0.85em solid transparent;
  border-right: 1.45em solid var(--ink);
  border-bottom: 0.3em solid transparent;
  content: "";
  transform: translateY(-10%) rotate(15deg);
}

.codex-motion[data-step="4"] .codex-review-tag {
  transform: none;
}

.codex-motion-handoff {
  grid-template-columns: minmax(17em, 0.82fr) minmax(0, 1.18fr);
  background: var(--paper);
}

.codex-handoff-panel {
  position: relative;
  padding: 4em 2.2em 2.2em;
  border-radius: 2em;
  background: var(--ink);
  box-shadow: 0 1.2em 2.8em rgba(17, 17, 17, 0.18);
  color: var(--paper);
}

.codex-handoff-status {
  position: absolute;
  top: -1.2em;
  right: 2em;
  display: grid;
  min-width: 7.5em;
  min-height: 3em;
  place-items: center;
  border-radius: 999px;
  background: var(--scrapbook-surface);
  color: var(--ink);
  font-size: 0.9em;
  font-weight: 900;
  text-transform: uppercase;
  transform: scale(0.7) rotate(-3deg);
  transition: transform 560ms cubic-bezier(0.34, 1.56, 0.64, 1) 280ms;
}

.codex-motion[data-step="5"] .codex-handoff-status {
  transform: scale(1) rotate(-3deg);
}

.codex-handoff-panel ul {
  display: grid;
  gap: 0.7em;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.codex-handoff-panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8em;
  min-height: 3.6em;
  padding: 0.8em 1.1em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.9em;
  font-size: 0.78em;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-1.2em);
  transition:
    opacity 320ms ease,
    transform 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

.codex-handoff-panel li b {
  color: var(--scrapbook-surface);
  font-size: 1.35em;
}

.codex-handoff-panel li:nth-child(2) {
  transition-delay: 70ms;
}

.codex-handoff-panel li:nth-child(3) {
  transition-delay: 140ms;
}

.codex-handoff-panel li:nth-child(4) {
  transition-delay: 210ms;
}

.codex-handoff-panel li:nth-child(5) {
  transition-delay: 280ms;
}

.codex-handoff-panel li:nth-child(6) {
  transition-delay: 350ms;
}

.codex-motion[data-step="5"] .codex-handoff-panel li {
  opacity: 1;
  transform: none;
}

.codex-motion-progress {
  position: absolute;
  bottom: 1.35em;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 0.45em;
  transform: translateX(-50%);
}

.codex-motion-progress i {
  width: 0.52em;
  height: 0.52em;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: width 300ms ease, background 300ms ease;
}

.codex-motion[data-step="1"] .codex-motion-progress,
.codex-motion[data-step="4"] .codex-motion-progress {
  color: var(--paper);
}

.codex-motion[data-step="0"] .codex-motion-progress i:nth-child(1),
.codex-motion[data-step="1"] .codex-motion-progress i:nth-child(2),
.codex-motion[data-step="2"] .codex-motion-progress i:nth-child(3),
.codex-motion[data-step="3"] .codex-motion-progress i:nth-child(4),
.codex-motion[data-step="4"] .codex-motion-progress i:nth-child(5),
.codex-motion[data-step="5"] .codex-motion-progress i:nth-child(6) {
  width: 1.8em;
  background: currentColor;
}

@media (max-width: 700px) {
  .codex-motion {
    aspect-ratio: 4 / 5;
    font-size: clamp(0.5rem, 2.2vw, 0.72rem);
  }

  .codex-motion-scene {
    gap: 1.7em;
    padding: 2.5em;
  }

  .codex-motion-copy h3 {
    font-size: 3.35em;
  }

  .codex-motion-copy > p:last-of-type {
    margin-top: 0.8em;
    font-size: 1.35em;
  }

  .codex-motion-source,
  .codex-motion-rules,
  .codex-motion-matrix,
  .codex-motion-review,
  .codex-motion-handoff {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .codex-motion-flow .codex-motion-copy h3 {
    font-size: 2.7em;
  }

  .codex-motion-flow {
    gap: 1.15em;
  }

  .codex-flow-tabs {
    width: 100%;
    gap: 0.45em;
  }

  .codex-flow-tabs span {
    padding: 0.7em 0.35em;
    font-size: 0.57em;
  }

  .codex-flow-stage {
    min-height: 19em;
  }

  .codex-flow-source {
    left: 0;
    grid-template-columns: 3.6em;
    font-size: 0.62em;
  }

  .codex-flow-source span {
    bottom: calc(100% + 0.55em);
    font-size: 0.62em;
  }

  .codex-flow-source i {
    width: 3.6em;
  }

  .codex-flow-core {
    width: 12.5em;
    min-height: 7em;
    padding: 1.2em 1em;
  }

  .codex-flow-core strong {
    font-size: 1.75em;
  }

  .codex-flow-core span {
    font-size: 0.6em;
  }

  .codex-flow-markets {
    right: 0;
    width: 13.1em;
    gap: 0.22em;
  }

  .codex-flow-markets span {
    width: 2.45em;
    height: 5.15em;
    padding: 0.4em 0.3em;
    border-radius: 0.65em;
  }

  .codex-flow-markets span:nth-child(even) {
    margin-top: 2.2em;
  }

  .codex-flow-markets b {
    font-size: 0.58em;
  }

  .codex-flow-markets i {
    border-radius: 0.25em;
  }

  .codex-source-wrap {
    width: 15em;
    justify-self: center;
  }

  .codex-source-label {
    font-size: 0.66em;
  }

  .codex-rule-list {
    align-self: stretch;
    padding: 0.8em 1.5em;
  }

  .codex-rule-list li {
    min-height: 3.85em;
    font-size: 0.9em;
  }

  .codex-motion-matrix .codex-motion-copy h3,
  .codex-motion-review .codex-motion-copy h3 {
    font-size: 2.8em;
  }

  .codex-variant-grid {
    gap: 0.4em;
  }

  .codex-variant-card {
    padding: 0.4em 0.45em;
    border-radius: 0.68em;
  }

  .codex-variant-header {
    font-size: 0.56em;
  }

  .codex-mini-ad {
    width: min(84%, calc(2.65em * var(--ratio)));
    max-height: 2.65em;
  }

  .codex-check-list {
    gap: 0.4em;
    margin-top: 1em;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .codex-check-list li {
    padding: 0.5em 0.6em;
    font-size: 0.66em;
    text-align: center;
  }

  .codex-variant-grid-review {
    height: 100%;
    max-height: none;
  }

  .codex-review-tag {
    right: 2.5em;
    bottom: 2.1em;
    font-size: 0.72em;
  }

  .codex-motion-progress {
    bottom: 0.9em;
  }

  .codex-handoff-panel {
    align-self: center;
    padding: 3em 1.4em 1.4em;
  }

  .codex-handoff-panel ul {
    gap: 0.45em;
  }

  .codex-handoff-panel li {
    min-height: 3.2em;
    padding: 0.6em 0.75em;
    font-size: 0.66em;
  }

  .codex-handoff-status {
    right: 1.2em;
    font-size: 0.72em;
  }
}

.codex-workflow-explainer figcaption {
  max-width: 48rem;
  padding-top: 0.8rem;
  color: var(--mid);
  font-size: 0.76rem;
}

.component-workflow-explainer {
  width: 100%;
  min-width: 0;
  margin: clamp(1rem, 2vw, 2rem) 0 0;
  grid-column: 1 / -1;
}

.component-motion {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1.2rem 3.5rem rgba(17, 17, 17, 0.14);
  font-size: clamp(0.48rem, 1.1vw, 1rem);
  isolation: isolate;
}

.component-motion-scene {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  gap: 3.4em;
  padding: 4.2em;
  grid-template-columns: minmax(18em, 0.72fr) minmax(0, 1.28fr);
  opacity: 0;
  transform: translateY(1.4em) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0ms linear 600ms;
  visibility: hidden;
}

.component-motion[data-step="0"] [data-component-scene="0"],
.component-motion[data-step="1"] [data-component-scene="1"],
.component-motion[data-step="2"] [data-component-scene="2"],
.component-motion[data-step="3"] [data-component-scene="3"] {
  z-index: 2;
  opacity: 1;
  transform: none;
  transition-delay: 100ms;
  visibility: visible;
}

.component-motion-copy {
  position: relative;
  z-index: 3;
  max-width: 34em;
}

.component-motion-copy h3,
.component-motion-copy p {
  margin: 0;
}

.component-motion-copy h3 {
  max-width: 11ch;
  margin-top: 0.35em;
  font-size: 3.7em;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.01;
  text-wrap: balance;
}

.component-motion-copy > p:last-of-type {
  max-width: 28em;
  margin-top: 1.1em;
  font-size: 1.35em;
  line-height: 1.2;
}

.component-motion-kicker {
  color: var(--accent);
  font-size: 0.92em;
  font-weight: 900;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.component-motion-copy-light,
.component-motion-copy-light .component-motion-kicker {
  color: var(--paper);
}

.component-build-stage {
  display: grid;
  align-items: center;
  min-height: 29em;
  gap: 1.35em;
  grid-template-columns: minmax(9em, 0.72fr) auto minmax(14em, 1.1fr);
}

.component-part-list {
  display: grid;
  gap: 0.9em;
}

.component-part-list > span {
  display: grid;
  align-items: center;
  gap: 0.8em;
  min-height: 4.2em;
  padding: 0.65em 0.8em;
  border-radius: 1em;
  background: var(--paper);
  box-shadow: 0 0.65em 1.5em rgba(17, 17, 17, 0.12);
  font-size: 0.78em;
  grid-template-columns: 2.7em minmax(0, 1fr);
  opacity: 0;
  transform: translateX(-2em);
  transition:
    opacity 320ms ease calc(var(--i) * 120ms),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i) * 120ms);
}

.component-motion[data-step="0"] .component-part-list > span {
  opacity: 1;
  transform: none;
}

.component-part-list i {
  position: relative;
  display: block;
  width: 2.7em;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 0.55em;
  background: var(--soft);
}

.component-part-image {
  background: var(--scrapbook-surface) !important;
}

.component-part-image::after {
  position: absolute;
  right: -30%;
  bottom: -20%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.component-part-copy::before,
.component-part-copy::after {
  position: absolute;
  left: 17%;
  height: 0.35em;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.component-part-copy::before {
  top: 33%;
  width: 66%;
}

.component-part-copy::after {
  top: 55%;
  width: 48%;
}

.component-part-cta::after {
  position: absolute;
  inset: 35% 16%;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.component-build-arrow {
  color: var(--accent);
  font-size: 2.3em;
  font-weight: 900;
  opacity: 0;
  transform: translateX(-0.7em);
  transition:
    opacity 300ms ease 420ms,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1) 420ms;
}

.component-motion[data-step="0"] .component-build-arrow {
  opacity: 1;
  transform: none;
}

.component-master-card {
  position: relative;
  display: grid;
  min-height: 25em;
  padding: 1.4em;
  border: 0.55em solid var(--paper);
  border-radius: 1.7em;
  background: var(--accent);
  box-shadow: 0 1em 2.4em rgba(17, 17, 17, 0.2);
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  transform: scale(0.84) rotate(2deg);
  transition: transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 300ms;
}

.component-motion[data-step="0"] .component-master-card {
  transform: none;
}

.component-master-card em {
  position: absolute;
  top: -1.4em;
  left: 1.1em;
  padding: 0.55em 0.9em;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7em;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.component-master-image {
  position: relative;
  display: block;
  min-height: 13em;
  overflow: hidden;
  border-radius: 1em;
  background: var(--scrapbook-surface);
}

.component-master-image::after {
  position: absolute;
  right: -18%;
  bottom: -38%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.component-master-copy {
  display: grid;
  gap: 0.5em;
  padding: 1.1em 0 0.9em;
}

.component-master-copy b {
  display: block;
  width: 68%;
  height: 0.65em;
  border-radius: 999px;
  background: var(--paper);
}

.component-master-copy b:last-child {
  width: 46%;
  opacity: 0.62;
}

.component-master-cta {
  display: block;
  width: 48%;
  height: 2.2em;
  border-radius: 999px;
  background: var(--scrapbook-surface);
}

.component-motion-library,
.component-motion-sync {
  background: var(--accent);
}

.component-library-window {
  overflow: hidden;
  min-height: 29em;
  border: 0.35em solid var(--paper);
  border-radius: 1.8em;
  background: var(--paper);
  box-shadow: 0 1.2em 2.8em rgba(17, 17, 17, 0.22);
  transform: translateY(1.5em) scale(0.94);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.component-motion[data-step="1"] .component-library-window {
  transform: none;
}

.component-library-window header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  padding: 1.1em 1.4em;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.85em;
  text-transform: uppercase;
}

.component-library-window header span {
  padding: 0.55em 0.85em;
  border-radius: 999px;
  background: var(--scrapbook-surface);
  color: var(--ink);
  font-size: 0.8em;
  font-weight: 900;
}

.component-library-body {
  display: grid;
  min-height: 24em;
  grid-template-columns: minmax(10em, 0.65fr) minmax(0, 1.35fr);
}

.component-library-body nav {
  display: grid;
  align-content: start;
  gap: 0.55em;
  padding: 1.4em;
  border-right: 1px solid var(--line);
  background: var(--soft);
  font-size: 0.72em;
}

.component-library-body nav b,
.component-library-body nav span {
  padding: 0.7em 0.8em;
  border-radius: 0.65em;
}

.component-library-body nav b {
  background: var(--accent);
  color: var(--paper);
}

.component-library-preview {
  display: grid;
  align-items: center;
  gap: 1em;
  padding: 1.4em 1.8em;
  grid-template-columns: minmax(10em, 1fr) minmax(9em, 0.7fr);
}

.component-library-preview > em {
  position: absolute;
  align-self: start;
  color: var(--accent);
  font-size: 0.75em;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.component-library-card {
  display: grid;
  min-height: 18em;
  padding: 1em;
  border-radius: 1.2em;
  background: var(--scrapbook-surface);
  box-shadow: 0 0.8em 1.8em rgba(17, 17, 17, 0.13);
  grid-column: 1;
  grid-row: 1;
  grid-template-rows: minmax(0, 1fr) auto auto auto;
}

.component-library-card i {
  position: relative;
  display: block;
  min-height: 9em;
  overflow: hidden;
  border-radius: 0.75em;
  background: var(--paper);
}

.component-library-card i::after {
  position: absolute;
  right: -20%;
  bottom: -45%;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.component-library-card b {
  display: block;
  width: 68%;
  height: 0.58em;
  margin-top: 0.75em;
  border-radius: 999px;
  background: var(--ink);
}

.component-library-card b + b {
  width: 44%;
  margin-top: 0.4em;
  opacity: 0.48;
}

.component-library-card span {
  display: block;
  width: 48%;
  height: 1.8em;
  margin-top: 0.8em;
  border-radius: 999px;
  background: var(--accent);
}

.component-library-preview ul {
  display: grid;
  gap: 0.7em;
  padding: 0;
  margin: 0;
  list-style: none;
}

.component-library-preview li {
  padding: 0.8em 0.9em;
  border: 1px solid var(--line);
  border-radius: 0.8em;
  color: var(--accent);
  font-size: 0.72em;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(1em);
  transition:
    opacity 300ms ease,
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.component-library-preview li:nth-child(2) {
  transition-delay: 90ms;
}

.component-library-preview li:nth-child(3) {
  transition-delay: 180ms;
}

.component-motion[data-step="1"] .component-library-preview li {
  opacity: 1;
  transform: none;
}

.component-motion-reuse {
  background: var(--soft);
}

.component-motion-reuse .component-motion-copy h3 {
  font-size: 3.35em;
}

.component-reuse-stage {
  position: relative;
  min-height: 30em;
}

.component-reuse-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.component-reuse-track,
.component-reuse-signal {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.component-reuse-track {
  stroke: var(--accent);
  stroke-width: 9;
}

.component-reuse-signal {
  stroke: var(--scrapbook-surface);
  stroke-dasharray: 1 33;
  stroke-dashoffset: 150;
  stroke-linecap: round;
  stroke-width: 8;
  animation: component-reuse-flow 900ms linear infinite paused;
}

.component-motion[data-step="2"] .component-reuse-signal {
  animation-play-state: running;
}

@keyframes component-reuse-flow {
  to {
    stroke-dashoffset: 84;
  }
}

.component-reuse-source,
.component-reuse-output {
  position: absolute;
  z-index: 2;
  background: var(--paper);
  box-shadow: 0 0.85em 1.9em rgba(17, 17, 17, 0.15);
}

.component-reuse-source {
  top: 50%;
  left: 0;
  display: grid;
  width: 10.5em;
  min-height: 13em;
  padding: 1em;
  border: 0.38em solid var(--accent);
  border-radius: 1.3em;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  transform: translateY(-50%) scale(0.86);
  transition: transform 650ms cubic-bezier(0.34, 1.56, 0.64, 1) 150ms;
}

.component-motion[data-step="2"] .component-reuse-source {
  transform: translateY(-50%) scale(1);
}

.component-reuse-source > span {
  color: var(--accent);
  font-size: 0.68em;
  font-weight: 900;
  text-transform: uppercase;
}

.component-reuse-source > i,
.component-reuse-output > i {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.55em;
  background: var(--scrapbook-surface);
}

.component-reuse-source > i {
  min-height: 6.8em;
  margin-top: 0.6em;
}

.component-reuse-source > i::after,
.component-reuse-output > i::after {
  position: absolute;
  right: -27%;
  bottom: -34%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.component-reuse-source > b,
.component-reuse-source > em,
.component-reuse-output > span {
  display: block;
  border-radius: 999px;
}

.component-reuse-source > b {
  width: 66%;
  height: 0.55em;
  margin-top: 0.7em;
  background: var(--ink);
}

.component-reuse-source > em {
  width: 45%;
  height: 1.45em;
  margin-top: 0.55em;
  background: var(--accent);
}

.component-reuse-output {
  right: 0;
  display: grid;
  width: 17em;
  height: 7.2em;
  padding: 0.8em;
  border-radius: 1.1em;
  gap: 0.55em 0.75em;
  grid-template-columns: minmax(0, 1fr) 3.4em;
  grid-template-rows: auto minmax(0, 1fr);
  opacity: 0;
  transform: translateX(-1.5em);
  transition:
    opacity 300ms ease calc(var(--i) * 120ms),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i) * 120ms);
}

.component-reuse-output b {
  font-size: 0.7em;
  text-transform: uppercase;
}

.component-reuse-output i {
  min-height: 0;
  grid-column: 2;
  grid-row: 1 / 3;
}

.component-reuse-output span {
  align-self: end;
  width: 55%;
  height: 1.35em;
  background: var(--accent);
}

.component-reuse-crm {
  top: 0;
}

.component-reuse-meta {
  top: 50%;
  transform: translate(-1.5em, -50%);
}

.component-reuse-landing {
  bottom: 0;
}

.component-motion[data-step="2"] .component-reuse-output {
  opacity: 1;
  transform: none;
}

.component-motion[data-step="2"] .component-reuse-meta {
  transform: translateY(-50%);
}

.component-sync-stage {
  position: relative;
  display: grid;
  min-height: 29em;
  gap: 1em;
  padding: 1.5em;
  border-radius: 1.8em;
  background: var(--soft);
  box-shadow: 0 1.2em 2.8em rgba(17, 17, 17, 0.2);
  grid-template-rows: auto minmax(0, 1fr);
}

.component-change-control {
  display: grid;
  align-items: center;
  gap: 0.35em 1em;
  padding: 1em 1.2em;
  border-radius: 1.1em;
  background: var(--ink);
  color: var(--paper);
  grid-template-columns: minmax(0, 1fr) auto;
}

.component-change-control span {
  color: var(--scrapbook-surface);
  font-size: 0.65em;
  font-weight: 900;
  text-transform: uppercase;
}

.component-change-control strong {
  font-size: 1.15em;
  grid-column: 1;
}

.component-change-control i {
  position: relative;
  width: 4.2em;
  height: 2.2em;
  border-radius: 999px;
  background: var(--accent);
  grid-column: 2;
  grid-row: 1 / 3;
}

.component-change-control i::after {
  position: absolute;
  top: 0.3em;
  left: 0.3em;
  width: 1.6em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--paper);
  content: "";
  transform: translateX(0);
  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1) 350ms;
}

.component-motion[data-step="3"] .component-change-control i::after {
  transform: translateX(2em);
}

.component-sync-list {
  display: grid;
  align-content: center;
  gap: 0.75em;
}

.component-sync-list > span {
  display: grid;
  align-items: center;
  gap: 1em;
  min-height: 4.7em;
  padding: 0.7em 0.9em;
  border: 1px solid var(--line);
  border-radius: 1em;
  background: var(--paper);
  grid-template-columns: minmax(6em, 0.7fr) minmax(7em, 1fr) auto;
  opacity: 0;
  transform: translateY(1em);
  transition:
    opacity 300ms ease calc(var(--i) * 120ms + 260ms),
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1) calc(var(--i) * 120ms + 260ms);
}

.component-motion[data-step="3"] .component-sync-list > span {
  opacity: 1;
  transform: none;
}

.component-sync-list b {
  font-size: 0.78em;
  text-transform: uppercase;
}

.component-sync-list i {
  position: relative;
  display: block;
  width: 100%;
  height: 2.4em;
  overflow: hidden;
  border-radius: 0.45em;
  background: var(--scrapbook-surface);
}

.component-sync-list i::after {
  position: absolute;
  right: 7%;
  bottom: 17%;
  width: 25%;
  height: 34%;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.component-sync-list em {
  display: grid;
  min-width: 9.5em;
  padding: 0.55em 0.75em;
  border-radius: 999px;
  background: var(--scrapbook-surface);
  color: var(--accent);
  font-size: 0.62em;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.component-sync-list em span,
.component-sync-list em strong {
  font-size: inherit;
  font-weight: 900;
  grid-column: 1;
  grid-row: 1;
  text-align: center;
}

.component-sync-list em span {
  opacity: 1;
}

.component-sync-list em strong {
  opacity: 0;
}

.component-motion[data-step="3"] .component-sync-list em span {
  animation: component-update-available 2.7s ease both;
}

.component-motion[data-step="3"] .component-sync-list em strong {
  animation: component-update-accepted 2.7s ease both;
}

@keyframes component-update-available {
  0%,
  32% {
    opacity: 1;
    transform: translateY(0);
  }

  40%,
  100% {
    opacity: 0;
    transform: translateY(-0.35em);
  }
}

@keyframes component-update-accepted {
  0%,
  48% {
    opacity: 0;
    transform: translateY(0.35em);
  }

  58%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.component-handoff-tag {
  position: absolute;
  right: 1.3em;
  bottom: -1.1em;
  padding: 0.75em 1.1em;
  border-radius: 999px;
  background: var(--scrapbook-surface);
  box-shadow: 0 0.7em 1.5em rgba(17, 17, 17, 0.14);
  font-size: 0.72em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.7) rotate(-2deg);
}

.component-motion[data-step="3"] .component-handoff-tag {
  animation: component-handoff-accepted 2.7s ease both;
}

@keyframes component-handoff-accepted {
  0%,
  46% {
    opacity: 0;
    transform: scale(0.7) rotate(-2deg);
  }

  62% {
    opacity: 1;
    transform: scale(1.08) rotate(-2deg);
  }

  76%,
  100% {
    opacity: 1;
    transform: scale(1) rotate(-2deg);
  }
}

.component-motion-progress {
  position: absolute;
  bottom: 1.35em;
  left: 50%;
  z-index: 5;
  display: flex;
  gap: 0.45em;
  transform: translateX(-50%);
}

.component-motion-progress i {
  width: 0.52em;
  height: 0.52em;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: width 300ms ease, background 300ms ease;
}

.component-motion[data-step="1"] .component-motion-progress,
.component-motion[data-step="3"] .component-motion-progress {
  color: var(--paper);
}

.component-motion[data-step="0"] .component-motion-progress i:nth-child(1),
.component-motion[data-step="1"] .component-motion-progress i:nth-child(2),
.component-motion[data-step="2"] .component-motion-progress i:nth-child(3),
.component-motion[data-step="3"] .component-motion-progress i:nth-child(4) {
  width: 1.8em;
  background: currentColor;
}

.component-workflow-explainer figcaption {
  max-width: 48rem;
  padding-top: 0.8rem;
  color: var(--mid);
  font-size: 0.76rem;
}

@media (max-width: 700px) {
  .component-motion {
    aspect-ratio: 4 / 5;
    font-size: clamp(0.5rem, 2.2vw, 0.72rem);
  }

  .component-motion-scene {
    gap: 1.6em;
    padding: 2.5em;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
  }

  .component-motion-copy h3,
  .component-motion-reuse .component-motion-copy h3 {
    max-width: 13ch;
    font-size: 2.8em;
  }

  .component-motion-copy > p:last-of-type {
    margin-top: 0.75em;
    font-size: 1.12em;
  }

  .component-build-stage {
    min-height: 25em;
    gap: 0.75em;
    grid-template-columns: minmax(7em, 0.72fr) auto minmax(11em, 1.1fr);
  }

  .component-part-list {
    gap: 0.55em;
  }

  .component-part-list > span {
    min-height: 3.7em;
    gap: 0.55em;
    padding: 0.5em;
    font-size: 0.61em;
    grid-template-columns: 2.4em minmax(0, 1fr);
  }

  .component-part-list i {
    width: 2.4em;
  }

  .component-build-arrow {
    font-size: 1.6em;
  }

  .component-master-card {
    min-height: 19em;
    padding: 1em;
  }

  .component-master-image {
    min-height: 9.5em;
  }

  .component-library-window {
    min-height: 25em;
  }

  .component-library-body {
    min-height: 20.5em;
    grid-template-columns: minmax(8em, 0.58fr) minmax(0, 1.42fr);
  }

  .component-library-body nav {
    padding: 1em 0.7em;
    font-size: 0.58em;
  }

  .component-library-preview {
    padding: 1em;
    grid-template-columns: minmax(8em, 1fr) minmax(6em, 0.7fr);
  }

  .component-library-card {
    min-height: 15em;
  }

  .component-library-card i {
    min-height: 7em;
  }

  .component-library-preview li {
    padding: 0.65em 0.55em;
    font-size: 0.56em;
  }

  .component-reuse-stage {
    min-height: 26em;
  }

  .component-reuse-source {
    width: 7.5em;
    min-height: 10.5em;
    padding: 0.65em;
  }

  .component-reuse-source > i {
    min-height: 5.2em;
  }

  .component-reuse-output {
    width: 11.5em;
    height: 6em;
    grid-template-columns: minmax(0, 1fr) 2.8em;
  }

  .component-sync-stage {
    min-height: 25em;
    padding: 1em;
  }

  .component-sync-list > span {
    min-height: 4.1em;
    gap: 0.6em;
    padding: 0.55em 0.65em;
    grid-template-columns: minmax(4.8em, 0.6fr) minmax(6em, 1fr) auto;
  }

  .component-sync-list em {
    min-width: 8.8em;
    padding: 0.45em 0.55em;
    font-size: 0.52em;
  }

  .component-handoff-tag {
    right: 0.8em;
    bottom: -0.8em;
    font-size: 0.62em;
  }

  .component-motion-progress {
    bottom: 0.9em;
  }
}

.holy-case-close {
  display: block;
  width: calc(100% - clamp(4rem, 10vw, 10rem));
  padding: 1.2rem;
  margin: 0 auto clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    translate 180ms ease;
}

.holy-case-close:hover {
  background: var(--ink);
  color: var(--paper);
  translate: 0 -0.12rem;
}

.case-disclosure {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.case-disclosure summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.5rem;
  border-block: 1px solid #555;
  cursor: pointer;
  list-style: none;
}

.case-disclosure summary::-webkit-details-marker {
  display: none;
}

.case-disclosure summary > span:first-child {
  display: grid;
  gap: 0.25rem;
}

.case-label {
  color: #bdbdbd;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-disclosure summary strong {
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
}

.case-disclosure summary small {
  color: #bdbdbd;
  font-size: 0.86rem;
}

.case-toggle {
  flex: 0 0 auto;
  font-size: 0.85rem;
  font-weight: 900;
}

.case-disclosure[open] .case-toggle {
  font-size: 0;
}

.case-disclosure[open] .case-toggle::after {
  content: "Close ×";
  font-size: 0.85rem;
}

.case-disclosure-content {
  padding: clamp(2rem, 5vw, 5rem);
  margin-top: 1.5rem;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.proof-heading {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 6vw, 7rem);
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.case-disclosure .proof-heading h3 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.proof-heading > p {
  max-width: 32rem;
  margin: 0;
  color: var(--mid);
  font-size: 1.08rem;
}

.proof-visual {
  margin: 0;
}

.proof-visual img {
  width: 100%;
  max-height: 52rem;
  border: 1px solid var(--ink);
  filter: grayscale(1);
  object-fit: contain;
}

.proof-visual figcaption {
  padding-top: 0.3rem;
}

.approach {
  padding-block: var(--section-start-space) var(--section-end-space);
}

.approach-heading {
  display: grid;
  align-items: end;
  column-gap: clamp(2rem, 5vw, 5rem);
  row-gap: 1rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.5fr);
  margin-bottom: clamp(4rem, 8vw, 8rem);
}

.approach-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.approach-heading > p:last-child {
  max-width: 28rem;
  margin: 0;
  color: var(--mid);
  font-size: 1.08rem;
}

.principles {
  display: grid;
  padding: 0;
  margin: 0;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
}

.principles li {
  min-height: 0;
  padding: 1.25rem clamp(1.25rem, 2.5vw, 2.5rem) 2.5rem;
  border-radius: var(--radius);
  background: var(--scrapbook-surface);
  box-shadow: 0 1rem 2.5rem rgba(17, 17, 17, 0.08);
}

.principles span {
  display: block;
  margin-bottom: clamp(3.5rem, 4vw, 4.75rem);
  font-size: 0.76rem;
  font-weight: 900;
}

.principles h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  letter-spacing: -0.02em;
  line-height: 1;
}

.principles p {
  max-width: 24rem;
  margin-bottom: 0;
  color: var(--mid);
}

.ai-note {
  display: grid;
  align-items: start;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 44rem);
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.ai-note > .eyebrow {
  margin-bottom: 0;
}

.ai-note h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}

.ai-note > div > p {
  margin-bottom: 0;
  color: var(--mid);
  font-size: var(--supporting-copy-size);
}

.archive {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(22rem, 1.2fr);
  padding-block: var(--section-start-space) var(--section-end-space);
  border-top: 1px solid var(--ink);
}

.archive h2 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.archive > div > p:last-child {
  max-width: 32rem;
  color: var(--mid);
  font-size: var(--supporting-copy-size);
}

.archive-carousel {
  min-width: 0;
}

.archive-carousel .case-preview-viewport,
.archive-carousel .case-preview-track {
  min-height: 0;
}

.archive-carousel .case-preview-track {
  display: grid;
}

.archive-carousel-slide {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  grid-area: 1 / 1;
  width: 78%;
  padding: clamp(1.15rem, 1.8vw, 1.5rem);
  margin-inline: auto;
  transform: scale(0.78);
}

.archive-carousel .archive-carousel-slide[data-preview-position="-1"] {
  transform: translateX(-76%) scale(0.84);
}

.archive-carousel .archive-carousel-slide[data-preview-position="1"] {
  transform: translateX(76%) scale(0.84);
}

.archive-carousel .archive-carousel-slide.is-active {
  transform: translateX(0) scale(1);
}

.archive-carousel-slide figcaption {
  margin-bottom: clamp(0.85rem, 1.8vw, 1.35rem);
}

.archive-carousel .archive-carousel-slide figcaption::before {
  padding-bottom: 0.15rem;
  margin-bottom: clamp(0.8rem, 1.5vw, 1.25rem);
  content: attr(data-archive-index);
}

.archive-tile-grid {
  display: grid;
  gap: clamp(0.35rem, 0.8vw, 0.7rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

.archive-carousel-slide .archive-tile-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0;
  border: 1px solid rgba(17, 17, 17, 0.55);
  border-radius: clamp(0.45rem, 0.8vw, 0.7rem);
  background: var(--paper);
  object-fit: cover;
}

.archive-carousel-slide .archive-tile-focus-top {
  object-position: center top;
}

.archive-carousel-slide .archive-tile-focus-bottom {
  object-position: center bottom;
}

.archive-carousel-slide .archive-tile-focus-right {
  object-position: right center;
}

.archive-carousel-controls {
  padding-top: 0.35rem;
}

.chapter-bears .case-preview-dots span {
  background: rgba(255, 255, 255, 0.42);
}

.chapter-bears .case-preview-dots span.is-active {
  background: #fff;
  scale: 1.25;
}

.bears-access[hidden],
[data-bears-protected][hidden] {
  display: none !important;
}

.bears-access {
  padding-block: var(--section-start-space) var(--section-end-space);
}

.bears-access-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  font-weight: 900;
  text-decoration: none;
}

.bears-access-back span {
  transition: translate 160ms ease;
}

.bears-access-back:hover span {
  translate: -0.25rem 0;
}

.bears-access-heading {
  max-width: 70rem;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.bears-access-heading h1 {
  max-width: 13ch;
  margin-bottom: var(--display-to-copy-space);
  font-size: var(--display-hero);
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.bears-access-heading > p:last-child {
  max-width: 50rem;
  margin-bottom: 0;
  color: var(--mid);
  font-size: var(--case-lead-size);
  line-height: 1.45;
}

.bears-access-options {
  display: grid;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.5rem);
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
}

.bears-access-card {
  height: 100%;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-radius: var(--radius);
  background: var(--scrapbook-surface);
  box-shadow: 0 1rem 2.5rem rgba(17, 17, 17, 0.08);
}

.bears-access-card h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.bears-access-card > p:not(.bears-access-number, .bears-access-test-note) {
  max-width: 40rem;
  color: var(--mid);
}

.bears-access-number {
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  border-bottom: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.bears-request-form,
.bears-pin-form {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

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

.bears-request-form label,
.bears-pin-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 900;
}

.bears-request-form input,
.bears-request-form textarea,
.bears-pin-form input {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.45);
  border-radius: 0.8rem;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 300;
}

.bears-request-form input,
.bears-pin-form input {
  min-height: 3.25rem;
  padding: 0.75rem 0.9rem;
}

.bears-request-form textarea {
  min-height: 7rem;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.bears-request-form :is(input, textarea):focus,
.bears-pin-form input:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(69, 91, 200, 0.22);
  outline-offset: 1px;
}

.bears-request-form .button,
.bears-pin-form .button {
  justify-self: start;
  margin-top: 0.35rem;
}

.bears-pin-form input {
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bears-form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--mid);
  font-size: 0.88rem;
}

.bears-form-status.is-error {
  color: #8d1e1e;
  font-weight: 900;
}

.bears-form-status.is-success {
  color: var(--ink);
  font-weight: 900;
}

.bears-access-test-note {
  padding-top: 1rem;
  margin: 2rem 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.22);
  color: var(--mid);
  font-size: 0.78rem;
}

.bears-access-test-note code {
  padding: 0.25rem 0.45rem;
  border-radius: 0.4rem;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.bears-pin-card {
  display: flex;
  flex-direction: column;
}

.bears-pin-card .bears-access-test-note {
  margin-top: auto;
}

.bears-page-is-unlocked .site-header {
  border-bottom-color: var(--line);
}

.brain-dump-page {
  min-height: calc(100vh - 10rem);
}

.brain-dump-hero {
  padding-block: var(--section-start-space) clamp(2.5rem, 4vw, 4rem);
}

.brain-dump-hero h1 {
  max-width: 12ch;
  margin-bottom: var(--display-to-copy-space);
  font-size: var(--display-hero);
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.brain-dump-hero > p:last-child {
  max-width: none;
  margin-bottom: 0;
  color: var(--mid);
  font-size: var(--case-lead-size);
  line-height: 1.45;
}

.brain-dump-index {
  padding-bottom: var(--section-end-space);
}

.brain-dump-entry-card {
  display: grid;
  height: clamp(21rem, 26vw, 25rem);
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--scrapbook-surface);
  box-shadow: 0 1rem 2.5rem rgba(17, 17, 17, 0.08);
  grid-template-columns: minmax(0, 1fr) clamp(14rem, 24vw, 21rem);
}

.brain-dump-entry-card-copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.brain-dump-entry-card-meta {
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1rem, 1.75vw, 1.5rem);
}

.brain-dump-entry-card-meta .eyebrow,
.brain-dump-entry-card-meta time {
  margin: 0;
}

.brain-dump-entry-card-meta time {
  color: var(--mid);
  font-size: 0.9rem;
}

.brain-dump-entry-card h2 {
  max-width: 26ch;
  margin-bottom: 0.9rem;
  font-size: clamp(2.2rem, 3.1vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.brain-dump-entry-card h2 a {
  text-decoration: none;
}

.brain-dump-entry-card-excerpt {
  max-width: 34rem;
  margin-bottom: 1.35rem;
  color: var(--mid);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.5;
}

.brain-dump-entry-card-link {
  gap: 0.75rem;
}

.brain-dump-entry-card-image-link {
  display: block;
  min-height: 0;
  margin: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  border-radius: clamp(0.9rem, 1.5vw, 1.3rem);
}

.brain-dump-entry-card-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.brain-entry-header {
  width: min(100%, 58rem);
  padding-block: var(--section-start-space) clamp(3.5rem, 7vw, 6.5rem);
}

.brain-entry-back {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: clamp(3rem, 7vw, 7rem);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.brain-entry-header h1 {
  max-width: 13ch;
  margin-bottom: var(--display-to-copy-space);
  font-size: var(--display-hero);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.brain-entry-header time {
  color: var(--mid);
  font-size: 0.95rem;
}

.brain-entry-content {
  width: min(100%, 58rem);
  padding-bottom: var(--section-end-space);
}

.brain-entry-content p {
  margin-bottom: 1.6em;
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.68;
}

.brain-entry-content a {
  font-weight: 900;
  text-decoration-thickness: 0.1em;
}

.brain-entry-content .brain-entry-lede a {
  border-radius: 0.16em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.brain-entry-content .brain-entry-lede a:hover,
.brain-entry-content .brain-entry-lede a:focus-visible {
  background: var(--accent);
  box-shadow:
    0.14em 0 0 var(--accent),
    -0.14em 0 0 var(--accent);
  color: var(--paper);
  text-decoration-color: transparent;
}

.brain-entry-content .brain-entry-lede {
  margin-bottom: clamp(2rem, 5vw, 4rem);
  color: var(--ink);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

.brain-entry-content .brain-entry-beat {
  margin-block: clamp(1.25rem, 2.25vw, 2rem);
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.brain-entry-visual {
  margin-block: clamp(3rem, 7vw, 6rem);
}

.brain-entry-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.brain-entry-visual-portrait {
  width: min(100%, 31rem);
  margin-inline: auto;
}

.brain-entry-visual-square {
  width: min(100%, 38rem);
  margin-inline: auto;
}

.brain-entry-content .brain-entry-closing {
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.brain-entry-footer {
  width: min(100%, 58rem);
  padding-bottom: var(--section-end-space);
}

@media (max-width: 820px) {
  .brain-dump-entry-card {
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .brain-dump-entry-card-copy {
    min-height: 0;
    padding-block: clamp(2.5rem, 10vw, 4rem);
  }

  .brain-dump-entry-card-image-link {
    min-height: 0;
    margin: 0 clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2rem);
    aspect-ratio: 4 / 3;
  }

  .brain-dump-entry-card-image-link img {
    object-position: center 22%;
  }
}

.contact {
  width: 100%;
  margin-bottom: 0;
  padding-inline: max(
    var(--gutter),
    calc((100vw - var(--max-width)) / 2 + var(--gutter))
  );
  padding-block: clamp(5rem, 10vw, 9rem);
  border-radius: 0;
  background: var(--panel-black);
  color: var(--paper);
}

.contact .eyebrow {
  color: #bdbdbd;
}

.contact h2 {
  max-width: 15ch;
  margin-bottom: 1.5rem;
  font-size: var(--display-section);
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.contact > p:not(.eyebrow) {
  max-width: 42rem;
  color: #bdbdbd;
  font-size: var(--supporting-copy-size);
}

.contact .button {
  margin-top: 1rem;
}

.contact .button-light:hover,
.contact .button-light:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0.3rem 0 #fff;
  color: var(--paper);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.8rem 2.5rem;
  color: var(--mid);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
}

.about-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
}

.about-dialog::backdrop {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.about-dialog[open] {
  display: grid;
  justify-items: end;
}

.about-panel {
  width: min(48rem, 100%);
  height: 100%;
  overflow-y: auto;
  border-left: 1px solid var(--ink);
  background: var(--soft);
  animation: panel-in 280ms cubic-bezier(0.22, 0.8, 0.25, 1);
}

@keyframes panel-in {
  from {
    translate: 100% 0;
  }
}

.about-panel-top {
  position: sticky;
  z-index: 1;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.5rem, 4vw, 3.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(241, 241, 241, 0.9);
  backdrop-filter: blur(14px);
}

.about-panel-top .eyebrow {
  margin: 0;
  color: var(--ink);
}

.icon-button {
  display: grid;
  width: 2.8rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.about-panel-content {
  padding: clamp(3rem, 7vw, 6rem) clamp(1.5rem, 6vw, 5rem);
}

.about-panel-content h2 {
  margin-bottom: 2rem;
  font-size: var(--display-section);
  letter-spacing: -0.025em;
  line-height: 0.94;
}

.about-panel-content > p {
  max-width: 37rem;
  color: #4f4f4f;
  font-size: 1.05rem;
}

.about-panel-content .about-lede {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 900;
}

.about-experience {
  margin-block: 4rem;
}

.about-experience h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.about-experience dl {
  margin: 0;
}

.about-experience dl > div {
  display: grid;
  gap: 1rem;
  grid-template-columns: 8rem 1fr;
  padding-block: 1.2rem;
  border-top: 1px solid var(--line);
}

.about-experience dl > div:last-child {
  border-bottom: 1px solid var(--line);
}

.about-experience dt {
  color: var(--mid);
}

.about-experience dd {
  margin: 0;
}

.about-experience strong {
  display: block;
}

.away-note {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
}

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

  .hero-aside {
    max-width: none;
    align-items: end;
    grid-template-columns: minmax(15rem, 0.65fr) minmax(15rem, 0.35fr);
    justify-self: stretch;
    margin-top: 0;
  }

  .internship-turn {
    grid-template-columns: 1fr;
  }

  .internship-visual {
    width: min(100%, 38rem);
  }

  .chapter-layout,
  .chapter-layout-reverse {
    grid-template-columns: 1fr;
  }

  .chapter-layout-reverse .chapter-copy,
  .chapter-layout-reverse .chapter-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .chapter-layout-reverse .chapter-visual {
    order: 2;
  }

  .holy-case-intro,
  .holy-story-section,
  .holy-story-closing .holy-story-copy,
  .holy-page-heading,
  .holy-page-section {
    grid-template-columns: 1fr;
  }

  .bears-email-module {
    grid-template-columns: 1fr;
  }

  .bears-role-section .component-workflow-explainer {
    margin-top: 0;
    grid-column: 1;
    grid-row: auto;
  }

  .bears-essentials-gallery {
    grid-template-columns: 1fr;
  }

  .bears-essentials-fruit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .holy-page-section > .holy-case-figure,
  .holy-page-section > .holy-shoot-grid,
  .holy-page-section > .holy-final-grid {
    margin-top: 0;
  }

  .bears-ad-grid,
  .bears-campaign-media,
  .bears-packaging-comparison {
    margin-top: 0;
  }

  .bears-packaging-section {
    align-items: start;
  }

  .bears-packaging-section .bears-packaging-comparison {
    aspect-ratio: 5 / 6;
    margin-top: 0;
  }

  .holy-case-intro .eyebrow {
    margin-bottom: -1rem;
  }

  .holy-case-lead {
    max-width: 46rem;
  }

  .holy-story-section-channel .holy-story-copy {
    grid-row: auto;
  }

  .holy-page-section-channel .holy-story-copy {
    grid-row: auto;
  }

  .holy-crm-overview,
  .holy-motion-grid {
    grid-column: auto;
  }

  .holy-story-closing .holy-story-number,
  .holy-story-closing h4,
  .holy-story-closing .holy-story-copy > p:not(.holy-story-number) {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .bears-email-grid,
  .holy-motion-grid {
    grid-template-columns: 1fr;
  }

  .bears-comparison-label {
    top: 0.75rem;
    padding: 0.55rem 0.7rem;
  }

  .bears-comparison-label-before {
    left: 0.75rem;
  }

  .bears-comparison-label-after {
    right: 0.75rem;
  }

  .bears-comparison-label span {
    display: none;
  }

  .bears-essentials-fruit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .site-header {
    min-height: 4.5rem;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--ink);
    border-radius: 999px;
    background: var(--paper);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .menu-button-icon {
    position: relative;
    width: 1rem;
    height: 0.65rem;
    border-block: 1.5px solid currentColor;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon {
    height: 1rem;
    border: 0;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon::before,
  .menu-button[aria-expanded="true"] .menu-button-icon::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    content: "";
  }

  .menu-button[aria-expanded="true"] .menu-button-icon::before {
    rotate: 45deg;
  }

  .menu-button[aria-expanded="true"] .menu-button-icon::after {
    rotate: -45deg;
  }

  .primary-nav {
    position: fixed;
    z-index: 1;
    top: 0.6rem;
    right: 0.6rem;
    left: 0.6rem;
    display: grid;
    padding: 5.5rem 1.5rem 1.5rem;
    border: 1px solid var(--ink);
    border-radius: 1.4rem;
    background: var(--soft);
    font-size: 1.5rem;
    opacity: 0;
    pointer-events: none;
    translate: 0 -1rem;
    transition:
      opacity 180ms ease,
      translate 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    translate: 0;
  }

  .primary-nav .button {
    margin-top: 0.6rem;
    font-size: 1rem;
  }

  .nav-link {
    text-align: left;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 11vw, 4.4rem);
    line-height: 0.96;
    text-wrap: wrap;
  }

  .hero-intro {
    font-size: 1.1rem;
  }

  .hero-aside {
    grid-template-columns: 1fr;
  }

  .character-card {
    min-height: 0;
  }

  .expertise-list,
  .work-intro,
  .proof-heading,
  .approach-heading,
  .archive,
  .bears-access-options {
    grid-template-columns: 1fr;
  }

  .bears-pin-card {
    display: block;
    height: auto;
    max-width: none;
  }

  .bears-pin-card .bears-access-test-note {
    margin-top: 2rem;
  }

  .approach-heading .eyebrow {
    margin-bottom: 0;
  }

  .origin-essay {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .work-intro {
    min-height: 45rem;
  }

  .cloud-divider svg {
    right: auto;
    left: -50%;
    width: 200%;
  }

  .work-intro-artwork {
    top: 22rem;
    right: -4%;
    left: -4%;
  }

  .journey-anchor {
    margin-top: 3rem;
  }

  .journey-progress,
  .journey-progress.is-docked {
    padding: 0.9rem var(--gutter);
  }

  .journey-progress.is-docked {
    width: 100%;
    border-radius: 0 0 1rem 1rem;
  }

  .journey-heading {
    margin-bottom: 0.75rem;
  }

  .journey-heading-copy,
  .journey-current,
  .journey-desktop {
    display: none;
  }

  .journey-progress.is-docked .journey-heading {
    display: none;
  }

  .journey-mobile {
    position: relative;
    display: block;
  }

  .journey-mobile summary {
    display: grid;
    align-items: baseline;
    gap: 0.15rem 0.75rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    cursor: pointer;
    list-style: none;
  }

  .journey-mobile summary::-webkit-details-marker {
    display: none;
  }

  .journey-mobile summary > span:first-child {
    color: var(--ink);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .journey-mobile summary strong {
    overflow: hidden;
    font-size: 0.98rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .journey-mobile-toggle {
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .journey-mobile-progress {
    position: relative;
    height: 3px;
    margin-top: 0.45rem;
    overflow: hidden;
    grid-column: 1 / -1;
    background: var(--soft-dark);
  }

  .journey-mobile-progress span {
    display: block;
    width: var(--journey-mobile-progress);
    height: 100%;
    background: var(--journey-accent);
    transition: width 300ms cubic-bezier(0.22, 0.8, 0.25, 1);
  }

  .journey-mobile ol {
    position: absolute;
    z-index: 4;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    padding: 0.45rem;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 0.85rem;
    background: var(--paper);
    box-shadow: 0 0.8rem 1.6rem rgba(17, 17, 17, 0.14);
    list-style: none;
  }

  .journey-mobile a {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: 0.55rem;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
  }

  .journey-mobile a[aria-current="step"] {
    background: var(--journey-accent);
    color: var(--paper);
  }

  #early-career-scrapbook,
  #holy-turning-point,
  #bears-growth,
  #approach {
    scroll-margin-top: 9rem;
  }

  .scrapbook-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .scrapbook-heading > div {
    min-width: 0;
  }

  .scrapbook-heading-actions {
    width: 100%;
    justify-content: space-between;
  }

  .scrapbook-status {
    padding-top: 0.2rem;
    font-size: 0.7rem;
  }

  .scrapbook-page {
    width: min(78vw, 38rem);
    min-height: 35rem;
  }

  .scrapbook-page-raster {
    min-height: 0;
  }

  .internship-turn {
    padding: clamp(1.25rem, 6vw, 2.5rem);
  }

  .story-next-marker {
    --story-next-size: 5.25rem;
    padding: 0.35rem;
  }

  .chapter-visual img {
    min-height: 21rem;
  }

  .holy-case-content {
    padding-inline: 0;
  }

  .case-preview-slide {
    width: 82%;
  }

  .case-preview-slide img,
  .case-preview-slide video {
    height: 18rem;
  }

  .holy-page-heading h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 11vw, 4.4rem);
    line-height: 0.96;
  }

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

  .holy-page-facts > div,
  .holy-page-facts > div:first-child,
  .holy-page-facts > div:last-child {
    padding: 1.15rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .holy-page-facts > div:last-child {
    border-bottom: 0;
  }

  .holy-case-surface {
    border-inline: 0;
    border-radius: 0;
  }

  .holy-case-intro,
  .holy-story-section {
    padding: clamp(1.5rem, 6vw, 2.5rem) var(--gutter);
  }

  .holy-case-intro h3 {
    font-size: clamp(2.75rem, 11vw, 4.5rem);
  }

  .holy-shoot-grid {
    grid-template-columns: 1fr;
  }

  .holy-shoot-prep {
    grid-row: auto;
  }

  .holy-shoot-prep img {
    height: 22rem;
    min-height: 0;
  }

  .holy-shoot-action img,
  .holy-shoot-result img,
  .holy-final-wide img,
  .holy-final-grid > figure:not(.holy-final-wide) img {
    height: 22rem;
  }

  .holy-shoot-stack {
    height: 36rem;
  }

  .holy-shoot-action .holy-shoot-stack img,
  .holy-shoot-action .holy-shoot-stack video {
    height: 100%;
  }

  .holy-page-hero-visual img {
    height: 26rem;
  }

  .holy-case-close {
    width: calc(100% - (var(--gutter) * 2));
  }

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

  .principles li {
    min-height: auto;
  }

  .principles span {
    margin-bottom: 3rem;
  }

  .ai-note {
    grid-template-columns: 1fr;
  }

  .archive-carousel {
    order: -1;
  }

  .contact {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .archive-carousel-slide {
    width: 88%;
  }

  .archive-carousel-slide figcaption {
    font-size: 1.15rem;
  }

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

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

  .origin-heading h2,
  .work-intro h2,
  .approach-heading h2,
  .archive h2 {
    font-size: clamp(2.65rem, 10.5vw, 3.85rem);
  }

  .chapter-copy h3,
  .proof-heading h3,
  .internship-copy h3 {
    font-size: 2.5rem;
  }

  .holy-case-trigger {
    align-items: flex-end;
  }

  .holy-page-back {
    margin-bottom: 3rem;
  }

  .holy-page-next a {
    align-items: flex-start;
    flex-direction: column;
  }

  .holy-motion-grid,
  .holy-final-grid {
    grid-template-columns: 1fr;
  }

  .bears-ad-grid,
  .bears-campaign-grid {
    grid-template-columns: 1fr;
  }

  .holy-final-wide {
    grid-column: auto;
  }

  .holy-motion-card img {
    height: 32rem;
  }

  .scrapbook-track {
    padding: 1rem;
  }

  .scrapbook-page {
    width: calc(100vw - 4.5rem);
    min-height: 31rem;
  }

  .scrapbook-page-raster {
    min-height: 0;
  }

  .scrapbook-photo-wide {
    width: 78%;
  }

  .scrapbook-photo-portrait {
    width: 58%;
  }

  .scrapbook-photo-square {
    width: 68%;
  }

  .torn-note,
  .lined-note,
  .torn-note-small,
  .lined-note-dark {
    width: 58%;
  }

  .scrapbook-page-sims .torn-note {
    right: auto;
    bottom: 4%;
    left: 6%;
    width: 88%;
    padding: 1rem;
  }

  .scrapbook-page-sims .torn-note strong {
    font-size: 1rem;
  }

  .chapter-facts > div,
  .about-experience dl > div {
    grid-template-columns: 1fr;
  }

  .bears-form-grid {
    grid-template-columns: 1fr;
  }
}

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

  .cloud-divider-layer {
    transform: none !important;
    will-change: auto;
  }

  [data-parallax] {
    translate: none !important;
    will-change: auto;
  }

  [data-type-motion] {
    scale: 1 !important;
    will-change: auto;
  }
}
