:root {
  --background: #f6f2eb;
  --foreground: #101010;
  --brand: #2557ff;
  --paper: #f1ece0;
  --grid: rgba(37, 87, 255, 0.065);
  --home-card-w: 340px;
  --home-gap: 20px;
  --home-canvas-top: clamp(128px, 13vh, 150px);
  --home-card-top: 36px;
  --photo-pad-top: 84px;
  --photo-pad-bottom: 56px;
}
@media (max-width: 1536px), (max-height: 990px) {
  :root { --home-card-w: 300px; --home-gap: 16px; --home-card-top: 28px; }
}
@media (max-width: 1439px) {
  :root { --home-card-w: 285px; --home-gap: 16px; --home-card-top: 30px; --photo-pad-top: 72px; --photo-pad-bottom: 36px; }
}
@media (max-width: 1199px) {
  :root { --home-card-w: 270px; --home-gap: 14px; --home-canvas-top: clamp(158px, 15.5vh, 176px); --photo-pad-top: 48px; --photo-pad-bottom: 36px; }
}
@media (max-width: 1023px) {
  :root { --home-card-w: 260px; --home-gap: 14px; }
}
@media (max-width: 767px) {
  :root { --home-card-w: min(320px, 86vw); --home-gap: 0px; }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--background); color: var(--foreground); font-family: Inter, system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
button, input { font: inherit; }
.page { position: relative; min-height: max(3400vh, 34000px); }
.grid-bg { position: fixed; inset: 0; pointer-events: none; background-image: linear-gradient(to right, var(--grid) 1px, transparent 1px), linear-gradient(to bottom, var(--grid) 1px, transparent 1px); background-size: 56px 56px; z-index: 0; }
.sticky-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 80; display: grid; grid-template-columns: minmax(0, 1fr) auto auto auto; align-items: center; gap: 24px; padding: 30px 48px 0; }
.nav.is-footer-hidden { opacity: 0; pointer-events: none; }
body.assistant-mode .nav { pointer-events: none; }
.brand, .nav-link { color: var(--brand); text-decoration: none; font-family: "IBM Plex Mono", monospace; font-size: 14px; font-weight: 400; letter-spacing: .08em; transition: color 180ms ease, opacity 180ms ease, transform 180ms ease; }
.brand { position: relative; }
.brand:hover,
.brand:focus-visible { color: var(--brand); font-weight: 600; transform: translateY(-1px); }
.nav nav { display: flex; gap: 40px; }
.nav-link { color: rgba(16,16,16,.86); text-transform: uppercase; letter-spacing: .18em; position: relative; }
.nav-link:hover,
.nav-link:focus-visible { color: var(--brand); transform: translateY(-1px); }
.nav-link:not(.active)::after { content: ""; position: absolute; left: 50%; top: calc(100% + 14px); width: 0; height: 1px; transform: translateX(-50%); background: var(--brand); transition: width 180ms ease; }
.nav-link:not(.active):hover::after,
.nav-link:not(.active):focus-visible::after { width: 24px; }
.nav-link.active::after { content: ""; position: absolute; left: 50%; top: calc(100% + 14px); width: 42px; height: 1px; transform: translateX(-50%); background: var(--brand); }
.nav-link.active::before { content: ""; position: absolute; left: 50%; top: calc(100% + 12px); width: 5px; height: 5px; transform: translateX(-50%); border-radius: 50%; background: var(--brand); }
.nav-assistant-button { position: relative; width: 28px; height: 28px; display: grid; place-items: center; padding: 0; border: 1px solid rgba(37,87,255,.5); border-radius: 50%; background: rgba(37,87,255,.08); color: var(--brand); cursor: pointer; }
.nav-assistant-button span { position: relative; z-index: 2; display: block; font-size: 12px; line-height: 1; }
.nav-assistant-button::after { content: ""; position: absolute; inset: -7px; border: 1px solid rgba(37,87,255,.28); border-radius: 50%; opacity: 0; animation: assistantPulse 3.6s ease-out infinite; }
.nav.assistant-open .nav-assistant-button { background: var(--brand); color: var(--paper); border-color: var(--brand); }
.nav-assistant-panel { position: absolute; top: 74px; right: 48px; width: min(360px, calc(100vw - 40px)); padding: 14px; display: grid; gap: 10px; background: rgba(246,242,235,.94); border: 1px solid rgba(37,87,255,.22); box-shadow: 0 24px 64px -34px rgba(16,16,16,.45); backdrop-filter: blur(14px); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity .22s ease, transform .22s ease; }
.nav.assistant-open .nav-assistant-panel { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-assistant-panel label { color: var(--brand); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.nav-assistant-panel div { display: flex; align-items: center; gap: 8px; min-height: 42px; padding: 6px 6px 6px 12px; background: rgba(255,255,255,.74); border: 1px solid rgba(16,16,16,.07); }
.nav-assistant-panel input { min-width: 0; flex: 1; border: 0; outline: 0; background: transparent; color: rgba(16,16,16,.72); font-size: 12px; }
.nav-assistant-panel button { width: 30px; height: 30px; border: 0; border-radius: 50%; background: var(--brand); color: #fff; }
@keyframes assistantPulse { 0% { transform: scale(.68); opacity: .45; } 72%, 100% { transform: scale(1.45); opacity: 0; } }
.menu-button { display: none; width: 38px; height: 38px; padding: 0; border: 1px solid rgba(37,87,255,.3); border-radius: 0; background: rgba(246,242,235,.72); color: var(--brand); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span { display: block; width: 18px; height: 1px; background: currentColor; }
.corner { position: absolute; z-index: 2; color: var(--brand); opacity: .72; font-size: 18px; }
.top-left { top: 88px; left: 24px; } .top-right { top: 88px; right: 24px; } .bottom-left { bottom: 120px; left: 24px; } .bottom-right { bottom: 120px; right: 24px; }
.hero-slide, [data-motion] { position: absolute; inset: 0; will-change: transform, opacity; }
.hero-slide { z-index: 10; }
.ghost-lane { position: absolute; z-index: 1; pointer-events: none; user-select: none; overflow: visible; }
.ghost-lane-left { left: 0; top: 96px; width: 52vw; min-width: 0; height: 260px; }
.ghost-lane-right { right: 0; bottom: 112px; width: 52vw; height: 230px; }
.ghost-title { position: absolute; font-family: "Roboto Condensed", Inter, sans-serif; font-weight: 300; text-transform: uppercase; color: rgba(16,16,16,.075); font-size: clamp(54px, 8.2vw, 156px); line-height: .82; letter-spacing: 0; }
.ghost-left { left: clamp(24px, 3vw, 48px); top: 0; }
.ghost-right { right: clamp(24px, 3vw, 48px); bottom: 0; text-align: right; }
.side-note { position: absolute; z-index: 3; display: grid; gap: 4px; color: rgba(37,87,255,.8); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; line-height: 1.55; }
.side-note span:first-child { color: var(--brand); }
.side-note.left { left: 24px; } .side-note.right { right: 24px; text-align: right; } .side-note.top { top: 120px; } .side-note.bottom { bottom: 230px; }
.home-archive { position: absolute; inset: 0; z-index: 10; pointer-events: none; }
.home-archive-canvas { position: absolute; left: 50%; top: var(--home-canvas-top); width: min(1100px, calc(100vw - 96px)); height: 700px; transform: translateX(-50%); transform-origin: top center; pointer-events: auto; }
.identity-card, .photo-card { position: absolute; top: var(--home-card-top); max-width: 80vw; filter: drop-shadow(0 2px 4px rgba(0,0,0,.10)) drop-shadow(0 22px 34px rgba(0,0,0,.22)); transition: transform .5s ease; }
.identity-card { left: 50%; z-index: 30; width: var(--home-card-w); aspect-ratio: 780 / 1314; transform: translateX(calc(-100% - var(--home-gap))) rotate(-.6deg); }
.photo-card { left: 50%; z-index: 20; width: var(--home-card-w); aspect-ratio: 723 / 1223; transform: translateX(var(--home-gap)) rotate(.8deg); }
.identity-card:hover, .photo-card:hover { transform: rotate(0) translateY(-6px); }
.identity-card:hover { transform: translateX(calc(-100% - var(--home-gap))) rotate(0) translateY(-6px); }
.photo-card:hover { transform: translateX(var(--home-gap)) rotate(0) translateY(-6px); }
.identity-card > img, .photo-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; user-select: none; pointer-events: none; }
.identity-content { position: absolute; left: 12%; right: 11%; top: 20.5%; bottom: 8.2%; display: flex; flex-direction: column; padding: 8% 5% 4%; container-type: inline-size; }
.identity-content h1 { margin: 0; font-family: Anton, sans-serif; font-size: clamp(18px, 7.6cqw, 24px); font-weight: 400; line-height: 1.05; letter-spacing: .005em; text-transform: uppercase; white-space: nowrap; }
.blue-rule { height: 2px; background: var(--brand); margin-top: 4%; }
.typed-role { margin-top: 3%; color: var(--brand); font-family: Anton, sans-serif; font-size: clamp(16px, 6.8cqw, 22px); line-height: 1; letter-spacing: .02em; text-transform: uppercase; white-space: nowrap; overflow: hidden; }
.caret { display: inline-block; width: 2px; height: .9em; margin-left: 3px; background: var(--brand); vertical-align: middle; animation: pulse .8s infinite; }
@keyframes pulse { 50% { opacity: .15; } }
dl { margin: 6% 0 0; padding-top: 4%; border-top: 1px dotted rgba(16,16,16,.35); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: rgba(16,16,16,.9); }
dl div { display: block; margin: 5% 0 0; }
dt { color: var(--brand); min-width: 0; font-weight: 400; } dd { margin: 2px 0 0; min-width: 0; color: rgba(16,16,16,.86); font-weight: 400; line-height: 1.3; text-align: left; white-space: normal; }
.card-meta { margin-top: auto; display: flex; justify-content: space-between; color: rgba(37,87,255,.8); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.photo-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: var(--photo-pad-top) 10.2% var(--photo-pad-bottom);
  pointer-events: none;
  container-type: inline-size;
}
.photo-title {
  text-align: center;
  color: var(--brand);
  font-family: Anton, sans-serif;
  font-size: clamp(17px, 6.4cqw, 23px);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.photo-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(37,87,255,.8);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hand-note { position: absolute; left: calc(50% + var(--home-gap) + var(--home-card-w) + 26px); top: 330px; z-index: 20; width: 220px; max-width: 220px; padding: 16px 24px; font-family: Caveat, cursive; font-weight: 500; font-size: 19px; line-height: 1.55; color: var(--foreground); }
.hand-note::before, .hand-note::after { content: ""; position: absolute; width: 16px; height: 16px; border-color: rgba(16,16,16,.6); }
.hand-note::before { left: 0; top: 0; border-left: 1px solid; border-top: 1px solid; }
.hand-note::after { right: 0; bottom: 0; border-right: 1px solid; border-bottom: 1px solid; }
.toolset { position: absolute; left: 50%; bottom: -28px; z-index: 20; transform: translateX(-50%); width: 320px; max-width: 80vw; padding: 8px 12px; color: var(--brand); background: rgba(246,242,235,.60); backdrop-filter: blur(2px); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; border: 0; box-shadow: none; }
.toolset::before, .toolset::after, .toolset-label::before, .toolset-label::after { content: ""; position: absolute; width: 12px; height: 12px; border-color: var(--brand); }
.toolset::before { left: 0; top: 0; border-left: 1px solid; border-top: 1px solid; }
.toolset::after { right: 0; top: 0; border-right: 1px solid; border-top: 1px solid; }
.toolset-label::before { left: 0; bottom: 0; border-left: 1px solid; border-bottom: 1px solid; }
.toolset-label::after { right: 0; bottom: 0; border-right: 1px solid; border-bottom: 1px solid; }
.toolset-label { display: block; color: var(--brand); font-size: 12px; letter-spacing: .18em; }
.toolset-marquee { margin-top: 6px; color: var(--foreground); white-space: nowrap; overflow: hidden; text-transform: none; letter-spacing: .04em; font-size: 12px; }
.toolset-marquee::before, .toolset-marquee::after { content: none; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: toolMarquee 22s linear infinite; }
.marquee-track span { flex: 0 0 auto; margin: 0; color: var(--foreground); font-size: 12px; letter-spacing: .04em; text-transform: none; }
.marquee-track i { flex: 0 0 auto; margin: 0 12px; color: var(--brand); font-style: normal; }
@keyframes toolMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1536px), (max-height: 990px) {
  .hand-note { left: calc(50% + var(--home-gap) + var(--home-card-w) + 18px); top: 300px; font-size: 17px; }
  .toolset {
    left: calc(50% + var(--home-gap) + var(--home-card-w) + 48px);
    bottom: auto;
    top: 170px;
    transform: none;
    width: 280px;
  }
}
.ask-bar { position: fixed; z-index: 86; left: 50%; bottom: 72px; transform: translateX(-50%); width: min(672px, calc(100vw - 32px)); height: 50px; display: flex; align-items: center; gap: 12px; padding: 8px 8px 8px 20px; border-radius: 999px; background: rgba(255,255,255,.85); backdrop-filter: blur(12px); box-shadow: 0 20px 50px -20px rgba(16,16,16,.25), 0 0 0 1px rgba(16,16,16,.06); transition: opacity .28s ease, transform .28s ease; }
.ask-bar.is-home-hidden { opacity: 0; pointer-events: none; transform: translate(-50%, 18px); }
.ask-bar input { flex: 1; border: 0; outline: 0; color: #666; }
.ask-bar button { width: 38px; height: 38px; border: 0; border-radius: 50%; color: #fff; background: var(--brand); }
.assistant-answer-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 96px 5vw 40px;
  overflow: hidden;
  color: var(--foreground);
  background: rgba(16,16,16,.18);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .24s ease, transform .24s ease;
}
.assistant-answer-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.assistant-answer-shell .assistant-answer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: var(--brand);
  background: rgba(255,255,255,.74);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(37,87,255,.24), 0 16px 36px -24px rgba(16,16,16,.38);
  cursor: pointer;
}
.assistant-answer-close span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: currentColor;
}
.assistant-answer-close span:first-child { transform: rotate(45deg); }
.assistant-answer-close span:last-child { transform: rotate(-45deg); }
.assistant-answer-close:hover,
.assistant-answer-close:focus-visible {
  background: var(--brand);
  color: var(--paper);
  outline: 0;
}
.assistant-answer-shell {
  position: relative;
  width: 90vw;
  height: min(90vh, calc(100vh - 136px));
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 28px;
  padding: 34px;
  background: rgba(246,242,235,.98);
  border: 1px solid rgba(37,87,255,.18);
  border-radius: 16px;
  box-shadow: 0 36px 90px -48px rgba(16,16,16,.5);
}
.assistant-answer-kicker,
.assistant-answer-question span,
.assistant-feedback-form label {
  color: var(--brand);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.assistant-thread {
  min-height: 0;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 8px 0 24px;
}
.assistant-answer-question {
  display: grid;
  gap: 10px;
  justify-items: end;
  margin-left: auto;
  max-width: min(560px, 82%);
  padding: 18px 20px;
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(16,16,16,.07);
  box-shadow: 0 18px 42px -32px rgba(16,16,16,.28);
}
.assistant-answer-question p {
  margin: 0;
  text-align: right;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(16,16,16,.68);
}
.assistant-response-row {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.assistant-response-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--brand);
  border-radius: 50%;
  font-size: 12px;
}
.assistant-answer-copy {
  max-width: 680px;
  min-height: 4.8em;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.72;
  color: rgba(16,16,16,.82);
}
.assistant-answer-copy p {
  margin: 0;
}
.assistant-answer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 0 0 0 44px;
}
.assistant-action-link {
  min-height: 30px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid transparent;
  color: var(--brand);
  background: transparent;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.assistant-action-link:hover,
.assistant-action-link:focus-visible {
  border-bottom-color: currentColor;
  outline: 0;
}
.assistant-feedback-form {
  display: grid;
  gap: 10px;
  padding-left: 44px;
}
.assistant-feedback-form[hidden] {
  display: none;
}
.assistant-feedback-form textarea {
  width: 100%;
  min-height: 92px;
  resize: vertical;
  padding: 12px;
  border: 1px solid rgba(16,16,16,.12);
  border-radius: 0;
  outline: 0;
  background: rgba(255,255,255,.7);
  color: var(--foreground);
  font: 14px/1.5 Inter, sans-serif;
}
.assistant-feedback-form textarea:focus {
  border-color: rgba(37,87,255,.48);
}
.assistant-feedback-form button {
  justify-self: start;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid var(--brand);
  color: var(--paper);
  background: var(--brand);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.assistant-composer {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px 8px 8px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 20px 50px -28px rgba(16,16,16,.38), 0 0 0 1px rgba(16,16,16,.06);
}
.assistant-composer span {
  color: var(--foreground);
  font-size: 13px;
}
.assistant-composer input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(16,16,16,.78);
  font-size: 15px;
}
.assistant-composer button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
}
.scroll-note { position: absolute; z-index: 8; left: 50%; bottom: 14px; transform: translateX(-50%); color: rgba(16,16,16,.45); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; text-align: center; }
.about-stage { z-index: 35; pointer-events: none; }
.about-copy { position: absolute; left: 6vw; top: 50%; width: 44vw; max-width: 560px; opacity: 0; transform: translateY(100vh); color: rgba(16,16,16,.82); font-weight: 400; line-height: 1.65; pointer-events: none; will-change: transform, opacity; }
.about-resume-link { display: inline-flex; width: max-content; margin-top: 10px; color: var(--brand); font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 400; line-height: 1.5; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; }
.about-resume-link:hover,
.about-resume-link:focus-visible { text-decoration: underline; text-underline-offset: 5px; }
.eyebrow { color: var(--brand); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.about-card { position: absolute; right: 48px; top: 104px; width: 220px; aspect-ratio: 1584 / 2618; opacity: 0; transform: translateX(45vw); filter: drop-shadow(0 2px 2px rgba(16,16,16,.08)) drop-shadow(0 18px 30px rgba(16,16,16,.16)); will-change: width, transform, opacity; }
.about-card-image { display: block; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; }
.work-stage, .video-stage, .branding-stage, .explorations-stage { background: var(--background); z-index: 30; }
.inner-frame, .work-stage::before, .video-stage::before, .branding-stage::before, .explorations-stage::before { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(37,87,255,.15); pointer-events: none; }
.work-stage {
  background: transparent;
}
.work-stage .inner-frame,
.work-stage::before {
  display: none;
}
.project-grid { position: absolute; left: 50%; top: 43%; transform: translate(-50%, -50%); width: min(1280px, 92vw); display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-card { position: relative; display: flex; flex-direction: column; min-height: 430px; padding: 24px; background: rgba(241,236,224,.78); border: 1px solid transparent; transition: border-color .35s ease, box-shadow .35s ease, transform .35s ease; }
.project-card:hover { border-color: rgba(37,87,255,.42); box-shadow: 0 34px 82px -46px rgba(16,16,16,.46); transform: translateY(-4px); }
.project-card-outline { grid-column: span 2; min-height: 560px; padding: 30px 32px 28px; background: rgba(246,242,235,.10); border-color: rgba(37,87,255,.38); box-shadow: inset 0 0 0 1px rgba(37,87,255,.08); }
.project-card-outline:hover { border-color: rgba(37,87,255,.72); box-shadow: inset 0 0 0 1px rgba(37,87,255,.18), 0 34px 82px -54px rgba(16,16,16,.46); }
.project-card-outline .project-laminate { width: min(720px, 100%); margin: -2px auto 20px; }
.project-card-outline span { margin-top: 8px; }
.project-card-outline h2 { font-size: clamp(34px, 3.5vw, 54px); }
.project-card-outline p { max-width: 560px; font-size: 16px; line-height: 1.6; }
.project-laminate { position: relative; width: 100%; aspect-ratio: 1536 / 1024; margin-bottom: 4px; transform: rotate(-.35deg); transform-origin: 50% 68%; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.project-card:nth-child(2n) .project-laminate { transform: rotate(.28deg); }
.project-cast-shadow { position: absolute; left: 8%; right: 8%; bottom: 3.8%; height: 12%; z-index: 0; border-radius: 999px; background: radial-gradient(ellipse at center, rgba(16,16,16,.18) 0%, rgba(16,16,16,.10) 38%, rgba(16,16,16,0) 72%); filter: blur(10px); transform: translateY(10px); opacity: .72; transition: opacity .5s ease, filter .5s ease, transform .5s ease; }
.project-insert { position: absolute; left: 8.8%; right: 8.6%; top: 13.5%; width: 82.6%; height: 72.6%; z-index: 1; object-fit: cover; border-radius: 4px; box-shadow: 0 1px 1px rgba(16,16,16,.14), 0 10px 18px rgba(16,16,16,.14); transition: transform .6s cubic-bezier(.2,.75,.2,1), box-shadow .6s ease; }
.project-frame { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; filter: drop-shadow(0 2px 1px rgba(16,16,16,.08)) drop-shadow(0 18px 24px rgba(16,16,16,.12)); }
.project-card:hover .project-laminate { transform: rotate(0deg); }
.project-card:hover .project-insert { transform: translateY(-18%) scale(1.006); box-shadow: 0 2px 2px rgba(16,16,16,.12), 0 22px 36px rgba(16,16,16,.16); }
.project-card:hover .project-cast-shadow { opacity: .48; filter: blur(14px); transform: translateY(15px) scaleX(1.04); }
.project-card span { margin-top: 22px; color: var(--brand); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.project-card h2 { margin: 8px 0; font-family: Anton, sans-serif; font-size: clamp(24px, 2.2vw, 34px); font-weight: 400; line-height: 1; text-transform: uppercase; }
.project-card p { font-size: 14px; line-height: 1.55; font-weight: 300; }
.project-card button { margin-top: auto; align-self: flex-start; border: 0; background: none; color: var(--brand); padding: 0; font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .2em; text-transform: uppercase; }
.work-copy { position: absolute; left: 50%; bottom: 10vh; transform: translateX(-50%); width: min(1280px, 92vw); text-align: center; }
.work-copy h2 { font-family: "Roboto Condensed", sans-serif; font-weight: 300; font-size: clamp(24px, 3.2vw, 44px); line-height: 1.18; }
.work-intro {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 4;
  width: min(760px, 56vw);
  opacity: 0;
  text-align: center;
  transform: translateX(68vw);
  will-change: transform, opacity;
}
.work-intro h2 {
  margin: 16px 0 18px;
  font-family: Anton, sans-serif;
  font-size: clamp(50px, 5vw, 84px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}
.work-intro p {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(16, 16, 16, .76);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 300;
  line-height: 1.65;
}
.work-laminate-set {
  --work-card-top: 124px;
  --work-card-size: clamp(380px, 23vw, 460px);
  --work-card-height: calc(var(--work-card-size) * 1.3375);
  position: absolute;
  left: 50%;
  top: calc(var(--work-card-top) + (var(--work-card-height) / 2));
  z-index: 5;
  width: min(1500px, calc(100vw - 128px));
  display: grid;
  grid-template-columns: repeat(3, var(--work-card-size));
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 3.2vw, 56px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.work-text-laminate {
  --project-bg: #080810;
  --project-title: #FCFAF6;
  --project-text: rgba(252, 250, 246, .76);
  --project-accent: #F99FC9;
  --project-grid: rgba(123, 81, 109, .16);
  --project-glow: rgba(249, 159, 201, .18);
  --project-corner: rgba(81, 42, 68, .9);
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5.35;
  isolation: isolate;
  cursor: pointer;
  perspective: 1200px;
  opacity: 0;
  transform: translateX(82vw) rotate(.35deg);
  transform-origin: 50% 66%;
  transition: transform 560ms cubic-bezier(.2,.82,.18,1);
  will-change: transform, opacity;
  pointer-events: auto;
}
.work-laminate-shadow {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -1.4%;
  z-index: 0;
  height: 12%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(16,16,16,.22), rgba(16,16,16,.085) 46%, transparent 72%);
  filter: blur(17px);
  opacity: .78;
  transform: translateY(20%);
  transition: 560ms cubic-bezier(.2,.82,.18,1);
}
.work-insert-shadow {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 87%;
  z-index: 1;
  height: 8%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(16,16,16,.20), rgba(16,16,16,.07) 44%, transparent 70%);
  filter: blur(12px);
  opacity: .24;
  transform: scaleX(.9);
  transform-origin: 50% 50%;
  transition: 560ms cubic-bezier(.2,.82,.18,1);
  pointer-events: none;
}
.work-text-insert {
  position: absolute;
  left: 3.8%;
  right: 3.8%;
  top: 3.7%;
  bottom: 3.7%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 44px 40px 38px;
  overflow: hidden;
  border-radius: 3px;
  background:
    radial-gradient(circle at 68% 15%, var(--project-glow), transparent 32%),
    radial-gradient(circle at 90% 6%, var(--project-corner), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0) 30%),
    var(--project-bg);
  color: var(--project-title);
  box-shadow: inset 0 0 0 1px rgba(249,159,201,.12), 0 1px 2px rgba(16,16,16,.10), 0 9px 18px rgba(16,16,16,.14);
  transform: translateY(0) scale(1);
  transform-origin: 50% 100%;
  transition: transform 560ms cubic-bezier(.2,.82,.18,1), box-shadow 560ms cubic-bezier(.2,.82,.18,1);
}
.work-text-insert::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--project-grid) 1px, transparent 1px),
    linear-gradient(to bottom, var(--project-grid) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .36;
  pointer-events: none;
}
.work-laminate-glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(108deg, transparent 0%, transparent 42%, rgba(255,255,255,.18) 48%, rgba(255,255,255,.045) 54%, transparent 63%, transparent 100%);
  opacity: 0;
  transform: translateX(-36%);
  transition: transform 720ms cubic-bezier(.18,.82,.18,1), opacity 420ms ease;
  pointer-events: none;
}
.work-text-content,
.work-text-footer {
  position: relative;
  z-index: 3;
}
.work-text-eyebrow,
.work-text-footer {
  color: var(--project-accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.work-text-content h3 {
  margin: 22px 0 18px;
  color: var(--project-title);
  font-family: Anton, sans-serif;
  font-size: clamp(50px, 4vw, 64px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}
.work-text-content p {
  max-width: 28ch;
  margin: 0;
  color: var(--project-text);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}
.work-text-footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}
.work-text-footer a {
  color: var(--project-accent);
  text-decoration: none;
  cursor: pointer;
}
.work-text-footer a,
.branding-text-footer a,
.video-copy a,
.nudge-card-actions a,
.about-resume-link,
.footer-sitemap a {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease, text-decoration-color 180ms ease;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
}
.work-text-footer a:hover,
.work-text-footer a:focus-visible,
.branding-text-footer a:hover,
.branding-text-footer a:focus-visible,
.video-copy a:hover,
.video-copy a:focus-visible,
.nudge-card-actions a:hover,
.nudge-card-actions a:focus-visible,
.about-resume-link:hover,
.about-resume-link:focus-visible,
.footer-sitemap a:hover,
.footer-sitemap a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  text-decoration-color: currentColor;
}
.work-text-laminate.is-interactive {
  cursor: pointer;
}
.work-text-laminate[data-project="thinktum"] {
  --project-bg: #080810;
  --project-title: #FCFAF6;
  --project-text: rgba(252, 250, 246, .76);
  --project-accent: #F99FC9;
  --project-grid: rgba(123, 81, 109, .16);
  --project-glow: rgba(249, 159, 201, .18);
  --project-corner: rgba(81, 42, 68, .9);
}
.work-text-laminate[data-project="kindling"] {
  --project-bg: #FFE989;
  --project-title: #080341;
  --project-text: rgba(8, 3, 65, .72);
  --project-accent: #080341;
  --project-grid: rgba(8, 3, 65, .075);
  --project-glow: rgba(255, 233, 137, .28);
  --project-corner: rgba(255, 255, 255, .42);
}
.work-text-laminate[data-project="lpc"] {
  --project-bg: #EFE7D8;
  --project-title: #4A2A1E;
  --project-text: rgba(74, 42, 30, .74);
  --project-accent: #E35F58;
  --project-grid: rgba(74, 42, 30, .10);
  --project-glow: rgba(244, 189, 69, .28);
  --project-corner: rgba(184, 210, 220, .50);
}
.work-portrait-frame {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 4px 7px rgba(16,16,16,.10)) drop-shadow(0 28px 48px rgba(16,16,16,.20));
  transition: filter 560ms cubic-bezier(.2,.82,.18,1);
}
.work-text-laminate:hover,
.work-text-laminate:focus-visible {
  outline: none;
  transform: translateX(var(--work-x, 0px)) rotate(0deg) translateY(-3px);
}
.work-text-laminate:hover .work-text-insert,
.work-text-laminate:focus-visible .work-text-insert {
  transform: translateY(-10%) rotateX(-1.1deg) scale(1.006);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 2px 3px rgba(16,16,16,.12), 0 22px 36px rgba(16,16,16,.18);
}
.work-text-laminate:hover .work-laminate-glare,
.work-text-laminate:focus-visible .work-laminate-glare {
  opacity: .42;
  transform: translateX(38%);
}
.work-text-laminate:hover .work-laminate-shadow,
.work-text-laminate:focus-visible .work-laminate-shadow {
  opacity: .7;
  filter: blur(19px);
  transform: translateY(24%) scaleX(.92);
}
.work-text-laminate:hover .work-insert-shadow,
.work-text-laminate:focus-visible .work-insert-shadow {
  opacity: .34;
  filter: blur(20px);
  transform: translateY(24%) scaleX(.82);
}
.work-text-laminate:hover .work-portrait-frame,
.work-text-laminate:focus-visible .work-portrait-frame {
  filter: drop-shadow(0 5px 8px rgba(16,16,16,.11)) drop-shadow(0 34px 56px rgba(16,16,16,.22)) brightness(1.02);
}
.work-text-laminate.is-opening .work-text-insert {
  opacity: 0;
  transform: translateY(0) rotateX(0deg) scale(1);
}
.work-text-laminate.is-opening .work-portrait-frame {
  opacity: .42;
  filter: drop-shadow(0 2px 4px rgba(16,16,16,.08)) drop-shadow(0 16px 28px rgba(16,16,16,.12));
}
.work-text-laminate.is-opening .work-insert-shadow {
  opacity: .42;
  filter: blur(22px);
  transform: translateY(30%) scaleX(.82);
}
.case-study-shell {
  --case-start-left: 50vw;
  --case-start-top: 50vh;
  --case-start-width: 320px;
  --case-start-height: 428px;
  --case-extract-ease: cubic-bezier(.2, .82, .18, 1);
  --case-expand-ease: cubic-bezier(.2, .8, .2, 1);
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  background: rgba(246, 242, 235, 0);
  transition: opacity 360ms ease, background 520ms ease;
}
.case-study-shell.is-visible {
  opacity: 1;
  pointer-events: auto;
  background: rgba(246, 242, 235, .82);
}
.case-study-shell.is-extracting {
  background: rgba(246, 242, 235, 0);
}
.case-study-panel {
  --case-bottom-anchor: clamp(42px, 8vh, 92px);
  --case-content-pad: clamp(32px, 5vw, 80px);
  --case-globe-visual-inset: clamp(16px, 2vw, 30px);
  position: absolute;
  left: var(--case-start-left);
  top: var(--case-start-top);
  width: var(--case-start-width);
  height: var(--case-start-height);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border-radius: 3px;
  background:
    radial-gradient(circle at 68% 15%, rgba(249, 159, 201, .18), transparent 32%),
    radial-gradient(circle at 90% 6%, rgba(81, 42, 68, .9), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0) 30%),
    #080810;
  color: #FCFAF6;
  opacity: 1;
  box-shadow: 0 20px 48px rgba(16,16,16,.22), 0 72px 120px rgba(16,16,16,.28);
  transform-origin: 50% 50%;
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateZ(0deg) scale(1);
  transition:
    left 1200ms var(--case-expand-ease),
    top 1200ms var(--case-expand-ease),
    width 1200ms var(--case-expand-ease),
    height 1200ms var(--case-expand-ease),
    border-radius 1200ms var(--case-expand-ease),
    box-shadow 1200ms var(--case-expand-ease),
    opacity 260ms ease,
    transform 1200ms var(--case-expand-ease);
}
.case-study-panel::after {
  content: "SCROLL TO VIEW";
  position: absolute;
  right: var(--case-content-pad);
  bottom: max(26px, calc(var(--case-bottom-anchor) - 52px));
  z-index: 8;
  color: rgba(252,250,246,.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease 920ms;
}
.case-study-shell.is-open .case-study-panel::after {
  opacity: .62;
}
.case-study-shell.is-closing .case-study-panel::after {
  opacity: 0;
  transition: none;
}
.case-study-shell--kindling .case-study-panel::after {
  color: rgba(8,3,65,.52);
}
.case-study-shell--lpc .case-study-panel::after {
  color: rgba(74,42,30,.56);
}
.case-study-shell--enw .case-study-panel::after {
  color: rgba(53,84,93,.58);
}
.case-study-shell--reignite .case-study-panel::after {
  color: rgba(212,5,17,.62);
}
.case-study-shell.is-prepping .case-study-panel {
  transition: none;
}
.case-study-shell.is-extracting .case-study-panel {
  opacity: 1;
  filter: brightness(1.025) contrast(1.01);
  transform: translate3d(0, -72px, 0) scale(1.018);
  transition:
    filter 460ms var(--case-extract-ease),
    transform 460ms var(--case-extract-ease);
}
.case-study-shell.is-floating .case-study-panel {
  opacity: 1;
  filter: brightness(1.012) contrast(1.006);
  transform: translate3d(0, -88px, 0) scale(1.02);
  transition:
    filter 400ms var(--case-extract-ease),
    transform 400ms var(--case-extract-ease);
}
.case-study-shell.is-open .case-study-panel {
  left: clamp(48px, 5vw, 96px);
  top: 72px;
  width: calc(100vw - (clamp(48px, 5vw, 96px) * 2));
  height: calc(100vh - 144px);
  border-radius: 8px;
  opacity: 1;
  transform: translateY(0) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skewX(0deg) scale(1);
  box-shadow: 0 24px 60px rgba(16,16,16,.18), 0 90px 140px rgba(16,16,16,.22);
  transition:
    left 1200ms var(--case-expand-ease),
    top 1200ms var(--case-expand-ease),
    width 1200ms var(--case-expand-ease),
    height 1200ms var(--case-expand-ease),
    border-radius 1200ms var(--case-expand-ease),
    box-shadow 1200ms var(--case-expand-ease),
    opacity 260ms ease,
    transform 1200ms var(--case-expand-ease);
}
.case-study-shell.is-closing {
  opacity: 0;
  background: rgba(246, 242, 235, 0);
  transition: opacity 140ms ease, background 140ms ease;
}
.case-study-shell.is-closing .case-study-panel {
  transition: none;
}
.case-card-face {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 44px 40px 38px;
  opacity: 1;
  transition: opacity 420ms ease;
}
.case-card-face-content,
.case-card-face-footer {
  position: relative;
  z-index: 2;
}
.case-card-face-content span,
.case-card-face-footer {
  color: #F99FC9;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.case-card-face-content h2 {
  margin: 22px 0 18px;
  color: #FCFAF6;
  font-family: Anton, sans-serif;
  font-size: clamp(50px, 4vw, 64px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}
.case-card-face-content p {
  max-width: 28ch;
  margin: 0;
  color: rgba(252, 250, 246, .76);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}
.case-study-shell.is-open .case-card-face {
  opacity: 0;
  pointer-events: none;
}
.p00-scaffold-globe {
  position: absolute;
  right: calc(var(--case-content-pad) - var(--case-globe-visual-inset));
  bottom: calc(var(--case-bottom-anchor) - var(--case-globe-visual-inset));
  z-index: 2;
  width: clamp(220px, 28vw, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 26px, 0) scale(.84) rotate(-4deg);
  transform-origin: 50% 50%;
  transition:
    opacity 720ms ease,
    transform 960ms var(--case-expand-ease),
    filter 960ms ease;
  filter: blur(3px);
}
.p00-scaffold-globe canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.case-study-shell.is-open .p00-scaffold-globe {
  opacity: .78;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  transition-delay: 1120ms;
  filter: blur(0);
}
.case-study-shell.is-closing .p00-scaffold-globe {
  opacity: 0;
  transition: none;
}
.case-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(123, 81, 109, .16) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(123, 81, 109, .16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .36;
  pointer-events: none;
}
.case-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(108deg, transparent 0%, transparent 42%, rgba(255,255,255,.14) 48%, rgba(255,255,255,.035) 54%, transparent 63%, transparent 100%);
  opacity: .24;
  transform: translateX(-18%);
  pointer-events: none;
  transition: transform 1120ms var(--case-expand-ease), opacity 520ms ease;
}
.case-study-shell.is-open .case-glow {
  opacity: .36;
  transform: translateX(18%);
}
.case-study-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 100%;
  max-height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0;
  opacity: 0;
  transition: opacity 520ms ease 560ms;
}
.case-study-shell.is-open .case-study-content {
  opacity: 1;
}
.case-study-opening-screen {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  align-items: end;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  padding: var(--case-content-pad);
  padding-bottom: var(--case-bottom-anchor);
}
.case-study-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  color: #F99FC9;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}
.case-study-close-control,
.case-study-live-control {
  --case-control-ink: #F99FC9;
  --case-control-paper: #080810;
  position: absolute;
  top: max(28px, calc(var(--case-content-pad) - 36px));
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--case-control-ink);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .18em;
  line-height: 1.5;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  text-decoration: none;
  transition:
    opacity 360ms ease 920ms,
    color 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}
.case-study-close-control {
  left: var(--case-content-pad);
  min-height: auto;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.case-study-live-control {
  right: var(--case-content-pad);
  min-height: 38px;
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(252,250,246,.04);
  box-shadow: 0 16px 34px rgba(0,0,0,.08);
  transition:
    opacity 360ms ease 920ms,
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}
.case-study-close-control span,
.case-study-live-control span {
  letter-spacing: 0;
}
.case-study-close-control:hover,
.case-study-close-control:focus-visible {
  border-bottom-color: currentColor;
  outline: 0;
  transform: translateX(-2px);
}
.case-study-live-control:hover,
.case-study-live-control:focus-visible {
  border-color: var(--case-control-ink);
  background: var(--case-control-ink);
  color: var(--case-control-paper);
  box-shadow: 0 18px 38px rgba(0,0,0,.14);
  outline: 0;
  transform: translateY(-2px);
}
.case-study-shell.is-open .case-study-close-control,
.case-study-shell.is-open .case-study-live-control {
  opacity: 1;
  pointer-events: auto;
}
.case-study-shell.is-closing .case-study-close-control,
.case-study-shell.is-closing .case-study-live-control {
  opacity: 0;
  transition: none;
}
.case-study-hero {
  align-self: end;
  max-width: min(680px, 48vw);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.case-study-hero span {
  color: #F99FC9;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .22em;
  line-height: 1.5;
  text-transform: uppercase;
}
.case-study-hero h1 {
  margin: 24px 0 22px;
  color: #FCFAF6;
  font-family: Anton, sans-serif;
  font-size: clamp(78px, 12vw, 190px);
  font-weight: 400;
  line-height: .88;
  text-transform: uppercase;
}
.case-study-hero p {
  max-width: 34ch;
  margin: 0;
  color: rgba(252, 250, 246, .76);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 300;
  line-height: 1.55;
}
.case-study-scroll {
  display: contents;
}
.case-study-section {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(300px, .76fr);
  gap: 48px;
  align-items: center;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 100%;
  scroll-snap-align: start;
  padding: var(--case-content-pad);
  padding-bottom: var(--case-bottom-anchor);
  box-sizing: border-box;
}
.case-study-section[data-case-section="reframe"] {
  grid-template-columns: minmax(300px, .76fr) minmax(0, 1.24fr);
}
.case-study-section-copy {
  display: grid;
  gap: 16px;
  max-width: 520px;
}
.case-study-section-kicker,
.case-study-visual-label {
  color: #F99FC9;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.case-study-section-copy h2 {
  margin: 0;
  color: #FCFAF6;
  font-family: Anton, sans-serif;
  font-size: clamp(42px, 4.2vw, 58px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: 0;
  text-transform: uppercase;
}
.case-study-section-copy p {
  max-width: 44ch;
  margin: 0;
  color: rgba(252, 250, 246, .76);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
}
.case-editorial-spread {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
}
.case-editorial-spread--setback,
.case-editorial-spread--interface {
  grid-template-columns: minmax(330px, .88fr) minmax(0, 1.12fr);
}
.case-editorial-spread--arc {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
}
.case-editorial-spread--reflection {
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
}
.case-study-spread-copy {
  display: grid;
  gap: clamp(28px, 5vh, 56px);
  max-width: 620px;
}
.case-study-beat {
  display: grid;
  gap: 16px;
}
.case-study-beat--secondary {
  max-width: 460px;
  margin-left: clamp(28px, 5vw, 86px);
}
.case-study-beat h2 {
  margin: 0;
  color: #FCFAF6;
  font-family: Anton, sans-serif;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: 0;
  text-transform: uppercase;
}
.case-study-beat p {
  max-width: 48ch;
  margin: 0;
  color: rgba(252, 250, 246, .76);
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.62;
}
.case-study-visual {
  --case-visual-padding: 18px;
  --case-visual-radius: 4px;
  position: relative;
  min-height: 0;
  padding: var(--case-visual-padding);
  overflow: visible;
  border: 0;
  border-radius: var(--case-visual-radius);
  background: transparent;
}
.case-study-visual img {
  max-width: 100%;
  max-height: 100%;
}
.case-study-visual-label {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
}
.case-study-visual--problem {
  min-height: 520px;
  background: #080810;
}
.thinktum-particle-excerpt {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.case-particle-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  z-index: 2;
}
.case-particle-caption span,
.case-transition-step,
.case-instrument-tile,
.case-build-stack {
  color: rgba(252,250,246,.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.case-particle-caption span {
  min-height: 88px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid rgba(252,250,246,.12);
  background: rgba(8,8,16,.3);
  backdrop-filter: blur(8px);
}
.case-study-visual--arc {
  display: flex;
  align-items: flex-end;
  min-height: 460px;
  padding: 24px;
}
.case-study-arc-row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.case-study-arc-row span {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  border: 1px solid rgba(252,250,246,.12);
  color: rgba(252,250,246,.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.case-study-visual--setback {
  min-height: 520px;
  background: #080810;
}
.case-transition-strip {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.case-transition-step {
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  border: 1px solid rgba(252,250,246,.12);
  background: rgba(8,8,16,.36);
  backdrop-filter: blur(8px);
}
.case-transition-step:nth-child(2) {
  color: #F99FC9;
}
.case-transition-step:nth-child(3) {
  color: #FFB81C;
}
.case-study-visual--arc-bridge {
  min-height: 520px;
  background: #080810;
}
.thinktum-particle-excerpt--tree {
  opacity: .98;
}
.case-study-visual--interface {
  min-height: 520px;
  background: #080810;
}
.thinktum-particle-excerpt--bridge {
  opacity: .98;
}
.case-thinktum-hud {
  position: absolute;
  inset: 12px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(252,250,246,.11);
}
.case-hud-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: rgba(252,250,246,.28);
}
.case-hud-corner--tl {
  left: -1px;
  top: -1px;
  border-left: 1px solid;
  border-top: 1px solid;
}
.case-hud-corner--tr {
  right: -1px;
  top: -1px;
  border-right: 1px solid;
  border-top: 1px solid;
}
.case-hud-corner--bl {
  left: -1px;
  bottom: -1px;
  border-left: 1px solid;
  border-bottom: 1px solid;
}
.case-hud-corner--br {
  right: -1px;
  bottom: -1px;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.case-hud-status,
.case-hud-crosshair,
.case-hud-rail span {
  color: rgba(252,250,246,.58);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.case-hud-status {
  position: absolute;
  left: 24px;
  bottom: 22px;
  opacity: .52;
}
.case-hud-crosshair {
  position: absolute;
  left: 52%;
  top: calc(40% + 4%);
  min-width: 132px;
  padding: 16px 0 0 18px;
  opacity: .62;
}
.case-hud-crosshair::before,
.case-hud-crosshair::after {
  content: "";
  position: absolute;
  background: rgba(252,250,246,.22);
}
.case-hud-crosshair::before {
  left: 0;
  top: 0;
  width: 42px;
  height: 1px;
}
.case-hud-crosshair::after {
  left: 20px;
  top: -20px;
  width: 1px;
  height: 42px;
}
.case-hud-rail {
  position: absolute;
  top: 70px;
  right: 22px;
  bottom: 70px;
  width: 130px;
  display: grid;
  align-content: space-between;
  border-right: 1px solid rgba(252,250,246,.18);
}
.case-hud-rail::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  width: 7px;
  background: repeating-linear-gradient(to bottom, rgba(252,250,246,.22) 0 1px, transparent 1px 22px);
  opacity: .64;
}
.case-hud-rail span {
  position: relative;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  padding-right: 18px;
  color: rgba(252,250,246,.44);
}
.case-hud-rail span::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(252,250,246,.24);
  background: rgba(252,250,246,.12);
  transform: translateY(-50%);
}
.case-hud-rail span:nth-child(1) {
  color: rgba(252,250,246,.82);
}
.case-hud-rail span:nth-child(1)::after {
  background: #FCFAF6;
  box-shadow: 0 0 16px rgba(252,250,246,.44);
}
.case-hud-rail em {
  color: rgba(252,250,246,.52);
  font-style: normal;
}
.case-hud-pulse {
  position: absolute;
  left: -1px;
  bottom: 0;
  z-index: 3;
  width: 3px;
  height: 74px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(252,250,246,.92), transparent);
  box-shadow: 0 0 14px rgba(252,250,246,.18), 0 0 28px rgba(249,159,201,.12);
  transform: translateX(-50%);
  animation: caseHudPulseTravel 3.2s ease-in-out infinite;
}
@keyframes caseHudPulseTravel {
  0% { bottom: 0%; opacity: 0; }
  20% { opacity: 1; }
  60% { bottom: 60%; opacity: 1; }
  100% { bottom: 100%; opacity: 0; }
}
@media (max-width: 1439px), (max-height: 860px) {
  .case-thinktum-hud {
    inset: 10px;
  }
  .case-hud-rail {
    top: 58px;
    right: 16px;
    bottom: 58px;
    width: 112px;
  }
  .case-hud-status {
    left: 18px;
    bottom: 16px;
  }
  .case-hud-crosshair {
    left: 50%;
    top: 40%;
  }
}
.case-study-visual--reflection {
  min-height: 520px;
  background: #080810;
}
.thinktum-particle-excerpt--hand {
  opacity: .98;
}
.case-study-shell--kindling .case-study-panel {
  background: #FCFAF6;
  color: #080341;
}
.case-study-shell--kindling .case-grid {
  display: none;
}
.case-study-shell--kindling .case-glow {
  background: radial-gradient(circle at 78% 20%, rgba(255, 233, 137, .3), transparent 36%);
  opacity: .5;
}
.case-study-shell--kindling .case-card-face-content span,
.case-study-shell--kindling .case-card-face-footer,
.case-study-shell--kindling .case-study-meta,
.case-study-shell--kindling .case-study-hero span,
.case-study-shell--kindling .case-study-section-kicker,
.case-study-shell--kindling .case-study-visual-label {
  color: #080341;
}
.case-study-shell--kindling .case-study-close-control,
.case-study-shell--kindling .case-study-live-control {
  --case-control-ink: #080341;
  --case-control-paper: #FCFAF6;
  color: #080341;
  mix-blend-mode: normal;
}
.case-study-shell--kindling .case-study-live-control {
  background: rgba(255,255,255,.54);
  box-shadow: 0 18px 36px rgba(8,3,65,.08);
}
.case-study-shell--kindling .case-study-live-control:hover,
.case-study-shell--kindling .case-study-live-control:focus-visible {
  border-color: var(--case-control-ink);
  background: var(--case-control-ink);
  color: var(--case-control-paper);
}
.case-study-shell--kindling .case-card-face {
  background: #FFE989;
}
.case-study-shell--kindling .case-card-face-content span,
.case-study-shell--kindling .case-card-face-footer {
  color: #080341;
}
.case-study-shell--kindling .case-card-face-content h2,
.case-study-shell--kindling .case-study-hero h1,
.case-study-shell--kindling .case-study-beat h2 {
  color: #000000;
}
.case-study-shell--kindling .case-card-face-content p,
.case-study-shell--kindling .case-study-hero p,
.case-study-shell--kindling .case-study-beat p {
  color: rgba(8, 3, 65, .72);
}
.kindling-opening-screen {
  overflow: hidden;
  background: #FFE989;
  color: #080341;
}
.kindling-opening-screen .case-study-meta,
.kindling-opening-screen .case-study-hero span {
  position: relative;
  z-index: 2;
  color: rgba(8, 3, 65, .44);
}
.kindling-opening-screen .case-study-hero {
  position: relative;
  z-index: 2;
}
.kindling-opening-screen .case-study-hero h1 {
  color: #000000;
}
.kindling-opening-screen .case-study-hero p {
  color: rgba(8, 3, 65, .68);
}
.kindling-opening-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.kindling-opening-mist,
.kindling-opening-mist i {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kindling-opening-mist i {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .34;
  animation: kindlingMistDrift ease-in-out infinite;
}
.kindling-opening-mist i:nth-child(1) {
  left: 10%;
  top: 12%;
  background: #FFE989;
  opacity: .32;
  animation-duration: 15s;
}
.kindling-opening-mist i:nth-child(2) {
  left: 32%;
  top: 56%;
  width: 230px;
  height: 230px;
  background: #F4EFE6;
  opacity: .46;
  animation-duration: 19s;
  animation-delay: -6s;
}
.kindling-opening-mist i:nth-child(3) {
  right: 18%;
  top: 16%;
  width: 250px;
  height: 250px;
  background: #EDE0C8;
  animation-duration: 17s;
  animation-delay: -9s;
}
.kindling-opening-mist i:nth-child(4) {
  right: 8%;
  bottom: 14%;
  width: 210px;
  height: 210px;
  background: #FFF4C1;
  opacity: .38;
  animation-duration: 13s;
  animation-delay: -4s;
}
.kindling-opening-visual img {
  position: absolute;
  right: var(--case-content-pad);
  bottom: calc(var(--case-bottom-anchor) - 6px);
  width: min(26vw, 360px);
  max-height: min(36vh, 320px);
  object-fit: contain;
  filter: drop-shadow(0 28px 48px rgba(59,31,15,.16));
}
.kindling-opening-visual span {
  position: absolute;
  min-width: 0;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid rgba(212, 170, 42, .18);
  background: #FFE989;
  color: rgba(8, 3, 65, .72);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 22px rgba(59,31,15,.08);
  animation: kindlingPillFloat ease-in-out infinite;
}
.kindling-opening-visual span:nth-of-type(1) { left: 7%; top: 30%; background: #9DEABE; animation-duration: 7s; }
.kindling-opening-visual span:nth-of-type(2) { left: 17%; top: calc(40% + 4%); background: #ADA6F8; animation-duration: 9s; animation-delay: -1.1s; }
.kindling-opening-visual span:nth-of-type(3) { left: 33%; top: 24%; background: #D6F1FF; animation-duration: 8s; animation-delay: -2.2s; }
.kindling-opening-visual span:nth-of-type(4) { left: 50%; top: 68%; background: #FCFAF6; animation-duration: 10s; animation-delay: -3.3s; }
.kindling-opening-visual span:nth-of-type(5) { left: 61%; top: 18%; background: #DFA9F5; animation-duration: 7.5s; animation-delay: -4.4s; }
.kindling-opening-visual span:nth-of-type(6) { left: 66%; top: 82%; background: #F2BADF; animation-duration: 8.5s; animation-delay: -5.5s; }
.kindling-opening-visual span:nth-of-type(7) { left: 81%; top: 34%; background: #DCA3F2; animation-duration: 9.5s; animation-delay: -6.6s; }
.kindling-opening-visual span:nth-of-type(8) { left: 84%; top: 58%; background: #A6C6FD; animation-duration: 6.5s; animation-delay: -7.7s; }
.kindling-opening-visual span:nth-of-type(9) { left: 73%; top: 70%; background: #F8B895; animation-duration: 11s; animation-delay: -8.8s; }
@keyframes kindlingMistDrift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px,-14px) scale(1.05); }
  66% { transform: translate(-12px,18px) scale(.96); }
}
@keyframes kindlingPillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
@keyframes kindlingMoodMarble {
  0% { transform: translate3d(-1.5%, -1%, 0) rotate(0deg) scale(1); }
  50% { transform: translate3d(1.25%, 1%, 0) rotate(.6deg) scale(1.02); }
  100% { transform: translate3d(1.75%, -1.2%, 0) rotate(-.4deg) scale(1.01); }
}
@keyframes kindlingMoodReelPan {
  0%, 100% { transform: translate3d(-2.5%, -1.5%, 0) scale(1.1); }
  45% { transform: translate3d(1.5%, 1%, 0) scale(1.1); }
  72% { transform: translate3d(.25%, -2%, 0) scale(1.1); }
}
@keyframes kindlingMoodHoverPulse {
  0%, 100% {
    border-color: rgba(255, 233, 137, .64);
    box-shadow: 0 0 0 rgba(94, 162, 255, 0), 0 24px 70px rgba(255, 233, 137, .18);
  }
  50% {
    border-color: rgba(255, 233, 137, 1);
    box-shadow: 0 0 0 1px rgba(255, 233, 137, .2), 0 32px 90px rgba(255, 233, 137, .28);
  }
}
@keyframes kindlingMoodCtaNudge {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -3px, 0); }
}
.case-kindling-spread {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
}
.case-kindling-spread--commerce {
  grid-template-columns: minmax(820px, 1.5fr) minmax(300px, .5fr);
  gap: 34px;
}
.case-kindling-spread--mood,
.case-kindling-spread--outcome {
  grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr);
}
.kindling-visual {
  border: 0;
  background: transparent;
  color: #080341;
}
.kindling-visual::after {
  display: none;
}
.kindling-visual .case-study-visual-label {
  color: #080341;
}
.kindling-visual--problem,
.lpc-visual--benefits {
  justify-self: center;
  width: min(100%, 780px);
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  overflow: hidden;
  contain: paint;
  border-radius: var(--case-visual-radius);
}
.kindling-visual--moods {
  justify-self: center;
  width: min(100%, 560px);
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  contain: paint;
  border-radius: var(--case-visual-radius);
}
.kindling-visual--outcome {
  justify-self: center;
  width: min(100%, 760px);
  max-width: 100%;
  min-height: 500px;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: hidden;
  contain: paint;
  border-radius: var(--case-visual-radius);
}
.lpc-visual--character,
.lpc-visual--family,
.lpc-visual--outcome {
  justify-self: center;
  width: min(100%, 780px);
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: var(--case-visual-padding);
  overflow: hidden;
  contain: paint;
  border-radius: var(--case-visual-radius);
}
.kindling-visual--commerce {
  min-height: 520px;
}
.kindling-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.kindling-visual-image--bud {
  opacity: .92;
}
.kindling-visual--problem .kindling-visual-image--bud {
  opacity: .76;
  filter: saturate(.95) contrast(.96);
}
.kindling-visual--problem::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(125deg, rgba(0,0,0,.9) 0 28%, rgba(8,3,65,.18) 28% 54%, rgba(255,233,137,.08) 54% 100%),
    radial-gradient(circle at 78% 18%, rgba(255,233,137,.28), transparent 34%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.kindling-friction-map,
.kindling-guidance-path {
  position: absolute;
  z-index: 2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kindling-friction-map {
  left: 24px;
  top: 72px;
  width: min(360px, calc(100% - 48px));
  display: grid;
  gap: 10px;
}
.kindling-friction-map span {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(252,250,246,.2);
  background: rgba(8,3,65,.42);
  color: rgba(252,250,246,.82);
  backdrop-filter: blur(10px);
}
.kindling-friction-map span:nth-child(2) {
  margin-left: 36px;
  border-color: rgba(255,233,137,.32);
  background: rgba(255,233,137,.14);
  color: #FFE989;
}
.kindling-friction-map span:nth-child(3) {
  margin-left: 72px;
  border-color: rgba(252,250,246,.26);
  background: rgba(252,250,246,.16);
  color: #FCFAF6;
}
.kindling-guidance-path {
  right: 24px;
  top: 76px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #080341;
}
.kindling-guidance-path span {
  position: relative;
  min-width: 72px;
  padding: 9px 10px;
  border: 1px solid rgba(8,3,65,.18);
  background: rgba(252,250,246,.72);
  text-align: center;
  box-shadow: 0 14px 32px rgba(8,3,65,.08);
}
.kindling-guidance-path span + span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 1px);
  width: 14px;
  height: 1px;
  background: rgba(8,3,65,.26);
}
.kindling-choice-stack {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.kindling-choice-stack span,
.kindling-product-row article,
.kindling-outcome-card {
  border: 1px solid rgba(8,3,65,.18);
  background: rgba(252,250,246,.78);
  box-shadow: 0 18px 40px rgba(8,3,65,.08);
}
.kindling-choice-stack span {
  min-height: 72px;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #080341;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kindling-dial-stage {
  --kindling-dial-color: #D6F1FF;
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(150px, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: clamp(18px, 2.4vw, 28px);
  background: #FCFAF6;
  color: #080341;
}
.kindling-dial-field {
  position: absolute;
  inset: -16%;
  background:
    radial-gradient(circle at 72% 30%, color-mix(in srgb, var(--kindling-dial-color) 32%, transparent), transparent 30%),
    radial-gradient(circle at 28% 76%, color-mix(in srgb, var(--kindling-dial-color) 26%, transparent), transparent 36%),
    linear-gradient(135deg, rgba(252,250,246,.98), color-mix(in srgb, var(--kindling-dial-color) 18%, #FCFAF6));
  filter: saturate(1.06);
  transition: background .55s cubic-bezier(.16, 1, .3, 1);
}
.kindling-dial-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.kindling-dial-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255,255,255,.3), transparent 44%),
    repeating-linear-gradient(90deg, rgba(8,3,65,.018) 0 1px, transparent 1px 24px);
  mix-blend-mode: screen;
  opacity: .8;
}
.kindling-dial-copy,
.kindling-dial-orbit {
  position: relative;
  z-index: 2;
}
.kindling-dial-copy {
  grid-row: 2;
  align-self: stretch;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 28px;
  background: rgba(252,250,246,.34);
  box-shadow: 0 24px 58px rgba(8,3,65,.07);
  backdrop-filter: blur(12px);
}
.kindling-dial-copy span,
.kindling-dial-swatch-row b {
  color: rgba(8,3,65,.48);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kindling-dial-copy strong {
  display: block;
  margin-top: 10px;
  color: #080341;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(34px, 3.6vw, 48px);
  font-weight: 400;
  line-height: .9;
  letter-spacing: 0;
  transition: opacity .2s ease;
}
.kindling-dial-copy p {
  max-width: 34ch;
  margin: 10px 0 0;
  color: rgba(8,3,65,.62);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.48;
}
.kindling-dial-swatch-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}
.kindling-dial-swatch-row i {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--kindling-dial-color);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.64), 0 14px 28px rgba(8,3,65,.1);
  transition: background .45s cubic-bezier(.16, 1, .3, 1);
}
.kindling-dial-orbit {
  grid-row: 1;
  width: min(58%, 220px);
  aspect-ratio: 1;
  justify-self: center;
  border-radius: 999px;
}
.kindling-dial-orbit::before {
  content: "";
  position: absolute;
  inset: 6%;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.42);
  background: radial-gradient(circle, rgba(255,255,255,.24), rgba(255,255,255,.06) 54%, transparent 66%);
  box-shadow: inset 0 0 0 1px rgba(8,3,65,.025);
}
.kindling-dial-dot,
.kindling-dial-knob {
  appearance: none;
  border: 0;
  padding: 0;
}
.kindling-dial-dot {
  position: absolute;
  left: var(--dot-x);
  top: var(--dot-y);
  z-index: 4;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--dot-color);
  box-shadow: 0 0 0 1px rgba(255,255,255,.76), 0 8px 18px rgba(8,3,65,.12);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: width .28s cubic-bezier(.16, 1, .3, 1), height .28s cubic-bezier(.16, 1, .3, 1), box-shadow .28s cubic-bezier(.16, 1, .3, 1), opacity .28s cubic-bezier(.16, 1, .3, 1);
}
.kindling-dial-dot:not(.is-active) {
  opacity: .7;
}
.kindling-dial-dot:hover,
.kindling-dial-dot.is-active {
  width: 22px;
  height: 22px;
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(255,255,255,.9), 0 0 18px var(--dot-color), 0 12px 24px rgba(8,3,65,.12);
}
.kindling-dial-knob {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 48%;
  height: 48%;
  border-radius: 999px;
  background: transparent;
  box-shadow: 26px 28px 44px rgba(8,3,65,.14);
  transform: translate(-50%, -50%) rotate(var(--kindling-dial-rotation, 220deg));
  cursor: grab;
  transition: transform .5s cubic-bezier(.16, 1, .3, 1);
}
.kindling-dial-knob:active {
  cursor: grabbing;
}
.kindling-dial-knob span {
  position: absolute;
  border-radius: inherit;
}
.kindling-dial-knob span:nth-child(1) {
  inset: 0;
  background: #D8D8D6;
  box-shadow: inset 1px 1px 0 rgba(255,255,255,.78), inset -8px -10px 18px rgba(8,3,65,.08);
}
.kindling-dial-knob span:nth-child(2) {
  inset: 8px;
  background: #EFEFED;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.95), inset 0 -5px 10px rgba(8,3,65,.07);
}
.kindling-dial-knob span:nth-child(3) {
  inset: 17px;
  background: #F7F7F4;
  box-shadow: inset 0 0 0 1px rgba(8,3,65,.025);
}
.kindling-dial-knob i {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 7px;
  height: 34px;
  border-radius: 999px;
  background: var(--kindling-dial-color);
  box-shadow: 0 0 0 1px rgba(255,255,255,.88), 0 0 14px var(--kindling-dial-color);
  transform: translateX(-50%);
  transition: background .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s cubic-bezier(.16, 1, .3, 1);
}
.kindling-commerce-shop {
  --kindling-move: #9DEABE;
  --kindling-dream: #ADA6F8;
  --kindling-chill: #A6C6FD;
  --kindling-happy: #FFE989;
  --kindling-groove: #F8B895;
  --kindling-harmonized: #D6F1FF;
  --kindling-euphoric: #F2BADF;
  position: absolute;
  inset: 54px 26px 34px;
  z-index: 2;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  gap: 20px;
  color: #080341;
}
.kindling-commerce-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.kindling-commerce-tabs button {
  appearance: none;
  min-height: 32px;
  padding: 8px 12px;
  border: 1px solid rgba(8,3,65,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.5);
  color: #080341;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), border-color .45s cubic-bezier(.16, 1, .3, 1), background .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s cubic-bezier(.16, 1, .3, 1);
}
.kindling-commerce-tabs button:hover,
.kindling-commerce-tabs button.is-active {
  transform: translateY(-2px);
  border-color: rgba(8,3,65,.18);
  box-shadow: 0 12px 28px rgba(8,3,65,.08);
}
.kindling-commerce-tabs .mood-move.is-active { background: var(--kindling-move); }
.kindling-commerce-tabs .mood-dream.is-active { background: var(--kindling-dream); }
.kindling-commerce-tabs .mood-chill.is-active { background: var(--kindling-chill); }
.kindling-commerce-tabs .mood-happy.is-active { background: var(--kindling-happy); }
.kindling-commerce-tabs .mood-groove.is-active { background: var(--kindling-groove); }
.kindling-commerce-tabs .mood-harmonized.is-active { background: var(--kindling-harmonized); }
.kindling-commerce-tabs .mood-euphoric.is-active { background: var(--kindling-euphoric); }
.kindling-commerce-panels {
  position: relative;
  flex: 1;
  min-width: 0;
  min-height: 0;
}
.kindling-commerce-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(230px, 270px) minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .42s cubic-bezier(.16, 1, .3, 1), transform .42s cubic-bezier(.16, 1, .3, 1);
}
.kindling-commerce-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.kindling-commerce-panel[hidden] {
  display: none;
}
.kindling-commerce-feature-card {
  grid-row: 1;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 24px 24px;
  border: 1px solid rgba(8,3,65,.055);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.64), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.34), rgba(244,239,230,.2)),
    #FCFAF6;
  box-shadow: 0 34px 70px rgba(8,3,65,.12);
}
.kindling-commerce-feature-card span,
.kindling-product-meta span {
  color: rgba(8,3,65,.52);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kindling-commerce-feature-card strong {
  display: block;
  max-width: 11ch;
  margin-top: 18px;
  color: #080341;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(28px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: none;
  white-space: normal;
}
.kindling-commerce-feature-card p {
  margin: 20px 0 auto;
  color: rgba(8,3,65,.68);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.58;
}
.kindling-commerce-feature-card b {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 20px;
  padding: 0 4px 0 0;
  color: #080341;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kindling-commerce-feature-card b::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 2px;
  z-index: 0;
  width: 62px;
  height: 18px;
  border-radius: 5px;
  background: #FFE989;
}
.kindling-commerce-feature-card b span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
}
.kindling-commerce-feature-card b i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  border-radius: 0;
  background: transparent;
  color: #080341;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0;
  box-shadow: none;
}
.kindling-commerce-card-strip {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  min-width: 0;
  min-height: 0;
  align-content: start;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
  gap: 18px;
  height: 100%;
}
.kindling-site-product-card {
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: none;
  flex-direction: column;
  transition: opacity .45s cubic-bezier(.16, 1, .3, 1), filter .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1);
}
.kindling-site-product-card.is-carousel-visible {
  display: flex;
}
.kindling-commerce-card-strip:hover .kindling-site-product-card.is-carousel-visible {
  opacity: .34;
  filter: blur(5px);
  transform: scale(.985);
}
.kindling-commerce-card-strip:hover .kindling-site-product-card.is-carousel-visible:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-4px);
}
.kindling-site-product-card:hover {
  z-index: 4;
}
.kindling-product-image-tile {
  position: relative;
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  overflow: visible;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 74%, rgba(255,255,255,.66), transparent 44%),
    #F4EFE6;
}
.kindling-product-image-tile img {
  position: relative;
  z-index: 2;
  width: 90%;
  height: 78%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 16px 18px rgba(8,3,65,.12));
  transform: translateY(0);
  transition: transform .5s cubic-bezier(.16, 1, .3, 1), filter .5s cubic-bezier(.16, 1, .3, 1);
}
.kindling-site-product-card:hover .kindling-product-image-tile img {
  transform: translateY(-9px) scale(1.05);
  filter: drop-shadow(0 24px 22px rgba(8,3,65,.14));
}
.kindling-site-product-card:hover .kindling-product-image-tile {
  background:
    radial-gradient(circle at 50% 74%, rgba(255,255,255,.78), transparent 44%),
    #F7F1E8;
  box-shadow: inset 0 0 0 1px rgba(8,3,65,.04), 0 18px 36px rgba(8,3,65,.08);
}
.kindling-product-mood-dots {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.mood-dot {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  display: block;
  overflow: hidden;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  box-shadow: 0 2px 8px rgba(8,3,65,.1);
}
.mood-dot img,
.mood-dot svg {
  display: block;
  width: 100%;
  height: 100%;
}
.kindling-product-image-tile img[src$="gummies-leaf.png"] {
  width: 96%;
  height: 70%;
  transform: translateY(2px);
}
.kindling-product-image-tile img[src$="red-gummies.png"] {
  width: 86%;
  height: 70%;
}
.kindling-product-image-tile img[src$="prerolls-bundle.png"],
.kindling-product-image-tile img[src$="pre-roll-taster-pack-3x05g.png"],
.kindling-product-image-tile img[src$="single-preroll.png"] {
  width: 96%;
  height: 70%;
}
.kindling-product-image-tile img[src$="thc-can.png"],
.kindling-product-image-tile img[src$="lemon-can.png"] {
  width: 72%;
  height: 82%;
}
.kindling-product-image-tile img[src$="silver-cartridge.png"],
.kindling-product-image-tile img[src$="vape-cartridge.png"] {
  width: 58%;
  height: 84%;
}
.kindling-product-image-tile img[src$="bud-jar.png"],
.kindling-product-image-tile img[src$="bud-pouch.png"] {
  width: 92%;
  height: 72%;
}
.kindling-site-product-card:hover .kindling-product-image-tile img[src$="gummies-leaf.png"] {
  transform: translateY(-7px) scale(1.05);
}
.mood-dot.mood-move { background-image: url("assets/kindling/mood-icons-colored/move.svg"); }
.mood-dot.mood-dream { background-image: url("assets/kindling/mood-icons-colored/dream.svg"); }
.mood-dot.mood-chill { background-image: url("assets/kindling/mood-icons-colored/chill.svg"); }
.mood-dot.mood-happy { background-image: url("assets/kindling/mood-icons-colored/happy.svg"); }
.mood-dot.mood-groove { background-image: url("assets/kindling/mood-icons-colored/groove.svg"); }
.mood-dot.mood-harmonized { background-image: url("assets/kindling/mood-icons-colored/harmonize.svg"); }
.mood-dot.mood-euphoric { background-image: url("assets/kindling/mood-icons-colored/euphoric.svg"); }
.kindling-product-shadow {
  position: absolute;
  right: 20%;
  bottom: 12%;
  left: 20%;
  height: 12px;
  border-radius: 999px;
  background: rgba(8,3,65,.1);
  filter: blur(10px);
}
.kindling-product-meta {
  min-width: 0;
  min-height: 80px;
  margin-top: 10px;
  text-align: center;
}
.kindling-product-meta strong {
  display: block;
  margin-top: 6px;
  overflow: hidden;
  color: #080341;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kindling-product-meta p {
  margin: 5px 0 0;
  color: rgba(8,3,65,.64);
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0;
  white-space: nowrap;
}
.kindling-product-meta b {
  font-weight: 500;
}
.kindling-commerce-arrows {
  position: absolute;
  top: -52px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: max-content;
  min-height: 30px;
  color: #080341;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kindling-commerce-arrows[hidden] {
  display: none;
}
.kindling-commerce-arrows button {
  appearance: none;
  display: inline-flex;
  width: 32px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8,3,65,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.64);
  color: #080341;
  font: inherit;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s cubic-bezier(.16, 1, .3, 1);
}
.kindling-commerce-arrows button:hover {
  transform: translateY(-2px);
  background: #FFE989;
  box-shadow: 0 10px 24px rgba(8,3,65,.08);
}
.kindling-experience-guide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(210px, .8fr);
  grid-template-rows: minmax(0, auto) minmax(170px, 1fr);
  gap: 18px 28px;
  padding: clamp(20px, 2.2vw, 28px);
  color: #080341;
  background: #D6F1FF;
}
.kindling-guide-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.kindling-guide-copy,
.kindling-guide-products,
.kindling-guide-steps {
  position: relative;
  z-index: 1;
}
.kindling-guide-copy {
  grid-column: 1;
  align-self: start;
  min-width: 0;
}
.kindling-guide-copy strong {
  display: block;
  color: rgba(8,3,65,.88);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(46px, 5.2vw, 78px);
  font-weight: 300;
  line-height: .88;
  letter-spacing: 0;
}
.kindling-guide-copy p {
  max-width: 34ch;
  margin: 14px 0 0;
  color: rgba(8,3,65,.78);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 300;
  line-height: 1.35;
}
.kindling-guide-products {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
  min-width: 0;
}
.kindling-guide-products article {
  min-width: 0;
  min-height: 172px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  background: rgba(214,241,255,.48);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.42), 0 18px 44px rgba(8,3,65,.055);
  backdrop-filter: blur(8px);
  transition: opacity .45s cubic-bezier(.16, 1, .3, 1), filter .45s cubic-bezier(.16, 1, .3, 1), transform .45s cubic-bezier(.16, 1, .3, 1), box-shadow .45s cubic-bezier(.16, 1, .3, 1);
}
.kindling-guide-products:hover article {
  opacity: .34;
  filter: blur(5px);
  transform: scale(.985);
}
.kindling-guide-products:hover article:hover {
  opacity: 1;
  filter: none;
  transform: translateY(-5px) scale(1.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.52), 0 24px 52px rgba(8,3,65,.09);
}
.kindling-guide-products img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  margin: 0 0 auto;
  filter: drop-shadow(0 14px 18px rgba(8,3,65,.11));
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), filter .45s cubic-bezier(.16, 1, .3, 1);
}
.kindling-guide-products article:hover img {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 22px 20px rgba(8,3,65,.14));
}
.kindling-guide-products span {
  margin-top: 12px;
  color: rgba(8,3,65,.46);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.kindling-guide-products strong,
.kindling-guide-steps strong {
  display: block;
  margin-top: 6px;
  color: rgba(8,3,65,.86);
  font-family: Inter, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.kindling-guide-products p,
.kindling-guide-steps p {
  margin: 6px 0 0;
  color: rgba(8,3,65,.62);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.38;
}
.kindling-guide-steps {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  display: grid;
  gap: 13px;
}
.kindling-guide-steps div {
  max-width: 30ch;
}
.case-study-shell--lpc .case-study-panel {
  background: #EFE7D8;
  color: #4A2A1E;
}
.case-study-shell--lpc .case-grid {
  background-image:
    linear-gradient(rgba(74,42,30,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,42,30,.055) 1px, transparent 1px);
}
.case-study-shell--lpc .case-glow {
  background:
    radial-gradient(circle at 18% 20%, rgba(244,189,69,.28), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(227,95,88,.18), transparent 32%);
  opacity: .82;
}
.case-study-shell--lpc .case-card-face,
.case-study-shell--lpc .case-study-opening-screen {
  background:
    linear-gradient(140deg, rgba(255,255,255,.6), rgba(239,231,216,.9)),
    #EFE7D8;
}
.case-study-shell--lpc .case-card-face-content span,
.case-study-shell--lpc .case-card-face-footer,
.case-study-shell--lpc .case-study-meta,
.case-study-shell--lpc .case-study-hero span,
.case-study-shell--lpc .case-study-section-kicker,
.case-study-shell--lpc .case-study-visual-label {
  color: rgba(74,42,30,.62);
}
.case-study-shell--lpc .case-study-close-control,
.case-study-shell--lpc .case-study-live-control {
  --case-control-ink: #4A2A1E;
  --case-control-paper: #EFE7D8;
  color: #4A2A1E;
  mix-blend-mode: normal;
}
.case-study-shell--lpc .case-study-live-control {
  background: rgba(255,255,255,.36);
  box-shadow: 0 18px 36px rgba(74,42,30,.09);
}
.case-study-shell--lpc .case-study-live-control:hover,
.case-study-shell--lpc .case-study-live-control:focus-visible {
  border-color: var(--case-control-ink);
  background: var(--case-control-ink);
  color: var(--case-control-paper);
}
.case-study-shell--lpc .case-card-face-content h2,
.case-study-shell--lpc .case-study-hero h1,
.case-study-shell--lpc .case-study-beat h2 {
  color: #4A2A1E;
}
.case-study-shell--lpc .case-card-face-content p,
.case-study-shell--lpc .case-study-hero p,
.case-study-shell--lpc .case-study-beat p {
  color: rgba(74,42,30,.72);
}
.lpc-opening-screen {
  overflow: hidden;
}
.lpc-opening-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 78%, rgba(244,189,69,.18), transparent 28%),
    radial-gradient(circle at 74% 28%, rgba(227,95,88,.14), transparent 30%),
    repeating-linear-gradient(90deg, rgba(74,42,30,.03) 0 1px, transparent 1px 42px);
  pointer-events: none;
}
.lpc-opening-screen .case-study-meta,
.lpc-opening-screen .case-study-hero {
  position: relative;
  z-index: 2;
}
.lpc-opening-potatoes,
.lpc-opening-table {
  position: absolute;
  right: clamp(26px, 6vw, 100px);
  bottom: clamp(42px, 8vh, 92px);
  z-index: 1;
  width: min(48vw, 640px);
  height: min(48vh, 460px);
  pointer-events: none;
}
.lpc-opening-potatoes img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 30px 34px rgba(74,42,30,.18));
  animation: lpcPotatoBob ease-in-out infinite;
}
.lpc-opening-potatoes img:nth-of-type(1) {
  right: 0;
  top: 30%;
  width: 44%;
  --potato-rotate-start: -8deg;
  --potato-rotate-end: -5deg;
  animation-duration: 7s;
}
.lpc-opening-potatoes img:nth-of-type(2) {
  right: 48%;
  top: 3%;
  width: 34%;
  --potato-rotate-start: 8deg;
  --potato-rotate-end: 10deg;
  animation-duration: 9s;
  animation-delay: -3s;
}
.lpc-opening-potatoes img:nth-of-type(3) {
  right: 28%;
  bottom: 0;
  width: 46%;
  --potato-rotate-start: 2deg;
  --potato-rotate-end: 4deg;
  animation-duration: 11s;
  animation-delay: -5s;
}
.lpc-table-plate {
  position: absolute;
  left: 8%;
  right: 2%;
  bottom: 10%;
  height: 38%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,.9), rgba(255,255,255,.3) 58%, transparent 70%);
  box-shadow: 0 28px 54px rgba(74,42,30,.12);
}
.lpc-opening-table img {
  position: absolute;
  left: 8%;
  bottom: 4%;
  width: 86%;
  height: 88%;
  object-fit: cover;
  object-position: 50% 68%;
  border-radius: 42px;
  filter: drop-shadow(0 32px 36px rgba(74,42,30,.22));
  animation: lpcPotatoBob 5.8s ease-in-out infinite;
}
.lpc-opening-table i {
  position: absolute;
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(74,42,30,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  color: #4A2A1E;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(74,42,30,.08);
  animation: lpcTagFloat 7s ease-in-out infinite;
}
.lpc-opening-table i:nth-of-type(1) { left: 3%; top: 24%; background: #F4BD45; }
.lpc-opening-table i:nth-of-type(2) { right: 0; top: 38%; animation-delay: -2s; }
.lpc-opening-table i:nth-of-type(3) { left: 22%; bottom: 0; animation-delay: -4s; }
.case-lpc-spread {
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
}
.case-lpc-spread--character,
.case-lpc-spread--outcome {
  grid-template-columns: minmax(330px, .92fr) minmax(0, 1.08fr);
}
.case-lpc-spread--outcome {
  grid-template-columns: minmax(360px, .74fr) minmax(520px, 1.26fr);
  gap: 36px;
}
.case-lpc-spread--character {
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1fr);
}
.case-lpc-spread--outcome > * {
  min-width: 0;
}
.case-lpc-spread--family .case-study-spread-copy {
  align-self: center;
  gap: 22px;
}
.case-lpc-spread--family .case-study-beat {
  gap: 10px;
}
.case-lpc-spread--family .case-study-beat--secondary {
  margin-left: 34px;
}
.case-lpc-spread--family .case-study-beat h2 {
  font-size: clamp(32px, 2.7vw, 44px);
  line-height: .94;
}
.case-lpc-spread--family .case-study-beat p {
  font-size: 14px;
  line-height: 1.45;
}
.case-lpc-spread--family .case-study-beat--secondary h2 {
  margin-top: 12px;
  font-size: clamp(30px, 2.45vw, 40px);
}
.case-lpc-spread--family .case-study-beat--secondary h2:first-of-type {
  margin-top: 0;
}
.case-kindling-spread > .case-study-spread-copy,
.case-lpc-spread > .case-study-spread-copy {
  position: relative;
  z-index: 2;
}
.lpc-visual {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #4A2A1E;
}
.lpc-visual::after {
  display: none;
}
.lpc-original-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--case-visual-radius);
  object-fit: cover;
  object-position: center;
  box-shadow: 0 24px 54px rgba(74,42,30,.1);
}
.lpc-original-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lpc-original-media--products {
  inset: 42px 20px 22px;
}
.lpc-original-media--products img {
  object-fit: contain;
  object-position: 50% 54%;
}
.lpc-character-stage {
  position: absolute;
  inset: var(--case-visual-padding);
  z-index: 2;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 28px;
}
.lpc-character-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244,189,69,.22), rgba(227,95,88,.08) 48%, transparent 68%);
}
.lpc-character-stage .lpc-original-media {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--case-visual-radius);
  object-fit: contain;
  background: rgba(255,255,255,.42);
}
video.lpc-original-media,
.lpc-character-stage video.lpc-original-media,
.lpc-family-strip video.lpc-original-media,
.lpc-visual--outcome video.lpc-original-media {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  background: rgba(255,255,255,.42);
}
.lpc-character-shadow {
  position: absolute;
  left: 22%;
  right: 22%;
  bottom: 18%;
  height: 36px;
  border-radius: 999px;
  background: rgba(74,42,30,.18);
  filter: blur(18px);
}
.lpc-character-stage img {
  position: relative;
  z-index: 2;
  width: min(72%, 420px);
  height: min(64%, 340px);
  object-fit: cover;
  object-position: 50% 68%;
  border-radius: 36px;
  filter: drop-shadow(0 28px 34px rgba(74,42,30,.22));
  animation: lpcPotatoBob 5.4s ease-in-out infinite;
}
.lpc-family-strip {
  position: absolute;
  inset: 50px var(--case-visual-padding) var(--case-visual-padding);
  z-index: 2;
  display: grid;
  place-items: center;
}
.lpc-family-strip .lpc-original-media {
  position: relative;
  inset: auto;
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--case-visual-radius);
  object-fit: contain;
  background: rgba(255,255,255,.42);
}
.lpc-original-media--journey {
  object-position: center;
}
.lpc-visual--outcome {
  display: grid;
  height: auto;
  align-items: center;
  align-self: center;
}
.lpc-visual--outcome > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(.96);
}
.lpc-visual--outcome .lpc-original-media {
  position: relative;
  inset: auto;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  filter: saturate(.98) contrast(.98);
  object-fit: contain;
  background: rgba(255,255,255,.42);
  box-shadow: 0 24px 54px rgba(74,42,30,.12);
}
.lpc-visual--outcome::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(239,231,216,.05), rgba(74,42,30,.1));
}
@keyframes lpcPotatoBob {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(var(--potato-rotate-start, -1deg)); }
  50% { transform: translate3d(0, -14px, 0) rotate(var(--potato-rotate-end, 1.5deg)); }
}
.case-study-shell--enw .case-study-panel {
  background: #FFFDF9;
  color: #2F2F2F;
}
.case-study-shell--enw .case-grid {
  background-image:
    linear-gradient(rgba(53,84,93,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53,84,93,.08) 1px, transparent 1px);
}
.case-study-shell--enw .case-glow {
  background:
    radial-gradient(circle at 18% 22%, rgba(215,211,52,.22), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(53,84,93,.14), transparent 34%),
    radial-gradient(circle at 76% 72%, rgba(97,28,40,.12), transparent 30%);
  opacity: .92;
}
.case-study-shell--enw .case-card-face,
.case-study-shell--enw .case-study-opening-screen {
  background: #D7D334;
}
.case-study-shell--enw .case-card-face-content span,
.case-study-shell--enw .case-card-face-footer,
.case-study-shell--enw .case-study-meta,
.case-study-shell--enw .case-study-hero span,
.case-study-shell--enw .case-study-section-kicker,
.case-study-shell--enw .case-study-visual-label {
  color: #35545D;
}
.case-study-shell--enw .case-study-close-control {
  --case-control-ink: #2F2F2F;
  --case-control-paper: #FFFDF9;
  color: #2F2F2F;
  mix-blend-mode: normal;
}
.case-study-shell--enw .case-card-face-content h2,
.case-study-shell--enw .case-study-hero h1,
.case-study-shell--enw .case-study-beat h2 {
  color: #2F2F2F;
}
.case-study-shell--enw .case-study-hero {
  max-width: min(720px, 52vw);
}
.case-study-shell--enw .case-study-hero h1 {
  white-space: normal;
  font-size: clamp(58px, 7.3vw, 128px);
  line-height: .88;
}
.case-study-shell--enw .case-card-face-content p,
.case-study-shell--enw .case-study-hero p,
.case-study-shell--enw .case-study-beat p {
  color: rgba(47,47,47,.72);
}
.enw-opening-screen {
  overflow: hidden;
}
.enw-opening-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 22%, rgba(255,253,249,.34), transparent 34%),
    repeating-linear-gradient(90deg, rgba(53,84,93,.07) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(0deg, rgba(53,84,93,.055) 0 1px, transparent 1px 42px);
  pointer-events: none;
}
.enw-opening-screen .case-study-hero {
  position: relative;
  z-index: 2;
}
.enw-opening-phone {
  position: absolute;
  right: clamp(20px, 3vw, 64px);
  bottom: clamp(32px, 8vh, 92px);
  z-index: 3;
  display: grid;
  place-items: end center;
  width: min(31vw, 410px);
  max-height: min(68vh, 610px);
  filter: drop-shadow(0 28px 42px rgba(47,47,47,.13));
}
.enw-opening-phone img {
  display: block;
  width: 100%;
  max-height: min(68vh, 610px);
  height: auto;
  object-fit: contain;
}
.case-enw-spread {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}
.case-enw-spread--challenge,
.case-enw-spread--pillars {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}
.case-enw-spread--system,
.case-enw-spread--action {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
}
.case-enw-spread--action .case-study-visual {
  display: grid;
  place-items: center;
}
.enw-visual {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #2F2F2F;
}
.enw-visual::after {
  display: none;
}
.enw-visual--brand-kit,
.enw-visual--pillars,
.enw-visual--type,
.enw-visual--action {
  min-height: 0;
  padding: var(--case-visual-padding);
  border-radius: var(--case-visual-radius);
}
.enw-visual--brand-kit {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(240px, 1.1fr);
  align-items: stretch;
  gap: 18px;
}
.enw-logo-board {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(53,84,93,.13);
  border-radius: var(--case-visual-radius);
  background: #D7D334;
  box-shadow: 0 18px 40px rgba(47,47,47,.08);
}
.enw-logo-board img {
  width: 100%;
  max-width: 340px;
  height: auto;
}
.enw-logo-board span,
.enw-swatch b,
.enw-swatch i {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}
.enw-logo-board span {
  color: rgba(47,47,47,.72);
  font-size: 12px;
}
.enw-swatch-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.enw-swatch {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 96px;
  align-content: end;
  gap: 3px;
  padding: 12px;
  border: 1px solid rgba(53,84,93,.12);
  border-radius: var(--case-visual-radius);
  background: var(--swatch);
  color: #FFFDF9;
  box-shadow: 0 12px 30px rgba(47,47,47,.06);
}
.enw-swatch:nth-child(3),
.enw-swatch:nth-child(4),
.enw-swatch:nth-child(6),
.enw-swatch:nth-child(9) {
  color: #2F2F2F;
}
.enw-swatch b {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
}
.enw-swatch i {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-style: normal;
  opacity: .68;
}
.enw-visual--pillars {
  display: grid;
  align-content: center;
  gap: clamp(18px, 2vw, 26px);
  background: #D7D334;
}
.enw-pillar-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}
.enw-pillar-grid article {
  display: grid;
  align-content: start;
  min-height: clamp(150px, 18vh, 214px);
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--case-visual-radius);
  background: #2F2F2F;
  color: rgba(255,253,249,.9);
  box-shadow: 0 18px 34px rgba(47,47,47,.12);
}
.enw-pillar-grid span {
  color: #D7D334;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}
.enw-pillar-grid strong {
  margin-top: 8px;
  color: #FFFDF9;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 700;
  line-height: 1.12;
}
.enw-pillar-grid p {
  margin: 12px 0 0;
  color: rgba(255,253,249,.48);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}
.enw-pillar-grid em {
  position: relative;
  margin-top: 12px;
  padding-left: 14px;
  color: rgba(255,253,249,.42);
  font-size: 12px;
  font-style: italic;
  line-height: 1.45;
}
.enw-pillar-grid em::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: #D7D334;
}
.enw-visual--type {
  display: grid;
  place-items: center;
}
.enw-type-board {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0;
  padding: var(--case-visual-padding);
  border: 0;
  border-radius: var(--case-visual-radius);
  background: rgba(255,253,249,.72);
  box-shadow: 0 22px 48px rgba(47,47,47,.08);
}
.enw-type-board img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.enw-visual--action {
}
.enw-action-card {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(82%, 460px);
  aspect-ratio: 1105 / 963;
  height: auto;
  max-height: min(500px, 64vh);
  min-height: 0;
  padding: var(--case-visual-padding);
  border: 0;
  border-radius: var(--case-visual-radius);
  background: rgba(255,253,249,.72);
  box-shadow: 0 22px 48px rgba(47,47,47,.08);
}
.enw-action-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.enw-logo-board,
.enw-swatch,
.enw-pillar-grid article,
.lpc-original-media,
.lpc-character-stage .lpc-original-media,
.lpc-family-strip .lpc-original-media {
  border-radius: var(--case-visual-radius);
}
.case-study-shell--reignite .case-study-panel {
  background: #FBF7EF;
  color: #171717;
}
.case-study-shell--reignite .case-grid {
  background-image:
    linear-gradient(rgba(212,5,17,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,5,17,.07) 1px, transparent 1px);
}
.case-study-shell--reignite .case-glow {
  background:
    radial-gradient(circle at 20% 18%, rgba(255,204,0,.22), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(212,5,17,.13), transparent 34%),
    radial-gradient(circle at 72% 76%, rgba(23,23,23,.08), transparent 30%);
  opacity: .9;
}
.case-study-shell--reignite .case-card-face,
.case-study-shell--reignite .case-study-opening-screen {
  background: #F5EFE4;
}
.case-study-shell--reignite .case-card-face-content span,
.case-study-shell--reignite .case-card-face-footer,
.case-study-shell--reignite .case-study-hero span,
.case-study-shell--reignite .case-study-section-kicker,
.case-study-shell--reignite .case-study-visual-label {
  color: #D40511;
}
.case-study-shell--reignite .case-study-close-control {
  --case-control-ink: #171717;
  --case-control-paper: #FBF7EF;
  color: #171717;
  mix-blend-mode: normal;
}
.case-study-shell--reignite .case-card-face-content h2,
.case-study-shell--reignite .case-study-hero h1,
.case-study-shell--reignite .case-study-beat h2 {
  color: #171717;
}
.case-study-shell--reignite .case-card-face-content p,
.case-study-shell--reignite .case-study-hero p,
.case-study-shell--reignite .case-study-beat p {
  color: rgba(23,23,23,.68);
}
.reignite-opening-screen {
  overflow: hidden;
}
.reignite-opening-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(255,204,0,.28), transparent 34%),
    repeating-linear-gradient(90deg, rgba(212,5,17,.055) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(23,23,23,.045) 0 1px, transparent 1px 44px);
  pointer-events: none;
}
.reignite-opening-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(245,239,228,0.02), rgba(245,239,228,0.72) 62%, rgba(245,239,228,0.94)),
    radial-gradient(circle at 52% 98%, rgba(255,204,0,0.34), transparent 24%),
    radial-gradient(circle at 50% 92%, rgba(255,166,0,0.18), transparent 28%),
    radial-gradient(circle at 48% 88%, rgba(212,5,17,0.14), transparent 28%);
  pointer-events: none;
}
.reignite-opening-screen .case-study-hero {
  position: relative;
  z-index: 3;
}
.reignite-opening-fire {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: .96;
  pointer-events: none;
}
.case-reignite-spread {
  grid-template-columns: minmax(360px, .86fr) minmax(0, 1.14fr);
}
.case-reignite-spread--symbols,
.case-reignite-spread--logos,
.case-reignite-spread--outcome {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, .86fr);
}
.reignite-visual {
  min-width: 0;
  min-height: 0;
  padding: var(--case-visual-padding);
  border: 0;
  border-radius: var(--case-visual-radius);
  background: transparent;
  color: #171717;
}
.reignite-visual::after {
  display: none;
}
.reignite-logic-stack,
.reignite-symbol-grid,
.reignite-decision-grid,
.reignite-logo-grid,
.reignite-outcome-video,
.reignite-closing-list {
  position: relative;
  z-index: 2;
}
.reignite-logic-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: var(--case-visual-padding);
  border-radius: var(--case-visual-radius);
  background: #FFCC00;
  box-shadow: 0 22px 48px rgba(23,23,23,.08);
}
.reignite-logic-stack article,
.reignite-decision-grid article,
.reignite-symbol-grid article,
.reignite-logo-grid article {
  border-radius: var(--case-visual-radius);
}
.reignite-logic-stack article,
.reignite-decision-grid article {
  display: grid;
  align-content: start;
  min-height: 140px;
  padding: 18px;
  background: #171717;
  color: #FBF7EF;
}
.reignite-logic-stack span,
.reignite-decision-grid span,
.reignite-symbol-grid span,
.reignite-logo-grid span,
.reignite-closing-list span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.reignite-logic-stack span,
.reignite-decision-grid span {
  color: #FFCC00;
}
.reignite-logic-stack p,
.reignite-decision-grid p,
.reignite-symbol-grid p {
  margin: 12px 0 0;
  color: rgba(251,247,239,.68);
  font-size: 13px;
  line-height: 1.45;
}
.reignite-symbol-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: var(--case-visual-padding);
  border-radius: var(--case-visual-radius);
  background: #F5EFE4;
  box-shadow: 0 22px 48px rgba(23,23,23,.08);
}
.reignite-symbol-grid article {
  display: grid;
  grid-template-rows: auto 150px auto 1fr;
  gap: 12px;
  padding: 18px;
  background: #FBF7EF;
  box-shadow: 0 14px 32px rgba(23,23,23,.06);
}
.reignite-symbol-grid span,
.reignite-logo-grid span,
.reignite-closing-list span {
  color: #D40511;
}
.reignite-symbol-media {
  display: grid;
  min-height: 150px;
  place-items: center;
}
.reignite-symbol-media img {
  width: min(76%, 150px);
  max-height: 150px;
  object-fit: contain;
}
.reignite-symbol-grid strong {
  color: #171717;
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.15;
}
.reignite-symbol-grid p {
  color: rgba(23,23,23,.62);
}
.reignite-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: var(--case-visual-padding);
  border-radius: var(--case-visual-radius);
  background: #D40511;
  box-shadow: 0 22px 48px rgba(23,23,23,.08);
}
.reignite-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: var(--case-visual-padding);
  border-radius: var(--case-visual-radius);
  background: #171717;
  box-shadow: 0 22px 48px rgba(23,23,23,.08);
}
.reignite-logo-grid article {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 180px;
  padding: 20px;
  background: #FBF7EF;
}
.reignite-logo-grid article:nth-child(2),
.reignite-logo-grid article:nth-child(4) {
  background: #F5EFE4;
  box-shadow: inset 0 0 0 1px rgba(212,5,17,.18);
}
.reignite-logo-grid img {
  width: min(84%, 240px);
  max-height: 92px;
  object-fit: contain;
}
.case-reignite-spread--outcome .case-study-beat h2 span {
  color: #D40511;
}
.reignite-visual--outcome {
  display: grid;
  gap: 14px;
}
.reignite-outcome-video {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  padding: var(--case-visual-padding);
  border-radius: var(--case-visual-radius);
  background: #171717;
  box-shadow: 0 22px 48px rgba(23,23,23,.08);
}
.reignite-outcome-video video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: var(--case-visual-radius);
  object-fit: contain;
}
.reignite-closing-list {
  display: grid;
  gap: 8px;
}
.reignite-closing-list span {
  padding: 12px 14px;
  border-radius: var(--case-visual-radius);
  background: #F5EFE4;
  color: #171717;
}
@media (max-width: 1439px), (max-height: 860px) {
  .kindling-opening-visual {
    inset: 0;
    width: auto;
    height: auto;
  }
  .case-kindling-spread,
  .case-kindling-spread--mood,
  .case-kindling-spread--outcome {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .76fr);
    gap: 32px;
  }
  .case-kindling-spread--commerce {
    grid-template-columns: minmax(620px, 1.26fr) minmax(310px, .74fr);
    gap: 28px;
  }
  .kindling-choice-stack {
    grid-template-columns: 1fr;
    right: auto;
    width: min(300px, calc(100% - 48px));
  }
  .kindling-choice-stack span {
    min-height: 54px;
  }
  .kindling-friction-map {
    top: 56px;
    width: min(292px, calc(100% - 48px));
    gap: 8px;
  }
  .kindling-friction-map span {
    padding: 8px 10px;
  }
  .kindling-friction-map span:nth-child(2) {
    margin-left: 22px;
  }
  .kindling-friction-map span:nth-child(3) {
    margin-left: 44px;
  }
  .kindling-guidance-path {
    right: 20px;
    top: 58px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  .kindling-guidance-path span {
    min-width: 64px;
    padding: 7px 9px;
  }
  .kindling-guidance-path span + span::before {
    top: auto;
    right: 50%;
    bottom: calc(100% + 1px);
    width: 1px;
    height: 8px;
  }
  .kindling-commerce-shop {
    inset: 44px 18px 24px;
    gap: 14px;
  }
  .kindling-commerce-tabs {
    gap: 6px;
    margin-top: 8px;
  }
  .kindling-commerce-tabs button {
    min-height: 28px;
    padding: 7px 9px;
    letter-spacing: .04em;
  }
  .kindling-commerce-panel {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
    gap: 16px;
  }
  .kindling-commerce-feature-card {
    padding: 22px 18px 18px;
    border-radius: 18px;
  }
  .kindling-commerce-feature-card strong {
    margin-top: 12px;
    font-size: 28px;
    white-space: normal;
  }
  .kindling-commerce-feature-card p {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.45;
  }
  .kindling-commerce-feature-card b {
    margin-top: 12px;
  }
  .kindling-commerce-feature-card b i {
    width: 30px;
    height: 30px;
  }
  .kindling-commerce-card-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .kindling-product-image-tile {
    border-radius: 18px;
  }
  .kindling-product-mood-dots {
    top: 9px;
    right: -8px;
    gap: 5px;
  }
  .mood-dot {
    width: 24px;
    height: 24px;
  }
  .kindling-product-meta {
    min-height: 88px;
    margin-top: 8px;
  }
  .kindling-commerce-arrows {
    top: -76px;
    min-height: 28px;
    gap: 8px;
  }
  .kindling-commerce-arrows button {
    width: 30px;
    height: 26px;
  }
  .kindling-product-meta strong,
  .kindling-product-meta span,
  .kindling-product-meta p {
    font-size: 12px;
  }
  .kindling-product-meta p {
    white-space: normal;
  }
  .kindling-product-meta strong {
    margin-top: 5px;
    line-height: 1.2;
  }
  .kindling-outcome-card strong {
    font-size: 34px;
  }
}
body.case-study-open .nav,
body.case-study-open .ask-bar,
body.case-study-open .scroll-note {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1439px), (max-height: 860px) {
  .work-intro { width: min(620px, 54vw); }
  .work-intro h2 { font-size: clamp(42px, 4.2vw, 58px); }
  .work-intro p { max-width: 560px; font-size: 15px; line-height: 1.55; }
  .work-laminate-set { --work-card-size: clamp(300px, 25vw, 320px); width: min(1060px, calc(100vw - 112px)); gap: clamp(20px, 2.6vw, 38px); }
  .work-text-insert { padding: clamp(28px, 4vh, 36px) clamp(24px, 2.5vw, 32px) clamp(28px, 3.8vh, 32px); }
  .work-text-content h3 { font-size: clamp(36px, 3.4vw, 54px); }
  .work-text-content p { font-size: 14px; }
  .case-study-section,
  .case-study-section[data-case-section="reframe"],
  .case-editorial-spread,
  .case-editorial-spread--setback,
  .case-editorial-spread--interface,
  .case-editorial-spread--arc,
  .case-editorial-spread--reflection {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .76fr);
    gap: 32px;
  }
  .case-study-section-copy h2 { font-size: clamp(40px, 4vw, 50px); }
  .case-study-section-copy p { font-size: 15px; line-height: 1.6; }
  .case-study-beat h2 { font-size: clamp(34px, 3.6vw, 46px); }
  .case-study-beat p { font-size: 14px; line-height: 1.55; }
  .case-study-spread-copy { gap: 28px; }
  .case-study-beat--secondary { margin-left: 32px; }
  .case-study-visual--arc { min-height: 430px; }
  .case-study-visual--problem,
  .case-study-visual--setback,
  .case-study-visual--arc-bridge,
  .case-study-visual--interface { min-height: 430px; }
  .case-kindling-spread--problem {
    grid-template-columns: minmax(0, .88fr) minmax(320px, .9fr);
  }
  .case-kindling-spread--mood,
  .case-kindling-spread--outcome {
    grid-template-columns: minmax(320px, .84fr) minmax(0, .96fr);
  }
  .case-kindling-spread--commerce {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .72fr);
    gap: 28px;
  }
  .kindling-visual--problem {
    width: min(100%, 540px);
  }
  .kindling-friction-map {
    left: 18px;
    top: 58px;
    width: min(310px, calc(62% - 22px));
    gap: 8px;
  }
  .kindling-friction-map span {
    padding: 8px 10px;
    font-size: 12px;
    line-height: 1.35;
  }
  .kindling-friction-map span:nth-child(2) {
    margin-left: 18px;
  }
  .kindling-friction-map span:nth-child(3) {
    margin-left: 36px;
  }
  .kindling-guidance-path {
    right: 18px;
    top: 62px;
    gap: 6px;
  }
  .kindling-guidance-path span {
    min-width: 58px;
    padding: 8px;
    font-size: 12px;
  }
  .kindling-choice-stack {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 9px;
  }
  .kindling-choice-stack span {
    min-height: 56px;
    padding: 11px;
    line-height: 1.35;
  }
  .kindling-visual--moods {
    width: min(100%, 420px);
  }
  .kindling-dial-stage {
    grid-template-rows: minmax(120px, .9fr) auto;
    gap: 8px;
    padding: 14px;
  }
  .kindling-dial-orbit {
    width: min(52%, 172px);
  }
  .kindling-dial-copy {
    padding: 14px;
    border-radius: 20px;
  }
  .kindling-dial-copy strong {
    font-size: clamp(30px, 3.2vw, 40px);
  }
  .kindling-dial-copy p {
    max-width: 30ch;
    font-size: 12px;
    line-height: 1.35;
  }
  .kindling-dial-swatch-row i {
    width: 28px;
    height: 28px;
  }
  .kindling-visual--commerce {
    min-height: 440px;
  }
  .kindling-visual--outcome {
    width: min(100%, 560px);
    min-height: 390px;
  }
  .kindling-commerce-shop {
    inset: 42px 16px 20px;
  }
  .kindling-experience-guide {
    grid-template-columns: minmax(0, .86fr) minmax(150px, .76fr);
    grid-template-rows: auto minmax(130px, 1fr);
    gap: 10px 14px;
    padding: 16px;
  }
  .kindling-guide-copy strong {
    font-size: clamp(34px, 4vw, 46px);
  }
  .kindling-guide-copy p {
    max-width: 22ch;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.28;
  }
  .kindling-guide-products {
    gap: 10px;
  }
  .kindling-guide-products article {
    min-height: 132px;
    padding: 9px;
  }
  .kindling-guide-products img {
    height: 54px;
  }
  .kindling-guide-products span {
    margin-top: 9px;
    font-size: 12px;
  }
  .kindling-guide-products strong,
  .kindling-guide-steps strong {
    font-size: 12px;
  }
  .kindling-guide-products p,
  .kindling-guide-steps p {
    font-size: 12px;
    line-height: 1.3;
  }
  .kindling-guide-steps {
    gap: 12px;
  }
  .case-lpc-spread--character {
    grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
    gap: 32px;
  }
  .case-lpc-spread--character .lpc-visual--character {
    min-height: 0;
    aspect-ratio: 16 / 9;
    align-self: center;
  }
  .lpc-visual--benefits {
    width: min(100%, 560px);
  }
  .case-lpc-spread--family .lpc-visual--family {
    min-height: 0;
    aspect-ratio: 16 / 9;
    align-self: center;
  }
  .lpc-opening-potatoes,
  .lpc-opening-table {
    right: clamp(18px, 4vw, 52px);
    width: min(44vw, 500px);
    height: min(43vh, 380px);
  }
  .lpc-opening-potatoes img:nth-of-type(1) {
    right: 0;
    top: 34%;
    width: 42%;
  }
  .lpc-opening-potatoes img:nth-of-type(2) {
    right: 50%;
    top: 4%;
    width: 32%;
  }
  .lpc-opening-potatoes img:nth-of-type(3) {
    right: 29%;
    bottom: 0;
    width: 44%;
  }
  .lpc-original-media--products {
    inset: 32px 16px 18px;
  }
  .case-lpc-spread--outcome {
    grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
    gap: 32px;
  }
  .case-lpc-spread--outcome .lpc-visual--outcome {
    min-height: 0;
  }
  .enw-opening-phone {
    right: clamp(6px, 1.8vw, 28px);
    bottom: clamp(28px, 6vh, 56px);
    width: min(27vw, 300px);
    max-height: min(56vh, 440px);
  }
  .enw-opening-phone img {
    max-height: min(56vh, 440px);
  }
  .case-study-shell--enw .case-study-hero {
    max-width: min(620px, 56vw);
  }
  .case-study-shell--enw .case-study-hero h1 {
    font-size: clamp(54px, 6.2vw, 88px);
    line-height: .88;
  }
  .case-enw-spread,
  .case-enw-spread--challenge,
  .case-enw-spread--pillars,
  .case-enw-spread--action {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .76fr);
    gap: 32px;
  }
  .case-enw-spread--system {
    grid-template-columns: minmax(0, .86fr) minmax(340px, .8fr);
    gap: 26px;
  }
  .case-enw-spread--action {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr);
  }
  .case-enw-spread--type {
    grid-template-columns: minmax(0, .3fr) minmax(0, .7fr);
    grid-template-rows: minmax(0, 1fr);
    align-items: center;
    align-content: center;
    gap: 32px;
  }
  .case-enw-spread--type .case-study-spread-copy {
    align-self: center;
    max-width: 360px;
  }
  .case-enw-spread--type .case-study-beat h2 {
    font-size: clamp(30px, 3.1vw, 42px);
  }
  .case-enw-spread--type .case-study-beat p {
    font-size: 14px;
    line-height: 1.5;
  }
  .case-enw-spread--type .case-study-visual {
    align-self: center;
    min-height: 0;
  }
  .case-enw-spread--action .case-study-visual {
    display: grid;
    place-items: center;
    min-height: 0;
    align-self: center;
  }
  .enw-visual--brand-kit,
  .enw-visual--type {
    min-height: 0;
    gap: 12px;
    padding: var(--case-visual-padding);
  }
  .enw-visual--brand-kit {
    grid-template-columns: minmax(180px, .92fr) minmax(190px, 1fr);
    min-height: 0;
    padding: var(--case-visual-padding);
  }
  .enw-visual--pillars {
    min-height: 0;
    padding: var(--case-visual-padding);
  }
  .enw-logo-board {
    min-height: 0;
    gap: 10px;
    padding: 14px;
  }
  .enw-logo-board img {
    max-width: 210px;
  }
  .enw-swatch-grid {
    gap: 7px;
  }
  .enw-swatch {
    min-height: 56px;
    padding: 8px;
  }
  .enw-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .enw-pillar-grid article {
    min-height: 126px;
    padding: 12px;
  }
  .enw-pillar-grid strong {
    font-size: 15px;
  }
  .enw-pillar-grid p,
  .enw-pillar-grid em {
    font-size: 12px;
    line-height: 1.32;
  }
  .enw-pillar-grid p {
    margin-top: 8px;
  }
  .enw-pillar-grid em {
    margin-top: 8px;
  }
  .enw-type-board,
  .enw-action-card {
    padding: var(--case-visual-padding);
  }
  .case-enw-spread--action .enw-action-card {
    width: min(76%, 420px);
    height: auto;
    max-height: min(460px, 58vh);
  }
  .enw-visual--type {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: var(--case-visual-padding);
  }
  .enw-type-board img {
    width: 100%;
    height: 100%;
    max-width: 660px;
    object-fit: contain;
  }
  .case-enw-spread--action .enw-action-card img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
  .case-transition-step { min-height: 64px; }
  .case-instrument-grid { grid-template-rows: repeat(2, minmax(96px, 1fr)); }
}
.video-stage { z-index: 40; display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: center; padding: 0 4vw; }
.video-shell { position: relative; width: min(62vw, 1080px); aspect-ratio: 1536 / 1024; transform: rotate(-.25deg); transform-origin: 50% 68%; }
.video-cast-shadow { position: absolute; left: 8%; right: 8%; bottom: 3.8%; height: 12%; z-index: 0; border-radius: 999px; background: radial-gradient(ellipse at center, rgba(16,16,16,.18) 0%, rgba(16,16,16,.10) 38%, rgba(16,16,16,0) 72%); filter: blur(10px); transform: translateY(10px); opacity: .72; }
.video-frame { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; filter: drop-shadow(0 2px 1px rgba(16,16,16,.08)) drop-shadow(0 18px 24px rgba(16,16,16,.12)); }
.video-inset { position: absolute; left: 8.8%; right: 8.6%; top: 13.5%; bottom: 13.9%; z-index: 1; overflow: hidden; background: #000; border-radius: 4px; box-shadow: 0 1px 1px rgba(16,16,16,.14), 0 10px 18px rgba(16,16,16,.14); }
.video-inset video { width: 100%; height: 100%; object-fit: cover; }
.video-label { position: absolute; top: 12px; left: 16px; right: 16px; display: flex; justify-content: space-between; color: #fff; font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.video-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: rgba(255,255,255,.15); }
.video-progress i { display: block; width: 0; height: 100%; background: var(--brand); }
.video-copy { align-self: center; max-width: 560px; display: grid; gap: 24px; }
.video-copy h2 { margin: 0; font-family: Anton, sans-serif; font-size: clamp(32px, 3.4vw, 56px); font-weight: 400; line-height: 1.05; text-transform: uppercase; }
.video-copy p { max-width: 500px; margin: 0; font-weight: 300; line-height: 1.6; }
.video-copy a { display: inline-flex; width: max-content; align-items: center; color: var(--brand); font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 400; line-height: 1.5; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; }
.branding-stage {
  z-index: 50;
  background: transparent;
}
.branding-stage::before {
  display: none;
}
.branding-copy { position: absolute; top: 9vh; right: 5vw; width: min(620px, 36vw); display: grid; gap: 16px; text-align: right; }
.branding-copy p { margin: 0; font-weight: 300; line-height: 1.55; }
.branding-laminate-stage { position: absolute; left: 50%; top: 48%; z-index: 4; width: min(1040px, calc(100vw - 300px)); aspect-ratio: 2849 / 1474; transform: translate(-50%, -50%); pointer-events: auto; }
.branding-project { position: absolute; inset: 0; opacity: 0; transform: translateX(78vw); outline: 0; will-change: transform, opacity; pointer-events: none; }
.branding-project.is-active { pointer-events: auto; }
.branding-laminate { position: relative; width: 100%; aspect-ratio: 2849 / 1474; isolation: isolate; cursor: pointer; perspective: 1200px; transform: rotate(-.25deg); transform-origin: 50% 68%; transition: transform 260ms cubic-bezier(.2,.82,.18,1); }
.branding-cast-shadow { position: absolute; left: 10%; right: 10%; bottom: 1.8%; height: 11%; z-index: 0; border-radius: 999px; background: radial-gradient(ellipse at center, rgba(16,16,16,.18), rgba(16,16,16,.07) 46%, transparent 72%); filter: blur(14px); transform: translateY(18%); opacity: .7; transition: 520ms cubic-bezier(.2,.8,.2,1); }
.branding-insert-shadow { position: absolute; left: 7%; right: 7%; top: 87.5%; height: 7%; z-index: 1; border-radius: 999px; background: radial-gradient(ellipse at center, rgba(16,16,16,.16), rgba(16,16,16,.055) 44%, transparent 70%); filter: blur(10px); opacity: .18; transform: translateY(0) scaleX(.92); transform-origin: 50% 50%; transition: 260ms cubic-bezier(.2,.82,.18,1); pointer-events: none; }
.branding-insert { --brand-cover-bg: #D7D334; --brand-cover-title: #2F2F2F; --brand-cover-text: rgba(47,47,47,.72); --brand-cover-accent: #35545D; --brand-cover-grid: rgba(53,84,93,.14); --brand-cover-glow: rgba(255,253,249,.34); --brand-cover-ring: rgba(53,84,93,.24); position: absolute; left: 4.53%; right: 4.53%; top: 6.24%; bottom: 6.24%; z-index: 1; overflow: hidden; border-radius: 3px; background: var(--brand-cover-bg); box-shadow: 0 1px 2px rgba(16,16,16,.08), 0 7px 14px rgba(16,16,16,.10); transform: translateY(0) rotateX(0deg) scale(1); transform-origin: 50% 100%; transition: transform 260ms cubic-bezier(.2,.82,.18,1), box-shadow 260ms cubic-bezier(.2,.82,.18,1); }
.branding-project[data-brand-project="reignite"] .branding-insert { --brand-cover-bg: #F5EFE4; --brand-cover-title: #171717; --brand-cover-text: rgba(23,23,23,.68); --brand-cover-accent: #D40511; --brand-cover-grid: rgba(23,23,23,.085); --brand-cover-glow: rgba(255, 204, 0, .34); --brand-cover-ring: rgba(212,5,17,.22); }
.branding-text-cover { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 24px; padding: clamp(34px, 5.2vw, 72px) clamp(40px, 6vw, 90px); overflow: hidden; color: var(--brand-cover-title); background: radial-gradient(circle at 76% 18%, var(--brand-cover-glow), transparent 34%), linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,0) 32%), var(--brand-cover-bg); border-radius: 3px; }
.branding-text-cover::before { display: none; }
.branding-text-cover::after { content: ""; position: absolute; right: -10%; bottom: -18%; width: 44%; aspect-ratio: 1; border-radius: 999px; border: 1px solid var(--brand-cover-ring); opacity: .34; pointer-events: none; }
.branding-text-content,
.branding-text-footer { position: relative; z-index: 2; }
.branding-text-eyebrow,
.branding-text-footer { font-family: "IBM Plex Mono", monospace; font-size: 12px; font-weight: 400; line-height: 1.35; letter-spacing: .18em; text-transform: uppercase; }
.branding-text-eyebrow {
  color: var(--brand-cover-title);
}
.branding-text-footer {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.branding-text-footer a {
  color: var(--brand-cover-accent);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.branding-text-cover h3 { max-width: 12ch; margin: 22px 0 18px; color: var(--brand-cover-title); font-family: Anton, sans-serif; font-size: clamp(52px, 8.4vw, 120px); font-weight: 400; line-height: .86; letter-spacing: 0; text-transform: uppercase; }
.branding-project[data-brand-project="northwest"] .branding-text-cover h3 { line-height: .94; }
.branding-project[data-brand-project="reignite"] .branding-text-cover h3 { white-space: nowrap; max-width: none; font-size: clamp(50px, 7.8vw, 108px); }
.branding-text-content p { max-width: 46ch; margin: 0; color: var(--brand-cover-text); font-size: clamp(15px, 1.5vw, 21px); font-weight: 300; line-height: 1.48; }
.branding-insert::after { content: ""; position: absolute; inset: 0; border-radius: 3px; background: linear-gradient(to bottom, rgba(255,255,255,.05), transparent 30%, rgba(0,0,0,.05)); pointer-events: none; opacity: .35; }
.branding-insert-glint { position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0; background: linear-gradient(108deg, transparent 0%, transparent 42%, rgba(255,255,255,.34) 48%, rgba(255,255,255,.08) 54%, transparent 63%, transparent 100%); transform: translateX(-36%); transition: transform 720ms cubic-bezier(.18,.82,.18,1), opacity 420ms ease; }
.branding-frame { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; object-fit: contain; pointer-events: none; user-select: none; filter: drop-shadow(0 30px 52px rgba(16,16,16,.18)); transition: filter 520ms cubic-bezier(.2,.82,.18,1); }
.branding-laminate:hover,
.branding-project:focus-visible .branding-laminate { transform: rotate(0deg) translateY(-3px); }
.branding-laminate:hover .branding-insert,
.branding-project:focus-visible .branding-insert { transform: translateY(-24%) rotateX(-1.4deg) scale(1.006); box-shadow: 0 3px 5px rgba(16,16,16,.09), 0 14px 22px rgba(16,16,16,.13), 0 36px 52px rgba(16,16,16,.11); }
.branding-laminate:hover .branding-insert-shadow,
.branding-project:focus-visible .branding-insert-shadow { opacity: .26; filter: blur(18px); transform: translateY(22%) scaleX(.86); }
.branding-laminate:hover .branding-cast-shadow,
.branding-project:focus-visible .branding-cast-shadow { opacity: .62; filter: blur(16px); transform: translateY(20%) scaleX(.96); }
.branding-laminate:hover .branding-insert-glint,
.branding-project:focus-visible .branding-insert-glint { opacity: .8; transform: translateX(38%); }
.branding-laminate:hover .branding-frame,
.branding-project:focus-visible .branding-frame { filter: drop-shadow(0 34px 56px rgba(16,16,16,.2)) brightness(1.02); }
.branding-project.is-opening .branding-insert {
  opacity: 0;
  transform: translateY(0) rotateX(0deg) scale(1);
}
.branding-project.is-opening .branding-frame {
  opacity: .42;
  filter: drop-shadow(0 2px 4px rgba(16,16,16,.08)) drop-shadow(0 16px 28px rgba(16,16,16,.12));
}
.branding-project.is-opening .branding-insert-shadow {
  opacity: .42;
  filter: blur(22px);
  transform: translateY(30%) scaleX(.82);
}
.massive-line { position: absolute; left: 3vw; right: 3vw; bottom: 5vh; text-align: center; white-space: nowrap; font-family: Anton, sans-serif; font-size: clamp(40px, 8.6vw, 200px); line-height: .9; text-transform: uppercase; }
@media (max-width: 1439px), (max-height: 860px) {
  .branding-copy { top: 96px; right: 5vw; width: min(560px, 46vw); }
  .branding-copy p { font-size: 14px; line-height: 1.45; }
  .branding-laminate-stage { top: 48.5%; width: min(760px, calc(100vw - 280px)); }
  .branding-text-cover {
    gap: 12px;
    padding: 26px 42px;
  }
  .branding-text-cover h3 {
    margin: 10px 0 8px;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .9;
  }
  .branding-project[data-brand-project="northwest"] .branding-text-cover h3 {
    font-size: clamp(46px, 6.1vw, 78px);
    line-height: .9;
  }
  .branding-project[data-brand-project="reignite"] .branding-text-cover h3 {
    font-size: clamp(42px, 5.9vw, 74px);
  }
  .branding-text-content p {
    max-width: 42ch;
    font-size: 14px;
    line-height: 1.35;
  }
  .branding-text-eyebrow,
  .branding-text-footer {
    font-size: 12px;
    line-height: 1.35;
    letter-spacing: .18em;
  }
  .branding-stage .massive-line { bottom: 70px; font-size: clamp(36px, 5vw, 58px); }
}
.explorations-stage {
  z-index: 65;
  overflow: hidden;
  background: transparent;
}
.explorations-stage::before {
  display: none;
}
.nudge-exploration-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.nudge-video-shell {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(58vw, 880px);
  aspect-ratio: 16 / 9;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  will-change: transform, width, height, opacity;
}
.nudge-video-laminate {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .34);
  border: 0;
  box-shadow: 0 24px 60px -42px rgba(16, 16, 16, .38);
}
.nudge-video-shadow {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: -20px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(16,16,16,.18), rgba(16,16,16,.06) 46%, transparent 72%);
  filter: blur(14px);
  opacity: .72;
}
.nudge-video-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
  background: rgba(16,16,16,.08);
}
.nudge-video-frame video {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}
.nudge-exploration-card {
  position: absolute;
  left: 8vw;
  bottom: 12vh;
  z-index: 4;
  width: min(300px, 26vw);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border-radius: 4px;
  background: rgba(246, 242, 235, .92);
  border: 1px solid rgba(16,16,16,.08);
  box-shadow: 0 28px 70px -48px rgba(16,16,16,.42);
  color: var(--foreground);
  pointer-events: auto;
  will-change: transform, opacity;
}
.nudge-exploration-card > span,
.nudge-card-actions {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.nudge-exploration-card > span {
  color: var(--brand);
}
.nudge-exploration-card h2 {
  margin: 0;
  font-family: Anton, sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
  text-transform: uppercase;
}
.nudge-exploration-card p {
  margin: 0;
  color: rgba(16,16,16,.74);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.nudge-card-actions {
  display: grid;
  gap: 12px;
}
.nudge-card-actions a {
  width: max-content;
  color: var(--brand);
  text-decoration: none;
}
.nudge-card-actions em {
  color: rgba(16,16,16,.52);
  font-style: normal;
}
.footer-stage { z-index: 100; pointer-events: none; display: flex; align-items: flex-end; justify-content: center; padding: 0; }
.footer-panel { --footer-name-height: 160px; position: relative; overflow: hidden; width: 56vw; height: 26vh; border-radius: 10px; background: var(--brand); color: var(--paper); box-shadow: 0 -30px 60px -20px rgba(16,16,16,.35); }
.footer-meta { position: absolute; top: calc(var(--footer-name-height) + 2px); left: 36px; right: 36px; z-index: 4; display: flex; justify-content: space-between; gap: 32px; font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; opacity: .78; }
.footer-content { position: absolute; inset: 0; padding: 96px 36px 30px; opacity: 0; pointer-events: auto; }
.footer-content h2 { position: absolute; left: 0; right: auto; top: -14px; z-index: 1; width: max-content; margin: 0; color: rgba(241,236,224,.22); font-family: Anton, sans-serif; font-size: 100px; font-weight: 400; line-height: .9; text-align: left; text-transform: uppercase; white-space: nowrap; pointer-events: none; }
.footer-main { position: absolute; left: 36px; right: 36px; bottom: 86px; z-index: 3; display: grid; grid-template-columns: minmax(260px, 34vw) minmax(420px, 1fr); gap: clamp(48px, 9vw, 160px); align-items: end; }
.footer-notes h3 { margin: 0 0 22px; color: var(--paper); font-family: "Roboto Condensed", sans-serif; font-size: clamp(28px, 2.6vw, 44px); font-weight: 300; line-height: 1; }
.footer-sitemap div { display: grid; grid-template-columns: repeat(2, minmax(90px, 1fr)); gap: 14px 42px; width: min(340px, 100%); }
.footer-sitemap a { color: var(--paper); font-family: Inter, system-ui, sans-serif; font-size: 17px; line-height: 1.3; text-decoration: none; }
.footer-notes { display: grid; grid-template-columns: repeat(2, minmax(180px, 1fr)); gap: 18px; }
.footer-notes article { min-height: 184px; padding: 28px; background: rgba(241,236,224,.08); border: 1px solid rgba(241,236,224,.09); }
.footer-notes p { margin: 0; color: rgba(241,236,224,.86); font-weight: 300; font-size: 15px; line-height: 1.6; }
.footer-rail { position: absolute; left: 36px; right: 36px; bottom: 30px; z-index: 3; display: flex; justify-content: space-between; gap: 32px; padding-top: 18px; border-top: 1px solid rgba(241,236,224,.22); font-family: "IBM Plex Mono", monospace; font-size: 12px; letter-spacing: .08em; line-height: 1.45; opacity: .78; }
.video-copy a,
.branding-text-footer a,
.nudge-card-actions a,
.footer-sitemap a {
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 5px;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease, text-decoration-color 180ms ease;
}
.video-copy a:hover,
.video-copy a:focus-visible,
.branding-text-footer a:hover,
.branding-text-footer a:focus-visible,
.nudge-card-actions a:hover,
.nudge-card-actions a:focus-visible,
.footer-sitemap a:hover,
.footer-sitemap a:focus-visible {
  transform: translateY(-1px);
  text-decoration-color: currentColor;
}
@media (max-width: 1023px) {
  .nav { padding: 22px 24px 0; grid-template-columns: minmax(0, 1fr) auto; }
  .nav nav { display: none; }
  .nav.open nav { position: absolute; top: 68px; right: 24px; display: flex; flex-direction: column; gap: 18px; min-width: 180px; padding: 18px; background: rgba(246,242,235,.92); border: 1px solid rgba(37,87,255,.24); box-shadow: 0 18px 42px rgba(16,16,16,.12); }
  .menu-button { display: flex; }
}
@media (max-width: 820px) {
  .nav { padding: 22px 20px 0; }
  .brand, .nav-link { font-size: 12px; }
  .side-note.left { left: 14px; }
  .side-note.right { right: 14px; }
  .side-note.bottom { bottom: 176px; }
  .ask-bar { bottom: 62px; height: 46px; }
  .project-grid, .branding-cards { grid-template-columns: 1fr; top: 52%; max-height: 78vh; overflow: auto; }
  .video-stage { grid-template-columns: 1fr; padding-top: 80px; }
  .video-shell { max-width: 92vw; }
  .branding-copy { left: 8vw; right: 8vw; width: auto; text-align: left; }
  .massive-line, .footer-content h2 { white-space: normal; }
}
@media (max-width: 767px) {
  .side-note { display: none; }
  .ghost-title { font-size: clamp(56px, 17vw, 88px); }
  .ghost-lane-left { left: 0; top: 92px; width: 48vw; min-width: 0; height: 170px; }
  .ghost-lane-right { right: 0; bottom: 190px; width: 58vw; height: 150px; }
  .ghost-left { left: 18px; top: 0; }
  .ghost-right { right: 18px; bottom: 0; }
  .home-archive-canvas {
    top: 92px;
    width: 100vw;
    height: calc(100vh - 170px);
  }
  .identity-card {
    left: 50%;
    top: 0;
    transform: translateX(-50%) rotate(-.6deg);
  }
  .photo-card {
    left: 50%;
    top: calc(var(--home-card-w) * 1.18);
    transform: translateX(-50%) rotate(.8deg);
  }
  .identity-card:hover { transform: translateX(-50%) rotate(0) translateY(-6px); }
  .photo-card:hover { transform: translateX(-50%) rotate(0) translateY(-6px); }
  .hand-note {
    display: none;
  }
  .toolset {
    bottom: 0;
    width: min(320px, 86vw);
  }
  .ask-bar input { font-size: 12px; }
}

.desktop-only-guard {
  display: none;
}

@media (max-width: 1279px) {
  html,
  body {
    min-height: 100%;
    overflow: hidden;
  }

  body {
    background: var(--background);
  }

  .page {
    display: none;
  }

  .desktop-only-guard {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 32px;
    background:
      linear-gradient(to right, var(--grid) 1px, transparent 1px),
      linear-gradient(to bottom, var(--grid) 1px, transparent 1px),
      var(--background);
    background-size: 56px 56px;
    color: var(--foreground);
  }

  .desktop-only-guard > div {
    width: min(560px, 100%);
    padding: 40px;
    border: 1px solid rgba(37, 87, 255, .18);
    border-radius: 16px;
    background: rgba(241, 236, 224, .82);
    box-shadow: 0 28px 80px -48px rgba(16, 16, 16, .42);
  }

  .desktop-only-guard span {
    display: block;
    color: var(--brand);
    font-family: "IBM Plex Mono", monospace;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.45;
    letter-spacing: .2em;
    text-transform: uppercase;
  }

  .desktop-only-guard h1 {
    max-width: 10ch;
    margin: 28px 0 24px;
    font-family: Anton, sans-serif;
    font-size: clamp(42px, 10vw, 86px);
    font-weight: 400;
    line-height: .92;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .desktop-only-guard p {
    max-width: 38ch;
    margin: 0;
    color: rgba(16, 16, 16, .76);
    font-family: Inter, system-ui, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
  }
}
