/*
 * Rankers Mind — Kinetic visual system
 * Original playful 3D/editorial direction, layered over the enterprise foundation.
 */

:root {
  --k-bg: #f4f1e9;
  --k-surface: #fffdf7;
  --k-surface-2: #e9e5da;
  --k-ink: #142148;
  --k-muted: #5d6475;
  --k-line: rgba(20, 33, 72, .18);
  --k-blue: #159bd3;
  --k-blue-deep: #087caf;
  --k-cyan: #70def1;
  --k-lime: #c8ff35;
  --k-coral: #ff6f61;
  --k-yellow: #ffd85a;
  --k-navy: #142148;
  --k-shadow: 0 28px 80px rgba(20, 33, 72, .12);
  --k-radius: 32px;
  --k-header: rgba(255, 253, 247, .88);
  --k-grid: rgba(20, 33, 72, .08);
  --mood-hue: 0deg;
}

:root[data-theme="dark"] {
  --k-bg: #0b1124;
  --k-surface: #121a33;
  --k-surface-2: #1a2340;
  --k-ink: #f7f3e9;
  --k-muted: #aab3ca;
  --k-line: rgba(238, 243, 255, .16);
  --k-blue: #52c8ed;
  --k-blue-deep: #159bd3;
  --k-cyan: #78e6f5;
  --k-lime: #c8ff35;
  --k-coral: #ff8579;
  --k-yellow: #ffe17a;
  --k-shadow: 0 30px 90px rgba(0, 0, 0, .32);
  --k-header: rgba(249, 247, 239, .92);
  --k-grid: rgba(238, 243, 255, .06);
}

html {
  background: var(--k-bg);
  scroll-behavior: smooth;
  scrollbar-color: var(--k-blue) var(--k-bg);
}

body {
  background:
    linear-gradient(90deg, transparent 49.7%, var(--k-grid) 50%, transparent 50.3%) 0 0 / 11rem 11rem,
    var(--k-bg);
  color: var(--k-ink);
  overflow-x: clip;
  transition: background-color .4s ease, color .4s ease;
}

body::selection,
::selection {
  color: var(--k-navy);
  background: var(--k-lime);
}

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

body.menu-open .chatbot,
body.menu-open .whatsapp {
  opacity: 0;
  pointer-events: none;
}

a,
button,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

a,
button {
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

img {
  max-width: 100%;
}

main {
  min-height: 70vh;
}

.wrap,
.section-heading,
.project-toolbar,
.project-grid-v2,
.project-empty,
.video-showcase-v2__intro,
.video-reel-v2 {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5.5rem, 10vw, 10rem);
  background: transparent;
  color: var(--k-ink);
}

.section--cream {
  background: var(--k-surface);
  color: var(--k-ink);
}

.section--navy {
  background: var(--k-navy);
  color: #fffdf7;
}

.section--blue {
  background: var(--k-blue-deep);
  color: #fff;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading--split,
.kinetic-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, .55fr);
  gap: 3rem;
  align-items: end;
}

.section-heading h2,
.kinetic-heading h2 {
  max-width: 13ch;
  margin: 0;
  color: inherit;
  font-size: clamp(3.3rem, 7.2vw, 7.5rem);
  line-height: .88;
  letter-spacing: -.055em;
}

.section-heading > p,
.kinetic-heading > p {
  max-width: 38rem;
  margin: 0 0 .5rem;
  color: var(--k-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.eyebrow {
  color: var(--k-blue);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.4rem;
  padding: .9rem 1.25rem;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  overflow: hidden;
  border: 1px solid var(--k-ink);
  border-radius: 999px;
  color: var(--k-ink);
  font-weight: 800;
  text-decoration: none;
  isolation: isolate;
}

.button::before {
  position: absolute;
  z-index: -1;
  width: 140%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--k-lime);
  content: "";
  transform: translateY(105%);
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateY(0);
}

.button--ink,
.button--dark,
.button--primary {
  border-color: var(--k-navy);
  background: var(--k-navy);
  color: #fff;
}

.button--light {
  border-color: #fff;
  background: #fff;
  color: var(--k-navy);
}

.button--ghost {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

.button:hover,
.button:focus-visible {
  color: var(--k-navy);
  box-shadow: 0 12px 28px rgba(20, 33, 72, .18);
  transform: translateY(-3px);
}

/* Header and transparent brand mark */
.site-header {
  top: 14px;
  right: 18px;
  left: 18px;
  width: auto;
  min-height: 72px;
  padding: 8px 10px 8px 18px;
  border: 1px solid rgba(20, 33, 72, .12);
  border-radius: 999px;
  background: var(--k-header);
  box-shadow: 0 12px 42px rgba(20, 33, 72, .1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  grid-template-columns: 150px minmax(0, 1fr) 48px auto;
}

.site-header.scrolled {
  top: 8px;
  box-shadow: 0 16px 48px rgba(20, 33, 72, .16);
}

.brand {
  width: 144px;
  height: 54px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.desktop-nav {
  gap: clamp(.8rem, 1.5vw, 1.7rem);
}

.desktop-nav > a,
.nav-dropdown > a {
  color: var(--k-navy);
  font-size: .82rem;
  font-weight: 750;
}

.desktop-nav a::after {
  background: var(--k-blue);
}

.header-contact {
  min-height: 52px;
  padding-inline: 1.3rem;
  border: 1px solid var(--k-navy);
  border-radius: 999px;
  background: var(--k-navy);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}

.header-contact:hover {
  border-color: var(--k-lime);
  background: var(--k-lime);
  color: var(--k-navy);
  transform: rotate(-1deg);
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 72, .18);
  border-radius: 50%;
  background: rgba(20, 33, 72, .04);
  color: var(--k-navy);
  cursor: pointer;
}

.theme-toggle span {
  position: absolute;
  line-height: 1;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
}

.theme-toggle__sun {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.theme-toggle__moon {
  opacity: 0;
  transform: translateY(150%) rotate(-25deg);
}

[data-theme="dark"] .theme-toggle__sun {
  opacity: 0;
  transform: translateY(-150%) rotate(35deg);
}

[data-theme="dark"] .theme-toggle__moon {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.theme-toggle:hover {
  background: var(--k-lime);
  transform: rotate(12deg);
}

.mobile-theme-toggle {
  display: flex;
  width: 100%;
  padding: 1rem 0;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
  font: inherit;
}

.menu-toggle {
  color: var(--k-navy);
}

.menu-toggle span:not(.sr-only) {
  background: currentColor;
}

.mega-menu {
  border: 1px solid rgba(20, 33, 72, .12);
  border-radius: 24px;
  background: #fffdf7;
  box-shadow: var(--k-shadow);
}

.mega-menu a,
.mega-menu__label {
  color: var(--k-navy);
}

/* Intro splash */
.splash {
  background: var(--k-navy);
}

.splash__brand {
  gap: .6rem;
}

.splash__brand img {
  width: min(310px, 68vw);
  padding: .65rem;
  border-radius: 22px;
  background: #fffdf7;
}

.splash__brand small,
.splash__eyebrow {
  color: #fff;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.splash__wave path {
  fill: var(--k-lime);
}

/* Homepage hero */
.playground-hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #f5f0e6;
  color: var(--k-navy);
  isolation: isolate;
}

.playground-hero__art {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
  transform: scale(1.025);
  animation: hero-breathe 12s ease-in-out infinite alternate;
}

.playground-hero__wash {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 240, 230, .98) 0%, rgba(245, 240, 230, .86) 34%, rgba(245, 240, 230, .12) 66%, rgba(245, 240, 230, .05) 100%);
}

.playground-hero__dots {
  position: absolute;
  z-index: -1;
  top: 18%;
  left: 46%;
  width: 90px;
  height: 90px;
  opacity: .35;
  background-image: radial-gradient(var(--k-navy) 1.4px, transparent 1.4px);
  background-size: 12px 12px;
  transform: rotate(13deg);
}

.playground-hero__content {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  padding-top: 145px;
  padding-bottom: 92px;
  align-items: center;
}

.playground-hero__copy {
  width: min(750px, 61%);
}

.playground-hero__copy.reveal {
  opacity: 1;
  transform: none;
}

.playground-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--k-navy);
}

.playground-hero .eyebrow span {
  width: .75rem;
  height: .75rem;
  border-radius: 50%;
  background: var(--k-lime);
  box-shadow: 0 0 0 6px rgba(200, 255, 53, .25);
  animation: pulse-dot 2s ease-in-out infinite;
}

.playground-hero h1 {
  max-width: 10ch;
  margin: 1.25rem 0 1.6rem;
  color: var(--k-navy);
  font-size: clamp(4.35rem, 8.2vw, 9rem);
  line-height: .82;
  letter-spacing: -.07em;
  text-wrap: balance;
}

.playground-hero__lede {
  max-width: 38rem;
  margin: 0;
  color: rgba(20, 33, 72, .77);
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.55;
}

.playground-hero__actions {
  display: flex;
  margin-top: 2rem;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.scribble-link {
  position: relative;
  color: var(--k-navy);
  font-weight: 800;
  text-decoration: none;
}

.scribble-link::after {
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10'%3E%3Cpath d='M2 7C47 1 92 11 198 3' fill='none' stroke='%23159bd3' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  content: "";
  transform-origin: left;
  transition: transform .35s ease;
}

.scribble-link:hover::after {
  transform: scaleX(.62) rotate(-2deg);
}

.playground-hero__facts {
  display: flex;
  margin: 2.5rem 0 0;
  gap: 2.8rem;
}

.playground-hero__facts div {
  display: grid;
  gap: .25rem;
}

.playground-hero__facts dt {
  color: rgba(20, 33, 72, .55);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.playground-hero__facts dd {
  margin: 0;
  color: var(--k-navy);
  font-size: .9rem;
  font-weight: 750;
}

.mood-button {
  position: absolute;
  right: 4%;
  bottom: 15%;
  display: grid;
  width: 185px;
  min-height: 185px;
  padding: 1.4rem;
  align-content: center;
  gap: .65rem;
  border: 1px solid rgba(20, 33, 72, .25);
  border-radius: 47% 53% 58% 42% / 43% 42% 58% 57%;
  background: hsla(calc(74deg + var(--mood-hue)), 100%, 60%, .92);
  color: var(--k-navy);
  box-shadow: 0 22px 50px rgba(20, 33, 72, .16);
  cursor: pointer;
  text-align: left;
  transform: rotate(4deg);
  animation: blob-morph 8s ease-in-out infinite;
}

.mood-button span,
.mood-button b {
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.mood-button strong {
  font-size: 1.15rem;
  line-height: 1.08;
}

.mood-button:hover {
  box-shadow: 0 25px 60px rgba(20, 33, 72, .25);
  transform: rotate(-3deg) scale(1.04);
}

.orbit-note {
  position: absolute;
  padding: .55rem .85rem;
  border: 1px solid rgba(20, 33, 72, .18);
  border-radius: 999px;
  background: rgba(255, 253, 247, .72);
  color: var(--k-navy);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.orbit-note--one {
  top: 23%;
  right: 4%;
  animation: float-one 5s ease-in-out infinite;
}

.orbit-note--two {
  top: 44%;
  right: 25%;
  animation: float-two 6s ease-in-out infinite;
}

.playground-hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: .7rem;
  color: var(--k-navy);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.playground-hero__scroll b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--k-navy);
  border-radius: 50%;
  animation: scroll-bob 1.6s ease-in-out infinite;
}

/* Moving strip and client row */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--k-navy);
  background: var(--k-lime);
  color: var(--k-navy);
}

.ticker__track {
  display: flex;
  width: max-content;
  padding-block: 1rem;
  align-items: center;
  animation: ticker-move 26s linear infinite;
}

.ticker__track span {
  padding-inline: 2rem;
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.ticker__track i {
  font-style: normal;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.client-ribbon {
  padding-block: 2rem;
  border-bottom: 1px solid var(--k-line);
  background: var(--k-surface);
}

.client-ribbon .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.client-ribbon p {
  margin: 0;
  color: var(--k-muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.client-ribbon a,
.client-ribbon span {
  display: grid;
  max-width: 130px;
  height: 48px;
  place-items: center;
  filter: grayscale(1);
  opacity: .62;
}

.client-ribbon a:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-4px);
}

.client-ribbon img {
  max-height: 42px;
  object-fit: contain;
}

/* Homepage bento capabilities */
.capability-playground {
  background:
    radial-gradient(circle at 92% 10%, rgba(112, 222, 241, .25), transparent 26rem),
    var(--k-bg);
}

.capability-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  perspective: 1000px;
}

[data-tilt] {
  --rx: 0deg;
  --ry: 0deg;
  --lift: 0px;
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1), box-shadow .35s ease, opacity .45s ease;
}

.capability-tile {
  position: relative;
  display: flex;
  min-height: 275px;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  background: var(--k-surface);
  color: var(--k-ink);
  text-decoration: none;
  box-shadow: 0 10px 40px rgba(20, 33, 72, .05);
}

.capability-tile:nth-child(1),
.capability-tile:nth-child(6) {
  grid-column: span 8;
}

.capability-tile:nth-child(1) {
  background: var(--k-navy);
  color: #fff;
}

.capability-tile:nth-child(2) {
  background: var(--k-lime);
  color: var(--k-navy);
}

.capability-tile:nth-child(3) {
  background: var(--k-blue);
  color: var(--k-navy);
}

.capability-tile:nth-child(6) {
  background: var(--k-coral);
  color: var(--k-navy);
}

.capability-tile::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 28px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: .07;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1);
}

.capability-tile > span {
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.capability-tile h3 {
  max-width: 10ch;
  margin: 1.6rem 0 .8rem;
  color: inherit;
  font-size: clamp(2rem, 3.2vw, 3.75rem);
  line-height: .95;
  letter-spacing: -.045em;
  overflow-wrap: anywhere;
}

.capability-tile p {
  max-width: 35rem;
  margin: 0;
  color: inherit;
  line-height: 1.6;
  opacity: .76;
}

.capability-tile > b {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: translateZ(30px);
}

.capability-tile:hover {
  --lift: -8px;
  box-shadow: var(--k-shadow);
}

.capability-tile:hover::after {
  transform: rotate(60deg) scale(1.15);
}

.capability-tile:hover > b {
  background: currentColor;
  color: var(--k-surface);
  transform: translateZ(30px) rotate(45deg);
}

.capability-footnote {
  display: flex;
  margin-top: 1.25rem;
  padding: 1.25rem 1.5rem;
  justify-content: space-between;
  gap: 2rem;
  border: 1px dashed var(--k-line);
  border-radius: 18px;
  color: var(--k-muted);
}

.capability-footnote p {
  margin: 0;
  font-weight: 800;
}

.capability-footnote a {
  color: var(--k-blue);
  font-weight: 750;
}

/* Manifesto */
.playful-manifesto {
  background: var(--k-navy);
  color: #fff;
}

.playful-manifesto__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.playful-manifesto h2 {
  max-width: 12ch;
  margin: 1rem 0 2rem;
  color: #fff;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.playful-manifesto p:not(.eyebrow) {
  max-width: 42rem;
  color: rgba(255, 255, 255, .72);
  font-size: 1.1rem;
  line-height: 1.75;
}

.manifesto-object {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 45% 55% 62% 38% / 51% 33% 67% 49%;
  background:
    radial-gradient(circle at 70% 25%, rgba(255,255,255,.26), transparent 15%),
    linear-gradient(145deg, #24b7e2, #087caf);
  box-shadow: inset -35px -30px 80px rgba(0, 0, 0, .24), 0 35px 80px rgba(0, 0, 0, .28);
  animation: blob-morph 10s ease-in-out infinite alternate;
}

.manifesto-object__ring {
  position: absolute;
  top: 14%;
  right: 7%;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(200, 255, 53, .92);
  border-radius: 50%;
  box-shadow: 0 20px 45px rgba(0,0,0,.24), inset 8px 8px 18px rgba(255,255,255,.4);
  transform: rotateX(66deg) rotateZ(-22deg);
  animation: ring-spin 11s linear infinite;
}

.manifesto-object__ball {
  position: absolute;
  right: 17%;
  bottom: 17%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff, #bcc4d2 20%, #3e475e 72%, #10182b);
  box-shadow: 0 24px 35px rgba(0,0,0,.32);
  animation: float-one 4s ease-in-out infinite;
}

.manifesto-object__pill {
  position: absolute;
  bottom: 13%;
  left: 10%;
  width: 110px;
  height: 230px;
  border-radius: 999px;
  background: var(--k-coral);
  box-shadow: inset 12px 12px 20px rgba(255,255,255,.28), 0 24px 48px rgba(0,0,0,.25);
  transform: rotate(34deg);
}

.manifesto-object > b {
  position: absolute;
  top: 20%;
  left: 15%;
  color: #fff;
  font-family: var(--font-display, sans-serif);
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: .8;
  letter-spacing: -.08em;
  text-shadow: 0 10px 30px rgba(0,0,0,.18);
  transform: rotate(-8deg);
}

/* Project cards on home */
.work-playground {
  overflow: hidden;
  background: var(--k-surface);
}

.round-link {
  display: grid;
  width: 130px;
  height: 130px;
  place-items: center;
  border: 1px solid var(--k-line);
  border-radius: 50%;
  color: var(--k-ink);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.round-link:hover {
  border-color: var(--k-blue);
  background: var(--k-blue);
  color: var(--k-navy);
  transform: rotate(8deg);
}

.work-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem) clamp(1.5rem, 4vw, 4rem);
  perspective: 1200px;
}

.work-card:nth-child(even) {
  margin-top: 8rem;
}

.work-card a {
  color: inherit;
  text-decoration: none;
}

.work-card__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  background: var(--k-surface-2);
  box-shadow: 0 16px 45px rgba(20,33,72,.1);
}

.work-card__media picture {
  display: block;
  width: 100%;
}

.work-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}

.work-card__media > span {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--k-lime);
  color: var(--k-navy);
  font-size: .72rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}

.work-card__media > b {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--k-navy);
  color: #fff;
  font-size: .72rem;
}

.work-card__copy {
  padding: 1.4rem .2rem 0;
}

.work-card__copy p {
  margin: 0 0 .55rem;
  color: var(--k-blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.work-card__copy h3 {
  margin: 0;
  color: var(--k-ink);
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: .95;
  letter-spacing: -.045em;
}

.work-card__copy small {
  display: block;
  max-width: 36rem;
  margin-top: .8rem;
  color: var(--k-muted);
  font-size: .94rem;
  line-height: 1.55;
}

.work-card:hover {
  --lift: -8px;
}

.work-card:hover img {
  filter: saturate(1.15);
  transform: none;
}

.work-card:hover .work-card__media > span {
  opacity: 1;
  transform: translateY(0);
}

/* Quote and remaining home blocks */
.quote-break {
  position: relative;
  min-height: 620px;
  padding-block: 9rem;
  overflow: hidden;
  background: var(--k-lime);
  color: var(--k-navy);
  text-align: center;
  isolation: isolate;
}

.quote-break .wrap {
  position: relative;
  z-index: 1;
}

.quote-break p,
.quote-break span {
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.quote-break blockquote {
  margin: 2rem auto;
  font-family: var(--font-display, sans-serif);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.06em;
}

.quote-break__shape {
  position: absolute;
  border-radius: 50%;
  background: var(--k-blue);
  box-shadow: inset 15px 15px 35px rgba(255,255,255,.3);
}

.quote-break__shape--one {
  top: -120px;
  left: -90px;
  width: 330px;
  height: 330px;
  animation: float-one 7s ease-in-out infinite;
}

.quote-break__shape--two {
  right: -80px;
  bottom: -140px;
  width: 390px;
  height: 390px;
  background: var(--k-coral);
  animation: float-two 8s ease-in-out infinite;
}

.process-playground {
  background: var(--k-bg);
}

.process-orbit {
  display: grid;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  list-style: none;
}

.process-orbit li {
  position: relative;
  min-height: 260px;
  padding: 1.7rem;
  overflow: hidden;
  border: 1px solid var(--k-line);
  border-radius: 999px 999px 26px 26px;
  background: var(--k-surface);
  box-shadow: 0 12px 40px rgba(20,33,72,.05);
}

.process-orbit li:nth-child(even) {
  border-radius: 26px 26px 999px 999px;
}

.process-orbit li > span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--k-blue);
  color: var(--k-navy);
  font-weight: 850;
  transition: transform .5s ease;
}

.process-orbit li:nth-child(3n+2) > span {
  background: var(--k-lime);
}

.process-orbit li:nth-child(3n+3) > span {
  background: var(--k-coral);
}

.process-orbit li div {
  margin-top: 2rem;
}

.process-orbit h3 {
  margin: 0 0 .6rem;
  color: var(--k-ink);
  font-size: 1.5rem;
}

.process-orbit p {
  margin: 0;
  color: var(--k-muted);
  line-height: 1.6;
}

.process-orbit li:hover > span {
  transform: rotate(360deg) scale(1.08);
}

.industry-playground {
  background: var(--k-blue);
  color: var(--k-navy);
}

.industry-playground .eyebrow,
.industry-playground .kinetic-heading > p {
  color: var(--k-navy);
}

.industry-cloud {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.industry-cloud a {
  display: inline-flex;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  gap: .8rem;
  border: 1px solid rgba(20,33,72,.35);
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: var(--k-navy);
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
  font-weight: 700;
  text-decoration: none;
  transform: rotate(calc((var(--i) - 3) * .6deg));
}

.industry-cloud a:nth-child(3n+1):hover {
  background: var(--k-lime);
}

.industry-cloud a:nth-child(3n+2):hover {
  background: var(--k-coral);
}

.industry-cloud a:nth-child(3n):hover {
  background: #fff;
}

.industry-cloud a:hover {
  border-color: var(--k-navy);
  transform: translateY(-7px) rotate(0);
}

.testimonial-playground {
  background: var(--k-surface);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-grid blockquote {
  min-height: 330px;
  margin: 0;
  padding: 2rem;
  border: 1px solid var(--k-line);
  border-radius: 28px;
  background: var(--k-bg);
}

.testimonial-grid blockquote:nth-child(2) {
  background: var(--k-lime);
  color: var(--k-navy);
}

.testimonial-grid blockquote p {
  margin: 0;
  font-family: var(--font-display, sans-serif);
  font-size: 1.7rem;
  line-height: 1.25;
}

.testimonial-grid footer {
  display: grid;
  margin-top: 2rem;
  gap: .3rem;
}

.testimonial-grid footer span {
  color: var(--k-muted);
  font-size: .85rem;
}

.insight-playground {
  background: var(--k-bg);
}

.insight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.insight-card a {
  display: flex;
  min-height: 390px;
  padding: 2rem;
  flex-direction: column;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  background: var(--k-surface);
  color: var(--k-ink);
  text-decoration: none;
}

.insight-card:nth-child(2) a {
  background: var(--k-navy);
  color: #fff;
}

.insight-card:nth-child(3) a {
  background: var(--k-coral);
  color: var(--k-navy);
}

.insight-card a > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 850;
}

.insight-card p {
  margin: 2.6rem 0 .8rem;
  color: inherit;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  opacity: .65;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.insight-card b {
  margin-top: auto;
  color: inherit;
  font-size: .8rem;
}

.insight-card:hover {
  --lift: -9px;
}

.contact-playground {
  background: var(--k-navy);
  color: #fff;
}

.contact-playground__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-playground h2 {
  max-width: 10ch;
  margin: 1rem 0 1.5rem;
  color: #fff;
  font-size: clamp(3.6rem, 6.8vw, 7rem);
  line-height: .88;
  letter-spacing: -.06em;
}

.contact-playground p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
}

.contact-playground__grid > div > div {
  display: grid;
  margin-top: 2rem;
  gap: .65rem;
}

.contact-playground__grid > div > div a {
  color: var(--k-lime);
  font-family: var(--font-display, sans-serif);
  font-size: 1.3rem;
}

/* New portfolio */
.portfolio-hero-v2 {
  position: relative;
  display: grid;
  min-height: 780px;
  padding: 170px max(32px, calc((100vw - 1320px) / 2)) 100px;
  grid-template-columns: 1.15fr .85fr;
  gap: 4rem;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 15%, rgba(112,222,241,.35), transparent 25rem),
    var(--k-bg);
  color: var(--k-ink);
}

.portfolio-hero-v2__copy h1 {
  max-width: 9ch;
  margin: 1rem 0 1.7rem;
  color: var(--k-ink);
  font-size: clamp(4.4rem, 8vw, 8.5rem);
  line-height: .84;
  letter-spacing: -.065em;
}

.inner-hero__lede,
.portfolio-hero-v2__copy > p:last-of-type {
  max-width: 42rem;
  color: var(--k-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.portfolio-hero-v2__object {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--k-line);
  border-radius: 38% 62% 47% 53% / 59% 42% 58% 41%;
  background: var(--k-blue);
  box-shadow: inset 28px 28px 55px rgba(255,255,255,.25), var(--k-shadow);
  animation: blob-morph 10s ease-in-out infinite alternate;
}

.portfolio-hero-v2__object p {
  position: absolute;
  bottom: 16%;
  left: 12%;
  margin: 0;
  color: var(--k-navy);
  font-family: var(--font-display, sans-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.05;
  transform: rotate(-8deg);
}

.portfolio-orb {
  position: absolute;
  border-radius: 50%;
  box-shadow: inset 10px 10px 26px rgba(255,255,255,.45), 0 28px 45px rgba(20,33,72,.25);
}

.portfolio-orb--lime {
  top: 12%;
  left: -5%;
  width: 170px;
  height: 170px;
  background: var(--k-lime);
  animation: float-one 5s ease-in-out infinite;
}

.portfolio-orb--cyan {
  right: 11%;
  bottom: 4%;
  width: 115px;
  height: 115px;
  background: radial-gradient(circle at 30% 20%, #fff, #8feaff 24%, #087caf 75%);
  animation: float-two 6s ease-in-out infinite;
}

.portfolio-loop {
  position: absolute;
  top: 18%;
  right: 6%;
  width: 260px;
  height: 260px;
  border: 42px solid var(--k-coral);
  border-radius: 50%;
  box-shadow: inset 8px 8px 18px rgba(255,255,255,.3), 0 25px 45px rgba(20,33,72,.22);
  transform: rotateX(62deg) rotateZ(24deg);
  animation: ring-spin 12s linear infinite;
}

.portfolio-spark {
  position: absolute;
  top: 8%;
  right: 4%;
  color: var(--k-yellow);
  font-size: 5rem;
  animation: sparkle 2.5s ease-in-out infinite;
}

.project-lab {
  background: var(--k-surface);
}

.project-toolbar {
  display: flex;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--k-line);
}

.project-filters {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
}

.filter-chip {
  padding: .72rem 1rem;
  border: 1px solid var(--k-line);
  border-radius: 999px;
  background: transparent;
  color: var(--k-ink);
  cursor: pointer;
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--k-navy);
  background: var(--k-lime);
  color: var(--k-navy);
  transform: translateY(-2px);
}

.project-search {
  display: flex;
  width: min(320px, 100%);
  padding-inline: 1rem;
  align-items: center;
  gap: .6rem;
  border: 1px solid var(--k-line);
  border-radius: 999px;
  background: var(--k-bg);
}

.project-search input {
  width: 100%;
  min-height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--k-ink);
}

.project-search input::placeholder {
  color: var(--k-muted);
}

.project-grid-v2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4rem);
  perspective: 1200px;
}

.project-card-v2:nth-child(even) {
  margin-top: 7rem;
}

.project-card-v2.is-filtered {
  display: none;
}

.project-card-v2 a {
  color: var(--k-ink);
  text-decoration: none;
}

.project-card-v2__media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  background: var(--k-surface-2);
}

.project-card-v2__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .4s ease;
}

.project-card-v2__media::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(10,17,36,.55));
  content: "";
  opacity: 0;
  transition: opacity .4s ease;
}

.project-card-v2__index,
.project-card-v2__arrow {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  font-size: .72rem;
  font-weight: 850;
}

.project-card-v2__index {
  top: 1rem;
  left: 1rem;
  background: var(--k-surface);
  color: var(--k-ink);
}

.project-card-v2__arrow {
  right: 1rem;
  bottom: 1rem;
  background: var(--k-lime);
  color: var(--k-navy);
  opacity: 0;
  transform: translateY(15px) rotate(-20deg);
}

.project-card-v2__body {
  padding: 1.4rem .2rem 0;
}

.project-card-v2__body p {
  margin: 0 0 .6rem;
  color: var(--k-blue);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-card-v2__body h3 {
  margin: 0;
  color: var(--k-ink);
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.project-card-v2__body span {
  display: block;
  margin-top: .8rem;
  color: var(--k-muted);
  line-height: 1.6;
}

.project-card-v2:hover {
  --lift: -9px;
}

.project-card-v2:hover img {
  filter: saturate(1.18);
  transform: none;
}

.project-card-v2:hover .project-card-v2__media::after,
.project-card-v2:hover .project-card-v2__arrow {
  opacity: 1;
}

.project-card-v2:hover .project-card-v2__arrow {
  transform: translateY(0) rotate(0);
}

.project-empty {
  padding: 2rem;
  border: 1px dashed var(--k-line);
  border-radius: 20px;
  color: var(--k-muted);
  text-align: center;
}

.video-showcase-v2 {
  background: var(--k-navy);
  color: #fff;
}

.video-showcase-v2__intro {
  display: grid;
  margin-bottom: 4rem;
  grid-template-columns: 1.4fr .6fr;
  gap: 3rem;
  align-items: end;
}

.video-showcase-v2__intro h2 {
  max-width: 10ch;
  margin: 1rem 0 0;
  color: #fff;
  font-size: clamp(3.7rem, 7vw, 7.4rem);
  line-height: .86;
  letter-spacing: -.06em;
}

.video-showcase-v2__intro > p:last-child {
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.video-reel-v2 {
  display: grid;
  max-width: 1080px;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 3vw, 2.6rem);
  align-items: start;
  perspective: 1100px;
}

.video-card-v2:nth-child(2) {
  margin-top: 5rem;
}

.video-card-v2__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.video-card-v2__poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px 999px 28px 28px;
  background: #080d1b;
  box-shadow: 0 28px 65px rgba(0,0,0,.32);
}

.video-card-v2:nth-child(2) .video-card-v2__poster {
  border-radius: 28px;
}

.video-card-v2:nth-child(3) .video-card-v2__poster {
  border-radius: 28px 28px 999px 999px;
}

.video-card-v2__poster img {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: contain;
  transition: transform .65s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}

.video-card-v2--placeholder.video-card-v2--1 .video-card-v2__poster {
  background: radial-gradient(circle at 75% 18%, var(--k-lime) 0 13%, transparent 13.4%), linear-gradient(145deg, #12204a, #149ed0);
}

.video-card-v2--placeholder.video-card-v2--2 .video-card-v2__poster {
  background: radial-gradient(circle at 25% 78%, var(--k-yellow) 0 16%, transparent 16.4%), linear-gradient(155deg, #ff8175, #a9285a);
}

.video-card-v2--placeholder.video-card-v2--3 .video-card-v2__poster {
  background: radial-gradient(circle at 75% 75%, var(--k-blue) 0 15%, transparent 15.4%), linear-gradient(145deg, #d5ff4d, #53c5d8);
}

.video-card-v2--placeholder .video-card-v2__poster img {
  padding: 24% 13%;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.18));
}

.video-card-v2__poster::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.45));
  content: "";
  pointer-events: none;
}

.video-card-v2__play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 76px;
  height: 76px;
  padding-left: 4px;
  place-items: center;
  border: 1px solid var(--k-navy);
  border-radius: 50%;
  background: var(--k-lime);
  color: var(--k-navy);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transform: translate(-50%, -50%);
}

.video-card-v2__number {
  position: absolute;
  z-index: 2;
  top: 1.3rem;
  right: 1.3rem;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.video-card-v2__copy {
  display: grid;
  padding: 1.2rem .15rem 0;
  gap: .35rem;
}

.video-card-v2__copy strong {
  font-family: var(--font-display, sans-serif);
  font-size: 1.55rem;
  line-height: 1.05;
}

.video-card-v2__copy small {
  color: rgba(255,255,255,.6);
}

.video-card-v2:hover {
  --lift: -10px;
}

.video-card-v2:hover .video-card-v2__poster img {
  opacity: .82;
  transform: scale(1.035);
}

.video-card-v2:hover .video-card-v2__play {
  background: var(--k-coral);
  transform: translate(-50%, -50%) rotate(8deg) scale(1.08);
}

.portfolio-closer {
  position: relative;
  min-height: 590px;
  display: flex;
  padding-inline: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--k-lime);
  color: var(--k-navy);
  text-align: center;
}

.portfolio-closer h2 {
  margin: .4rem 0 1.7rem;
  color: var(--k-navy);
  font-size: clamp(7rem, 20vw, 18rem);
  line-height: .72;
  letter-spacing: -.08em;
}

.portfolio-closer__scribble {
  position: absolute;
  top: 5%;
  left: 10%;
  color: var(--k-blue);
  font-size: 12rem;
  transform: rotate(20deg);
  animation: float-one 6s ease-in-out infinite;
}

/* Portrait media modal: content is never cropped */
.media-modal {
  position: fixed;
  z-index: 10000;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
}

.media-modal[hidden] {
  display: none;
}

.media-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5,9,20,.84);
  backdrop-filter: blur(14px);
}

.media-modal__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(560px, 96vw);
  max-height: calc(100svh - 36px);
  padding: 1.1rem;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 30px;
  background: #11182f;
  color: #fff;
  box-shadow: 0 35px 100px rgba(0,0,0,.5);
}

.media-modal__close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--k-lime);
  color: var(--k-navy);
  cursor: pointer;
  font-size: 1.7rem;
}

.media-modal__header {
  padding: .5rem 3.5rem 1rem .4rem;
}

.media-modal__header h2 {
  margin: .25rem 0 0;
  color: #fff;
  font-size: 1.6rem;
}

.media-modal__stage {
  width: min(100%, calc((100svh - 245px) * .5625));
  min-height: 300px;
  aspect-ratio: 9 / 16;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 20px;
  background: #050814;
}

.media-modal__stage iframe,
.media-modal__stage video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050814;
  object-fit: contain;
}

.media-modal__footer {
  display: flex;
  padding: 1rem .4rem .35rem;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.media-modal__footer p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .72rem;
}

.media-modal__footer a {
  color: var(--k-lime);
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Rest of the public site: one coherent design system */
.inner-hero:not(.portfolio-hero-v2) {
  position: relative;
  min-height: 650px;
  padding-top: 175px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 25%, rgba(112,222,241,.28), transparent 22rem),
    linear-gradient(135deg, var(--k-bg), var(--k-surface));
  color: var(--k-ink);
}

.inner-hero:not(.portfolio-hero-v2)::after {
  position: absolute;
  right: 5%;
  bottom: -100px;
  width: clamp(240px, 32vw, 500px);
  height: clamp(240px, 32vw, 500px);
  border: clamp(32px, 4vw, 68px) solid var(--k-blue);
  border-radius: 50%;
  content: "";
  opacity: .9;
  transform: rotateX(65deg) rotateZ(16deg);
  animation: ring-spin 18s linear infinite;
}

.inner-hero:not(.portfolio-hero-v2) .wrap {
  position: relative;
  z-index: 1;
}

.inner-hero:not(.portfolio-hero-v2) h1 {
  max-width: 11ch;
  margin: 1rem 0 1.5rem;
  color: var(--k-ink);
  font-size: clamp(4rem, 8vw, 8.5rem);
  line-height: .85;
  letter-spacing: -.065em;
}

.inner-hero:not(.portfolio-hero-v2) h1 em {
  color: var(--k-blue);
  font-style: normal;
}

.inner-hero:not(.portfolio-hero-v2) p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  color: var(--k-muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.inner-hero--navy:not(.portfolio-hero-v2),
.inner-hero--blue:not(.portfolio-hero-v2) {
  background:
    radial-gradient(circle at 84% 25%, rgba(112,222,241,.23), transparent 22rem),
    var(--k-navy);
  color: #fff;
}

.inner-hero--navy:not(.portfolio-hero-v2) h1,
.inner-hero--blue:not(.portfolio-hero-v2) h1,
.inner-hero--navy:not(.portfolio-hero-v2) p:not(.eyebrow),
.inner-hero--blue:not(.portfolio-hero-v2) p:not(.eyebrow) {
  color: #fff;
}

.story-grid,
.case-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.story-grid h2,
.case-columns h2 {
  margin: .8rem 0 0;
  color: var(--k-ink);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .95;
  letter-spacing: -.045em;
}

.story-copy p,
.case-columns p {
  color: var(--k-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.value-grid,
.deliverable-grid,
.service-index__grid,
.career-grid,
.blog-grid,
.team-grid {
  gap: 1rem;
}

.value-grid article,
.deliverable-grid article,
.service-index-card,
.career-card,
.blog-card,
.team-card {
  border: 1px solid var(--k-line);
  border-radius: 28px;
  background: var(--k-surface);
  color: var(--k-ink);
  box-shadow: 0 10px 35px rgba(20,33,72,.05);
}

.service-index-card,
.career-card {
  overflow: hidden;
}

.service-index-card {
  min-height: 330px;
  padding: 2rem;
}

.service-index-card:nth-child(4n+2) {
  background: var(--k-lime);
  color: var(--k-navy);
}

.service-index-card:nth-child(4n+3) {
  background: var(--k-blue);
  color: var(--k-navy);
}

.service-index-card:hover,
.career-card:hover,
.blog-card:hover,
.team-card:hover {
  border-color: var(--k-blue);
  box-shadow: var(--k-shadow);
  transform: translateY(-8px) rotate(-.5deg);
}

.service-index-card h2,
.service-index-card p,
.service-index-card b,
.career-card h3,
.career-card p {
  color: inherit;
}

.blog-card {
  padding: .7rem;
}

.blog-card > a > div {
  overflow: hidden;
  border-radius: 21px;
}

.blog-card img {
  transition: transform .65s cubic-bezier(.16,1,.3,1);
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card h2 {
  color: var(--k-ink);
  font-size: 2rem;
  line-height: 1;
}

.industry-row {
  border-color: var(--k-line);
  color: var(--k-ink);
}

.industry-row:hover {
  padding-inline: 1.5rem;
  border-radius: 24px;
  background: var(--k-surface);
}

.industry-row h2 a,
.industry-row p,
.industry-row li {
  color: inherit;
}

.service-line,
.process-list li,
.tick-list li,
.faq-list details {
  border-color: var(--k-line);
}

.service-line {
  color: inherit;
}

.service-line:hover {
  padding-inline: 1.2rem;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
}

.industry-pills a,
.industry-pills span,
.article-tags span {
  border: 1px solid var(--k-line);
  border-radius: 999px;
  background: var(--k-surface);
  color: var(--k-ink);
}

.faq-list details {
  color: var(--k-ink);
}

.faq-list summary {
  color: var(--k-ink);
}

.faq-list details[open] {
  padding-inline: 1.25rem;
  border-radius: 18px;
  background: var(--k-surface);
}

.article-hero {
  padding-top: 180px;
  background: var(--k-navy);
  color: #fff;
}

.article-hero h1 {
  color: #fff;
}

.article-image picture,
.article-image img,
.case-image picture,
.case-image img,
.case-image video,
.case-gallery img,
.case-gallery video {
  border-radius: var(--k-radius);
}

.article-content,
.legal-content {
  color: var(--k-ink);
}

.article-content p,
.legal-content p,
.article-content li,
.legal-content li {
  color: var(--k-muted);
}

.article-content h2,
.article-content h3,
.legal-content h2,
.legal-content h3 {
  color: var(--k-ink);
}

.article-content a,
.legal-content a {
  color: var(--k-blue);
}

.case-facts {
  border-color: var(--k-line);
  background: var(--k-surface);
  color: var(--k-ink);
}

.case-facts dt {
  color: var(--k-muted);
}

.proof-line {
  border-color: var(--k-line);
}

.proof-line strong,
.proof-line span {
  color: var(--k-ink);
}

.contact-page,
.career-listing,
.blog-index,
.service-index,
.industry-index,
.faq-section,
.benefits,
.service-intro,
.case-copy,
.case-narrative,
.team-section,
.story-section,
.about-direction {
  background: var(--k-bg);
  color: var(--k-ink);
}

.contact-details a {
  border-color: var(--k-line);
  color: var(--k-ink);
}

.contact-details a:hover {
  padding-left: 1rem;
  border-radius: 14px;
  background: var(--k-lime);
  color: var(--k-navy);
}

.enquiry-form,
.career-form {
  padding: clamp(1.3rem, 3vw, 2.5rem);
  border: 1px solid var(--k-line);
  border-radius: var(--k-radius);
  background: var(--k-surface);
  box-shadow: var(--k-shadow);
}

.enquiry-form label {
  color: var(--k-ink);
}

.enquiry-form label small {
  color: var(--k-muted);
}

.enquiry-form input:not([type="checkbox"]),
.enquiry-form textarea,
.enquiry-form select {
  border: 1px solid var(--k-line);
  border-radius: 12px;
  background: var(--k-bg);
  color: var(--k-ink);
  caret-color: var(--k-blue);
}

.enquiry-form textarea {
  min-height: 150px;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: var(--k-muted);
  opacity: 1;
}

.enquiry-form select option {
  background: var(--k-surface);
  color: var(--k-ink);
}

.enquiry-form .consent > span {
  color: var(--k-ink);
}

.enquiry-form .consent input {
  accent-color: var(--k-blue);
}

.enquiry-form input:-webkit-autofill,
.enquiry-form input:-webkit-autofill:hover,
.enquiry-form input:-webkit-autofill:focus,
.enquiry-form textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px var(--k-bg) inset;
  -webkit-text-fill-color: var(--k-ink);
  caret-color: var(--k-blue);
}

input,
textarea,
select {
  border-color: var(--k-line);
  border-radius: 12px;
  background: var(--k-bg);
  color: var(--k-ink);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--k-blue);
  box-shadow: 0 0 0 4px rgba(21,155,211,.14);
  outline: 0;
}

label,
.consent {
  color: var(--k-ink);
}

.empty-state {
  width: min(900px, calc(100% - 64px));
  margin-inline: auto;
  padding: clamp(3rem, 8vw, 7rem);
  border: 1px dashed var(--k-line);
  border-radius: var(--k-radius);
  background: var(--k-surface);
  color: var(--k-ink);
  text-align: center;
}

.empty-state h2 {
  color: inherit;
}

.empty-state--dark {
  background: rgba(255,255,255,.06);
  color: #fff;
}

.status-page {
  background:
    radial-gradient(circle at 80% 30%, var(--k-blue), transparent 22rem),
    var(--k-navy);
}

/* Footer */
.closing-cta {
  position: relative;
  overflow: hidden;
  background: var(--k-coral);
  color: var(--k-navy);
}

.closing-cta::after {
  position: absolute;
  right: -5rem;
  bottom: -8rem;
  width: 24rem;
  height: 24rem;
  border: 55px solid var(--k-lime);
  border-radius: 50%;
  content: "";
  animation: ring-spin 14s linear infinite;
}

.closing-cta h2,
.closing-cta .eyebrow {
  color: var(--k-navy);
}

.closing-cta h2 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: .86;
  letter-spacing: -.06em;
}

.closing-cta__aside {
  position: absolute;
  right: 22%;
  bottom: 18%;
  max-width: 10rem;
  font-size: .8rem;
  font-weight: 800;
  transform: rotate(-7deg);
}

.circle-link {
  position: relative;
  z-index: 1;
  border-color: var(--k-navy);
  background: var(--k-lime);
  color: var(--k-navy);
}

.circle-link:hover {
  background: var(--k-blue);
  transform: rotate(8deg) scale(1.04);
}

.site-footer {
  background: #090f21;
  color: #fff;
}

.footer-brand img {
  max-width: 180px;
  padding: .5rem;
  border-radius: 16px;
  background: #fffdf7;
}

.footer-brand p,
.site-footer p,
.footer-bottom,
.footer-joke {
  color: rgba(255,255,255,.6);
}

.footer-joke {
  display: block;
  max-width: 22rem;
  margin-top: 1.2rem;
  font-size: .75rem;
  font-style: italic;
}

.site-footer a {
  color: rgba(255,255,255,.75);
}

.site-footer a:hover {
  color: var(--k-lime);
  transform: translateX(3px);
}

.newsletter-form input {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.newsletter-form button {
  border-radius: 999px;
  background: var(--k-lime);
  color: var(--k-navy);
}

.chatbot__launcher,
.whatsapp {
  box-shadow: 0 18px 42px rgba(0,0,0,.25);
}

.chatbot__launcher {
  border: 1px solid rgba(20,33,72,.15);
  background: var(--k-lime);
  color: var(--k-navy);
}

.chatbot__panel {
  border: 1px solid var(--k-line);
  border-radius: 26px;
  background: var(--k-surface);
  color: var(--k-ink);
}

.chatbot__header {
  background: var(--k-navy);
}

.chatbot__messages,
.chatbot__form,
.chatbot__contact-links,
.chatbot__note {
  border-color: var(--k-line);
  background: var(--k-surface);
  color: var(--k-ink);
}

.chat-message--assistant > div {
  background: var(--k-surface-2);
  color: var(--k-ink);
}

.chatbot__suggestions button {
  border-color: var(--k-line);
  background: var(--k-bg);
  color: var(--k-ink);
}

.chatbot__suggestions button:hover {
  background: var(--k-lime);
  color: var(--k-navy);
}

/* Motion helpers */
.reveal {
  opacity: 0;
  transform: translateY(34px) rotate(.3deg);
  transition: opacity .75s ease, transform .85s cubic-bezier(.16,1,.3,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.kinetic-cursor {
  position: fixed;
  z-index: 12000;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--k-blue);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: difference;
  transform: translate3d(-50%, -50%, 0);
  transition: width .2s ease, height .2s ease, opacity .2s ease, background .2s ease;
}

.kinetic-cursor.is-visible {
  opacity: 1;
}

.kinetic-cursor.is-active {
  width: 52px;
  height: 52px;
  border-color: var(--k-lime);
  background: rgba(200,255,53,.22);
}

.scroll-progress {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--k-blue), var(--k-lime), var(--k-coral));
}

@keyframes hero-breathe {
  from { transform: scale(1.025) translate3d(0,0,0); }
  to { transform: scale(1.07) translate3d(1.2%, -.6%, 0); }
}

@keyframes pulse-dot {
  50% { box-shadow: 0 0 0 12px rgba(200,255,53,0); }
}

@keyframes blob-morph {
  0%, 100% { border-radius: 47% 53% 58% 42% / 43% 42% 58% 57%; }
  35% { border-radius: 61% 39% 42% 58% / 53% 60% 40% 47%; }
  70% { border-radius: 39% 61% 56% 44% / 62% 39% 61% 38%; }
}

@keyframes ring-spin {
  to { transform: rotateX(65deg) rotateZ(376deg); }
}

@keyframes float-one {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -18px; rotate: 5deg; }
}

@keyframes float-two {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 13px 15px; rotate: -5deg; }
}

@keyframes sparkle {
  50% { opacity: .55; transform: rotate(35deg) scale(.72); }
}

@keyframes scroll-bob {
  50% { transform: translateY(6px); }
}

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

@media (max-width: 1100px) {
  .desktop-nav,
  .header-contact,
  .site-header > .theme-toggle {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--k-navy);
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 9px 22px rgba(20, 33, 72, .2);
  }

  .mobile-menu {
    position: fixed;
    z-index: 490;
    top: 98px;
    right: 18px;
    bottom: 14px;
    left: 18px;
    display: grid;
    height: auto;
    padding: clamp(1.2rem, 3vw, 2rem);
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 1rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background:
      radial-gradient(circle at 100% 0, rgba(112, 222, 241, .24), transparent 18rem),
      var(--k-navy);
    color: #fff;
    box-shadow: 0 28px 70px rgba(8, 16, 43, .34);
    animation: mobile-menu-in .24s cubic-bezier(.22, 1, .36, 1);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .7rem;
    align-content: start;
    counter-reset: mobile-nav;
  }

  .mobile-menu nav a {
    position: relative;
    display: flex;
    min-height: 96px;
    padding: 1rem;
    align-items: flex-end;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    background: rgba(255, 255, 255, .055);
    color: #fff;
    font: 700 clamp(1.25rem, 3.8vw, 2rem) / .95 var(--display, sans-serif);
    letter-spacing: -.035em;
    text-transform: uppercase;
    counter-increment: mobile-nav;
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
  }

  .mobile-menu nav a::before {
    position: absolute;
    top: .7rem;
    left: .8rem;
    color: var(--k-blue);
    content: "0" counter(mobile-nav);
    font: 800 .62rem / 1 var(--body, sans-serif);
    letter-spacing: .08em;
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible,
  .mobile-menu nav a[aria-current="page"] {
    border-color: var(--k-lime);
    background: var(--k-lime);
    color: var(--k-navy);
    transform: translateY(-2px);
  }

  .mobile-menu__preferences {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
  }

  .mobile-menu .mobile-sound-toggle,
  .mobile-menu .mobile-theme-toggle {
    min-height: 52px;
    padding: .75rem .9rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
    font-size: .78rem;
    text-align: left;
  }

  .mobile-menu .mobile-sound-toggle {
    border-top: 1px solid rgba(255, 255, 255, .16);
  }

  .mobile-menu .mobile-theme-toggle {
    border-top: 1px solid rgba(255, 255, 255, .16);
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .mobile-menu__contact {
    display: flex;
    margin: 0;
    padding-top: .9rem;
    justify-content: space-between;
    gap: .75rem 1.25rem;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
  }

  .mobile-menu__contact a {
    text-decoration: none;
  }

  @keyframes mobile-menu-in {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(.985);
    }
  }

  .playground-hero__copy {
    width: min(700px, 70%);
  }

  .mood-button {
    right: 2%;
    bottom: 11%;
  }

  .capability-tile,
  .capability-tile:nth-child(1),
  .capability-tile:nth-child(6) {
    grid-column: span 6;
  }

  .process-orbit {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid,
  .insight-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid > :last-child,
  .insight-cards > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .wrap,
  .section-heading,
  .project-toolbar,
  .project-grid-v2,
  .project-empty,
  .video-showcase-v2__intro,
  .video-reel-v2 {
    width: min(100% - 36px, 1320px);
  }

  .section {
    padding-block: 5.5rem;
  }

  .section-heading--split,
  .kinetic-heading,
  .playful-manifesto__grid,
  .contact-playground__grid,
  .portfolio-hero-v2,
  .video-showcase-v2__intro,
  .story-grid,
  .case-columns {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .kinetic-heading h2 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .site-header {
    top: 8px;
    right: auto;
    left: 8px;
    width: calc(100dvw - 16px);
    min-height: 64px;
    padding: 5px 8px 5px 14px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 124px;
    height: 49px;
  }

  .mobile-menu {
    top: 80px;
    right: 8px;
    bottom: 8px;
    left: 8px;
    padding: 1rem;
    border-radius: 24px;
  }

  .mobile-menu nav a {
    min-height: clamp(66px, 10.5vh, 82px);
    padding: .85rem;
    border-radius: 15px;
    font-size: clamp(1.08rem, 5.2vw, 1.5rem);
  }

  .mobile-menu__preferences {
    gap: .5rem;
  }

  .mobile-menu .mobile-sound-toggle,
  .mobile-menu .mobile-theme-toggle {
    min-height: 48px;
    padding: .65rem .75rem;
    font-size: .7rem;
  }

  .playground-hero {
    min-height: 950px;
  }

  .playground-hero__art {
    object-position: 66% bottom;
  }

  .playground-hero__wash {
    background: linear-gradient(180deg, rgba(245,240,230,.98) 0%, rgba(245,240,230,.91) 49%, rgba(245,240,230,.18) 76%, rgba(245,240,230,.06) 100%);
  }

  .playground-hero__content {
    display: block;
    min-height: 950px;
    padding-top: 128px;
    padding-bottom: 250px;
  }

  .playground-hero__copy {
    width: 100%;
  }

  .playground-hero h1 {
    max-width: 9ch;
    font-size: clamp(3.35rem, 15vw, 5.2rem);
  }

  .playground-hero__lede {
    max-width: 29rem;
    font-size: 1rem;
  }

  .playground-hero__facts,
  .orbit-note {
    display: none;
  }

  .mood-button {
    right: 18px;
    bottom: 70px;
    width: 150px;
    min-height: 150px;
    padding: 1rem;
  }

  .playground-hero__scroll {
    right: auto;
    bottom: 24px;
    left: 18px;
    width: max-content;
    max-width: calc(100% - 36px);
    transform: none;
  }

  .client-ribbon .wrap {
    justify-content: center;
  }

  .client-ribbon p {
    width: 100%;
    text-align: center;
  }

  .capability-bento {
    grid-template-columns: 1fr;
  }

  .capability-tile,
  .capability-tile:nth-child(1),
  .capability-tile:nth-child(6) {
    min-height: 250px;
    grid-column: auto;
  }

  .capability-tile h3 {
    font-size: clamp(2.1rem, 10.5vw, 2.6rem);
    overflow-wrap: anywhere;
  }

  .capability-footnote {
    flex-direction: column;
    gap: .5rem;
  }

  .manifesto-object {
    min-height: 400px;
  }

  .manifesto-object__ring {
    width: 140px;
    height: 140px;
    border-width: 25px;
  }

  .manifesto-object__pill {
    width: 85px;
    height: 180px;
  }

  .work-stack,
  .project-grid-v2 {
    grid-template-columns: 1fr;
  }

  .work-card:nth-child(even),
  .project-card-v2:nth-child(even) {
    margin-top: 0;
  }

  .quote-break {
    min-height: 520px;
    padding-block: 7rem;
  }

  .quote-break__shape--one {
    width: 210px;
    height: 210px;
  }

  .quote-break__shape--two {
    width: 250px;
    height: 250px;
  }

  .process-orbit,
  .testimonial-grid,
  .insight-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-grid > :last-child,
  .insight-cards > :last-child {
    grid-column: auto;
  }

  .process-orbit li {
    min-height: 230px;
  }

  .contact-playground h2 {
    font-size: clamp(3.6rem, 17vw, 5.5rem);
  }

  .portfolio-hero-v2 {
    min-height: auto;
    padding: 130px 18px 70px;
    gap: 3rem;
  }

  .portfolio-hero-v2__copy h1 {
    font-size: clamp(4rem, 19vw, 6.4rem);
  }

  .portfolio-hero-v2__object {
    min-height: 380px;
  }

  .portfolio-loop {
    width: 190px;
    height: 190px;
    border-width: 32px;
  }

  .portfolio-orb--lime {
    width: 120px;
    height: 120px;
  }

  .project-toolbar {
    flex-direction: column;
  }

  .project-search {
    width: 100%;
  }

  .project-card-v2__body h3 {
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .video-reel-v2 {
    max-width: 390px;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .video-card-v2:nth-child(2) {
    margin-top: 0;
  }

  .portfolio-closer {
    min-height: 500px;
  }

  .portfolio-closer h2 {
    font-size: clamp(7rem, 38vw, 11rem);
  }

  .portfolio-closer__scribble {
    font-size: 7rem;
  }

  .inner-hero:not(.portfolio-hero-v2) {
    min-height: 590px;
    padding-top: 140px;
  }

  .inner-hero:not(.portfolio-hero-v2) h1 {
    font-size: clamp(3.15rem, 14.5vw, 5.2rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .closing-cta__aside {
    display: none;
  }

  .media-modal {
    padding: 8px;
  }

  .media-modal__dialog {
    width: 100%;
    max-height: calc(100svh - 16px);
    padding: .75rem;
    border-radius: 22px;
  }

  .media-modal__stage {
    width: min(100%, calc((100svh - 230px) * .5625));
  }

  .media-modal__footer p {
    display: none;
  }
}

@media (max-width: 390px) {
  .playground-hero h1 {
    font-size: 3.85rem;
  }

  .playground-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .mood-button {
    width: 138px;
    min-height: 138px;
  }

  .video-showcase-v2__intro h2 {
    font-size: 3.6rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .kinetic-cursor {
    display: none;
  }

  [data-tilt] {
    transform: none !important;
  }

  .project-card-v2__arrow,
  .work-card__media > span {
    opacity: 1;
    transform: none;
  }
}

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

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

  .ticker__track {
    transform: none;
  }

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

/* --------------------------------------------------------------
 * WOW pass: reel theatre, Mindy and GSAP-ready kinetic details
 * -------------------------------------------------------------- */

h1,
h2,
h3,
blockquote {
  max-inline-size: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}

[data-kinetic-zone] {
  --pointer-x: 50%;
  --pointer-y: 50%;
}

[data-kinetic-zone]::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle 240px at var(--pointer-x) var(--pointer-y), rgba(255,255,255,.16), transparent 72%);
  content: "";
  opacity: .7;
  pointer-events: none;
}

.playground-hero__content,
.playground-hero__scroll,
.quote-break > .wrap,
.home-reel-theatre__grid,
.mindy-lab__grid,
.mindy-lab > .nonsense-meter,
.portfolio-closer > :not(.portfolio-closer__scribble) {
  position: relative;
  z-index: 1;
}

.hero-sticker {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--k-navy);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  filter: drop-shadow(0 18px 24px rgba(20,33,72,.14));
}

.hero-sticker--one {
  top: 29%;
  right: 31%;
  width: 112px;
  aspect-ratio: 1;
  border: 1px solid var(--k-navy);
  border-radius: 50% 50% 8% 50%;
  background: var(--k-yellow);
  transform: rotate(-11deg);
  animation: sticker-wobble 5s ease-in-out infinite;
}

.hero-sticker--two {
  top: 16%;
  right: 6%;
  width: 110px;
  min-height: 62px;
  padding: .65rem;
  border: 1px solid var(--k-navy);
  border-radius: 16px;
  background: var(--k-coral);
  transform: rotate(8deg);
  animation: sticker-wobble 4.5s .8s ease-in-out infinite reverse;
}

.hero-sticker--two span {
  margin-right: .25rem;
  font-size: 1.05rem;
}

.desktop-nav > a:hover,
.nav-dropdown > a:hover {
  color: var(--k-blue-deep);
  transform: translateY(-2px) rotate(-1.5deg);
}

.playground-hero h1 .gsap-word {
  display: inline-block;
  transform-origin: 50% 100%;
}

.kinetic-heading h2 .gsap-line,
.section-heading h2 .gsap-line {
  display: block;
  overflow: hidden;
}

.kinetic-heading h2 .gsap-line > span,
.section-heading h2 .gsap-line > span {
  display: inline-block;
}

/* Homepage portrait reel theatre */
.home-reel-theatre {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 88%, rgba(200,255,53,.85) 0 8rem, transparent 8.2rem),
    radial-gradient(circle at 93% 8%, rgba(255,216,90,.88) 0 10rem, transparent 10.2rem),
    var(--k-coral);
  color: var(--k-navy);
}

.home-reel-theatre::after {
  position: absolute;
  right: -7rem;
  bottom: -10rem;
  width: 30rem;
  height: 30rem;
  border: 4rem solid rgba(20,33,72,.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  animation: theatre-orbit 18s linear infinite;
}

.home-reel-theatre__grid {
  display: grid;
  min-height: 760px;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.home-reel-theatre__copy {
  position: relative;
  z-index: 4;
}

.home-reel-theatre .eyebrow {
  color: var(--k-navy);
}

.home-reel-theatre h2 {
  max-width: 8.5ch;
  margin: 1rem 0 1.6rem;
  color: var(--k-navy);
  font-size: clamp(4rem, 7vw, 7.6rem);
  line-height: .84;
  letter-spacing: -.065em;
}

.home-reel-theatre__copy > p:not(.eyebrow) {
  max-width: 33rem;
  color: rgba(20,33,72,.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-reel-theatre .scribble-link {
  display: inline-block;
  margin-top: 1rem;
}

.reel-volume-joke {
  display: inline-flex;
  max-width: 225px;
  margin: 3rem 0 0 1.2rem;
  padding: 1rem;
  flex-direction: column;
  border: 1px dashed var(--k-navy);
  border-radius: 8px 24px 24px 24px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.35;
  transform: rotate(-4deg);
}

.reel-volume-joke span {
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-reel-stack {
  position: relative;
  z-index: 3;
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.65rem, 1.5vw, 1.35rem);
  align-items: center;
  perspective: 1500px;
}

.home-reel-card {
  --card-angle: 0deg;
  --card-y: 0px;
  position: relative;
  min-width: 0;
  transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(calc(var(--card-y) + var(--lift))) rotate(var(--card-angle));
}

.home-reel-card--1 {
  --card-angle: -7deg;
  --card-y: 2rem;
}

.home-reel-card--2 {
  --card-angle: 2deg;
  --card-y: -2rem;
  z-index: 2;
}

.home-reel-card--3 {
  --card-angle: 8deg;
  --card-y: 2.5rem;
}

.home-reel-card button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--k-navy);
  cursor: pointer;
  text-align: left;
}

.home-reel-card__poster {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 4px solid var(--k-navy);
  border-radius: 25px;
  background: var(--k-navy);
  box-shadow: 0 25px 55px rgba(20,33,72,.24);
}

.home-reel-card--1 .home-reel-card__poster {
  border-radius: 999px 999px 26px 26px;
}

.home-reel-card--3 .home-reel-card__poster {
  border-radius: 26px 26px 999px 999px;
}

.home-reel-card__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #080d1b;
  transition: transform .8s cubic-bezier(.16,1,.3,1), filter .35s ease;
}

.home-reel-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4,8,20,.45));
  pointer-events: none;
}

.home-reel-card__play {
  position: absolute;
  z-index: 2;
  bottom: 1.1rem;
  left: 1.1rem;
  display: grid;
  width: 58px;
  height: 58px;
  padding-left: 3px;
  place-items: center;
  border: 1px solid var(--k-navy);
  border-radius: 50%;
  background: var(--k-lime);
  color: var(--k-navy);
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

.home-reel-card__index {
  position: absolute;
  z-index: 2;
  top: 1.1rem;
  right: 1.1rem;
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.home-reel-card__title {
  display: block;
  padding: 1rem .25rem 0;
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  font-weight: 750;
  line-height: 1;
  text-align: center;
}

.home-reel-card:hover {
  --lift: -12px;
  z-index: 5;
}

.home-reel-card:hover .home-reel-card__poster img {
  filter: saturate(1.15) contrast(1.03);
  transform: scale(1.055);
}

.home-reel-card:hover .home-reel-card__play {
  background: var(--k-yellow);
  transform: rotate(11deg) scale(1.1);
}

/* Mindy */
.mindy-lab {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(110deg, transparent 0 52%, rgba(255,255,255,.16) 52.2% 52.5%, transparent 52.7%),
    var(--k-yellow);
  color: var(--k-navy);
}

.mindy-lab::after {
  position: absolute;
  top: 8%;
  right: 5%;
  width: 130px;
  height: 130px;
  background-image: radial-gradient(var(--k-navy) 1.7px, transparent 1.7px);
  background-size: 13px 13px;
  content: "";
  opacity: .25;
  transform: rotate(12deg);
}

.mindy-lab__grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.mindy-lab__visual {
  position: relative;
  overflow: visible;
  border: 4px solid var(--k-navy);
  border-radius: 44% 56% 50% 50% / 57% 40% 60% 43%;
  background: var(--k-blue);
  box-shadow: 28px 30px 0 var(--k-navy);
}

.mindy-lab__visual img {
  display: block;
  width: 100%;
  border-radius: inherit;
}

.mindy-lab__badge {
  position: absolute;
  right: -2rem;
  bottom: 8%;
  display: grid;
  width: 155px;
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid var(--k-navy);
  border-radius: 50%;
  background: var(--k-lime);
  font-size: .72rem;
  font-weight: 900;
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
  animation: badge-breathe 3.5s ease-in-out infinite;
}

.mindy-lab__arrow {
  position: absolute;
  top: -1rem;
  left: -2rem;
  color: var(--k-coral);
  font-size: 9rem;
  line-height: 1;
  transform: rotate(-28deg);
}

.mindy-lab .eyebrow {
  color: var(--k-navy);
}

.mindy-lab__copy h2 {
  max-width: 9ch;
  margin: 1rem 0 1.5rem;
  color: var(--k-navy);
  font-size: clamp(3.8rem, 6vw, 6.7rem);
  line-height: .86;
  letter-spacing: -.06em;
}

.mindy-lab__copy > p:not(.eyebrow) {
  max-width: 38rem;
  color: rgba(20,33,72,.75);
  font-size: 1.05rem;
  line-height: 1.7;
}

.mindy-talk {
  display: grid;
  width: 100%;
  margin-top: 2rem;
  padding: 1.35rem 1.5rem;
  gap: .55rem;
  border: 2px solid var(--k-navy);
  border-radius: 20px 20px 20px 4px;
  background: var(--k-surface);
  color: var(--k-navy);
  cursor: pointer;
  text-align: left;
  box-shadow: 8px 9px 0 var(--k-navy);
}

.mindy-talk span,
.mindy-talk b {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.mindy-talk strong {
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.35rem, 2.3vw, 2.1rem);
  line-height: 1.05;
}

.mindy-talk b {
  justify-self: end;
}

.mindy-talk:hover {
  box-shadow: 3px 4px 0 var(--k-navy);
  transform: translate(5px, 5px) rotate(-.5deg);
}

.mindy-lab__actions {
  display: flex;
  margin-top: 2rem;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.runaway-button {
  padding: .9rem 1.15rem;
  border: 1px dashed var(--k-navy);
  border-radius: 999px;
  background: transparent;
  color: var(--k-navy);
  cursor: pointer;
  font: inherit;
  font-size: .78rem;
  font-weight: 850;
}

.runaway-button:hover {
  background: var(--k-coral);
  transform: rotate(4deg);
}

.nonsense-meter {
  display: grid;
  margin-top: 5rem;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  color: var(--k-navy);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nonsense-meter > div {
  height: 16px;
  padding: 3px;
  border: 1px solid var(--k-navy);
  border-radius: 999px;
}

.nonsense-meter i {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--k-coral), var(--k-blue), var(--k-lime));
  transform-origin: left;
  animation: personality-meter 3s cubic-bezier(.16,1,.3,1) infinite alternate;
}

.gsap-ready .reveal {
  opacity: 1;
  transform: none;
}

.gsap-float {
  will-change: transform;
}

@keyframes sticker-wobble {
  0%, 100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -12px; rotate: 7deg; }
}

@keyframes theatre-orbit {
  to { transform: rotate(360deg); }
}

@keyframes badge-breathe {
  50% { transform: rotate(-5deg) scale(1.06); }
}

@keyframes personality-meter {
  from { transform: scaleX(.58); }
  to { transform: scaleX(1); }
}

@media (max-width: 1080px) {
  .home-reel-theatre__grid {
    grid-template-columns: 1fr;
  }

  .home-reel-theatre__copy {
    max-width: 760px;
  }

  .home-reel-stack {
    max-width: 820px;
    margin-inline: auto;
  }

  .mindy-lab__grid {
    grid-template-columns: .95fr 1.05fr;
  }

  .hero-sticker--one {
    display: none;
  }
}

@media (max-width: 760px) {
  [data-kinetic-zone]::before {
    display: none;
  }

  .hero-sticker--one {
    display: none;
  }

  .hero-sticker--two {
    top: auto;
    right: 18px;
    bottom: 238px;
    width: 102px;
    min-height: 54px;
    transform: rotate(7deg);
  }

  .home-reel-theatre__grid {
    min-height: 0;
  }

  .home-reel-theatre h2 {
    font-size: clamp(3.8rem, 17vw, 5.6rem);
  }

  .reel-volume-joke {
    margin: 2.4rem 0 0;
  }

  .home-reel-stack {
    width: calc(100dvw - 18px);
    margin-left: -9px;
    padding: 1.5rem 18px 2rem;
    grid-template-columns: repeat(3, minmax(230px, 72vw));
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-reel-stack::-webkit-scrollbar {
    display: none;
  }

  .home-reel-card,
  .home-reel-card--1,
  .home-reel-card--2,
  .home-reel-card--3 {
    --card-angle: 0deg;
    --card-y: 0px;
    scroll-snap-align: center;
  }

  .home-reel-card__title {
    font-size: 1.2rem;
  }

  .mindy-lab__grid {
    grid-template-columns: 1fr;
  }

  .mindy-lab__visual {
    width: calc(100% - 18px);
    box-shadow: 14px 16px 0 var(--k-navy);
  }

  .mindy-lab__badge {
    right: -1rem;
    width: 125px;
  }

  .mindy-lab__arrow {
    left: -.5rem;
    font-size: 6rem;
  }

  .mindy-lab__copy h2 {
    font-size: clamp(3.55rem, 16.5vw, 5rem);
  }

  .nonsense-meter {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .nonsense-meter strong {
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sticker,
  .home-reel-theatre::after,
  .mindy-lab__badge,
  .nonsense-meter i {
    animation: none;
  }
}

/* 2026 clarity + performance pass */
.section {
  padding-block: clamp(4.5rem, 7vw, 7rem);
}

.site-header {
  grid-template-columns: 150px minmax(0, 1fr) 48px 48px auto;
}

.sound-toggle,
.mobile-sound-toggle {
  color: var(--k-navy);
  cursor: pointer;
  font: inherit;
}

.sound-toggle {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(20, 33, 72, .18);
  border-radius: 50%;
  background: rgba(20, 33, 72, .04);
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.sound-toggle i {
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--k-header);
  border-radius: 50%;
  background: #8d95a8;
}

.sound-toggle[aria-pressed="true"] {
  border-color: var(--k-navy);
  background: var(--k-lime);
  transform: rotate(-5deg);
}

.sound-toggle[aria-pressed="true"] i {
  background: #1dc873;
  box-shadow: 0 0 0 4px rgba(29, 200, 115, .16);
}

.mobile-sound-toggle {
  display: flex;
  width: 100%;
  padding: 1rem 0;
  justify-content: space-between;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  background: transparent;
  color: #fff;
}

.mobile-sound-toggle b {
  color: var(--k-lime);
}

.splash {
  pointer-events: auto;
  cursor: pointer;
  animation: splash-exit .42s cubic-bezier(.76, 0, .24, 1) .72s forwards;
}

.splash__brand {
  animation: splash-brand .68s cubic-bezier(.22, 1, .36, 1) forwards;
}

.splash__brand img {
  filter: none !important;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .2);
}

.splash__wave {
  animation: wave-rise .36s cubic-bezier(.76, 0, .24, 1) .42s forwards;
}

.footer-brand img {
  filter: none !important;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}

.playground-hero,
.playground-hero__content {
  min-height: clamp(730px, 88svh, 880px);
}

.playground-hero__art {
  animation: none;
  transform: scale(1.01);
}

.playground-hero__wash {
  background: linear-gradient(90deg, rgba(245, 240, 230, .72) 0%, rgba(245, 240, 230, .32) 48%, rgba(245, 240, 230, .04) 78%);
}

.playground-hero__content {
  padding-top: 116px;
  padding-bottom: 64px;
}

.playground-hero__copy {
  width: min(700px, 56%);
  padding: clamp(1.7rem, 3.2vw, 3rem);
  border: 1px solid rgba(20, 33, 72, .16);
  border-radius: 34px;
  background: rgba(255, 253, 247, .92);
  box-shadow: 0 24px 70px rgba(20, 33, 72, .14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.playground-hero h1 {
  max-width: 10ch;
  margin-block: 1rem 1.25rem;
  font-size: clamp(3.6rem, 6.1vw, 6.7rem);
  line-height: .86;
}

.playground-hero__lede {
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.playground-hero__facts {
  margin-top: 1.8rem;
}

.playground-hero__scroll {
  position: absolute;
}

.hero-sticker--one {
  right: 28%;
}

.home-reel-theatre {
  background:
    radial-gradient(circle at 7% 88%, rgba(200, 255, 53, .18) 0 8rem, transparent 8.2rem),
    radial-gradient(circle at 93% 8%, rgba(255, 111, 97, .25) 0 10rem, transparent 10.2rem),
    #101b3a;
  color: #fffdf7;
}

.home-reel-theatre__grid {
  min-height: 650px;
}

.home-reel-theatre .eyebrow {
  color: var(--k-lime);
}

.home-reel-theatre h2,
.home-reel-theatre .scribble-link,
.home-reel-card button {
  color: #fffdf7;
}

.home-reel-theatre__copy > p:not(.eyebrow) {
  color: rgba(255, 253, 247, .72);
}

.home-reel-theatre .scribble-link::after {
  filter: brightness(0) saturate(100%) invert(95%) sepia(73%) saturate(879%) hue-rotate(29deg) brightness(107%);
}

.reel-volume-joke {
  border-color: rgba(255, 253, 247, .55);
  background: rgba(255, 255, 255, .06);
}

.home-reel-card__poster {
  border-color: #fffdf7;
}

.ai-playground {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 5%, rgba(112, 222, 241, .38), transparent 24rem),
    #f7f3e9;
  color: var(--k-navy);
}

.ai-playground::after {
  position: absolute;
  right: -4rem;
  bottom: -4rem;
  width: 13rem;
  height: 13rem;
  border: 2.4rem solid var(--k-lime);
  border-radius: 50%;
  content: "";
  opacity: .7;
  pointer-events: none;
}

.ai-playground__intro {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 2.4rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
  gap: 3rem;
  align-items: end;
}

.ai-playground h2 {
  max-width: 11ch;
  margin: .8rem 0 0;
  color: var(--k-navy);
  font-size: clamp(3.2rem, 5.8vw, 6.2rem);
  line-height: .87;
  letter-spacing: -.055em;
}

.ai-playground__console {
  display: grid;
  min-height: 132px;
  padding: 1.35rem 1.5rem;
  align-content: center;
  gap: .55rem;
  border: 2px solid var(--k-navy);
  border-radius: 22px 22px 5px 22px;
  background: var(--k-lime);
  box-shadow: 7px 8px 0 var(--k-navy);
  transform: rotate(1deg);
}

.ai-playground__console span {
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ai-playground__console strong {
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  line-height: 1.15;
}

.ai-playground__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.ai-toy {
  display: grid;
  min-width: 0;
  padding: 1rem 1rem 1.25rem;
  gap: .45rem;
  overflow: hidden;
  border: 2px solid var(--k-navy);
  border-radius: 28px;
  background: #fffdf7;
  color: var(--k-navy);
  box-shadow: 0 18px 48px rgba(20, 33, 72, .12);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transform-origin: center bottom;
}

.ai-toy__number {
  padding: .35rem .4rem;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ai-toy img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 19px;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), filter .25s ease;
}

.ai-toy > strong {
  padding: .6rem .4rem 0;
  font-family: var(--font-display, sans-serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}

.ai-toy small {
  padding-inline: .4rem;
  color: rgba(20, 33, 72, .65);
  line-height: 1.4;
}

.ai-toy:hover,
.ai-toy:focus-visible,
.ai-toy.is-active {
  z-index: 2;
  outline: none;
  box-shadow: 8px 10px 0 var(--k-navy);
  transform: translateY(-7px) rotate(-1deg);
}

.ai-toy:hover img,
.ai-toy:focus-visible img,
.ai-toy.is-active img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.ai-toy--rocket:hover,
.ai-toy--rocket:focus-visible,
.ai-toy--rocket.is-active {
  transform: translateY(-7px) rotate(1deg);
}

.ai-playground__footer {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: 2.4rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ai-playground__footer p {
  max-width: 47rem;
  margin: 0;
  color: rgba(20, 33, 72, .72);
  line-height: 1.65;
}

.mindy-lab {
  background:
    radial-gradient(circle at 92% 10%, rgba(200, 255, 53, .55), transparent 18rem),
    #72dff1;
}

.mindy-lab__grid {
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
}

.mindy-lab__visual {
  width: min(100%, 560px);
  justify-self: center;
  box-shadow: 18px 20px 0 var(--k-navy);
}

.mindy-lab__copy {
  padding: clamp(1.7rem, 3.5vw, 3.4rem);
  border: 2px solid var(--k-navy);
  border-radius: 30px;
  background: #fffdf7;
  color: var(--k-navy);
  box-shadow: 10px 12px 0 var(--k-navy);
}

.mindy-lab__copy h2 {
  max-width: 10ch;
  font-size: clamp(3.3rem, 5.2vw, 5.7rem);
}

.mindy-talk {
  background: #edfaff;
}

.nonsense-meter {
  margin-top: 3.5rem;
}

.process-orbit li {
  min-height: 240px;
}

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

  .site-header > .sound-toggle {
    display: none;
  }

  .playground-hero__copy {
    width: min(660px, 64%);
  }

  .ai-playground__intro {
    grid-template-columns: 1fr;
  }
}

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

  .section-heading h2,
  .kinetic-heading h2 {
    font-size: clamp(2.75rem, 12vw, 3.7rem);
    line-height: .92;
    text-wrap: wrap;
  }

  .site-header > .sound-toggle {
    display: none;
  }

  .playground-hero,
  .playground-hero__content {
    min-height: 820px;
  }

  .playground-hero__art {
    height: 100%;
    object-position: 64% bottom;
    transform: scale(1.02);
  }

  .playground-hero__wash {
    background: linear-gradient(180deg, rgba(245, 240, 230, .45), rgba(245, 240, 230, .12));
  }

  .playground-hero__content {
    padding: 98px 0 190px;
  }

  .playground-hero__copy {
    width: 100%;
    padding: 1.45rem;
    border-radius: 25px;
    background: rgba(255, 253, 247, .94);
    box-shadow: 0 18px 48px rgba(20, 33, 72, .14);
  }

  .playground-hero h1,
  .playground-hero h1 .gsap-word {
    font-size: clamp(3.15rem, 13.5vw, 4.45rem);
  }

  .playground-hero__actions {
    margin-top: 1.4rem;
  }

  .mood-button {
    bottom: 46px;
    width: 132px;
    min-height: 132px;
  }

  .hero-sticker--two {
    right: auto;
    bottom: 62px;
    left: 18px;
  }

  .playground-hero__scroll {
    display: none;
  }

  .home-reel-theatre__grid {
    min-height: 0;
  }

  .home-reel-theatre h2 {
    font-size: clamp(3.25rem, 14.5vw, 4.75rem);
  }

  .ai-playground__intro {
    gap: 1.6rem;
  }

  .ai-playground h2 {
    font-size: clamp(3rem, 14.8vw, 4.6rem);
  }

  .ai-playground__grid {
    display: flex;
    width: calc(100dvw - 18px);
    margin-left: -9px;
    padding: .5rem 18px 1.25rem;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .ai-playground__grid::-webkit-scrollbar {
    display: none;
  }

  .ai-toy {
    flex: 0 0 min(78vw, 310px);
    scroll-snap-align: center;
  }

  .ai-playground__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .mindy-lab__grid {
    grid-template-columns: 1fr;
  }

  .mindy-lab__copy {
    order: 1;
  }

  .mindy-lab__visual {
    order: 2;
    width: min(82vw, 330px);
  }

  .mindy-lab__copy {
    padding: 1.45rem;
    border-radius: 24px;
    box-shadow: 7px 8px 0 var(--k-navy);
  }

  .mindy-lab__copy h2 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  .mindy-lab__badge {
    right: -.35rem;
    width: 108px;
  }

  .capability-bento,
  .work-stack,
  .process-orbit,
  .testimonial-grid,
  .insight-cards {
    display: flex;
    width: calc(100dvw - 18px);
    margin-left: -9px;
    padding: .5rem 18px 1.35rem;
    gap: 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .capability-bento::-webkit-scrollbar,
  .work-stack::-webkit-scrollbar,
  .process-orbit::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar,
  .insight-cards::-webkit-scrollbar {
    display: none;
  }

  .capability-tile,
  .capability-tile:nth-child(1),
  .capability-tile:nth-child(6) {
    flex: 0 0 min(80vw, 330px);
    min-height: 300px;
    scroll-snap-align: center;
  }

  .capability-tile h3 {
    max-width: 100%;
    font-size: clamp(1.75rem, 7.8vw, 2rem);
    overflow-wrap: normal;
    word-break: normal;
  }

  .round-link {
    width: 100px;
    height: 100px;
  }

  .work-card {
    flex: 0 0 min(84vw, 350px);
    scroll-snap-align: center;
  }

  .process-orbit li {
    flex: 0 0 min(78vw, 320px);
    min-height: 260px;
    scroll-snap-align: center;
  }

  .testimonial-grid blockquote,
  .insight-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: center;
  }

  .contact-playground h2 {
    font-size: clamp(3rem, 13vw, 4.35rem);
  }

  .portfolio-closer h2 {
    font-size: clamp(4.2rem, 20vw, 6rem);
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-toy,
  .ai-toy img,
  .sound-toggle,
  .playground-hero__art {
    transition: none;
  }
}

@media (max-width: 360px) {
  .playground-hero h1,
  .playground-hero h1 .gsap-word {
    max-width: 100%;
    font-size: clamp(2.75rem, 14vw, 3.15rem);
  }

  .closing-cta h2 {
    max-width: 100%;
    font-size: clamp(2.65rem, 13.5vw, 3rem);
    overflow-wrap: break-word;
  }
}
