:root {

  --bg:        #F4F3EE;
  --bg-2:      #EDE8DE;
  --surface:   #E8E2D8;
  --border:    rgba(0,0,0,0.10);
  --text:      #1A1A18;
  --text-2:    #5A5650;
  --text-3:    #9A9590;

  --apps-out:  #0d0d0d;
  --web-out:   #0d0d0d;
  --brand-out: #0d0d0d;
  --ai-out:    #ffffff;

  --apps-in:   #3676FF;
  --web-in:    #FFD146;
  --brand-in:  #ffffff;
  --ai-in:     #0E4C4B;

  --pill-bg:   #111;

  --r-card: clamp(14px, 2.8vw, 32px);
  --r-frame: 4px;

  --nav-h: 56px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;

  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  transition: background-color 0.15s ease;
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 0;
}

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

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

::selection { background: rgba(245,196,64,0.35); }

:focus-visible { outline: 2px solid #3676FF; outline-offset: 3px; border-radius: 3px; }

.hero {

  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;

  padding: 96px 28px 80px;
}

.hero-text {
  margin-bottom: 36px;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-word.is-in {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.magnetic-text {
  perspective: 700px;
  transform-style: preserve-3d;
}

.magnetic-text .char {
  display: inline-block;
  will-change: transform;
  cursor: default;
}

.hero-sub {
  font-size: 1.32rem;
  color: var(--text-2);
  font-weight: 400;
  line-height: 1.65;
  max-width: 75%;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-sub.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
.hero-sub { font-size: 0.99rem; }
}

.scroll-reveal {
  opacity: 0;
}

.sr-word {
  display: inline-block;
  white-space: nowrap;
}

.cards-frame {
  position: relative;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--r-frame);
  padding: 20px 16px 16px;
  transition: border-color 0.25s var(--ease-out);
}

.hero #cards-frame { display: none !important; }

.cards-frame:has(.card:hover),
.cards-frame:has(.card.active) {
  border-color: transparent;
}

.handle {
  position: absolute;
  width: 9px;
  height: 9px;
  background: #B8B2A8;
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
  pointer-events: none;
  z-index: 6;
}

.h-tl { top: -5px;  left: -5px; }

.h-tr { top: -5px;  right: -5px; }

.h-bl { bottom: -5px; left: -5px; }

.h-br { bottom: -5px; right: -5px; }

.cards-frame > .handle {
  opacity: 1;
  pointer-events: all;
  cursor: ew-resize;
}

.cards-frame > .handle::before {
  content: '';
  position: absolute;
  inset: -10px;
}

.cards-frame:has(.card:hover) > .handle,
.cards-frame:has(.card.active) > .handle { opacity: 0; }

.card:hover .handle,
.card.active .handle { opacity: 1; }

.card.active::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(0,0,0,0.22);
  border-radius: calc(var(--r-card) + 1px);
  pointer-events: none;
  z-index: 5;
}

.cards-row {
  display: flex;
  gap: 10px;
  justify-content: stretch;
}

.card {
  flex: 1;
  min-width: 126px;
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  container-type: inline-size;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  user-select: none;
}

.card:nth-child(1) { transform: rotate(-6deg) translateY(4px);  animation: card-in-1 0.75s cubic-bezier(0.34,1.56,0.64,1) both; animation-delay: 0.05s; }

.card:nth-child(2) { transform: rotate(5deg)  translateY(-6px); animation: card-in-2 0.75s cubic-bezier(0.34,1.56,0.64,1) both; animation-delay: 0.15s; }

.card:nth-child(3) { transform: rotate(-4deg) translateY(4px);  animation: card-in-3 0.75s cubic-bezier(0.34,1.56,0.64,1) both; animation-delay: 0.25s; }

.card:nth-child(4) { transform: rotate(6deg)  translateY(-2px); animation: card-in-4 0.75s cubic-bezier(0.34,1.56,0.64,1) both; animation-delay: 0.35s; }

@keyframes card-in-1 {
from { transform: rotate(-6deg) translateY(140px); opacity: 0; }

to   { transform: rotate(-6deg) translateY(4px);   opacity: 1; }
}

@keyframes card-in-2 {
from { transform: rotate(5deg)  translateY(140px); opacity: 0; }

to   { transform: rotate(5deg)  translateY(-6px);  opacity: 1; }
}

@keyframes card-in-3 {
from { transform: rotate(-4deg) translateY(140px); opacity: 0; }

to   { transform: rotate(-4deg) translateY(4px);   opacity: 1; }
}

@keyframes card-in-4 {
from { transform: rotate(6deg)  translateY(140px); opacity: 0; }

to   { transform: rotate(6deg)  translateY(-2px);  opacity: 1; }
}

body:not([data-card]) .card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.02) !important;
  z-index: 5;
}

.card.active {
  transform: rotate(0deg) translateY(-4px) !important;
  z-index: 4;
}

.card-inner {
  border-radius: calc(var(--r-card) - 10px);
  margin: 20px;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-inner--lottie {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-inner--lottie dotlottie-player {
  width: 100%;
  height: 100%;
}

.card-inner--video {
  position: relative;
  padding: 0;
}

.card-inner--video .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.card:hover .card-inner--video .card-img { opacity: 0; }

.card-video {
  position: absolute;

  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.02);
  transform-origin: center;
  transition: opacity 0.35s ease;
}

.card:hover .card-video {
  opacity: 1;
}

.card-label {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: min(13cqi, 2.565rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 4px 20% 16px 20px;
  display: block;
}

.card-hint {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.18s var(--ease-out), transform 0.22s var(--ease-spring);
  pointer-events: none;
  color: var(--text);
  z-index: 5;
}

.card--brand .card-hint { background: #e8e8e8; }

.card:hover .card-hint {
  opacity: 1;
  transform: scale(1);
}

.card--apps             { background: #3676FF; }

.card--apps .card-inner { background: #3676FF; }

.card--apps .card-label { color: #fff; }

.card--websites             { background: #FFD146; }

.card--websites .card-inner { background: #FFD146; }

.card--websites .card-label { color: #000; }

.card--brand             { background: #fff; }

.card--brand .card-inner { background: #fff; }

.card--brand .card-label { color: #000; }

.card--ai             { background: #0E4C4B; }

.card--ai .card-inner { background: #0E4C4B; }

.card--ai .card-label { color: #fff; }

.work-panel {
  display: flex;
  align-items: flex-start;
  padding: 80px 28px 120px;
  gap: 60px;
  transition: gap 0.4s var(--ease-out);
}

.work-panel--tiles {
  flex-direction: column;
  gap: 32px;
}

.work-panel__left {
  position: sticky;
  top: 50vh;
  transform: translateY(-50%);
  flex: 0 0 auto;
  width: clamp(220px, 26vw, 320px);
  transition: width 0.4s var(--ease-out), max-width 0.4s var(--ease-out);
}

.work-panel__left .about-title {
  margin-bottom: 24px;
}

.work-panel--tiles .work-panel__left {
  position: static;
  transform: none;
  top: auto;
  width: 100%;
}

.work-panel--tiles .about-title {
  max-width: 800px;
  margin-bottom: 28px;
}

.work-panel__controls {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.work-panel--tiles .work-panel__controls {
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.work-panel--tiles .work-view-toggle {
  margin-top: 0;
}

.work-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.work-panel--tiles .work-filters {
  flex-wrap: nowrap;
  margin-top: 0;
}

.work-panel--tiles .work-filter--active {
  background: transparent;
  border-color: var(--text-1);
  color: var(--text-1);
  font-weight: 400;
}

.work-filter {
  background: transparent;
  border: 1.5px solid rgba(26,26,24,0.3);
  border-radius: 999px;
  color: var(--text-1);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 7px 18px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.work-filter:hover {
  border-color: rgba(26,26,24,0.7);
}

.work-filter--active {
  background: var(--text-1);
  border-color: var(--text-1);
  color: var(--bg-page);
}

.industry-filters {
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px;

  margin: 24px 0 0 0;
  max-width: 90%;
  position: relative;
  z-index: 750;
}

@media (max-width: 699px) {
.industry-filters { margin: 14px 16px 0; gap: 6px; }
}

.industry-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.industry-filter:hover {
  border-color: var(--text);
  color: var(--text);
}

.industry-filter--active {
  border-color: var(--text);
  color: var(--text);
}

.industry-filters { display: none !important; }

:root:has(.intro-chip[data-intro-filter="apps"].is-active) .industry-filters,
body:has(.intro-chip[data-intro-filter="apps"].is-active) .industry-filters {
  display: flex !important;
}

.industry-filter--reset {
  color: rgba(26,26,24,0.6);
}

.industry-filter--reset:hover {
  color: var(--text-1);
}

.work-thumb--industry-hidden { display: none !important; }

.work-view-toggle {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.work-view-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(26,26,24,0.18);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(26,26,24,0.4);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.work-view-btn:hover {
  border-color: rgba(26,26,24,0.5);
  color: rgba(26,26,24,0.8);
}

.work-view-btn--active {
  background: rgba(26,26,24,0.08);
  border-color: rgba(26,26,24,0.3);
  color: rgba(26,26,24,0.85);
}

.work-thumb.work-thumb--hidden {
  display: none;
}

.work-panel__right {
  flex: 1 1 auto;
  min-width: 0;
}

.work-panel__grid {
  display: grid;
  grid-template-columns: min(700px, 100%);
  gap: 40px;

  margin-left: 15vw;
  transition: gap 0.4s var(--ease-out);
}

.work-panel--tiles .work-panel__right {
  width: 100%;
}

.work-panel__grid--tiles {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  width: 100%;
}

.work-panel__grid--tiles .work-thumb {
  border-radius: 10px;
}

.work-panel__grid--tiles .work-thumb--tall {
  grid-row: span 2;
}

.work-panel__grid--tiles .work-thumb--tall img {
  height: 100%;
  object-fit: cover;
}

@media (min-width: 700px) {
.work-panel__grid--tiles .work-thumb--tall-desktop {
    grid-row: span 2;
  }

.work-panel__grid--tiles .work-thumb--tall-desktop img {
    height: 100%;
    object-fit: cover;
  }

.work-panel__grid--tiles .work-thumb--tall-desktop video.work-thumb__video {
    height: 100%;
    object-fit: cover;
  }
}

@keyframes tile-in {
from { opacity: 0; transform: scale(0.94) translateY(10px); }

to   { opacity: 1; transform: none; }
}

.work-panel__grid--tiles .work-thumb:not(.work-thumb--hidden) {
  animation: tile-in 0.35s var(--ease-out) both;
}

.work-panel__grid--tiles .work-thumb:nth-child(2)  { animation-delay:  35ms; }

.work-panel__grid--tiles .work-thumb:nth-child(3)  { animation-delay:  70ms; }

.work-panel__grid--tiles .work-thumb:nth-child(4)  { animation-delay: 105ms; }

.work-panel__grid--tiles .work-thumb:nth-child(5)  { animation-delay: 140ms; }

.work-panel__grid--tiles .work-thumb:nth-child(6)  { animation-delay: 175ms; }

.work-panel__grid--tiles .work-thumb:nth-child(7)  { animation-delay: 210ms; }

.work-panel__grid--tiles .work-thumb:nth-child(8)  { animation-delay: 245ms; }

.work-panel__grid--tiles .work-thumb:nth-child(9)  { animation-delay: 280ms; }

.work-panel__grid--tiles .work-thumb:nth-child(10) { animation-delay: 315ms; }

.work-panel__grid--tiles .work-thumb:nth-child(11) { animation-delay: 350ms; }

.work-panel__grid--tiles .work-thumb:nth-child(12) { animation-delay: 385ms; }

.work-panel__grid--tiles .work-thumb:nth-child(13) { animation-delay: 420ms; }

.work-thumb {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  background: var(--surface);
  transition: transform 0.25s var(--ease-out);

  touch-action: manipulation;
}

.work-thumb:hover {
  transform: translateY(-4px);
}

.work-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 900 / 630;
  object-fit: contain;
}

.work-thumb__cat { display: none; }

.work-thumb__label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0,0,0,0.48);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  z-index: 4;
}

.work-thumb__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.work-thumb__video.is-playing {
  opacity: 1;
}

.work-thumb__reveal {
  display: none !important;
}

.work-title-banner {
  display: none;

  margin: 260px 28px 28px calc(15vw + 100px);
  padding: 0;
  max-width: 70vw;
}

.work-title-banner.is-shown { display: block; }

body.has-work-title .work-zoom[data-view="rows"] {
  padding-top: 40px !important;
}

.work-title-banner__text {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(0.79rem, 3.1vw, 3.06rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text);
  text-align: left;
  margin: 0;
}

@media (max-width: 699px) {

.work-title-banner {
    margin: 0 16px 0 !important;
  }

body.has-work-title .work-zoom[data-view="rows"] {
    padding-top: 0 !important;
  }
}

.trusted-hed--plain {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(0.79rem, 3.1vw, 3.06rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text);
  text-align: left;

  margin: 0 28px 60px calc(15vw + 100px);
  padding: 0;
  max-width: min(100%, calc(85vw - 128px));
}

.trusted-hed--plain .hero-word { display: inline-block; margin-right: 0.25em; }

.hero .trusted-hed--plain {
  margin-left: 0;
}

@media (min-width: 900px) {
.hero .trusted-hed--plain {
    margin-left: calc(15vw - 17.5vw + 100px);
  }
}

@media (max-width: 699px) {
.trusted-hed--plain {
    font-size: clamp(0.72rem, 3.96vw, 1.62rem);
    margin: 0 16px 32px;
  }
}

@media (max-width: 699px) {
.work-panel {
    flex-direction: column;
    gap: 32px;
    padding: 80px 20px 80px;
  }

.work-panel__left {
    position: static;
    width: 100%;
  }
}

.work {

  padding: 80px 28px 4vh calc(15vw + 100px);
}

.work .about-block {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
}

.work.revealed {
  animation: work-reveal 0.6s var(--ease-out) both;
}

@keyframes work-reveal {
from { opacity: 0; transform: translateY(32px); }

to   { opacity: 1; transform: translateY(0); }
}

.connector-wrap--intro {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 20px;
}

.connector-svg {
  width: 200px;
  height: 120px;
  flex-shrink: 0;
  overflow: visible;
}

.work-intro {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-2);
  max-width: 380px;
  padding-top: 60px;
  align-self: center;
}

.work-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.between-curve {
  width: 100%;
  height: 100px;
  overflow: visible;
}

.between-curve svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.project {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
}

.project--alt .project-info  { order: 1; }

.project--alt .project-connector { order: 2; }

.project--alt .project-visual { order: 3; }

@media (max-width: 640px) {
.project {
    grid-template-columns: 1fr;
  }

.project-connector { display: none; }

.project--alt .project-info  { order: 1; }

.project--alt .project-visual { order: 2; }
}

.project-connector {
  display: flex;
  justify-content: center;
  height: 100%;
  min-height: 200px;
}

.project-connector svg {
  width: 48px;
  height: 100%;
  overflow: visible;
}

.mockup-frame {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phones-duo {
  position: relative;
  width: 180px;
  height: 180px;
}

.phone {
  position: absolute;
  width: 80px;
  height: 148px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #1a2340;
}

.phone--back  { top: 20px; left: 4px;  transform: rotate(-7deg); z-index: 1; }

.phone--front { top: 8px;  right: 4px; transform: rotate(5deg);  z-index: 2; }

.phone-screen { width: 100%; height: 100%; padding: 8px 6px; }

.ps-bar       { height: 5px; border-radius: 3px; background: rgba(255,255,255,0.2); margin-bottom: 5px; }

.ps-bar--short { width: 55%; }

.ps-gap       { height: 10px; }

.ps-card      { border-radius: 6px; background: rgba(255,255,255,0.08); height: 48px; margin-bottom: 6px; }

.ps-card--sm  { height: 28px; }

.desktop-mock { width: 240px; }

.desktop-screen {
  width: 100%;
  height: 148px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  overflow: hidden;
}

.ds-nav { height: 16px; background: rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.05); }

.ds-hero { margin: 8px 10px 6px; height: 44px; border-radius: 5px; background: rgba(255,255,255,0.08); }

.ds-grid { display: flex; gap: 5px; padding: 0 10px; }

.ds-item { flex: 1; height: 48px; border-radius: 5px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.05); }

.brand-mock {
  width: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}

.bm-mark { width: 52px; height: 52px; border-radius: 10px; background: linear-gradient(135deg, #2B6FD4, #F5C440); margin-bottom: 16px; }

.bm-palette { display: flex; gap: 7px; margin-bottom: 14px; }

.bm-palette span { width: 28px; height: 28px; border-radius: 6px; border: 1px solid rgba(0,0,0,0.08); display: block; }

.bm-lines { display: flex; flex-direction: column; gap: 6px; }

.bm-line { height: 5px; border-radius: 3px; background: rgba(0,0,0,0.10); width: 80%; }

.bm-line--h { height: 8px; background: rgba(0,0,0,0.14); width: 100%; }

.bm-line--sm { width: 50%; }

.project-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0;
}

.project-desc {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--text-2);
  max-width: 340px;
}

.about-block {
  max-width: 660px;
  margin: 0 auto;
  padding: 72px 0 24px;
  position: relative;
  overflow: visible;
}

.about-curve-svg {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 700px;
  overflow: visible;
  pointer-events: none;
  z-index: 6;
  opacity: 0;
}

.about-curve-text {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 155px;
  font-weight: 400;
  fill: var(--text);
  letter-spacing: -3px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.05rem;
  padding: 5px 16px;
  border-radius: 20px;
  background: var(--surface);
  color: var(--text-2);
  margin-bottom: 32px;

  align-self: flex-start;
  width: fit-content;
}

.about-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 36px;
}

.process-hed-row {
  position: relative;

  margin: 160px 0 0;
}

@media (min-width: 900px) {
.process-hed-row { margin-left: calc(15vw - 17.5vw + 100px); margin-top: 200px; }
}

.process-hed-row .process-hed {
  margin-left: 0 !important;
}

.process-hed { display: block; }

.process-hed .process-hed__text { display: inline; }

.hero .process-toggle {
  display: none;
  position: absolute;
  top: 6px;
  right: 100%;
  margin-right: 14px;
  flex-shrink: 0;
}

@media (max-width: 899px) {
.hero .process-toggle {
    position: static;
    margin: 0 0 14px;
  }
}

.process-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 28px 0 24px;
  max-width: 70vw;
}

.hero .process-chips { margin-left: 0; }

@media (min-width: 900px) {

.hero .process-chips { margin-left: calc(15vw - 17.5vw + 100px); }
}

.process-chips.is-hidden { display: none; }

.process-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #1A1A18;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-left: 0;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out), background 0.2s ease;
}

.process-toggle svg { width: 11px; height: 11px; }

.process-toggle[aria-expanded="true"] { transform: rotate(180deg); }

.process-toggle:hover { background: #2A2A28; }

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.process-eyebrow__label {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text);

  line-height: 31px;
  display: inline-flex;
  align-items: center;
}

.process-eyebrow:has(> #process-toggle[style*="display: none"]) {
  display: none;
}

@keyframes processPanelIn {
from { opacity: 0; transform: translateY(28px); }

to   { opacity: 1; transform: none; }
}

.process-panel.is-revealing .ph-block {
  opacity: 0;
  animation: processPanelIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.process-panel.is-revealing .ph-block:nth-child(1) { animation-delay: 0ms; }

.process-panel.is-revealing .ph-block:nth-child(2) { animation-delay: 120ms; }

.process-panel.is-revealing .ph-block:nth-child(3) { animation-delay: 220ms; }

.process-panel.is-revealing .ph-block:nth-child(n+4) { animation-delay: 320ms; }

.process-hed.is-revealing .process-hed__text {
  display: inline-block;
  animation: processPanelIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.process-panel {
  display: block;
  margin: -40dvh 0 0;
  padding: 16px 28px 48px 28px !important;
  position: relative;
  z-index: 1;
}

.process-panel[hidden] { display: none; }

@media (min-width: 900px) {
.process-panel {
    margin-top: -40dvh;

    padding: 16px 10vw 64px calc(15vw + 100px) !important;
  }
}

.process-panel .ph-block {
  margin: 0 0 56px;
  padding: 0;
}

.process-panel,
.process-panel * {
  box-sizing: border-box;
}

.process-panel * {
  margin-left: 0 !important;
  padding-left: 0 !important;
  max-width: none !important;
  text-indent: 0 !important;
}

.process-panel > * {
  display: block;
}

.process-panel .ph-block:not(:first-child) {
  margin-left: calc(-1 * (10vw)) !important;
  margin-right: calc(-1 * (10vw)) !important;
  padding-left: 28px !important;
  padding-right: 28px !important;
}

@media (max-width: 899px) {
.process-panel .ph-block:not(:first-child) {
    margin-left: -28px !important;
    margin-right: -28px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

.process-panel .ph-block { margin-bottom: 18px !important; }

.process-panel .about-block { margin-bottom: 32px !important; }

.process-panel .faq-section {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.process-panel .faq-inner {
  padding: 0 !important;
  margin: 0 !important;
}

.process-panel .about-body { margin-bottom: 28px !important; }

.process-panel .about-body p { margin: 0 0 18px !important; }

.process-panel .faq-list { list-style: none !important; }

.process-panel .faq-list {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.process-panel .faq-item {
  width: auto !important;
  max-width: 100% !important;
  display: inline-block !important;
}

.process-panel .faq-q {
  width: auto !important;
  display: inline-flex !important;
}

.process-panel .faq-q__text {
  flex: 0 0 auto !important;
}

.process-panel .faq-item:has(.faq-q[aria-expanded="true"]) {
  width: min(33vw, 480px) !important;
  display: block !important;
  transition: width 220ms ease;
}

.process-panel .faq-item:has(.faq-q[aria-expanded="true"]) .faq-q {
  width: 100% !important;
  display: flex !important;

  padding-left: 28px !important;
}

.process-panel .faq-item:has(.faq-q[aria-expanded="true"]) .faq-q__text {
  flex: 1 1 auto !important;
}

.process-panel .faq-q {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;

  font-size: 15.75px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.25 !important;
  padding: 16px 22px !important;
  align-items: center !important;
  min-height: 56px;
}

.process-panel .faq-q__text {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 15.75px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.25 !important;
}

.process-panel .faq-icon {
  width: 25px !important;
  height: 25px !important;
}

.process-panel .faq-icon svg {
  width: 13px !important;
  height: 13px !important;
}

.process-panel .ph-title-chevron {
  opacity: 0.55;
  flex-shrink: 0;
}

.process-panel .ph-block--faqs {
  margin-top: 8px !important;
}

.process-panel .ph-faqs-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 999px;

  padding: 12px 24px 12px 28px !important;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  cursor: pointer;
  transition: background 0.2s ease;
}

.process-panel .ph-faqs-toggle:hover { background: #000000; }

.process-panel .ph-faqs-toggle__chev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.process-panel .ph-faqs-toggle[aria-expanded="true"] .ph-faqs-toggle__chev {
  transform: rotate(180deg);
}

.process-panel .ph-faqs-panel {
  margin-top: 18px;
}

.process-panel .faq-a { padding-left: 28px !important; padding-right: 28px !important; }

.process-panel .faq-a > * { padding-left: 0 !important; }

.process-panel .faq-a ul { padding-left: 1.2em !important; }

.process-panel .faq-q[aria-expanded="false"] + .faq-a { display: none !important; }

.process-panel .faq-q[aria-expanded="true"] + .faq-a { display: block !important; }

.process-panel .ph-block .faq-title,
.process-panel .ph-block h2,
.process-panel .ph-block h4,
.process-panel .ph-block section.faq-section > .faq-inner > .faq-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.3 !important;

  margin: 0 0 34px !important;
  color: var(--text) !important;
  opacity: 1 !important;
  text-align: left !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;

  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: none !important;
  width: auto !important;
}

.process-panel .faq-list { list-style: none; padding: 0; margin: 0; }

.process-panel .faq-q,
.process-panel .faq-a { color: var(--text); }

.process-panel .about-block { max-width: none; padding: 0; }

.process-panel .ph-diagram-wrap {
  width: 100%;
  margin: 0;
}

.process-panel .ph-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
.process-panel .ph-stack {
    display: grid;
    grid-template-columns: minmax(220px, 30%) 1fr;
    column-gap: 48px;

    row-gap: 42px;
    align-items: start;
  }

.process-panel .ph-stack > .ph-block--intro {
    grid-column: 1;
    grid-row: 1;
    margin-top: 50px;
  }

.process-panel .ph-stack > .ph-diagram-wrap {
    grid-column: 2;
    grid-row: 1;
    margin-top: 50px;
  }

.process-panel .ph-stack > .ph-block--pills,
  .process-panel .ph-stack > .ph-block--faqs {
    grid-column: 1 / -1;
    margin-top: 0 !important;
  }
}

.process-panel .ph-block--intro,
.process-panel .ph-block--intro .about-block {
  margin-bottom: 0 !important;
}

.process-panel .ph-stack > .ph-block,
.process-panel .ph-stack > .ph-block:not(:first-child) {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.process-panel .ph-block--intro,
.process-panel .ph-block--intro .about-block,
.process-panel .ph-block--intro .about-body {
  max-width: 100% !important;
  width: 100% !important;
}

.process-panel .ph-diagram {
  display: block;
  width: 100%;
  height: auto;
}

.process-panel { padding: 0 28px 0 28px; }

@media (min-width: 900px) {
.process-panel { padding: 0 17.5vw; }
}

.about-h1 {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(0.79rem, 3.1vw, 3.06rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text);
  text-align: left;
  margin-top: 0;
  margin-bottom: 24px;
  margin-left: calc(50% - 50vw + 15vw + 100px);
  margin-right: calc(50% - 50vw + 15vw);
}

@media (max-width: 699px) {
.about-h1 {
    font-size: clamp(0.72rem, 3.96vw, 1.62rem);
    margin-left: calc(50% - 50vw + 16px);
    margin-right: calc(50% - 50vw + 16px);
  }
}

.about-meta--with-card {
  display: flex !important;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.about-meta--with-card .about-meta__rows {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.work .about-block { position: relative; }

@media (min-width: 1100px) {
.work .about-block {
    padding-right: 720px;
  }

.work .about-meta--with-card .about-meta__card {
    position: absolute;

    top: 30%;
    right: 15vw;
    width: 360px;
    margin: 0;
  }

.work .about-meta--with-card .about-meta-item {
    max-width: 75%;
    width: 75%;
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 1099px) {
.work .about-block {
    padding-right: 0;
  }

.work .about-h1 {

    white-space: normal !important;
    max-width: 90%;
    word-break: normal;
    overflow-wrap: break-word;
  }

.work .about-chip {
    max-width: 90%;
  }

.work .about-meta--with-card .about-meta__card {

    position: static !important;
    width: min(360px, 80%);
    margin: 8px 0 16px 0;
  }

.work .about-meta--with-card .about-meta-item {

    max-width: 90%;
    width: 90%;
    white-space: normal;
    overflow-wrap: break-word;
  }

.work .about-more-body {
    max-width: 90%;
  }
}

.work .about-meta--with-card .about-meta__label {
  display: none !important;
}

.work .about-actions {
  margin-top: 20px;
  justify-content: flex-start;
  margin-left: 0;
}

.work .about-actions .thoughts-see-all-btn,
.work .about-actions .about-more-btn,
.work .about-actions .about-experience-btn {
  background: #ffffff !important;
  border: none !important;
  color: #111 !important;
  box-shadow: none !important;
}

.work .about-actions .thoughts-see-all-btn:hover,
.work .about-actions .about-more-btn:hover,
.work .about-actions .about-experience-btn:hover {
  background: #f4f3ee !important;
  color: #111 !important;
}

.work .about-actions .btn-arrow-circle {
  background: #111111 !important;
  color: #ffffff !important;
}

.work .about-h1 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  white-space: nowrap;
}

.work .about-chip {
  margin-left: 0 !important;
}

.about-meta__card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-2, #EDE8DE);
}

.about-meta__card .about-meta__img,
.about-meta__card .about-meta__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-meta__card .about-meta__video {
  z-index: 1;
}

.about-meta__label {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 5px 12px;
  border-radius: 999px;
  z-index: 2;
}

@media (max-width: 699px) {
.about-meta--with-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }

.about-meta__card { aspect-ratio: 16 / 10; }
}

.about-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.about-meta-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.5;
}

.about-meta-item strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}

.about-body {
  margin-bottom: 48px;
}

.about-body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--text-2);
  margin-bottom: 20px;
}

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

.trusted-section {

  overflow: visible;
  padding: 220px 0 90px;

  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
}

.trusted-hed {
  margin-bottom: 44px;
  pointer-events: none;

}

.trusted-section .trusted-hed--plain { margin-bottom: 20px; }

.tb-lede {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-2);

  margin: 0 28px 14px calc(15vw + 100px);
  max-width: min(52ch, calc(85vw - 128px));
}

.tb-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--text-3);
  margin: 0 28px 44px calc(15vw + 100px);
  max-width: min(58ch, calc(85vw - 128px));
}

.tb-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.6s ease 0.25s;
  overflow-x: clip;
  overflow-y: visible;
}

.trusted-section.is-landed .tb-rows { opacity: 1; }

.trusted-section.is-split  .tb-rows { opacity: 1; }

.trusted-section .tb-rows {
  opacity: 0;
  transform: translateY(-60px);
  transition: opacity 0.7s ease, transform 0.9s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.trusted-section.is-in .tb-rows {
  opacity: 1;
  transform: translateY(0);
}

.trusted-section .trusted-hed--plain {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s ease, transform 0.9s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1));
}

.trusted-section.is-in .trusted-hed--plain {
  opacity: 1;
  transform: translateY(0);
}

.tb-row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  will-change: transform;

}

#tb-tooltip {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: max-content;
  max-width: min(320px, calc(100vw - 24px));
  background: var(--text);
  border-radius: 10px;
  padding: 11px 15px 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

#tb-tooltip.is-below { transform: translateY(-6px); }

#tb-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tb-tip__org {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--bg);
}

.tb-tip__context {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(244, 243, 238, 0.74);
}

.tb-tip__caps {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(244, 243, 238, 0.52);
  padding-top: 3px;
  border-top: 1px solid rgba(244, 243, 238, 0.14);
}

#tb-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: var(--caret-x, 50%);
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--text);
}

#tb-tooltip.is-below::after {
  top: auto;
  bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--text);
}

.tb-card {
  flex-shrink: 0;
  width: 184px;
  height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-sizing: border-box;
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.28s ease, transform 0.28s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow 0.28s ease;
}

.tb-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 42px;
}

.tb-card__logo img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.35s ease, opacity 0.35s ease;
}

.tb-card__name {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: var(--text-2);

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.28s ease;
}

.tb-card:hover,
.tb-card:focus-visible {
  border-color: rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

.tb-card:hover .tb-card__logo img,
.tb-card:focus-visible .tb-card__logo img {
  filter: grayscale(0);
  opacity: 1;
}

.tb-card:hover .tb-card__name,
.tb-card:focus-visible .tb-card__name { color: var(--text); }

.tb-card[data-logo="bmw"]        .tb-card__logo img { max-height: 34px; }

.tb-card[data-logo="volkswagen"] .tb-card__logo img { max-height: 36px; }

.tb-card[data-logo="audi"]       .tb-card__logo img { max-width: 108px; }

.tb-card[data-logo="uber"]       .tb-card__logo img { max-height: 24px; }

.tb-card[data-logo="wikifolio"]  .tb-card__logo img { max-height: 22px; }

.tb-card[data-logo="bt"]         .tb-card__logo img { max-height: 30px; }

.tb-card[data-logo="amp"]        .tb-card__logo img { max-height: 38px; }

.tb-card[data-logo="roche"]      .tb-card__logo img { max-height: 38px; }

.tb-card[data-logo="applause"]   .tb-card__logo img { max-width: 128px; }

.tb-card[data-logo="oic"]        .tb-card__logo img { max-width: 124px; }

.tb-card[data-logo="goodgame"]   .tb-card__logo img { max-height: 42px; }

.tb-card[data-logo="nsw"]        .tb-card__logo img { max-width: 100%; }

.tb-card[data-logo="avocado"]    .tb-card__logo img { max-width: 100%; }

.tb-card[data-logo="bergstrom"]  .tb-card__logo img { max-width: 100%; }

.tb-card[data-logo="finstreet"]  .tb-card__logo img { max-height: 34px; }

.tb-card[data-logo="tal"]       .tb-card__logo img { filter: grayscale(1) brightness(0.55); }

.tb-card[data-logo="avocado"]   .tb-card__logo img { filter: grayscale(1) brightness(0.60); }

.tb-card[data-logo="tap"]       .tb-card__logo img { filter: grayscale(1) brightness(0.72); }

.tb-card[data-logo="finstreet"] .tb-card__logo img { filter: grayscale(1) brightness(0.82); }

.tb-card[data-logo="tal"] .tb-card__logo img { max-height: 32px; }

.tb-card[data-logo="tap"] .tb-card__logo img { max-height: 42px; }

.tb-card[data-logo="tal"]:hover       .tb-card__logo img,
.tb-card[data-logo="tal"]:focus-visible       .tb-card__logo img,
.tb-card[data-logo="tap"]:hover       .tb-card__logo img,
.tb-card[data-logo="tap"]:focus-visible       .tb-card__logo img,
.tb-card[data-logo="avocado"]:hover   .tb-card__logo img,
.tb-card[data-logo="avocado"]:focus-visible   .tb-card__logo img,
.tb-card[data-logo="finstreet"]:hover .tb-card__logo img,
.tb-card[data-logo="finstreet"]:focus-visible .tb-card__logo img {
  filter: grayscale(0) brightness(1);
}

@media (prefers-reduced-motion: reduce) {
.tb-row {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;

    max-width: min(980px, calc(100vw - 48px));
    margin: 0 auto;
  }

.tb-card[aria-hidden="true"] { display: none; }
}

@media (max-width: 767px) {
.trusted-section { padding: 60px 0 70px; }

.tb-rows { opacity: 1; }

.trusted-section .trusted-hed {
    overflow: visible;
    margin-bottom: 16px;
  }

.tb-lede {
    font-size: 15px;
    margin: 0 16px 12px 16px;
    max-width: none;
  }

.tb-note {
    font-size: 11px;
    margin: 0 16px 28px 16px;
    max-width: none;
  }
}

@media (max-width: 600px) {
.tb-rows { gap: 10px; }

.tb-row  { gap: 10px; }

.tb-card {
    width: 150px;
    height: 100px;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 10px;
  }

.tb-card__logo { height: 34px; }

.tb-card__name { font-size: 0.66rem; }

.tb-card[data-logo="bmw"]        .tb-card__logo img { max-height: 28px; }

.tb-card[data-logo="volkswagen"] .tb-card__logo img { max-height: 30px; }

.tb-card[data-logo="tap"]        .tb-card__logo img { max-height: 34px; }

.tb-card[data-logo="tal"]        .tb-card__logo img { max-height: 26px; }

.tb-card[data-logo="uber"]       .tb-card__logo img { max-height: 24px; }

.tb-card[data-logo="wikifolio"]  .tb-card__logo img { max-height: 22px; }
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: background 0.2s, border-color 0.2s, transform 0.25s var(--ease-out);
  flex-shrink: 0;
}

.arrow-btn:hover {
  background: var(--surface);
  border-color: rgba(0,0,0,0.2);
  transform: translateX(4px);
}

#scroll-hint {
  position: fixed;
  bottom: max(92px, calc(80px + env(safe-area-inset-bottom)));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 9000;
  white-space: nowrap;

  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

#scroll-hint.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

#scroll-hint:hover .scroll-hint-chevron { animation-play-state: paused; transform: translateY(2px); }

.scroll-hint-chevron {
  color: var(--text-2);
  animation: sh-bounce 1.5s ease-in-out infinite;
}

@keyframes sh-bounce {
0%, 100% { transform: translateY(0); }

50%       { transform: translateY(7px); }
}

.scroll-hint-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-2);
  margin: 0;
  text-transform: lowercase;
}

.sh-o {
  display: inline-block;
  animation: sh-o-out 2s ease-in-out infinite;
}

.sh-o:nth-child(1) { animation-delay: 0s; }

.sh-o:nth-child(2) { animation-delay: 0.22s; }

.sh-o:nth-child(3) { animation-delay: 0.44s; }

.sh-o:nth-child(4) { animation-delay: 0.66s; }

@keyframes sh-o-out {
0%, 35%, 100% { transform: scaleX(1) translateY(0); opacity: 1; }

60%            { transform: scaleX(0.05) translateY(1px); opacity: 0; }

80%            { transform: scaleX(1.15) translateY(-1px); opacity: 1; }
}

.analytics-panel {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: calc(max(28px, 16px + env(safe-area-inset-bottom)) + 56px + 14px);
  width: min(calc(100vw - 32px), 800px);
  height: 600px;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  z-index: 9850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease,
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 60px rgba(0,0,0,0.6),
              0 0 0 1px rgba(255,255,255,0.06) inset;
}

.analytics-panel.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.analytics-panel__iframe {
  position: absolute;
  top: -24px;
  left: -24px;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  border: none;
  display: block;
}

.analytics-panel__close {
  all: unset;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  transition: color 0.15s, background 0.15s;
}

.analytics-panel__close:hover {
  color: #fff;
  background: rgba(255,255,255,0.12);
}

.nav-analytics-btn[aria-expanded="true"] {
  color: #fff;
}

@media (max-width: 599px) {
.analytics-panel {
    width: calc(100vw - 16px);
    height: 80vh;
  }
}

.ai-chat {
  position: fixed;
  right: 28px;
  bottom: 100px;
  width: 380px;
  max-width: calc(100vw - 56px);
  height: min(560px, calc(100vh - 200px));
  background: var(--pill-bg);
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.32);
  z-index: 9850;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out);
}

.ai-chat.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ai-chat__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 20px 18px;
  box-sizing: border-box;
}

.ai-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.ai-chat__title {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.78;
}

.ai-chat__close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.15s ease, background 0.15s ease;
}

.ai-chat__close:hover { opacity: 1; background: rgba(255,255,255,0.08); }

.ai-chat__log {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 4px;
  margin-bottom: 12px;
}

.ai-chat__msg {
  max-width: 88%;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: 14px;
  word-wrap: break-word;
}

.ai-chat__msg--bot {
  background: rgba(255,255,255,0.085);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
}

.ai-chat__msg--user {
  background: #fff;
  color: var(--text);
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}

.ai-chat__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.ai-chat__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 6px 12px 6px 12px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.ai-chat__action:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}

.ai-chat__action::after {
  content: '↗';
  font-size: 11px;
  opacity: 0.7;
}

.ai-chat__form {
  display: flex;
  gap: 8px;
  align-items: stretch;
  flex-shrink: 0;
}

.ai-chat__input {
  flex: 1;
  background: rgba(255,255,255,0.085);
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.92rem;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.ai-chat__input::placeholder { color: rgba(255,255,255,0.45); }

.ai-chat__input:focus { border-color: rgba(255,255,255,0.25); }

.ai-chat__send {
  background: #fff;
  color: var(--text);
  border: none;
  border-radius: 100px;
  width: 48px;
  flex-shrink: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s ease, transform 0.2s var(--ease-out);
}

.ai-chat__send:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
.ai-chat {
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    bottom: 100px;
    height: min(70vh, 520px);
  }
}

.faq-section {
  padding: 80px 28px 100px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 56px;
}

.work-thumb--cap-hidden,
.work-zoom .work-thumb--cap-hidden,
.work-zoom[data-view="rows"] .work-thumb.work-thumb--cap-hidden,
.work-panel__grid .work-thumb.work-thumb--cap-hidden {
  display: none !important;
}

.work-show-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0;
  cursor: pointer;

  margin: 82px auto 32px;
  transition: background 0.2s ease;
}

.work-show-more:hover { background: #000000; }

.contact-heading,
.social-profiles-label,
section.faq-section > .faq-inner > .faq-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  font-size: clamp(0.79rem, 3.1vw, 3.06rem) !important;
  font-weight: 400 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.02 !important;
  color: var(--text) !important;
  text-align: left !important;
  padding: 0 !important;

  width: auto !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw + 15vw + 100px) !important;
  margin-right: calc(50% - 50vw + 28px) !important;
  margin-top: 0 !important;
  margin-bottom: 60px !important;
}

@media (min-width: 900px) {
.contact,
  .social-profiles,
  section.faq-section#faq {
    display: grid !important;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr) !important;
    column-gap: 60px !important;
    padding-left: calc(15vw + 100px) !important;
    padding-right: 5vw !important;
    align-items: start !important;
    box-sizing: border-box;

    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

.contact > .contact-heading,
  .social-profiles > .social-profiles-label,
  section.faq-section#faq > .faq-inner > .faq-title {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    align-self: start !important;
    padding-top: 0 !important;
  }

.contact > .contact-heading {
    padding-top: 100px !important;
  }

.social-profiles > .social-cards-row {
    grid-column: 2 !important;
    margin: 0 !important;
  }

.faq-title--stacked > span {
    display: block !important;
  }

section.faq-section#faq > .faq-inner {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: minmax(280px, 1fr) minmax(0, 2fr) !important;
    column-gap: 60px !important;
    align-items: start !important;
  }

section.faq-section#faq > .faq-inner > .faq-list {
    grid-column: 2 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

section.faq-section#faq > .faq-inner > .faq-more-btn {
    grid-column: 2 !important;
    justify-self: start !important;
    margin: 18px 0 0 !important;
  }
}

.faq-section#faq .faq-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.faq-section#faq .faq-item {

  max-width: 100% !important;
  flex: 0 0 auto !important;
}

.faq-section#faq .faq-q {
  width: auto !important;
  justify-content: flex-start !important;
  gap: 14px;
}

.faq-section#faq .faq-q__text {
  flex: 0 0 auto;
}

.faq-section#faq .faq-item:hover,
.faq-section#faq .faq-item:has(.faq-q[aria-expanded="true"]) {

  width: min(620px, 100%) !important;
  flex: 0 0 auto !important;
}

.faq-section#faq .faq-item:hover .faq-q__text,
.faq-section#faq .faq-item:has(.faq-q[aria-expanded="true"]) .faq-q__text {
  flex: 1 1 auto;
}

.faq-section#faq .faq-q {
  font-size: 15.75px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.25 !important;

  padding: 16px 12px 16px 22px !important;
  min-height: 56px !important;
}

.faq-section#faq .faq-q__text {
  font-size: 15.75px !important;
  font-weight: 500 !important;
  letter-spacing: -0.005em !important;
  line-height: 1.25 !important;
}

.faq-section#faq .faq-icon {
  width: 25px !important;
  height: 25px !important;
}

.faq-section#faq .faq-icon svg {
  width: 13px !important;
  height: 13px !important;
}

@media (max-width: 699px) {

.contact-heading,
  .social-profiles-label {
    font-size: clamp(0.72rem, 3.96vw, 1.62rem) !important;
    margin-left: calc(50% - 50vw + 16px) !important;
    margin-right: calc(50% - 50vw + 16px) !important;
    margin-bottom: 32px !important;
  }
}

.faq-title--mobile { display: none; }

@media (max-width: 768px) {
.faq-title--desktop { display: none; }

.faq-title--mobile  { display: block; }
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.faq-item {

  width: fit-content;
  max-width: var(--faq-item-w, 82%);
  background: #fff;
  border-radius: 41px;
  overflow: hidden;
  transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              max-width 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:last-child {

}

.faq-item:hover,
.faq-item:has(.faq-q[aria-expanded="true"]) {

  width: 100%;
  max-width: 100%;
}

.faq-item--more {
  display: none;
}

.faq-item--more.is-visible {
  display: block;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 1.575rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;

  white-space: normal;
  align-items: flex-start;
}

.faq-q__text {
  min-width: 0;
  flex: 1;
  overflow-wrap: break-word;
}

.faq-q:hover {
  color: var(--accent, #3a3a2e);
}

@media (max-width: 768px) {
.faq-q {
    font-size: 0.95rem !important;
    white-space: normal;
    align-items: flex-start;
    padding: 20px 32px;
  }

.faq-q__text {
    overflow: visible;
    white-space: normal;
    overflow-wrap: break-word;
    line-height: 1.35;
  }
}

.faq-icon {
  font-family: Inter, -apple-system, "system-ui", sans-serif;
  color: #000;
}

.faq-q .faq-icon { background: #FFD600; }

.faq-item:hover .faq-icon { background: #f0c800; }

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  background: #FF5733;
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 32px;
  transition: max-height 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              padding-bottom 0.5s ease;
}

.faq-q[aria-expanded="true"] + .faq-a {
  max-height: 480px;
  padding-bottom: 25px;
}

.faq-section#faq .faq-a {
  display: grid;
  grid-template-rows: 0fr;
  max-height: none;
  overflow: hidden;
  transition: grid-template-rows 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              padding-bottom 0.5s ease;
}

.faq-section#faq .faq-a__inner {
  min-height: 0;
  overflow: hidden;
}

.faq-section#faq .faq-q[aria-expanded="true"] + .faq-a {
  grid-template-rows: 1fr;
}

.faq-a p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  padding-bottom: 16px;
  margin: 0;
}

.faq-a ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.faq-a ul li {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-2);
  padding: 4px 0 4px 18px;
  position: relative;
}

.faq-a ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-3);
  font-size: 0.85rem;
}

.faq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.faq-more-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.faq-more-icon {
  transition: transform 0.3s ease;
}

.faq-more-btn[aria-expanded="true"] .faq-more-icon {
  transform: rotate(180deg);
}

.faq-more-btn[aria-expanded="true"] {
  display: none;
}

.contact {
  padding: 60px 28px 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 660px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;

}

.contact-heading {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 36px;
  color: var(--text);
  text-align: left;
}

.form-textarea-wrap {
  position: relative;
}

@keyframes form-spin {
to { transform: rotate(360deg); }
}

.form-robot-check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-2);
  user-select: none;
  white-space: nowrap;
}

@media (max-width: 768px) {
.form-robot-check { font-size: 0.7rem; }
}

.form-robot-check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 17px;
  height: 17px;
  border: 1.5px solid rgba(0,0,0,0.25);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
  position: relative;
}

.form-robot-check input[type="checkbox"]:checked {
  background: var(--text);
  border-color: var(--text);
}

.form-robot-check input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

@keyframes robot-shake {
0%,100% { transform: translateX(0); }

20%      { transform: translateX(-4px); }

40%      { transform: translateX(4px); }

60%      { transform: translateX(-3px); }

80%      { transform: translateX(3px); }
}

.form-robot-check--shake { animation: robot-shake 0.4s ease; }

.form-success-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.9rem;
  color: var(--text-2);
  margin: 0;
}

.form-success-sub a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success-sub a:hover { opacity: 0.7; }

.social-profiles {
  max-width: 660px;
  margin: 0 auto;
  padding: 120px 28px 160px;
  width: 100%;
  box-sizing: border-box;
}

.social-profiles-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 36px;
}

.social-profiles .social-cards-row {
  max-width: 540px;
}

.social-cards-row {
  display: flex;
  gap: 10px;
}

.social-card {
  flex: 1;
  border-radius: var(--r-card);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  container-type: inline-size;
  transition: transform 0.35s var(--ease-out);
  user-select: none;
}

.social-card:hover {
  transform: translateY(-6px) scale(1.02);
}

.social-card-top {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
}

.social-logo-large {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  opacity: 0.92;
}

.social-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.28);
}

.social-card-footer {
  display: flex;
  align-items: center;
  padding: 16px 24px 20px;
}

.social-card-name {
  font-family: 'IBM Plex Mono', monospace;
  font-size: min(7cqi, 1.3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-card--linkedin                      { background: #0A66C2; }

.social-card--linkedin .social-logo-large   { color: #fff; }

.social-card--linkedin .social-card-footer  { color: #fff; }

.social-card--x                      { background: #1A1A18; }

.social-card--x .social-logo-large   { color: rgba(255,255,255,0.88); }

.social-card--x .social-card-footer  { color: rgba(255,255,255,0.90); }

@media (max-width: 767px) {
.social-profiles {
    padding-bottom: 220px;
  }

.social-profiles .social-cards-row {
    flex-direction: column;
    max-width: 100%;
  }

.social-card--x        { order: -1; }

.social-card--linkedin { order:  1; }
}

.sticky-note {
  position: absolute;
  width: 164px;
  background: #FFF9B1;
  padding: 8px;
  border-radius: 2px;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.16), 0 1px 3px rgba(0,0,0,0.08);
  z-index: 9700;
  cursor: grab;
}

.sticky-note:active { cursor: grabbing; }

.sticky-note textarea {
  width: 100%;
  height: 80px;
  border: none;
  background: transparent;
  resize: none;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #3a3000;
  outline: none;
  cursor: text;
  display: block;
  margin-top: 14px;
}

.sticky-delete {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.10);
  color: #3a3000;
  font-size: 0.78rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.15s, background 0.15s;
  padding: 0;
}

.sticky-note:hover .sticky-delete { opacity: 1; }

.sticky-delete:hover { background: rgba(0,0,0,0.22); }

.sticky-from-row {
  display: flex;
  align-items: center;
  gap: 5px;
  border-top: 1px solid rgba(58,48,0,0.12);
  padding-top: 6px;
  margin-top: 4px;
}

.sticky-from-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.6rem;
  color: rgba(58,48,0,0.45);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  user-select: none;
}

.sticky-from-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  color: #3a3000;
  outline: none;
  cursor: text;
  padding: 0;
  line-height: 1.4;
}

.sticky-from-input::placeholder { color: rgba(58,48,0,0.30); }

.sticky-send {
  display: flex;
  align-items: center;
  gap: 5px;
  border: none;
  background: none;
  color: rgba(58,48,0,0.30);
  cursor: pointer;
  padding: 5px 0 2px 0;
  transition: color 0.15s;
  overflow: hidden;
  max-width: 100%;
}

.sticky-send:hover { color: rgba(58,48,0,0.72); }

.sticky-send svg { flex-shrink: 0; }

.sticky-send-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.65rem;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-width 0.25s var(--ease-out), opacity 0.2s;
}

.sticky-send:hover .sticky-send-label {
  max-width: 120px;
  opacity: 1;
}

.sticky-send[data-state] { color: rgba(58,48,0,0.72); cursor: default; }

.sticky-send[data-state] .sticky-send-label { max-width: 120px; opacity: 1; }

.sticky-send[data-state="sent"] { color: rgba(30,120,60,0.80); }

.sticky-spinner {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border: 1.5px solid rgba(58,48,0,0.18);
  border-top-color: rgba(58,48,0,0.65);
  border-radius: 50%;
  animation: sticky-spin 0.7s linear infinite;
}

@keyframes sticky-spin {
to { transform: rotate(360deg); }
}

.sticky-shake { animation: sticky-shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97); }

@keyframes sticky-shake {
10%, 90% { transform: translateX(-1px); }

20%, 80% { transform: translateX(2px); }

30%, 50%, 70% { transform: translateX(-3px); }

40%, 60% { transform: translateX(3px); }
}

body[data-card] .sticky-note[data-page="home"] { display: none; }

.clear-all-btn {
  position: fixed;
  bottom: max(28px, calc(16px + env(safe-area-inset-bottom)));

  left: 0;
  z-index: 9750;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  background: rgba(17,17,17,0.92);
  border: none;
  border-radius: 100px;
  padding: 12px 18px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
  transform: translateY(8px);
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.clear-all-btn.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.clear-all-btn:hover { background: rgba(26,26,24,0.98); }

@media (max-width: 768px) {
.clear-all-btn {
    bottom: auto !important;
    top: 16px;
    right: 16px;
    left: auto !important;
  }

.clear-all-btn__rest { display: none; }
}

.draw-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9700;
}

body[data-tool="pen"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M17 3a2.828 2.828 0 1 1 4 4L7.5 20.5 2 22l1.5-5.5L17 3z' fill='white' stroke='%231A1A18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 2 22, crosshair;
  overflow: hidden;
}

html:has(body[data-tool="pen"]) {
  overflow: hidden;
}

body[data-tool="pen"] .canvas-overlay {
  overflow: hidden;
}

body[data-tool="sticky"] {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 24 24'%3E%3Cpath d='M5 3h14a2 2 0 012 2v10l-7 7H5a2 2 0 01-2-2V5a2 2 0 012-2z' fill='%23FFF9B1' stroke='%231A1A18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14 21v-7h7' fill='none' stroke='%231A1A18' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") 0 0, crosshair;
}

input, textarea, select { cursor: text; }

.thoughts-section {
  padding: 80px 0 80px;
  display: none;
}

.thoughts-eyebrow {

  max-width: 760px;
  margin: 0 auto 80px;
  padding: 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  text-align: left;
}

.thoughts-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 28px;
}

@media (max-width: 899px) {
.thoughts-strip { height: auto !important; }

.thought-card   { left: auto !important; top: auto !important; position: relative !important; }
}

@media (max-width: 699px) {
.thoughts-strip { grid-template-columns: 1fr; padding: 0 20px; }
}

.thought-card {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 130px;
  border-radius: 20px;
  background: var(--bg);
  color: var(--txt);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease-out),
              transform 0.55s var(--ease-out);
}

.thoughts-strip.is-visible .thought-card {
  opacity: 1;
  transform: translateY(0);
}

.thought-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
  transition: transform 0.25s var(--ease-out) !important;
}

.thought-card:active {
  transform: translateY(-2px) scale(1.01) !important;
  transition: transform 0.1s ease !important;
}

.thought-pattern {
  flex-shrink: 0;
  width: 120px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(0,0,0,0.08);
}

.thought-pattern svg {
  width: 85%;
  height: 85%;
  color: var(--txt);
  opacity: 0.38;
}

.thought-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 8px;
}

.thought-title {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.thought-tag {
  display: inline-block;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.55;
}

@media (min-width: 900px) {
.thoughts-strip {
    display: block;
    position: relative;
    height: 560px;
    padding: 0;
  }

.thought-card {
    position: absolute;
    width: 240px;
    height: 240px;
    flex-direction: column;
    border-radius: 24px;
    min-height: unset;
    opacity: 0;
    transform: translateY(70px);
  }

.thought-card:nth-child(1) { transform: rotate(-5deg)  translateY(70px); z-index:1; }

.thought-card:nth-child(2) { transform: rotate(4deg)   translateY(70px); z-index:2; }

.thought-card:nth-child(3) { transform: rotate(-2deg)  translateY(70px); z-index:3; }

.thought-card:nth-child(4) { transform: rotate(7deg)   translateY(70px); z-index:4; }

.thought-card:nth-child(5) { transform: rotate(3deg)   translateY(70px); z-index:5; }

.thought-card:nth-child(6) { transform: rotate(-7deg)  translateY(70px); z-index:6; }

.thought-card:nth-child(7) { transform: rotate(5deg)   translateY(70px); z-index:7; }

.thought-card:nth-child(8) { transform: rotate(-3deg)  translateY(70px); z-index:8; }

.thoughts-strip.is-visible .thought-card:nth-child(1) { opacity:1; transform: rotate(-5deg);  }

.thoughts-strip.is-visible .thought-card:nth-child(2) { opacity:1; transform: rotate(4deg);   }

.thoughts-strip.is-visible .thought-card:nth-child(3) { opacity:1; transform: rotate(-2deg);  }

.thoughts-strip.is-visible .thought-card:nth-child(4) { opacity:1; transform: rotate(7deg);   }

.thoughts-strip.is-visible .thought-card:nth-child(5) { opacity:1; transform: rotate(3deg);   }

.thoughts-strip.is-visible .thought-card:nth-child(6) { opacity:1; transform: rotate(-7deg);  }

.thoughts-strip.is-visible .thought-card:nth-child(7) { opacity:1; transform: rotate(5deg);   }

.thoughts-strip.is-visible .thought-card:nth-child(8) { opacity:1; transform: rotate(-3deg);  }

.thoughts-strip.is-visible .thought-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.04) !important;
    z-index: 20 !important;
    transition: transform 0.25s var(--ease-out) !important;
  }

.thoughts-strip.is-visible .thought-card:active {
    transform: rotate(0deg) translateY(-6px) scale(1.01) !important;
    transition: transform 0.1s ease !important;
  }

.thought-pattern {
    width: 100%;
    height: 130px;
    align-self: auto;
  }

.thought-pattern svg {
    width: 100%;
    height: 100%;
  }

.thought-body {
    padding: 10px 16px 14px;
    justify-content: space-between;
    gap: 0;
  }
}

.thoughts-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0 max(28px, calc((100% - 760px) / 2 + 28px));
}

@media (max-width: 699px) {
.thoughts-actions { margin-left: 20px; }
}

.thoughts-more-strip .thought-card {
  position: relative !important;
  width: auto !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  opacity: 1 !important;
}

.thoughts-more-strip .thought-card:hover {
  transform: translateY(-5px) scale(1.02) !important;
}

.thoughts-more-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 28px 0;
  max-width: calc(760px + 56px);
}

@media (min-width: 900px) {
.thoughts-more-strip {
    grid-template-columns: repeat(4, 1fr);
    padding: 28px max(28px, calc((100% - 760px) / 2 + 28px)) 0;
    max-width: 100%;
  }
}

@media (max-width: 699px) {
.thoughts-more-strip { grid-template-columns: 1fr; padding: 14px 20px 0; }
}

.thoughts-show-more-btn,
.thoughts-see-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.thoughts-show-more-btn:hover,
.thoughts-see-all-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

.thoughts-show-more-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.about-actions {
  margin-top: 32px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.about-experience-btn .btn-arrow-circle,
.about-more-btn .btn-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;

  background: #0E4C4B;
  color: #fff;
  margin-left: 6px;
  flex-shrink: 0;
  transition: transform 0.22s var(--ease-out), background 0.2s ease;
}

.about-experience-btn:hover .btn-arrow-circle {
  transform: translate(2px, -2px);
}

.about-more-btn:hover .btn-arrow-circle {
  transform: translateY(2px);
}

.about-more-btn[aria-expanded="true"] .btn-arrow-circle--down {
  transform: rotate(180deg);
}

.about-more-btn[aria-expanded="true"]:hover .btn-arrow-circle--down {
  transform: rotate(180deg) translateY(2px);
}

.about-more-body {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.5s var(--ease-out),
              opacity   0.4s ease,
              margin-top 0.4s var(--ease-out),
              margin-bottom 0.4s var(--ease-out);
}

.about-more-body.is-expanded {
  max-height: 1200px;
  opacity: 1;
  margin-top: 0;
  margin-bottom: 28px;
}

.about-more-body p {
  font-family: 'Inter', sans-serif;
  font-size: 1.12rem;
  line-height: 1.78;
  color: var(--text-2);
  margin-bottom: 20px;
}

.about-more-scatter-wrap {
  position: relative;
}

.about-more-scatter-canvas {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  z-index: 2;
}

.about-more-scatter-canvas.is-assembled {
  opacity: 0;
}

.about-more-body p {
  opacity: 0;
  transition: opacity 0.35s ease;
}

.about-more-body.is-assembled p {
  opacity: 1;
}

.about-block {
  display: flex;
  flex-direction: column;
}

.about-block > .about-title,
.about-block > .about-chip,
.about-block > .about-meta { order: 1; }

.about-more-body,
.about-more-scatter-wrap { order: 2; }

.about-actions   { order: 3; }

.about-block > svg.about-curve-svg,
.about-block > .about-scatter-wrap { order: 4; }

.testimonials {

  padding: 60px 0 120px;
  margin-top: 0;
  position: relative;
  z-index: 0;
}

.testimonials,
.testimonials * { overflow-anchor: none; }

.testimonials-header {
  padding: 0 28px 60px;
  max-width: 660px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
}

.testimonials-heading {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 6.25vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
}

.testimonials-sticky {
  display: flex;
  flex-direction: column;
  overflow: visible;
  box-sizing: border-box;
}

.testimonials-track {
  display: flex;
  gap: 0;

  padding: 40px 50vw 60px;
  will-change: transform;
  justify-content: flex-start;

  align-items: center;
}

.testimonial-card {
  flex-shrink: 0;
  width: 260px;
  min-height: 320px;
  border-radius: 20px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;

  opacity: 0;
  margin-left: -55px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease, z-index 0s;
  user-select: none;
  cursor: default;
}

.testimonial-card:first-child { margin-left: 0; }

.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  opacity: 0.55;
}

.testimonial-card:nth-child(1) { background: #2A6042; color: #C8F0D8; z-index:1; transform: rotate(-2deg)   translateY(70px); }

.testimonial-card:nth-child(2) { background: #F5C340; color: #2A1A00; z-index:2; transform: rotate(1.2deg)  translateY(70px); }

.testimonial-card:nth-child(3) { background: #2D1B56; color: #E0D0F8; z-index:3; transform: rotate(-0.8deg) translateY(70px); }

.testimonial-card:nth-child(4) { background: #FF7A00; color: #1A1A18; z-index:4; transform: rotate(1.8deg)  translateY(70px); }

.testimonial-card:nth-child(5) { background: #FFFFFF; color: #1A1A18; z-index:5; transform: rotate(-1.4deg) translateY(70px); }

.testimonial-card:nth-child(6) { background: #2D62D4; color: #FFFFFF; z-index:6; transform: rotate(0.6deg)  translateY(70px); }

.testimonial-card:nth-child(7) { background: #BB316F; color: #FFFFFF; z-index:7; transform: rotate(-1.9deg) translateY(70px); }

.testimonial-card:nth-child(8) { background: #111111; color: #F4F3EE; z-index:8; transform: rotate(1.1deg)  translateY(70px); }

.testimonials-track.is-visible .testimonial-card              { opacity: 1; }

.testimonials-track.is-visible .testimonial-card:nth-child(1) { transform: rotate(-2deg);   }

.testimonials-track.is-visible .testimonial-card:nth-child(2) { transform: rotate(1.2deg);  }

.testimonials-track.is-visible .testimonial-card:nth-child(3) { transform: rotate(-0.8deg); }

.testimonials-track.is-visible .testimonial-card:nth-child(4) { transform: rotate(1.8deg);  }

.testimonials-track.is-visible .testimonial-card:nth-child(5) { transform: rotate(-1.4deg); }

.testimonials-track.is-visible .testimonial-card:nth-child(6) { transform: rotate(0.6deg);  }

.testimonials-track.is-visible .testimonial-card:nth-child(7) { transform: rotate(-1.9deg); }

.testimonials-track.is-visible .testimonial-card:nth-child(8) { transform: rotate(1.1deg);  }

.testimonial-card:hover {
  transform: rotate(0deg) translateY(-6px) scale(1.04) !important;
  z-index: 10;
}

@media (max-width: 768px) {
.testimonials-track {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 20px 60px;
    gap: 24px;
  }

.testimonial-card {
    width: 100%;
    margin-left: 0;
    position: sticky;
    transform: none !important;
  }

.testimonial-card:nth-child(1) { top: 14vh; }

.testimonial-card:nth-child(2) { top: calc(14vh + 14px); }

.testimonial-card:nth-child(3) { top: calc(14vh + 28px); }

.testimonial-card:nth-child(4) { top: calc(14vh + 42px); }

.testimonial-card:nth-child(5) { top: calc(14vh + 56px); }

.testimonial-card:nth-child(6) { top: calc(14vh + 70px); }

.testimonial-card:nth-child(7) { top: calc(14vh + 84px); }

.testimonial-card:nth-child(8) { top: calc(14vh + 98px); }
}

.testimonial-quote {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.90rem;
  font-weight: 400;
  line-height: 1.6;
  color: inherit;
  flex: 1;
  margin: 0 0 16px;

  max-height: 8em;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card.is-expanded .testimonial-quote {

  max-height: 60em;
}

.testimonial-more-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid currentColor;
  color: inherit;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 10px 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  margin: 0 0 16px;
  opacity: 0.85;
  transition: opacity 0.18s ease, background 0.18s ease;
}

.testimonial-more-btn:hover { opacity: 1; background: rgba(0,0,0,0.06); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-role {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  color: inherit;

  opacity: 0.90;
  margin-top: 2px;
}

.drag-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #1A1714;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.drag-cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 699px) {
.testimonials-sticky    { overflow: visible; }

.testimonials-track     { flex-direction: column; padding: 0 20px; gap: 16px; transform: none !important; }

.testimonial-card       { width: 100%; margin-left: 0; opacity: 0; transform: translateY(28px) rotate(0deg) !important;
                            transition: opacity 0.5s ease, transform 0.5s ease; }

.testimonial-card.is-visible { opacity: 1; transform: translateY(0) rotate(0deg) !important; }
}

@media (max-width: 699px) {

.hero           { padding-top: 20px; }

.about-block    { padding-top: 20px; }

.testimonials   { padding-top: 20px; }

.thoughts-section { padding-top: 20px; }

.faq-section    { padding-top: 20px; }

.contact        { padding-top: 20px; }
}

@media (min-width: 900px) {
.hero { padding: 104px 17.5vw 104px; }

.work { padding: 80px 28px 18vh calc(15vw + 100px); }

.work-panel { padding-left: 17.5vw; }
}

#intro-pills {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#intro-pills.is-visible { opacity: 1; }

#intro-pills .footer-pill,
#footer-pills .footer-pill,
#canvas-footer-pills .footer-pill { pointer-events: auto; }

body[data-tool="sticky"] #intro-pills,
body[data-tool="sticky"] #intro-pills .footer-pill,
body[data-tool="sticky"] #footer-pills .footer-pill,
body[data-tool="sticky"] #canvas-footer-pills .footer-pill,
body[data-tool="pen"] #intro-pills,
body[data-tool="pen"] #intro-pills .footer-pill,
body[data-tool="pen"] #footer-pills .footer-pill,
body[data-tool="pen"] #canvas-footer-pills .footer-pill { pointer-events: none; }

#footer-pills {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;

  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#footer-pills.is-visible,
#footer-pills.has-spawned { opacity: 1; }

#canvas-footer-pills {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9200;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease;
}

#canvas-footer-pills.is-visible { opacity: 1; }

.footer-pill {
  position: absolute;
  height: clamp(30px, 3vw, 48px);
  padding: 0 clamp(11px, 1.2vw, 20px);
  border-radius: clamp(15px, 1.5vw, 24px);
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(0.7rem, 1.05vw, 1rem);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -0.01em;
  will-change: top, transform;
}

@keyframes pill-squish {
0%   { transform: var(--pill-rot) scaleX(1)    scaleY(1);    }

35%  { transform: var(--pill-rot) scaleX(1.12) scaleY(0.78); }

65%  { transform: var(--pill-rot) scaleX(0.96) scaleY(1.08); }

100% { transform: var(--pill-rot) scaleX(1)    scaleY(1);    }
}

.footer-pill.squish { animation: pill-squish 0.28s ease forwards; }

.intro-stage {
  position: relative;
  height: 100vh;
  display: flex;

  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background-color: var(--bg);
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
}

.intro-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;

}

.intro-giant {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(3rem, 13.5vw, 18rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  user-select: none;
  cursor: default;

  visibility: hidden;

}

.intro-giant.is-split {
  visibility: visible;
}

.intro-supporting {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.45;
  color: var(--text-2, rgba(0,0,0,0.65));
  margin: 18px 28px 0 10vw;

  max-width: min(50vw, calc(90vw - 28px));
}

@media (max-width: 699px) {
.intro-supporting {

    font-size: 18px;
    margin: 10px 16px 0;
    max-width: 79vw;
  }
}

@media (max-width: 699px) {
.intro-stage { align-items: flex-start; padding-top: 40vh; }
}

body.is-sun-phase .intro-giant {
  position: relative;
  z-index: 700;
}

.intro-quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8%;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  transition: opacity 0.5s ease;
}

.intro-quote.is-visible { opacity: 1; }

.intro-quote em { font-style: italic; }

.intro-quote__attr {
  display: block;
  margin-top: 0.6em;
  font-size: 0.65em;
  color: var(--text-2);
  letter-spacing: 0;
}

.intro-stopwatch {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content: flex-end;

  padding-bottom: calc(50vh + clamp(1.5rem, 6.75vw, 9rem) + 1rem);
  pointer-events: none;
  z-index: 5;

  visibility: hidden;
}

.intro-stopwatch.is-active {
  visibility: visible;
}

.sw-assembly {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}

.sw-crowns {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.sw-crown {
  width: 28px;
  height: 16px;
  border: 1.5px solid var(--text);
  border-radius: 6px;
  background: var(--bg);
  opacity: 0.7;
}

.sw-crown:first-child { transform: rotate(-38deg); }

.sw-crown:last-child  { transform: rotate(38deg); }

.sw-strings {
  position: absolute;

  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 180px;
  overflow: visible;
  pointer-events: none;
  opacity: 0.28;
  color: var(--text);
  z-index: -1;
}

.sw-circle {
  position: relative;
  width: 180px;
  height: 180px;
  border: 1.5px solid var(--text);
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.sw-pill {
  border: 1.5px solid var(--text);
  border-radius: 100px;
  padding: 0.4em 1em;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-stopwatch__time {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.1rem, 2.8vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1;
}

.sw-messages {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 1rem;
  width: 90vw;
  max-width: 680px;
  flex-shrink: 0;
}

.sw-messages > * {
  grid-column: 1;
  grid-row: 1;
}

.intro-stopwatch__label {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-2);
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease 0.7s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
}

.intro-stopwatch.is-stopped .intro-stopwatch__label {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.intro-stopwatch__replay {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  pointer-events: auto;
}

.sw-record {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text-2);
  line-height: 1.5;
  opacity: 0;
  text-align: center;
  transition: opacity 0.5s ease 0.2s;
}

.intro-stopwatch.is-active .sw-record { opacity: 1; }

.intro-stopwatch.is-stopped .sw-record { opacity: 0; pointer-events: none; }

.sw-record__user { display: none; }

@media (max-width: 768px) {
.sw-record__line { display: block; }
}

.intro-char {
  display: inline-block;
  opacity: 0;
  transform: translateX(-70px);
  transition: opacity 0.55s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.intro-char.is-in {
  opacity: 1;
  transform: translateX(0);
}

.intro-char--space {
  display: inline;
}

.intro-word {
  white-space: nowrap;
}

.site-footer {
  position: relative;
  color: var(--text);
  min-height: 100svh;
  height: 100svh;
  display: flex;
  flex-direction: column;
  padding: 48px 28px;
  overflow: visible;
}

.footer-inner {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.footer-contact {
  position: relative;

  z-index: 50;
  width: 100%;
  display: flex;
  justify-content: center;

  margin-top: 36px;
}

#footer-pills { z-index: 1 !important; }

.footer-scatter-canvas {
  display: block;
  position: absolute;
  pointer-events: none;
}

.footer-giant {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.22em;
  line-height: 1;
  margin: 0 -28px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10.5vw;
  font-weight: 400;
  cursor: default;
  user-select: none;
  letter-spacing: -0.03em;
  color: var(--text);
  white-space: nowrap;

}

.footer-word-wrap {
  display: inline-block;
  overflow: hidden;
  line-height: 1.1;
}

.footer-word {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.footer-word-wrap:nth-child(1) .footer-word { transition-delay: 0s; }

.footer-word-wrap:nth-child(2) .footer-word { transition-delay: 0.12s; }

.footer-word-wrap:nth-child(3) .footer-word { transition-delay: 0.24s; }

.site-footer.is-visible .footer-word { transform: translateY(0); }

.footer-bottom {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer-nav { display: flex; gap: 24px; flex-wrap: nowrap; flex-direction: row; align-items: center; }

.footer-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-2);
  text-decoration: none;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(-14px);
  transition: color 0.2s ease, opacity 0.4s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link:hover { color: var(--text); }

.site-footer.is-visible .footer-link { opacity: 1; transform: translateY(0); }

.site-footer.is-visible .footer-nav .footer-link:nth-child(1) { transition-delay: 0s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(2) { transition-delay: 0.07s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(3) { transition-delay: 0.14s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(4) { transition-delay: 0.21s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(5) { transition-delay: 0.28s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(6) { transition-delay: 0.35s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(7) { transition-delay: 0.42s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(8) { transition-delay: 0.49s; }

.site-footer.is-visible .footer-nav .footer-link:nth-child(9) { transition-delay: 0.56s; }

@media (max-width: 699px) {
.site-footer { padding: 40px 20px; }

.footer-giant {
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-left: -20px;
    margin-right: -20px;
    font-size: 14vw;
  }

.footer-nav { display: none; }

.footer-bottom { flex-direction: column; gap: 24px; align-items: center; }
}

@media (min-width: 900px) {
.site-footer { padding: 48px 17.5vw; }

.footer-giant { margin-left: -17.5vw; margin-right: -17.5vw; }

}

::-webkit-scrollbar { width: 5px; }

::-webkit-scrollbar-track { background: var(--bg); }

::-webkit-scrollbar-thumb { background: var(--surface); border-radius: 3px; }

.frame-resize-handle {
  position: absolute;
  right: -17px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 52px;
  background: #1A1A18;
  border-radius: 6px;
  cursor: ew-resize;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: opacity 0.25s var(--ease-out);
  z-index: 20;
}

.frame-resize-handle span {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.frame-resize-handle::after {
  content: attr(data-cols) ' col';
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-3);
  pointer-events: none;
}

.frame-resize-handle::before {
  content: '';
  position: absolute;
  inset: -14px -16px;
  cursor: ew-resize;
}

body[data-tool="transform"] .frame-resize-handle {
  opacity: 1;
  pointer-events: all;
  cursor: ew-resize;
}

body[data-tool="transform"] .cards-frame {
  border-color: rgba(43, 111, 212, 0.35);
}

body[data-tool="transform"] .cards-frame > .handle {
  background: #2B6FD4;
  opacity: 1 !important;
}

.cards-frame.grid-mode .cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--ccux-gap, 10px);
  align-content: flex-start;
}

.cards-frame.grid-mode .card {
  flex: 0 0 var(--ccux-card-w, auto);
}

.cards-frame.grid-mode .card:nth-child(1),
.cards-frame.grid-mode .card:nth-child(2),
.cards-frame.grid-mode .card:nth-child(3),
.cards-frame.grid-mode .card:nth-child(4) {
  transform: none !important;
  animation: none !important;
}

.cards-frame.grid-mode .card:hover {
  transform: translateY(-6px) scale(1.02) !important;
  z-index: 5;
}

.cards-frame.grid-mode .card.active {
  transform: translateY(-4px) !important;
  z-index: 4;
}

body[data-responsive-cols] .cards-frame {
  max-width: 100%;
}

body[data-responsive-cols] .cards-row {
  flex-wrap: wrap;
}

body[data-responsive-cols] .cards-row .card:nth-child(1),
body[data-responsive-cols] .cards-row .card:nth-child(2),
body[data-responsive-cols] .cards-row .card:nth-child(3),
body[data-responsive-cols] .cards-row .card:nth-child(4) {
  transform: none !important;
  animation: none !important;
}

body[data-responsive-cols] .cards-row .card:hover {
  transform: translateY(-6px) scale(1.02) !important;
}

body[data-responsive-cols="2"] .cards-row .card {
  flex: 1 1 calc(50% - 5px);
  max-width: calc(50% - 5px);
}

body[data-responsive-cols="1"] .cards-row .card {
  flex: 1 1 100%;
  max-width: 100%;
}

@media (max-width: 600px) {
.cards-frame {
    padding: 12px 10px 10px;
  }

.cards-row {
    flex-wrap: wrap;
    gap: 8px;
  }

.cards-row .card {
    flex: 1 1 calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
    min-width: 0 !important;
  }

.cards-row .card .card-inner {
    margin: 10px 10px 6px;
    aspect-ratio: 4/3;
  }

.cards-row .card .card-label {
    font-size: min(11cqi, 1.8rem);
    padding: 4px 10px 12px 10px;
  }

.cards-row .card:nth-child(1),
  .cards-row .card:nth-child(2),
  .cards-row .card:nth-child(3),
  .cards-row .card:nth-child(4) {
    transform: none !important;
    animation: none !important;
  }
}

.hero-text {
  transition: transform 0.45s var(--ease-out), opacity 0.4s var(--ease-out);
}

body[data-card] .hero-text {
  transform: translateX(-52px);
  opacity: 0;
  pointer-events: none;
}

body[data-card] .intro-stage,
body[data-card] .intro-giant,
body[data-card] .intro-chips,
body[data-card] .process-hed-row,
body[data-card] .process-chips,
body[data-card] #process-panel {
  display: none !important;
}

.cards-frame {
  transition: border-color 0.25s var(--ease-out),
              transform 0.5s var(--ease-out),
              opacity 0.45s var(--ease-out);
}

body[data-card] .cards-frame {
  width: max-content;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
}

body[data-card] .cards-frame .card .card-inner {
  display: none;
}

body[data-card] .cards-frame .card .card-label {
  padding: 18px 16px 14px;
  font-size: clamp(3.0rem, 4.2vw, 4.0rem);
}

body[data-card] .cards-frame .card {
  width: 380px;
  min-width: 380px;
  flex-shrink: 0;
  padding-bottom: 150px;
  animation: none;
  transition: transform 0.38s var(--ease-spring);
}

body[data-card] .cards-frame .card:hover {
  box-shadow: none;

}

body[data-card="apps"]     .cards-frame .card--apps,
body[data-card="websites"] .cards-frame .card--websites,
body[data-card="brand"]    .cards-frame .card--brand,
body[data-card="ai"]       .cards-frame .card--ai {
  display: none;
}

.nav-back { display: none; }

body[data-card] .nav-back { display: flex; }

.nav-transform { display: none !important; }

@keyframes canvas-expand {
from {
    clip-path: inset(15% round 20px);
    opacity: 0.4;
  }

to {
    clip-path: inset(0% round 0px);
    opacity: 1;
  }
}

.canvas-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;

  background-color: var(--bg);

  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: auto;
  opacity: 0;
  pointer-events: none;
}

body[data-card] .canvas-overlay {
  opacity: 1;
  pointer-events: all;
  overscroll-behavior: contain;
}

.canvas-overlay.is-entering {
  animation: canvas-expand 0.52s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.canvas-nav-cover {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: var(--bg);
  clip-path: inset(15% round 20px);
  opacity: 0.4;
  pointer-events: none;
  transition: clip-path 0.52s cubic-bezier(0.16, 1, 0.3, 1),
              opacity   0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.canvas-nav-cover.is-active {
  clip-path: inset(0% round 0px);
  opacity: 1;
  pointer-events: all;
}

.canvas-back {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transition: background 0.2s, border-color 0.2s,
              transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}

body[data-card] .canvas-back {
  opacity: 1;
  pointer-events: all;
}

.canvas-back:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(0,0,0,0.25);
  transform: rotate(90deg);
}

body[data-view="deck"] .canvas-back:hover {
  transform: translateY(-3px);
}

.canvas-space {
  position: relative;
  min-height: max(100vh, 900px);
  min-width: max(110vw, 1200px);
  padding: 0 40px 80px;
  margin-top: 5vh;
  --ca-anchor: calc(50% - 960px);
}

body[data-card="apps"]     .canvas-space { min-height: 3850px; }

body[data-card="websites"] .canvas-space { min-height: 2000px; }

body[data-card="brand"]    .canvas-space { min-height: 2200px; }

.canvas-identity {
  display: none;
}

.canvas-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 100px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

body[data-card="apps"]     .canvas-chip { background: var(--apps-in);  color: #ffffff; }

body[data-card="websites"] .canvas-chip { background: var(--web-in);   color: #0d0d0d; }

body[data-card="brand"]    .canvas-chip { background: var(--brand-in); color: #0d0d0d; }

body[data-card="ai"]       .canvas-chip { background: var(--ai-in);    color: #ffffff; }

.canvas-text-flow {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  user-select: none;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out) 0.2s;
}

body[data-card] .canvas-text-flow {
  opacity: 1;
}

.canvas-view-toggle {
  display: none;
  gap: 6px;
  align-items: center;
}

body[data-card] .canvas-view-toggle { display: flex; }

.view-btn {
  width: 34px; height: 34px;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: rgba(0,0,0,0.4);
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.view-btn.active { background: rgba(255,255,255,0.9); color: rgba(0,0,0,0.75); border-color: rgba(0,0,0,0.35); border-width: 2px; }

body[data-card="apps"]     .view-btn.active { background: rgba(255,255,255,0.9); color: var(--apps-in);  border-color: var(--apps-in);  border-width: 2px; }

body[data-card="websites"] .view-btn.active { background: rgba(255,255,255,0.9); color: var(--web-in);   border-color: var(--web-in);   border-width: 2px; }

body[data-card="brand"]    .view-btn.active { background: rgba(255,255,255,0.9); color: #0d0d0d;         border-color: rgba(0,0,0,0.35); border-width: 2px; }

body[data-card="ai"]       .view-btn.active { background: rgba(255,255,255,0.9); color: var(--ai-in);    border-color: var(--ai-in);    border-width: 2px; }

.canvas-deck {
  position: absolute;

  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  perspective: 420px;
  perspective-origin: 50% -20%;
  display: none;
  width: 520px;
  height: 360px;
}

body[data-view="deck"] .canvas-deck { display: block; }

body[data-view="deck"] .canvas-space { overflow: hidden; }

.canvas-page-intro {
  position: sticky;
  left: 0;
  z-index: 10;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  padding: 60px 0 60px;

  margin-top: 0;
}

body[data-card="apps"]     .canvas-page-intro { margin-top: calc(50vh + 550px - 3850px); }

body[data-card="websites"] .canvas-page-intro { margin-top: calc(50vh + 550px - 2000px); }

body[data-card="brand"]    .canvas-page-intro { margin-top: calc(50vh + 550px - 2200px); }

.about-block--canvas-anchor {
  position: absolute !important;
  top: calc(50vh + 230px) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%);
  margin: 0 !important;
  padding: 0 !important;
  z-index: 11;
  width: min(640px, 90vw);
  max-width: none;
  box-sizing: border-box;
  text-align: left;
}

.about-block--canvas-anchor > .about-body { text-align: left; }

.canvas-page-intro--apps     { display: none; }

.canvas-page-intro--websites { display: none; }

.canvas-page-intro--brand    { display: none; }

body[data-card="apps"]     .canvas-page-intro--apps     { display: block; }

body[data-card="websites"] .canvas-page-intro--websites { display: block; }

body[data-card="brand"]    .canvas-page-intro--brand    { display: block; }

.canvas-page-intro .about-block {
  width: 100%;
  max-width: 540px;
  padding-top: 40px;
  padding-left: 28px;
  padding-right: 28px;
  box-sizing: border-box;
}

.canvas-page-intro .about-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 20px;
}

.canvas-page-intro .faq-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 28px;
}

.canvas-page-intro .faq-section {
  width: 100%;
  max-width: 540px;
  padding: 40px 28px 60px;
  box-sizing: border-box;
}

.canvas-page-intro .faq-item {
  width: 100%;
}

.canvas-page-intro .faq-item:hover,
.canvas-page-intro .faq-item:has(.faq-q[aria-expanded="true"]) {
  width: 100%;
}

.canvas-page-intro .faq-q {
  font-size: 1.18rem;
  white-space: normal;
  align-items: flex-start;
}

.canvas-page-intro .faq-q__text {
  white-space: normal;
}

.canvas-page-intro .about-block { visibility: hidden; }

.canvas-bottom {
  position: sticky;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg);
  background-image: radial-gradient(circle, rgba(0,0,0,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  padding-top: 100px;
}

.canvas-bottom .contact {
  width: 100%;
  max-width: 540px;
  padding: 0;
}

.canvas-site-footer {
  width: 100%;
}

.deck-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transform-origin: center bottom;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  will-change: transform;
}

.deck-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.deck-card[data-deck-pos="0"] { transform: translateZ(0px)    translateY(0px);    z-index: 5; }

.deck-card[data-deck-pos="1"] { transform: translateZ(-70px)  translateY(-20px);  z-index: 4; opacity: 0.90; }

.deck-card[data-deck-pos="2"] { transform: translateZ(-140px) translateY(-36px); z-index: 3; opacity: 0.78; }

.deck-card[data-deck-pos="3"] { transform: translateZ(-210px) translateY(-50px); z-index: 2; opacity: 0.62; }

.deck-card[data-deck-pos="4"] { transform: translateZ(-280px) translateY(-60px); z-index: 1; opacity: 0.44; }

.deck-card[data-deck-pos="5"],
.deck-card[data-deck-pos="6"],
.deck-card[data-deck-pos="7"],
.deck-card[data-deck-pos="8"] { opacity: 0; pointer-events: none; transform: translateZ(-300px) translateY(-65px); z-index: 0; }

.deck-card[data-deck-pos="0"]:hover { transform: translateZ(0px) translateY(-18px); }

.deck-card::after {
  content: '↗';
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  font-size: 15px;
  color: rgba(0,0,0,0.72);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}

.deck-card[data-deck-pos="0"]:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.deck-card--exit {
  transform-origin: top center !important;
  transform: rotateX(80deg) translateZ(160px) !important;
  opacity: 0 !important;
  pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.55, 0.06, 0.68, 0.19), opacity 0.38s ease 0.08s !important;
}

.canvas-cluster {
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

body[data-card] .canvas-cluster {
  position: absolute;
  top: 50vh;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  pointer-events: all;
}

.canvas-cluster-row {
  display: flex;
  align-items: center;
  gap: 36px;
}

.canvas-card-col {
  display: none;
}

.canvas-cluster-label {
  display: none;
}

.canvas-card.card {

  flex-shrink: 0;
  transform: none;
  animation: none;
  pointer-events: none;
  cursor: default;
}

.canvas-card.card .card-inner {
  margin: 20px;
}

.canvas-card.card .card-label {
  padding: 4px 20% 16px 20px;
}

.canvas-desc {
  width: clamp(320px, 52vw, 620px);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
  color: rgba(0,0,0,0.65);
}

.canvas-desc .word {
  display: inline-block;
  white-space: nowrap;
}

body[data-card="apps"]     .canvas-desc { color: var(--apps-out); }

body[data-card="websites"] .canvas-desc { color: var(--web-out); }

body[data-card="brand"]    .canvas-desc { color: var(--brand-out); }

body[data-card="ai"]       .canvas-desc { color: var(--ai-out); }

.canvas-device-ph {
  width: 110px;
  height: 220px;
  border-radius: 24px;
  background: rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

@media (max-width: 699px) {
.about-curve-svg { display: none; }

}

#screensaver {
  position: fixed; inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#screensaver.ss-active { opacity: 1; }

#ss-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

#ss-cursor {
  position: absolute;
  width: 24px; height: 24px;
  pointer-events: none;
  transform: translate(-4px, -20px);
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  opacity: 0;
  transition: opacity 0.3s;
}

#screensaver.ss-active #ss-cursor { opacity: 1; }

.ss-sticky {
  position: fixed;
  width: 164px;
  min-height: 164px;
  background: #FFF9B1;
  border-radius: 2px;
  padding: 8px;
  box-shadow: 2px 4px 14px rgba(0,0,0,0.16), 0 1px 3px rgba(0,0,0,0.08);
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) rotate(var(--ss-rot, -3deg));
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.ss-sticky-text {
  display: block;
  padding: 6px 2px 2px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8rem;
  line-height: 1.55;
  color: #3a3000;
  white-space: pre-line;
}

.ss-sticky.ss-sticky--visible {
  opacity: 1;
  transform: translateY(0) rotate(var(--ss-rot, -3deg));
}

.folio-lb {
  position: fixed;
  inset: 0;
  z-index: 9500;
  pointer-events: none;
  visibility: hidden;
}

.folio-lb__bg {
  position: absolute;
  inset: 0;
  opacity: 0.99;
  cursor: default;
  pointer-events: auto;
  overflow: hidden;
}

.folio-lb__logo {
  position: fixed;
  top: 40px;
  left: var(--logo-left, 28px);
  z-index: 2;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.6) translateY(10px);
  transform-origin: top left;
  transition: opacity 0.24s ease 0.3s,
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.3s,
              color 0.15s ease;
  pointer-events: auto;
}

.folio-lb.is-open .folio-lb__logo { opacity: 1; transform: scale(0.6) translateY(0); }

.folio-lb__logo:hover { color: #fff; }

@media (max-width: 699px) {
.folio-lb__logo { left: 20px !important; top: 28px; }
}

@media (min-width: 900px) {
.folio-lb__logo { top: 48px; }
}

.folio-lb__top-bar {
  position: fixed;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease 0.34s;
}

.folio-lb.is-open .folio-lb__top-bar { opacity: 1; pointer-events: auto; }

@media (min-width: 900px) {
.folio-lb__top-bar { top: 48px; }
}

@media (max-width: 699px) {
.folio-lb__top-bar {
    top: 64px;
    left: 20px;
    transform: none;
    justify-content: flex-start;
  }
}

.folio-lb__pill-wrap { position: relative; }

.folio-lb__title {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.folio-lb__title:hover { background: rgba(0, 0, 0, 0.62); }

.folio-lb__title-caret {
  color: rgba(255,255,255,0.55);
  transition: transform 0.22s ease, color 0.15s ease;
}

.folio-lb__title[aria-expanded="true"] .folio-lb__title-caret {
  transform: rotate(180deg);
  color: rgba(255,255,255,0.9);
}

.folio-lb__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  margin: 0;
  padding: 6px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  min-width: 150px;

  max-height: calc(100vh - 120px);
  overflow: hidden;
  list-style: none;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  column-gap: 6px;
}

#folio-lb-filter-menu {
  flex-wrap: nowrap;
  max-height: none;
}

.folio-lb__pill-wrap.menu-open .folio-lb__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.folio-lb__menu-item {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  list-style: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.folio-lb__menu-item:hover { background: rgba(255,255,255,0.1); color: #fff; }

.folio-lb__menu-item--active { background: rgba(255,255,255,0.14); color: #fff; }

.folio-lb__desc {
  position: fixed;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.65);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: center;
  max-width: min(560px, calc(100vw - 120px));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease 0.2s;
}

.folio-lb.is-open .folio-lb__desc { opacity: 1; }

@media (max-width: 699px) {
.folio-lb__desc { top: 72px; font-size: 0.68rem; }
}

@media (max-width: 899px) {
.folio-lb__desc { display: none; }
}

.folio-lb__close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.2s ease 0.32s,
              transform 0.24s cubic-bezier(0.34, 1.56, 0.64, 1) 0.32s,
              background 0.15s ease;
}

.folio-lb.is-open .folio-lb__close { opacity: 1; transform: scale(1); }

.folio-lb__close:hover { background: rgba(0, 0, 0, 0.62); }

.folio-lb__carousel {
  position: absolute;
  top: 68px;
  bottom: 72px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  gap: 4px;
  padding-left: 80px;
  padding-right: 80px;

}

.folio-lb__carousel::-webkit-scrollbar { display: none; }

.folio-lb__slide {
  flex: 0 0 auto;
  min-width: min(255px, 85vw);
  height: min(425px, 59.5vh);
  border-radius: 14px;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, opacity;
  cursor: grab;
}

.folio-lb__carousel.is-dragging .folio-lb__slide { cursor: grabbing; }

.folio-lb__carousel.is-dragging { cursor: grabbing; }

.folio-lb__slide img,
.folio-lb__slide video {
  display: block;
  height: 100%;
  width: auto;
  max-width: 85vw;
  border-radius: inherit;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.folio-lb__slide--title {
  background: var(--flb-color);
  width: min(380px, 85vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 175px 28px 28px;
  box-sizing: border-box;
  flex-shrink: 0;
  overflow: hidden;
  gap: 10px;
}

@media (min-width: 900px) {
.folio-lb__slide--title { width: min(520px, 85vw); }
}

.lb-title-text {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.85);
  overflow: hidden;
  word-break: break-word;
}

.lb-title-char {
  display: inline-block;
  opacity: 0;
}

@media (max-width: 899px) {
.lb-title-char { opacity: 1; }
}

.lb-title-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);

  margin-top: 50px;
  opacity: 0;
  transition: opacity 0.4s ease 0.5s;
}

.folio-lb.is-open .lb-title-tagline { opacity: 1; }

.lb-title-desc { display: none; }

@media (max-width: 899px) {
.lb-title-desc {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 50px;
    opacity: 0;
    transition: opacity 0.4s ease 0.5s;
    order: 1;
  }

.lb-title-tagline {
    margin-top: 6px;
    transition: opacity 0.4s ease 0.55s;
    order: 2;
  }

.folio-lb.is-open .lb-title-desc { opacity: 1; }
}

.folio-lb__nav {
  position: fixed;
  bottom: 20px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease 0.36s, background 0.15s ease;
}

.folio-lb.is-open .folio-lb__nav { opacity: 1; }

.folio-lb__nav:hover { background: rgba(255, 255, 255, 0.18); }

.folio-lb__nav--prev { right: 70px; }

.folio-lb__nav--next { right: 20px; }

@media (max-width: 899px) {
.folio-lb__nav--prev {
    right: 16px;
    bottom: auto;
    top: calc(50% - 52px);
  }

.folio-lb__nav--next {
    right: 16px;
    bottom: auto;
    top: calc(50% + 10px);
  }

.folio-lb__nav--prev svg,
  .folio-lb__nav--next svg { transform: rotate(90deg); }

.folio-lb__nav--pause { display: none !important; }
}

@media (min-width: 900px) {
.folio-lb__hint { display: none !important; }

.folio-lb__nav {
    bottom: 140px;
    right: auto;
  }

.folio-lb__nav--prev  { left: calc(50% - 92px); }

.folio-lb__nav--pause { left: calc(50% - 21px); }

.folio-lb__nav--next  { left: calc(50% + 50px); }
}

.folio-lb__hint {
  position: absolute;
  bottom: max(92px, calc(80px + env(safe-area-inset-bottom)));
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.55s ease 0.5s, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.folio-lb.is-open .folio-lb__hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.folio-lb__hint-chevron {
  color: rgba(255, 255, 255, 0.55);
  animation: sh-bounce 1.5s ease-in-out infinite;
}

.folio-lb__hint-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  text-transform: lowercase;
}

@keyframes folio-slide-reveal {
from { clip-path: inset(0 100% 0 0); }

to   { clip-path: inset(0 0% 0 0); }
}

.folio-slide-reveal {
  animation: folio-slide-reveal 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.folio-flip-clone {
  position: fixed;
  pointer-events: none;
  z-index: 9600;
  will-change: transform;
  transform-origin: top left;
  overflow: hidden;
  border-radius: 14px;
}

.folio-flip-clone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pb-section {

  padding: 100px 28px 120px calc(15vw + 100px);
  max-width: none;
  margin: 0;
}

@media (min-width: 900px) {
.pb-section { padding: 100px 28px 120px calc(15vw + 100px); max-width: none; margin: 0; }
}

@media (max-width: 768px) {
.pb-section { padding: 64px 20px 80px; }
}

.pb-title {

  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(0.79rem, 3.1vw, 3.06rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--text);
  text-align: left;
  max-width: min(100%, calc(90vw - 28px));
  margin: 0 28px 60px 0;
}

@media (max-width: 699px) {
.pb-title {
    font-size: clamp(0.72rem, 3.96vw, 1.62rem);
    margin: 0 16px 32px 0;
  }
}

.pb-sub {
  font-size: 1rem;
  color: rgba(0,0,0,0.42);
  margin: 0 0 44px;
  max-width: 50ch;
  line-height: 1.6;
}

.pb-controls {
  display: flex;
  align-items: center;
  gap: 20px;

  margin: 0 0 36px 0;
  max-width: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.pb-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pb-filter {
  padding: 7px 16px;
  border: none;
  border-radius: 100px;
  background: #ffffff;
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  color: inherit;
  transition: background 0.18s, color 0.18s;
}

.pb-filter:hover { background: #f4f3ee; }

.pb-filter--active {
  background: #111;
  border-color: #111;
  color: #fff;
}

@media (max-width: 768px) {
.pb-filters { flex-wrap: nowrap; gap: 5px; margin-bottom: 28px; }

.pb-filter {
    font-size: 0.78rem;
    padding: 6px 11px;
    white-space: nowrap;
  }
}

.pb-tier-row { margin-left: 16px; }

.pb-group { display: none; }

.pb-group--active {
  display: flex;
  flex-direction: column;

  gap: 20px;
  align-items: flex-start;
}

.pb-group--active > .pb-bar {
  margin: 0 !important;
}

.pb-group--active > .pb-bar--collapsible[aria-hidden="true"] {
  display: none !important;
}

@media (min-width: 769px) {

.pb-group--active { align-items: flex-start; }

.pb-group--active > .pb-bar { transform: none; }

.pb-group--active > .pb-bar:hover,
  .pb-group--active > .pb-bar.is-open { transform: none; }
}

.pb-bar {
  width: var(--bar-w);
  min-width: 220px;

  border-radius: var(--r-card);
  overflow: hidden;
  cursor: pointer;
  --bar-w: 48%;
  text-align: left;
  transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.pb-bar,
.pb-bar--design,
.pb-bar--system,
.pb-bar--build,
.pb-bar--combo {
  background: #ffffff !important;
  color: #111111 !important;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pb-bar .pb-bar__name,
.pb-bar .pb-bar__tier,
.pb-bar .pb-bar__starting,
.pb-bar .pb-bar__disclaimer,
.pb-bar .pb-bar__price,
.pb-bar .pb-bar__price::after,
.pb-bar .pb-bar__desc,
.pb-bar .pb-bar__list li,
.pb-bar .pb-bar__list li::before {
  color: #111111 !important;
}

.pb-bar .pb-bar__btn {
  background: rgba(0, 0, 0, 0.08) !important;
  color: #111111 !important;
}

.pb-bar:hover .pb-bar__btn,
.pb-bar.is-open .pb-bar__btn {
  background: rgba(0, 0, 0, 0.14) !important;
}

.pb-bar .pb-bar__head,
.pb-bar .pb-bar__body,
.pb-bar .pb-bar__info {
  text-align: left;
}

.pb-bar--design { background: #FFD905; color: #111; }

.pb-bar--system { background: #1A1A18; color: #F4F3EE; }

.pb-bar--build  { background: #0E4C4B; color: #fff; }

.pb-bar--build .pb-bar__name,
.pb-bar--build .pb-bar__tier,
.pb-bar--build .pb-bar__disclaimer,
.pb-bar--build .pb-bar__price { color: #fff; opacity: 1; }

.pb-bar--build .pb-bar__price::after { color: #fff; opacity: 1; }

.pb-bar--system .pb-bar__name,
.pb-bar--system .pb-bar__tier,
.pb-bar--system .pb-bar__disclaimer,
.pb-bar--system .pb-bar__price { color: #F4F3EE; opacity: 1; }

.pb-bar--system .pb-bar__price::after { color: #F4F3EE; opacity: 1; }

.pb-bar--system .pb-bar__desc,
.pb-bar--system .pb-bar__list li { color: #F4F3EE; opacity: 1; }

.pb-bar--system .pb-bar__list li::before { color: #F4F3EE; opacity: 1; }

.pb-bar--system:hover .pb-bar__disclaimer,
.pb-bar--system.is-open .pb-bar__disclaimer { opacity: 1; }

.pb-bar--system .pb-bar__btn { background: rgba(255,255,255,0.18); }

.pb-bar--system:hover .pb-bar__btn { background: rgba(255,255,255,0.28); }

.pb-bar--system.is-open .pb-bar__btn { background: rgba(255,255,255,0.28); }

.pb-bar--build:hover .pb-bar__disclaimer,
.pb-bar--build.is-open .pb-bar__disclaimer { opacity: 1; }

.pb-bar--build .pb-bar__desc,
.pb-bar--build .pb-bar__list li { color: #fff; opacity: 1; }

.pb-bar--build .pb-bar__list li::before { color: #fff; opacity: 1; }

.pb-bar--combo  { background: #3B5BFF; color: #fff; }

.pb-bar--combo .pb-bar__name,
.pb-bar--combo .pb-bar__tier,
.pb-bar--combo .pb-bar__disclaimer { color: #fff; opacity: 1; }

.pb-bar--combo .pb-bar__price,
.pb-bar--combo .pb-bar__price::after { color: #fff; opacity: 1; }

.pb-bar:hover,
.pb-bar.is-open {

  width: 100%;
  max-width: calc(100vw - (15vw + 100px) - 5vw);
  border-radius: 41px;
}

@media (max-width: 768px) {
.pb-bar { width: 100% !important; position: relative; }

.pb-bar__head {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 22px 18px;
  }

.pb-bar__info { flex: 1 1 auto; min-width: 0; }

.pb-bar__name { font-size: 1.1rem; }

.pb-bar__price {
    align-self: center;
    flex: 0 0 auto;
    font-size: clamp(1.5rem, 8.5vw, 2rem);
    text-align: right;
  }

.pb-bar__price::after { font-size: 0.55rem; margin-top: 6px; }

.pb-bar > .pb-bar__head > .pb-bar__btn,
  .pb-bar > .pb-bar__btn {
    position: static;
    flex: 0 0 auto;
    margin-left: 4px;
  }

.pb-bar .pb-bar__btn { transform: rotate(135deg); }

.pb-bar:hover .pb-bar__btn { transform: rotate(135deg); }

.pb-bar.is-open .pb-bar__btn { transform: rotate(315deg); }
}

.pb-bar__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 44px 28px;
  color: inherit;
  user-select: none;
}

.pb-bar__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.pb-bar__name {

  font-size: 1.572rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: normal;
  overflow-wrap: break-word;
}

.pb-bar__tier-row {
  display: flex;
  align-items: center;
  gap: 7px;
  overflow: hidden;
}

.pb-bar__tier {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  flex-shrink: 0;
}

.pb-bar__starting { display: none; }

.pb-bar__disclaimer {
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.02em;
  opacity: 0;
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  transition: opacity 0.35s ease, max-width 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.pb-bar__disclaimer::before {
  content: '·';
  margin-right: 7px;
}

.pb-bar:hover .pb-bar__disclaimer,
.pb-bar.is-open .pb-bar__disclaimer {
  opacity: 0.4;
  max-width: 260px;
}

.pb-bar__price {
  font-size: clamp(2.4rem, 4.5vw, 3rem);
  font-weight: 400;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  text-align: right;
}

.pb-bar__price::after {
  content: 'Starting';
  display: block;
  margin-top: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.45;
}

.pb-bar__btn {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: background 0.2s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pb-bar:hover .pb-bar__btn { background: rgba(0,0,0,0.13); transform: rotate(180deg); }

.pb-bar.is-open .pb-bar__btn { transform: rotate(45deg); background: rgba(0,0,0,0.13); }

.pb-bar.is-open:hover .pb-bar__btn { transform: rotate(45deg); }

.pb-bar--combo .pb-bar__btn { background: rgba(0,0,0,0.18); }

.pb-bar--combo:hover .pb-bar__btn,
.pb-bar--combo.is-open .pb-bar__btn { background: rgba(0,0,0,0.28); }

.pb-bar__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  transition: max-height 0.52s cubic-bezier(0.16, 1, 0.3, 1),
              padding-bottom 0.4s ease;
}

.pb-bar:hover .pb-bar__body,
.pb-bar.is-open .pb-bar__body {
  max-height: 560px;
  padding-bottom: 86px;
}

.pb-bar__body::before {
  content: '';
  display: block;
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin-bottom: 18px;
}

.pb-bar--combo .pb-bar__body::before { background: rgba(255,255,255,0.18); }

.pb-bar__desc {
  margin: 0 0 18px;
  font-size: 0.92rem;
  line-height: 1.68;
  opacity: 0.62;
  max-width: 72ch;
}

.pb-bar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 36px;
}

@media (max-width: 560px) {
.pb-bar__list { grid-template-columns: 1fr; }
}

.pb-bar__list li {
  font-size: 0.875rem;
  opacity: 0.7;
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.pb-bar__list li::before {
  content: '↗';
  font-size: 0.68rem;
  opacity: 0.5;
  flex-shrink: 0;
}

.pb-bar__footer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 40px;
  margin-top: auto;
}

.pb-bar__more-text {
  font-size: 0.78rem;
  opacity: 0.45;
  white-space: nowrap;
  color: inherit;
}

.pb-bar__more-btn {
  display: inline-flex;
  align-items: center;
  background: #111;
  color: #fff !important;
  border: none;
  border-radius: 20px;
  padding: 7px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.pb-bar__more-btn:hover { background: #333; }

.pb-bar--static { transition: none; }

.pb-section.is-scroll-locked .pb-bar { pointer-events: none; }

@media (max-width: 899px) {
.folio-lb__carousel {
    top: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 110px 16px calc(100dvh - 160px) 16px;
    gap: 8px;
  }

.folio-lb__slide {
    width: 100%;
    min-width: unset;
    height: auto;
  }

.folio-lb__slide img,
  .folio-lb__slide video {
    width: 100%;
    height: auto;
    max-width: unset;
    max-height: 70vh;
  }

.folio-lb__slide--title {
    width: 100%;
    min-width: unset;
    height: auto;
    min-height: 280px;
    padding: 175px 28px 28px;
  }

.folio-lb__slide--title .lb-title-word { display: block; }

.folio-lb__slide--title .lb-title-space { display: none; }
}

.work-zoom {
  position: relative;
  height: 480vh;
  margin-top: -120px;
  z-index: 1;
}

.work-zoom__sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.work-zoom__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

.work-zoom__canvas {
  position: relative;
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
}

.wz-tile {
  position: absolute;
  border-radius: 12px;

  overflow: visible;
  background: var(--surface);
  text-decoration: none;
  cursor: pointer;
  transform:
    translate(-50%, -50%)
    translate(var(--ox, 0vw), var(--oy, 0vh))
    scale(var(--sc, 1.8));
  transform-origin: center center;

  opacity: var(--op, 0);
}

.wz-tile:hover {
  transform:
    translate(-50%, -50%)
    translate(var(--ox, 0vw), var(--oy, 0vh))
    scale(var(--sc, 1.8))
    translateY(-4px);
  transition: transform 0.25s var(--ease-out);
}

.wz-tile::after {
  content: attr(data-label);
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 32px 0 12px;
  background: #fff url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M7 17L17 7'/><path d='M7 7h10v10'/></svg>") no-repeat right 10px center;
  border-radius: 100px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #111;
  white-space: nowrap;
  opacity: 0;
  transform: scale(calc(1 / var(--sc, 1)));
  transform-origin: top right;
  transition: opacity 0.2s var(--ease-out);
  pointer-events: none;
}

.wz-tile:hover::after { opacity: 1; }

.wz-tile img,
.wz-tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;

  border-radius: 12px;
}

.work-zoom__caption {
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--text);
  text-align: center;
  z-index: 10;
  pointer-events: none;
  max-width: min(820px, 90vw);
  margin: 0;
  padding: 0;
}

.wz-caption-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.wz-caption-word.is-in {
  opacity: 1;
  transform: translateY(0);
}

.work-zoom__controls {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  pointer-events: auto;
  opacity: 0;

  transition: opacity 0.5s ease;
}

.work-zoom__sticky.controls-ready .work-zoom__controls { opacity: 1; }

.work-zoom__controls .work-view-toggle,
.work-zoom__controls .work-filters {
  margin-top: 0;
}

.work-zoom__controls .work-filters[data-target="zoom"] {
  max-width: 0;
  margin-left: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  white-space: nowrap;
  flex-wrap: nowrap;
  transition: max-width 0.5s ease, margin-left 0.5s ease,
              opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.work-zoom[data-view="tiles"] .work-zoom__controls .work-filters[data-target="zoom"],
.work-zoom[data-view="rows"]  .work-zoom__controls .work-filters[data-target="zoom"] {
  max-width: 500px;
  margin-left: 16px;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.work-zoom[data-view="rows"],
.work-zoom[data-view="tiles"] {
  height: auto;
}

.work-zoom[data-view="rows"]  .work-zoom__sticky,
.work-zoom[data-view="tiles"] .work-zoom__sticky {
  position: relative;
  height: auto;

  padding: 50vh 28px 28px;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

.work-zoom[data-view="rows"]  .work-zoom__caption,
.work-zoom[data-view="tiles"] .work-zoom__caption {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 0 auto;
  display: block;
}

.work-zoom[data-view="rows"]  .work-zoom__controls,
.work-zoom[data-view="tiles"] .work-zoom__controls {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  margin: 0 auto;
}

.work-zoom[data-view="rows"]  .work-zoom__stage,
.work-zoom[data-view="tiles"] .work-zoom__stage {
  display: none;
}

.work-zoom__grid-host {
  position: relative;
  z-index: 1;

  padding: 100px 28px 80px 128px;
  max-width: 1280px;
  margin: 0 auto;
}

.work-zoom__grid-host .work-panel__grid {
  margin-left: auto;
  margin-right: auto;
}

.work-zoom__grid-host .work-panel__grid:not(.work-panel__grid--tiles) {
  justify-content: center;
}

.work-zoom[data-view="zoom"] .work-zoom__grid-host { display: none; }

.work-panel:not(.has-grid) { display: none; }

@media (max-width: 899px) {
.work-panel { display: none !important; }
}

.highscore-panel {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  bottom: calc(max(28px, 16px + env(safe-area-inset-bottom)) + 56px + 14px);
  width: min(calc(100vw - 32px), 480px);
  background: #1a1a18;
  border-radius: 14px;
  overflow: hidden;
  z-index: 9850;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease,
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 60px rgba(0,0,0,0.6),
              0 0 0 1px rgba(255,255,255,0.06) inset;
}

.highscore-panel.is-open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.highscore-panel__close {
  all: unset;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  transition: color 0.15s, background 0.15s;
}

.highscore-panel__close:hover {
  color: #fff;
  background: rgba(255,255,255,0.14);
}

.highscore-panel__inner {
  padding: 22px 24px 22px;
}

.highscore-panel__heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 0 14px;
}

.highscore-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hs-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  min-height: 38px;
}

.hs-row:hover {
  background: rgba(255,255,255,0.07);
}

.hs-rank {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-align: right;
}

.hs-name {
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hs-time {
  font-variant-numeric: tabular-nums;
  color: rgba(255,255,255,0.7);
}

.hs-row--entry {
  background: rgba(255, 200, 80, 0.13);
  outline: 1px solid rgba(255, 200, 80, 0.35);
  grid-template-columns: 28px 1fr auto auto;
}

.hs-row--entry:hover { background: rgba(255, 200, 80, 0.18); }

.hs-row--entry .hs-rank { color: rgba(255, 200, 80, 0.95); font-weight: 700; }

.hs-input {
  all: unset;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 5px 9px;
  min-width: 0;
}

.hs-input::placeholder { color: rgba(255,255,255,0.4); }

.hs-input:focus { background: rgba(255,255,255,0.15); }

.hs-submit {
  all: unset;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a18;
  background: rgba(255, 200, 80, 0.95);
  padding: 7px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.hs-submit:hover { background: #ffd066; }

.hs-submit[disabled] { opacity: 0.45; cursor: not-allowed; }

.highscore-panel__error {
  margin: 10px 0 0;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: #ff8a8a;
  min-height: 14px;
}

.highscore-panel__error[aria-hidden="true"] { visibility: hidden; }

.highscore-list:empty::after {
  content: 'No scores yet — be the first.';
  display: block;
  padding: 16px 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.intro-stopwatch__highscores {
  margin-left: 10px;
}

@media (max-width: 480px) {
.highscore-panel { width: calc(100vw - 24px); }

.highscore-panel__inner { padding: 20px 18px; }

.hs-row { font-size: 12px; padding: 8px; gap: 8px; }

.hs-row--entry { grid-template-columns: 24px 1fr auto auto; }
}

.highscore-panel__tagline {
  margin: -8px 0 14px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

.highscore-panel__tagline strong {
  color: rgba(255, 200, 80, 0.95);
  font-weight: 600;
}

.pb-bar--collapsible {

  max-height: 1200px;
  opacity: 1;
  transition: max-height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              opacity   0.35s ease,
              margin    0.55s cubic-bezier(0.16, 1, 0.3, 1),
              padding   0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.pb-bar--collapsible[aria-hidden="true"] {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
}

@media (min-width: 769px) {
.pb-bar--collapsible[aria-hidden="true"] {

    transform: translateX(-15%) translateY(-8px) scale(0.98);
  }
}

.pb-bar__sub-toggle {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid currentColor;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.pb-bar__sub-toggle:hover {
  opacity: 1;
  background: rgba(0,0,0,0.08);
}

.pb-bar--build .pb-bar__sub-toggle:hover,
.pb-bar--system .pb-bar__sub-toggle:hover { background: rgba(255,255,255,0.12); }

.pb-bar__sub-toggle-chev {
  transition: transform 0.3s ease;
}

.pb-bar__sub-toggle[aria-expanded="true"] .pb-bar__sub-toggle-chev {
  transform: rotate(180deg);
}

.au-contact {
  position: fixed;
  top: 40px;

  right: clamp(16px, 2vw, 36px);
  z-index: 9100;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--text-2);
  text-align: right;
  user-select: none;
  transform-origin: top right;
  transition: transform 0.35s var(--ease-out);
}

.au-contact.is-visible { display: flex; }

.au-contact--scrolled  { transform: scale(0.9); }

.au-contact__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.au-contact__link:hover { color: var(--text); }

@media (max-width: 699px) {

.au-contact      {
    top: 26px;
    right: 16px;
    gap: 14px;
    line-height: 1.3;
    font-size: 16px;
  }

.au-contact--scrolled { transform: scale(0.85); }
}

@media (max-width: 699px) {

.intro-giant.is-split { visibility: visible !important; }

.intro-stage { padding-top: max(22vh, 170px) !important; }

.process-hed { margin-bottom: 0 !important; }

.process-chips {
    margin: 24px 16px 12px 0 !important;
    max-width: none !important;
  }

.process-chips .intro-chip {
    white-space: nowrap !important;
    max-width: none !important;
    width: fit-content !important;

    padding: 11px 16px !important;
  }

.work-thumb__meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    padding: 0 16px 18px 0 !important;
  }

.work-thumb__meta-row { min-width: 0 !important; }
}

.au-contact__link { position: relative; }

.au-contact__flash {
  position: absolute;
  top: 50%;
  right: calc(100% + 8px);
  transform: translateY(-50%) translateX(4px);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: #1A1A18;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.au-contact__flash.is-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes ask-ai-wiggle {
0%, 100% { transform: translateY(-2px) rotate(0deg); }

20%      { transform: translateY(-6px) rotate(-2.5deg); }

40%      { transform: translateY(-3px) rotate( 2.5deg); }

60%      { transform: translateY(-6px) rotate(-1.5deg); }

80%      { transform: translateY(-2px) rotate( 1.5deg); }
}

.intro-giant.intro-giant--multiline {
  white-space: normal;
  text-align: left;

  font-size: clamp(1.343rem, 5.26vw, 5.2rem);
  line-height: 1.02;

  max-width: min(100%, calc(90vw - 28px));
  margin: max(170px, 18vh) 28px 0 10vw;
  padding: 0;

  position: relative;
  z-index: 700;
}

@media (max-width: 699px) {
.intro-giant.intro-giant--multiline {

    font-size: clamp(1.807rem, 9.93vw, 4.065rem);

    margin: -70px 16px 0;

    overflow-wrap: normal;
    word-break: keep-all;
    hyphens: none;
  }
}

.intro-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;

  margin: 44px 28px 0 10vw;
  max-width: min(100%, calc(90vw - 28px));
  position: relative;
  z-index: 700;
}

.intro-chip { text-transform: none; }

.intro-chip::first-letter { text-transform: uppercase; }

.intro-chip {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: #1A1A18;
  background: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 10px 12px 10px 22px;
  text-align: left;
  white-space: normal;
  cursor: pointer;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.intro-chip::after {
  content: '';
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A18' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>")
    center / 12px no-repeat;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.intro-chip:hover {
  background: #F4F3EE;
  transform: translateY(-1px);
}

.intro-chip:hover::after {
  transform: translateY(1px);
}

.intro-chip.is-active {
  background: #ffffff;
  color: #1A1A18;
}

.section-pills {
  position: fixed;

  top: 50%;
  left: 24px;
  transform: translateY(-50%);

  z-index: 200;
  pointer-events: none;
  transition: top 0.25s ease, transform 0.25s ease;
}

.section-pills.is-work-expanded {
  top: 120px;
  transform: none;
  max-height: none;
  overflow: visible;
}

.section-pills.is-work-expanded .section-pills__list {
  padding-bottom: 32px;
}

@media (max-height: 820px) {
.section-pills__list { gap: 6px; }

.section-pills__btn  { padding: 6px 14px; font-size: 12px; }

.section-pills__dots { gap: 4px; margin-top: 6px; }

.section-pills__dot { width: 5px; height: 5px; }

.section-pills__dot-label { font-size: 10px; }
}

@media (max-height: 680px) {
.section-pills__list { gap: 4px; }

.section-pills__btn  { padding: 5px 12px; font-size: 11.5px; }

.section-pills__dots { gap: 3px; }
}

.section-pills__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-pills__item {
  opacity: 0;
  transform: translateX(24px);
  pointer-events: none;
}

.section-pills.is-visible .section-pills__item {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  animation: section-pill-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--idx, 0) * 60ms);
}

@keyframes section-pill-in {
from { opacity: 0; transform: translateX(24px); }

to   { opacity: 1; transform: translateX(0);   }
}

.section-pills__btn {
  display: inline-flex;
  align-items: center;

  background: #F4F3EE;
  color: #1A1A18;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.section-pills__btn:hover {
  transform: translateY(-1px);
  background: #ffffff;
}

.section-pills__btn.is-active {
  background: #111111;
  color: #ffffff;
}

.section-pills__item[data-target="work-zoom"] { position: relative; }

.section-pills__btn[data-target="work-zoom"] {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.section-pills__btn-chev {
  flex-shrink: 0;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.section-pills__item.is-open .section-pills__btn-chev {
  transform: rotate(180deg);
  opacity: 1;
}

.section-pills__btn-label {
  white-space: nowrap;
}

.section-pills__filter-menu {
  list-style: none;
  margin: 0;
  padding: 6px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 8px);
  min-width: 130px;
  z-index: 9999;
}

.section-pills__item.is-open .section-pills__filter-menu { display: block; }

.section-pills__filter-menu li { margin: 0; padding: 0; }

.section-pills__filter-menu button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 12px;
  color: #1A1A18;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.section-pills__filter-menu button:hover { background: #F4F3EE; }

.section-pills__filter-menu button.is-active { background: #111; color: #fff; }

.section-pills__dots {
  list-style: none;

  margin: 18px 0 18px 18px;
  padding: 0 0 0 6px;
  display: none;
  flex-direction: column;
  gap: 6px;
  max-height: 50vh;
  overflow-y: auto;
  scrollbar-width: none;
}

.section-pills__dots::-webkit-scrollbar { display: none; }

.section-pills.is-work-expanded .section-pills__item[data-target="work-zoom"] .section-pills__dots {
  display: flex;
}

.section-pills__dot-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text-2);
}

.section-pills__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.45;
  transition: opacity 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.section-pills__dot-label {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.section-pills__dot-item:hover .section-pills__dot {
  opacity: 1;
}

.section-pills__dot-item:hover .section-pills__dot-label {
  opacity: 0.6;
  transform: translateX(0);
  color: var(--text);
}

.section-pills__dot-item.is-active .section-pills__dot {
  background: #111;
  opacity: 1;
  transform: scale(1.25);
}

.section-pills__dot-item.is-active .section-pills__dot-label {
  opacity: 1;
  transform: translateX(0);
  color: #111;
  font-weight: 500;
}

.section-pills__more {
  margin-top: 10px;
  list-style: none;
}

.section-pills__more button {
  background: #F4F3EE;
  color: #1A1A18;
  border: none;
  border-radius: 999px;
  padding: 6px 14px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: background 0.2s ease;
}

.section-pills__more button:hover { background: #ffffff; }

body .work-rail-dots,
body .work-filter-dd {
  display: none !important;
}

@media (max-width: 768px) {
.section-pills { display: none; }
}

.intro-chip--coming-soon {
  cursor: default;
  padding-right: 22px;
}

.intro-chip--coming-soon::after {
  display: none !important;
}

.intro-chip--coming-soon::before {
  content: attr(data-coming-soon);
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: #1A1A18;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.intro-chip--coming-soon:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.intro-chip { position: relative; }

.au-contact { top: 78px !important; }

@media (max-width: 699px) {

.au-contact { top: 26px !important; }
}

.calendly-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10000;
}

.calendly-lightbox.is-open { display: block; }

.calendly-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.calendly-lightbox__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 92vw);
  max-height: 92vh;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 56px 12px 12px;
  box-sizing: border-box;
  animation: calendly-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes calendly-pop {
from { opacity: 0; transform: translate(-50%, -48%) scale(0.97); }

to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.calendly-lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #F4F3EE;
  color: #1A1A18;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.18s ease;
}

.calendly-lightbox__close:hover { background: #e8e6df; }

.calendly-lightbox .calendly-inline-widget {
  height: calc(92vh - 70px) !important;
  max-height: 800px;
}

.intro-chip--cta {
  background: #111111 !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.intro-chip--cta:hover {
  background: #000000 !important;
  color: #ffffff !important;
}

.intro-chip--cta::after {
  background: #ffffff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A18' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>")
    center / 12px no-repeat;
}

.process-chips .intro-chip--cta { display: none !important; }

.process-chips .intro-chip--coming-soon {
  display: none !important;
}

@media (max-width: 699px) {
.intro-chips { margin: 16px 16px 0; gap: 8px; }

.intro-supporting { display: none !important; }

.au-contact, #au-contact { display: none !important; }

.intro-chip  { font-size: 16px; padding: 11px 18px; line-height: 1.3; }

}

.work-zoom__caption,
.work-panel .about-title {
  display: none;
}

.intro-stage {
  height: 88vh;
}

.work-thumb {
  position: relative;
  display: block;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;

  padding: 52px 14px 14px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
}

.work-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.work-thumb__label {
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #1A1A18;
  text-transform: uppercase;
  z-index: 2;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  margin: 0;
}

.work-thumb__cat {
  position: absolute;
  top: 20px;
  right: 56px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #9C9990;
  z-index: 2;
  background: none;
  padding: 0;
  margin: 0;
  text-transform: lowercase;
}

.work-thumb__cat::before { content: '/'; margin-right: 1px; }

.work-thumb::after {
  content: '\22EF';
  position: absolute;
  top: 14px;
  right: 22px;
  color: #C4C1B8;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
  z-index: 2;
}

.work-thumb img,
.work-thumb video,
.work-thumb .work-thumb__video {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 900 / 630;
  display: block;
  border-radius: 10px;
  background: #F4F3EE;
  object-fit: cover;
  opacity: 1;
}

.work-thumb {

}

.work-thumb .work-thumb__video {
  position: absolute;
  top: 52px;
  left: 14px;
  right: 14px;
  bottom: auto;

  width: calc(100% - 28px);
  height: auto;
  aspect-ratio: 900 / 630;

  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background: #F4F3EE;
  opacity: 0;
  z-index: 1;
}

.work-thumb .work-thumb__video.is-playing { opacity: 1; }

.work-zoom[data-view="rows"] {
  display: grid !important;
  grid-template-columns: 248px minmax(0, 1fr);
  padding: 200px 0 0 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

.work-zoom[data-view="rows"] .work-zoom__sticky {
  position: sticky !important;
  top: 110px !important;
  left: auto !important;
  align-self: start;
  width: 220px !important;
  height: auto !important;
  padding: 0 0 0 28px !important;
  margin: 0 !important;
  background: transparent !important;
  z-index: 50 !important;
  display: block !important;
  overflow: visible !important;
}

.work-filter-dd,
.work-filter-dd__menu {
  z-index: 200 !important;
}

.work-zoom[data-view="rows"] .work-zoom__controls {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding: 0;
  background: transparent;
  opacity: 1 !important;
  overflow: visible !important;
}

.work-zoom[data-view="rows"] .work-filters[data-target="zoom"] {
  display: none !important;
}

.work-filter-dd {
  position: relative;
  width: 168px;
  height: 44px;
  background: #fff;
  border: 1px solid rgba(26,26,24,0.08);
  border-radius: 999px;
  padding: 0 6px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.work-filter-dd__label {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  text-transform: none;
  color: #1A1A18;
}

.work-filter-dd__toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1A1A18;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.work-filter-dd__toggle svg { width: 14px; height: 14px; }

.work-filter-dd.is-open .work-filter-dd__toggle { transform: rotate(180deg); }

.work-filter-dd__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(26,26,24,0.08);
  border-radius: 14px;
  padding: 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 30;
}

.work-filter-dd.is-open .work-filter-dd__menu { display: flex; }

.work-filter-dd__menu button {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  text-transform: none;
  background: transparent;
  border: none;
  color: #1A1A18;
  cursor: pointer;
  border-radius: 100px;
}

.work-filter-dd__menu button:hover,
.work-filter-dd__menu button.is-active {
  background: #1A1A18;
  color: #fff;
}

.work-zoom[data-view="rows"] .work-view-toggle[data-target="zoom"] { display: none !important; }

.work-rail-dots {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 12px;
  list-style: none;
  margin: 0;
}

.work-rail-dots__item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: var(--text-2);
  transition: color 0.2s ease;
}

.work-rail-dots__item.is-hidden { display: none; }

.work-rail-dots__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(26,26,24,0.25);
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.work-rail-dots__label {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: transparent;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.work-rail-dots__item:hover .work-rail-dots__label,
.work-rail-dots__item.is-active .work-rail-dots__label {
  color: var(--text);
}

.work-rail-dots__item:hover .work-rail-dots__dot,
.work-rail-dots__item.is-active .work-rail-dots__dot {
  background: var(--text);
  transform: scale(1.4);
}

.work-zoom[data-view="rows"] .work-zoom__grid-host {
  width: 100% !important;
  max-width: none !important;

  padding: 0 0 0 100px !important;
  margin: 0 !important;
  min-width: 0;
  box-sizing: border-box;
}

.work-zoom[data-view="rows"] .work-zoom__grid-host .work-panel__grid {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
  justify-content: stretch !important;
  grid-template-columns: 1fr !important;
}

.work-zoom[data-view="rows"] .work-panel__grid {
  display: flex;
  flex-direction: column;
  gap: 128px;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.work-zoom[data-view="rows"] .work-thumb {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 56px 0 0 22px !important;
  margin: 0 !important;
  border-radius: 14px 0 0 14px !important;
  overflow: visible !important;
  position: relative;
  box-shadow: none !important;
}

.work-zoom[data-view="rows"] .work-thumb.work-thumb--hidden,
.work-zoom[data-view="rows"] .work-thumb.work-thumb--industry-hidden {
  display: none !important;
}

.work-zoom[data-view="rows"] .work-thumb:hover {
  box-shadow: none !important;
  transform: none !important;
}

.work-thumb__meta {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1.4fr) minmax(180px, 1fr);
  gap: 24px;
  padding: 0 150px 22px 0;
  border-bottom: 1px solid rgba(26,26,24,0.06);
  margin-bottom: 18px;
}

.work-thumb__meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.work-thumb__meta-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
}

.work-thumb__meta-value {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
}

.work-thumb__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.work-thumb__pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(26,26,24,0.18);
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--text);
  background: transparent;
}

.work-thumb__media {
  display: flex;
  gap: 14px;
  align-items: stretch;
  padding: 0 22px 22px 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

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

.work-thumb__scroll-left,
.work-thumb__scroll-right {
  position: absolute;
  top: 60px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1A1A18;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.work-thumb__scroll-right { right: 28px; }

.work-thumb__scroll-left  { right: 84px; }

.work-thumb__scroll-left:hover,
.work-thumb__scroll-right:hover { transform: scale(1.06); background: #2A2A28; }

.work-thumb__scroll-left svg,
.work-thumb__scroll-right svg { width: 18px; height: 18px; }

.work-thumb__scroll-left {
  opacity: 0;
  pointer-events: none;
}

.work-thumb.is-scrolled .work-thumb__scroll-left {
  opacity: 1;
  pointer-events: auto;
}

.work-zoom[data-view="rows"] .work-thumb > img,
.work-zoom[data-view="rows"] .work-thumb > .work-thumb__video,
.work-thumb__media > img,
.work-thumb__media > .work-thumb__video {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  margin: 0;
  height: 540px;
  width: auto;
  aspect-ratio: 900 / 630;
  border-radius: 10px;
  background: #F4F3EE;
  object-fit: cover;
  flex-shrink: 0;
}

.work-thumb__media > .work-thumb__video {
  height: 486px !important;
  width: auto !important;

  object-fit: contain !important;
  aspect-ratio: auto !important;
}

.work-thumb__media .work-thumb__gallery-img,
.work-thumb__media > img {
  height: 486px !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;

  aspect-ratio: auto !important;
  border-radius: 10px;
  object-fit: contain !important;
  background: #F4F3EE;
  flex-shrink: 0;
  align-self: flex-start;
}

@media (max-width: 980px) {

.work-thumb__media .work-thumb__gallery-img,
  .work-thumb__media > img,
  .work-thumb__media > .work-thumb__video {
    height: 500px !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    aspect-ratio: auto !important;
  }
}

.work-thumb__expand {
  display: none;
}

@media (max-width: 699px) {

.work-zoom[data-view="rows"] .work-thumb .work-thumb__meta {
    display: none !important;
  }

.work-zoom[data-view="rows"] .work-thumb.is-meta-open .work-thumb__meta {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;

    padding: 0 16px 18px 18px !important;
    margin-top: 14px;
  }

.work-zoom[data-view="rows"] .work-thumb::after {
    display: none !important;
    content: none !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__expand {
    display: inline-flex;
    position: absolute;
    top: 14px;
    right: 16px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    color: #1A1A18;
    border: 1.5px solid rgba(26,26,24,0.18);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 6;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__expand svg {
    width: 12px;
    height: 12px;
    transition: transform 0.2s ease;
  }

.work-zoom[data-view="rows"] .work-thumb.is-meta-open .work-thumb__expand svg {
    transform: rotate(180deg);
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__scroll-left,
  .work-zoom[data-view="rows"] .work-thumb .work-thumb__scroll-right {
    display: none !important;
  }

.work-zoom[data-view="rows"] .work-panel__grid {
    gap: 32px !important;
  }

.work-zoom[data-view="rows"] .work-thumb {
    cursor: pointer;
  }

.work-zoom[data-view="rows"] .work-thumb {

    padding: 56px 4px 0 4px !important;

    margin: 0 auto !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;

    border-radius: 14px !important;
    box-sizing: border-box !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__media {

    padding: 0 0 18px 0 !important;
  }

.work-zoom[data-view="rows"] .work-thumb.is-meta-open .work-thumb__meta {

    padding: 0 16px 18px 18px !important;
  }
}

@media (max-width: 980px) {
.work-zoom[data-view="rows"] {
    grid-template-columns: 1fr;
    gap: 20px;
  }

.work-zoom[data-view="rows"] .work-zoom__sticky {
    position: static !important;
    width: auto !important;
    padding: 0 16px !important;
    margin: 0 0 24px !important;
  }

.work-zoom[data-view="rows"] .work-filters[data-target="zoom"] {
    flex-direction: row;
    flex-wrap: wrap;
  }

.work-zoom[data-view="rows"] .work-filters[data-target="zoom"] button { width: auto; }

.work-rail-dots { display: none; }

.work-zoom[data-view="rows"] .work-thumb {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

.work-zoom[data-view="rows"] .work-thumb > img,
  .work-zoom[data-view="rows"] .work-thumb > .work-thumb__video {
    width: 100%;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__video { width: 100% !important; }

.work-thumb__gallery { overflow-x: auto; padding-bottom: 4px; }
}

.work-zoom[data-view="tiles"] .work-panel__grid,
.work-zoom[data-view="tiles"] .work-panel__grid--tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 28px;
}

@media (max-width: 699px) {

.work-zoom[data-view="rows"] .work-thumb .work-thumb__media {
    display: block !important;
    grid-template-columns: none !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__gallery-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__gallery-img:not(:first-of-type) {
    display: none !important;
  }

.work-zoom[data-view="rows"] .work-thumb[data-video] .work-thumb__gallery-img {
    display: none !important;
  }

.work-zoom[data-view="rows"] .work-thumb[data-video] .work-thumb__video {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__scroll-left,
  .work-zoom[data-view="rows"] .work-thumb .work-thumb__scroll-right {
    display: none !important;
  }
}

.au-contact {
  right: clamp(16px, 2vw, 36px) !important;
}

@media (max-width: 699px) {
.au-contact {
    right: clamp(12px, 3vw, 24px) !important;
  }
}

.chip-text-mobile { display: none; }

@media (max-width: 699px) {

.chip-text-desktop { display: none; }

.chip-text-mobile  { display: inline; }

.work-panel__grid,
  .work-zoom[data-view="rows"] .work-zoom__grid-host {
    margin: 0 !important;
    padding: 0 !important;
  }

.work-zoom[data-view="rows"] {
    row-gap: 0 !important;
  }

.work-zoom[data-view="rows"] .work-zoom__grid-host {
    padding-top: 17px !important;
  }

.work-zoom[data-view="rows"] .work-zoom__sticky {
    margin: 0 !important;
    padding-bottom: 0 !important;
  }

#scroll-hint { display: none !important; }

#intro-pills .footer-pill {
    height: 24px !important;
    padding: 0 9px !important;
    font-size: 0.62rem !important;
    border-radius: 12px !important;
  }

}

@media (max-width: 699px) {
.work-zoom[data-view="rows"] .work-thumb .work-thumb__media {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 8px;
    overflow: hidden !important;
    padding: 0 16px 18px 16px !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__media > img,
  .work-zoom[data-view="rows"] .work-thumb .work-thumb__media .work-thumb__gallery-img {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    aspect-ratio: auto !important;

    object-fit: contain !important;
    object-position: center !important;
    border-radius: 10px !important;
    align-self: stretch !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__media > .work-thumb__video {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 10px !important;
    align-self: stretch !important;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__media:has(> :only-child) {
    grid-template-columns: 1fr;
  }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__media:has(> :only-child) > :only-child {
    grid-row: span 2;
  }

.work-thumb__media[data-layout="2a"] > :nth-child(1) { grid-column: 1; grid-row: 1; }

.work-thumb__media[data-layout="2a"] > :nth-child(2) { grid-column: 2; grid-row: 1; }

.work-zoom[data-view="rows"] .work-thumb .work-thumb__media > :nth-child(n+4) {
    display: none !important;
  }

.work-thumb__media[data-layout="3a"] > :nth-child(1) { grid-row: span 2; grid-column: 1; }

.work-thumb__media[data-layout="3a"] > :nth-child(2) { grid-column: 2; grid-row: 1; }

.work-thumb__media[data-layout="3a"] > :nth-child(3) { grid-column: 2; grid-row: 2; }

.work-thumb__media[data-layout="3b"] > :nth-child(1) { grid-column: 1; grid-row: 1; }

.work-thumb__media[data-layout="3b"] > :nth-child(2) { grid-column: 1; grid-row: 2; }

.work-thumb__media[data-layout="3b"] > :nth-child(3) { grid-row: span 2; grid-column: 2; }

.work-thumb__media[data-layout="3c"] > :nth-child(1) { grid-column: span 2; grid-row: 1; }

.work-thumb__media[data-layout="3c"] > :nth-child(2) { grid-column: 1; grid-row: 2; }

.work-thumb__media[data-layout="3c"] > :nth-child(3) { grid-column: 2; grid-row: 2; }

.work-thumb__media[data-layout="3d"] > :nth-child(1) { grid-column: 1; grid-row: 1; }

.work-thumb__media[data-layout="3d"] > :nth-child(2) { grid-column: 2; grid-row: 1; }

.work-thumb__media[data-layout="3d"] > :nth-child(3) { grid-column: span 2; grid-row: 2; }
}

@media (max-width: 699px) {
.testimonial-card:nth-child(n + 6) {
    display: none !important;
  }
}

@media (max-width: 699px) {
.work {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

.work .about-h1,
  .work .about-chip,
  .work .about-meta__rows {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

.work .about-block { padding-right: 0 !important; }

.work .about-meta--with-card .about-meta__card {
    position: static !important;
    width: 100% !important;
    max-width: 320px !important;
    right: auto !important;
    top: auto !important;
  }
}

@media (max-width: 699px) {
.scroll-hint-suffix { display: none !important; }
}

html[data-campaign] .intro-chips { display: none !important; }

@media (min-width: 700px) {
html[data-campaign] .intro-giant.intro-giant--multiline {
    max-width: min(60vw, calc(90vw - 28px));
  }
}

.campaign-pills {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 36px 28px 0 10vw;
  max-width: min(100%, calc(90vw - 28px));
  position: relative;
  z-index: 600;
}

html[data-campaign] .campaign-pills:not([hidden]) {
  display: flex;
}

.campaign-pill {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
  color: #1A1A18;
  background: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 10px 22px;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  display: inline-flex;
  align-items: center;

  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.campaign-pill:hover {
  background: #F4F3EE;
  transform: translateY(-1px);
}

.campaign-pill::after {
  content: '';
  flex-shrink: 0;
  margin-left: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231A1A18' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>")
    center / 12px no-repeat;
  transition: transform 0.2s ease;
}

.campaign-pill:hover::after { transform: translateY(1px); }

@media (max-width: 699px) {
.campaign-pills {
    margin: 24px 16px 0;
    gap: 8px;
  }

.campaign-pill {
    font-size: 13px;
    padding: 9px 18px;
  }

.campaign-pill::after { width: 22px; height: 22px; }
}

@media (min-width: 700px) and (max-height: 900px) {

.intro-giant.intro-giant--multiline {
    margin-top: 80px;

    max-width: min(72vw, calc(90vw - 28px));
  }

.intro-chips,
  html[data-campaign] .campaign-pills:not([hidden]) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 8px;

    max-width: min(60vw, calc(90vw - 28px));
  }

html[data-campaign] .campaign-pill {
    font-size: 14px;
    padding: 9px 18px;
  }

html[data-campaign] .campaign-pill::after {
    margin-left: 10px;
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 699px) {

.faq-title,
  .about-title,
  .about-h1,
  .trusted-hed,
  .trusted-hed--plain,
  .process-hed,
  .thoughts-eyebrow,
  .work-title-banner__text,
  .pb-title,
  .testimonials-hed,
  .social-profiles-label,
  .contact-heading,
  section.faq-section > .faq-inner > .faq-title,
  .canvas-page-intro .about-title {

    font-size: clamp(1.96rem, 7.7vw, 3.5rem) !important;
    line-height: 1.05 !important;

    margin-left: 16px !important;
    margin-right: 16px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: left !important;
    max-width: calc(100vw - 32px) !important;
  }

.thought-title,
  .work-zoom__caption,
  .faq-q {
    font-size: clamp(1.6rem, 7vw, 2.6rem) !important;
    line-height: 1.2 !important;
  }

.intro-giant.intro-giant--multiline.is-split,
  .process-hed {
    visibility: visible !important;
  }

.intro-char {
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

.process-hed__text {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

.process-panel .faq-item {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

.process-panel .faq-item:has(.faq-q[aria-expanded="true"]) {
    width: 100% !important;
  }

.process-panel .faq-q {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 16px 18px 22px !important;
    gap: 12px !important;
    white-space: normal !important;
    font-size: 15.75px !important;
    font-weight: 500 !important;
    letter-spacing: -0.005em !important;
    line-height: 1.25 !important;
    min-height: 56px !important;
  }

.process-panel .faq-q__text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    font-size: 15.75px !important;
    font-weight: 500 !important;
  }

.process-panel .faq-icon {
    flex-shrink: 0 !important;
    width: 25px !important;
    height: 25px !important;
    background: #FFD600 !important;
    color: #1A1A18 !important;
  }

.process-panel .faq-icon svg {
    width: 13px !important;
    height: 13px !important;
  }

.work .about-meta--with-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 14px !important;
  }

.work .about-meta--with-card .about-meta__card {
    position: relative !important;
    flex: 0 0 auto !important;
    width: 38% !important;
    max-width: 160px !important;
    min-width: 110px !important;
    aspect-ratio: 3 / 4 !important;
    height: auto !important;
    margin: 0 !important;
  }

.work .about-meta--with-card .about-meta__rows {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

.work .about-meta--with-card .about-meta-item {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
  }

.about-chip {
    font-size: 0.78rem !important;
    padding: 6px 14px !important;
    white-space: nowrap !important;
  }

.about-chip__break {
    display: inline !important;
  }

.work .about-h1 {
    max-width: 70% !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }
}

@media (max-width: 699px) {
.work .about-meta--with-card .about-meta__card {
    position: relative !important;
    width: 140px !important;
    max-width: 140px !important;
    height: auto !important;
    aspect-ratio: 3 / 2 !important;
    margin: 8px 0 16px 0 !important;
  }
}

@media (max-width: 699px) {
.faq-section#faq .faq-item {
    width: 100% !important;
    max-width: 100% !important;
  }

.faq-section#faq .faq-q {
    width: 100% !important;
    align-items: center !important;
    white-space: normal !important;
    padding: 18px 16px 18px 22px !important;
    gap: 12px !important;
    justify-content: space-between !important;
  }

.faq-section#faq .faq-q__text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: none !important;
    white-space: normal !important;
  }

.faq-section#faq .faq-icon {
    flex-shrink: 0 !important;
  }
}
