/*
 * TABLE OF CONTENTS
 * 01 — Foundation: tokens, reset, loader, header and hero
 * 02 — Homepage: showreel, About, work, information, capabilities, process
 * 03 — Homepage: writing, contact footer and reveal motion
 * 04 — Responsive: tablet and small laptop
 * 05 — Responsive: mobile
 * 06 — Case studies: Kothay, BuildeCom and TimoDesk
 *
 * Tip: search a section number, such as "02.2", to jump directly to it.
 */

/* ==========================================================================
   01 — FOUNDATION: TOKENS, RESET, ACCESSIBILITY, LOADER, HEADER & HERO
   ========================================================================== */

/* 01.1 — Design tokens */
:root {
  /* Color */
  --color-canvas: #030712;
  --color-lime: #bbf451;
  --color-lime-bright: #c8f037;
  --color-lime-soft: #ebfe98;
  --color-ink: #030712;
  --color-white: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.7);

  /* Typography */
  --font-ui: Sora, sans-serif;
  --font-display: Sora, sans-serif;

  /* Layout */
  --content-width: 1320px;
  --page-gutter: max(24px, calc((100% - var(--content-width)) / 2));
  --radius-sm: 12px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 180ms;
  --duration-base: 220ms;

  /* Compatibility aliases for existing sections */
  --canvas: var(--color-canvas);
  --lime: var(--color-lime);
}

* {
  box-sizing: border-box;
}

html,
/* 01.2 — Document defaults and reset */
body {
  margin: 0;
  min-height: 100%;
  overflow-x: clip;
}

/* Lenis smooth-scroll runtime; kept here to preserve the single site stylesheet. */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-duration: 1ms;
  transition-property: overflow;
  transition-behavior: allow-discrete;
}

body {
  min-width: 320px;
  background: var(--color-canvas);
  color: var(--color-white);
  font-family: var(--font-ui);
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.menu-open {
  position: fixed;
  inset-inline: 0;
  width: 100%;
}

#about,
#project,
#information,
#writing,
#contact {
  scroll-margin-top: 104px;
}

body.is-loading {
  overflow: hidden;
}

/* 01.3 — Page loader */
.site-loader {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  color: #fff;
  background: var(--canvas);
  font: 600 12px/1 var(--font-ui);
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.site-loader img {
  width: 42px;
  height: 42px;
  margin: 0 auto;
  animation: loaderPulse 1.1s ease-in-out infinite alternate;
}

body.is-loaded .site-loader {
  visibility: hidden;
  opacity: 0;
}

.skip-link {
  position: fixed;
  z-index: 3000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--color-ink);
  background: var(--lime);
  font: 700 13px/1 var(--font-ui);
  transform: translateY(-160%);
  transition: transform var(--duration-fast) ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

@keyframes loaderPulse {
  from { scale: 0.88; filter: drop-shadow(0 0 0 rgba(187, 244, 81, 0)); }
  to { scale: 1; filter: drop-shadow(0 0 14px rgba(187, 244, 81, 0.62)); }
}

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

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

/* 01.4 — Homepage hero artwork */
.banner {
  position: relative;
  /* Do not create a stacking context: the fixed topbar must outrank later sections. */
  z-index: auto;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  background: transparent;
}

.banner-visual {
  --banner-cut-1: 0px;
  --banner-cut-2: 0px;
  --banner-cut-3: 0px;
  --banner-cut-4: 0px;
  --banner-cut-5: 0px;
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  background: var(--canvas);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--banner-cut-5)),
    80% calc(100% - var(--banner-cut-5)),
    80% calc(100% - var(--banner-cut-4)),
    60% calc(100% - var(--banner-cut-4)),
    60% calc(100% - var(--banner-cut-3)),
    40% calc(100% - var(--banner-cut-3)),
    40% calc(100% - var(--banner-cut-2)),
    20% calc(100% - var(--banner-cut-2)),
    20% calc(100% - var(--banner-cut-1)),
    0 calc(100% - var(--banner-cut-1))
  );
  will-change: clip-path;
}

.background-art {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1920px;
  height: 610px;
  max-width: none;
  object-fit: cover;
  transform: translateX(-50%) translateY(var(--hero-art-shift, 0));
  transition: transform 120ms linear;
}

.green-shape {
  position: absolute;
  top: 50%;
  right: 0;
  width: 724px;
  height: 1024px;
  max-width: none;
  object-fit: cover;
  transform: translateY(calc(-50% + var(--hero-shape-shift, 0px)));
  transition: transform 120ms linear;
}

.portrait {
  position: absolute;
  top: 92px;
  left: calc(50% + 10px);
  width: min(54.7vw, 1050px);
  height: auto;
  max-width: none;
  transform: translateY(var(--hero-portrait-shift, 0));
  transition: transform 120ms linear;
}

.motion-ready .portrait {
  animation: portraitSpotlight 1.8s var(--ease-out) both;
}

@keyframes portraitSpotlight {
  0% { filter: drop-shadow(0 0 0 rgba(187, 244, 81, 0)); }
  45% { filter: drop-shadow(0 0 42px rgba(187, 244, 81, 0.3)); }
  100% { filter: drop-shadow(0 0 18px rgba(187, 244, 81, 0.1)); }
}

/* 01.5 — Header and primary navigation */
.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1920px, 100%);
  height: 89px;
  padding: 24px var(--page-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  transform: translateX(-50%);
  transition: height var(--duration-base) ease, background var(--duration-base) ease, box-shadow var(--duration-base) ease;
}

.topbar.is-scrolled {
  height: 72px;
  background: rgba(3, 7, 18, 0.78);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
}

.scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(187, 244, 81, 0.65);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  transition: transform 100ms linear;
}

.brand {
  display: flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 36.116px;
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -2.2px;
}

.brand img {
  width: 28px;
  height: 28px;
  margin-right: 1.62px;
}

.brand-dot {
  color: var(--lime);
}

.header-actions,
nav {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 32px;
}

.menu-toggle {
  display: none;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transform-origin: center;
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

nav a {
  position: relative;
  height: 40px;
  padding: 5.5px 15px;
  font: 400 16px/1.6 var(--font-ui);
  transition: color var(--duration-fast) ease;
}

nav a::after {
  position: absolute;
  right: 15px;
  bottom: 3px;
  left: 15px;
  height: 1px;
  background: var(--lime);
  content: "";
  scale: 0 1;
  transform-origin: right;
  transition: scale var(--duration-base) var(--ease-out);
}

nav a:hover,
nav a:focus-visible {
  color: var(--lime);
}

nav a:hover::after,
nav a:focus-visible::after {
  scale: 1;
  transform-origin: left;
}

nav a.is-active {
  color: var(--lime);
}

nav a.is-active::after {
  scale: 1;
  transform-origin: left;
}

/* 01.6 — Shared buttons and focus states */
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 11.5px 22px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-pill);
  color: var(--color-ink);
  font: 600 18px/1.4 var(--font-ui);
  white-space: nowrap;
  transition: transform var(--duration-base) ease, box-shadow var(--duration-base) ease, filter var(--duration-base) ease;
}

.button--lime {
  background-color: var(--color-lime-bright);
  background-image: linear-gradient(to bottom, var(--color-lime-bright), var(--color-lime-soft)), var(--button-texture);
  background-size: auto, 307.2px 307.2px;
  background-blend-mode: normal, plus-lighter;
  box-shadow: 0 3.714px 4.846px rgba(200, 240, 55, 0.15), inset 0 1px 18px #f6ffc8, inset 0 1px 4px #f6ffc8;
}

.button--lime:hover {
  box-shadow: 0 12px 28px rgba(200, 240, 55, 0.4), 0 0 0 5px rgba(200, 240, 55, 0.14), inset 0 1px 18px #f6ffc8, inset 0 1px 4px #f6ffc8;
  filter: brightness(1.06);
  transform: translateY(-4px) scale(1.03);
}

.button--lime:active {
  transform: translateY(-1px) scale(0.98);
}

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

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.magnetic-target {
  translate: var(--magnetic-x, 0) var(--magnetic-y, 0);
  transition: translate 380ms var(--ease-out);
  will-change: translate;
}

.hello-button {
  --button-texture: url("assets/figma-button-texture.png");
}

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

  .button {
    transition: none;
  }

  .magnetic-target {
    translate: none;
  }

  .motion-ready .about-content,
  .motion-ready .information-intro,
  .motion-ready .information-row,
  .motion-ready .process-heading,
  .motion-ready .process-list li,
  .motion-ready .writing-heading,
  .motion-ready .newsletter-feature,
  .motion-ready .writing-article,
  .motion-ready .footer-content,
  .motion-ready .footer-meta,
  .motion-ready .footer-wordmark-wrap,
  .motion-ready .work-card {
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}

/* 01.7 — Homepage hero content */
.hero-copy {
  position: absolute;
  top: 423px;
  left: calc(50% - 660px);
  z-index: 1;
  width: min(1320px, calc(100% - 48px));
  opacity: var(--hero-copy-opacity, 1);
  transform: translateY(var(--hero-copy-shift, 0));
  transition: opacity 120ms linear, transform 120ms linear;
}

.hero-grid {
  width: 100%;
}

.hero-copy-content {
  min-width: 0;
}

h1 {
  margin: 0;
  margin-top: -60px;
  color: #fff;
  font: 200 290px/1.1 Sora, sans-serif;
  letter-spacing: -16px;
  white-space: nowrap;
}

.hero-copy p {
  margin: -40px 0 0 32px;
  font: 200 32px/1.1 var(--font-display);
  white-space: nowrap;
}

.motion-ready:not(.intro-complete) .brand,
.motion-ready:not(.intro-complete) .hero-copy h1,
.motion-ready:not(.intro-complete) .hero-copy p,
.motion-ready:not(.intro-complete) .socials,
.motion-ready:not(.intro-complete) .scroll-down {
  opacity: 0;
}

.motion-ready:not(.intro-complete) .brand {
  translate: 0 -18px;
}

.motion-ready:not(.intro-complete) .hero-copy h1 {
  translate: 0 38px;
}

.motion-ready:not(.intro-complete) .hero-copy p,
.motion-ready:not(.intro-complete) .socials {
  translate: 0 20px;
}

.motion-ready:not(.intro-complete) .scroll-down {
  translate: 0 14px;
}

.motion-ready .brand,
.motion-ready .hero-copy h1,
.motion-ready .hero-copy p,
.motion-ready .socials,
.motion-ready .scroll-down {
  transition: opacity 680ms ease, translate 900ms var(--ease-out);
}

.motion-ready .hero-copy h1 {
  transition-delay: 100ms;
}

.motion-ready .hero-copy p {
  transition-delay: 240ms;
}

.motion-ready .socials {
  transition-delay: 340ms;
}

.motion-ready .scroll-down {
  transition-delay: 460ms;
}

.socials {
  display: flex;
  align-items: center;
  gap: 19.2px;
  margin: 24px 0 0 32px;
}

.socials a {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}

.socials img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Scale the 1920px Figma hero proportionally on ultra-wide / 4K displays. */
@media (min-width: 1921px) {
  .background-art {
    width: 100vw;
    height: 31.77vw;
  }

  .green-shape {
    width: 37.71vw;
    height: 53.33vw;
  }

  .portrait {
    top: 4.8vw;
    left: calc(50% + 0.52vw);
    width: 54.7vw;
    height: auto;
  }

  .topbar {
    left: 0;
    width: 100%;
    height: 4.635vw;
    padding-inline: 15.625vw;
    transform: none;
  }

  .brand {
    font-size: 1.881vw;
    letter-spacing: -0.115vw;
  }

  .brand img {
    width: 1.458vw;
    height: 1.458vw;
    margin-right: 0.084vw;
  }

  .header-actions {
    gap: 1.667vw;
  }

  nav a {
    height: 2.083vw;
    padding: 0.286vw 0.781vw;
    font-size: 0.833vw;
  }

  .button {
    padding: 0.599vw 1.146vw;
    font-size: 0.938vw;
  }

  .socials {
    gap: 1vw;
    margin: 1.25vw 0 0 1.667vw;
  }

  .socials a {
    width: 1.25vw;
    height: 1.25vw;
  }

  .banner .scroll-down {
    top: 40.833vw;
    left: max(1.25vw, calc(50% - 46.615vw));
    gap: 0.365vw;
    width: 1.25vw;
  }

  .banner .scroll-down span {
    height: 4.688vw;
    padding-top: 1.823vw;
    font-size: 0.833vw;
  }

  .banner .scroll-down img {
    width: 1.25vw;
    height: 1.25vw;
  }

}

.scroll-down {
  position: absolute;
  top: 784px;
  left: max(24px, calc(50% - 895px));
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 24px;
}

.scroll-down span {
  height: 90px;
  padding-top: 35px;
  font: 400 16px/normal var(--font-ui);
  white-space: nowrap;
  transform: rotate(-90deg);
}

.scroll-down img {
  width: 24px;
  height: 24px;
}


/* ==========================================================================
   02 — HOMEPAGE: SHOWREEL, ABOUT, WORK, INFORMATION, CAPABILITIES & PROCESS
   ========================================================================== */

/* 02.1 — Product showreel */
.showreel-section {
  --banner-transition-height: clamp(100px, 14vh, 140px);
  --showreel-caption-opacity: 0;
  --showreel-caption-shift: 14px;
  --showreel-stack-opacity: 1;
  --showreel-stack-scale: 1;
  position: relative;
  z-index: 2;
  min-height: calc(200svh + var(--banner-transition-height));
  height: calc(200svh + var(--banner-transition-height));
  margin-top: calc(0px - var(--banner-transition-height));
  padding: 0;
  background: var(--canvas);
}

.showreel-pin {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--canvas);
}

.video-stage {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #09111e;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  opacity: var(--showreel-stack-opacity);
  transform: scale(var(--showreel-stack-scale));
  transform-origin: center center;
  transition: filter 500ms ease;
  will-change: transform, opacity;
}

.showreel-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}

.video-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 24px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: #fff;
  font: 600 14px/1.2 var(--font-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: var(--showreel-caption-opacity);
  transform: translate3d(0, var(--showreel-caption-shift), 0);
  will-change: opacity, transform;
}

.video-caption span:last-child {
  color: var(--lime);
}

.video-is-paused .video-stage {
  filter: brightness(0.55) saturate(0.75);
}

.video-is-paused .showreel-video {
  transform: scale(1.035);
}

/* Keep the stack transition continuous when the video pauses behind About. */
.video-is-paused .showreel-section.is-stacking .video-stage {
  filter: none;
}

.video-is-paused .showreel-section.is-stacking .showreel-video {
  transform: none;
}

/* 02.2 — About section and interactive dot field */
.about-section {
  --about-pointer-x: 50%;
  --about-pointer-y: 50%;
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 100svh;
  margin-top: -100svh;
  padding: 48px 24px;
  place-items: center;
  border-radius: 0;
  background: #dffb86;
  color: #030712;
  box-shadow: 0 -20px 55px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.about-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 35%);
  content: "";
  opacity: var(--about-wash, 0);
  pointer-events: none;
  transition: opacity 180ms linear;
  z-index: 0;
}

.about-pointer-field {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background-image: radial-gradient(circle, rgba(3, 7, 18, 0.23) 0.85px, transparent 1.2px);
  background-size: 18px 18px;
  opacity: 0.23;
  pointer-events: none;
}

.about-pointer-field::before,
.about-pointer-field::after {
  position: absolute;
  inset: 0;
  background-repeat: repeat;
  background-size: 18px 18px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 190ms ease-out;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.about-pointer-field::before {
  background-image: radial-gradient(circle, rgba(3, 7, 18, 0.3) 1.45px, transparent 1.95px);
  -webkit-mask-image: radial-gradient(circle 230px at var(--about-pointer-x) var(--about-pointer-y), #000 0%, rgba(0, 0, 0, 0.82) 35%, transparent 77%);
  mask-image: radial-gradient(circle 230px at var(--about-pointer-x) var(--about-pointer-y), #000 0%, rgba(0, 0, 0, 0.82) 35%, transparent 77%);
}

.about-pointer-field::after {
  background-image: radial-gradient(circle, rgba(3, 7, 18, 0.5) 2.4px, transparent 3px);
  -webkit-mask-image: radial-gradient(circle 130px at var(--about-pointer-x) var(--about-pointer-y), #000 0%, rgba(0, 0, 0, 0.88) 28%, transparent 78%);
  mask-image: radial-gradient(circle 130px at var(--about-pointer-x) var(--about-pointer-y), #000 0%, rgba(0, 0, 0, 0.88) 28%, transparent 78%);
}

@media (hover: hover) and (pointer: fine) {
  .about-section.is-pointer-active .about-pointer-field::before {
    opacity: 0.95;
  }

  .about-section.is-pointer-active .about-pointer-field::after {
    opacity: 0.9;
  }
}

.about-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: min(980px, 100%);
}

.motion-ready .about-section::before {
  opacity: var(--about-wash, 0);
}

.about-heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eyebrow {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
  font: 600 16px/normal Sora, sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0;
  font: 400 clamp(52px, 7vw, 100px)/1 Sora, sans-serif;
  letter-spacing: -0.04em;
}

.about-content h2 span {
  display: block;
}

.motion-ready .about-content h2 span {
  clip-path: inset(0 0 105% 0);
  transform: translateY(105%);
  transition: clip-path 850ms var(--ease-out), transform 850ms var(--ease-out);
}

.motion-ready .about-content.is-inview h2 span {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.motion-ready .about-content.is-inview h2 span:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .about-content.is-inview h2 span:nth-child(3) {
  transition-delay: 180ms;
}

.about-copy {
  width: 100%;
  max-width: 980px;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
  font: 400 24px/1.3 Sora, sans-serif;
  text-wrap: balance;
}

.about-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(797px, 100%);
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(3, 7, 18, 0.18);
  list-style: none;
}

.about-proof li {
  display: grid;
  gap: 3px;
}

.about-proof strong {
  font: 600 clamp(25px, 2.4vw, 36px)/1 var(--font-ui);
  letter-spacing: -0.06em;
}

.about-proof span {
  color: rgba(3, 7, 18, 0.66);
  font: 600 11px/1.35 var(--font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* 02.3 — Selected work cards */
.selected-works {
  position: relative;
  z-index: 3;
  min-height: 3419px;
  overflow: visible;
  background: var(--canvas);
  color: #fff;
  isolation: isolate;
}

.works-stars {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(3, 7, 18, 0.58) 0%, rgba(3, 7, 18, 0.76) 48%, rgba(3, 7, 18, 0.9) 100%),
    url("assets/selected-works-night-sky.jpg");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: calc(var(--stars-progress, 0) * 0.2);
  pointer-events: none;
}

.works-stars::before {
  position: absolute;
  inset: 0;
  content: "";
}

.works-stars::before {
  background: radial-gradient(ellipse at 50% 10%, rgba(66, 104, 147, 0.16), transparent 48%);
  mix-blend-mode: screen;
  opacity: 0.28;
}

.motion-ready .works-stars {
  animation: nightSkyDrift 52s ease-in-out infinite alternate;
}

.motion-ready .works-stars::before {
  animation: nightSkyGlow 12s ease-in-out infinite alternate;
}

@keyframes nightSkyDrift {
  from { background-position: center top; }
  to { background-position: center -120px; }
}

@keyframes nightSkyGlow {
  from { opacity: 0.14; }
  to { opacity: 0.32; }
}

.works-content {
  position: relative;
  z-index: 2;
  width: min(1320px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0;
}

.works-kicker {
  margin: 0 0 120px;
  font: 400 42px/1.1 Sora, sans-serif;
  letter-spacing: -0.06em;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms ease 120ms, transform 850ms var(--ease-out) 120ms;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 610px));
  column-gap: 100px;
  row-gap: 200px;
}

.work-card {
  --column-offset: 0px;
  display: block;
  color: #fff;
  transition: opacity 650ms ease, filter 650ms ease, transform 850ms var(--ease-out), translate 400ms var(--ease-out);
}

.motion-ready .work-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(calc(var(--column-offset) + 72px));
}

.work-card:nth-child(even) {
  --column-offset: 200px;
}

.work-card:nth-child(2) { transition-delay: 70ms; }
.work-card:nth-child(3) { transition-delay: 120ms; }
.work-card:nth-child(4) { transition-delay: 170ms; }
.work-card:nth-child(5) { transition-delay: 220ms; }
.work-card:nth-child(6) { transition-delay: 270ms; }

.work-image {
  position: relative;
  height: 750px;
  overflow: hidden;
  border-radius: 15px;
  background: #ddd;
}

.work-image::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.work-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tilt-enabled .work-image {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 500ms var(--ease-out);
  will-change: transform;
}

.work-timodesk .work-image {
  height: auto;
  aspect-ratio: 610 / 785;
  background: #f3f3f3;
}

.work-timodesk .work-image > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}

.work-timodesk .work-image::after {
  z-index: 2;
}

.work-card:hover .work-image::after {
  opacity: 1;
}

.work-card:hover .work-image > img {
  transform: scale(1.045);
}

.work-card.is-click-zooming .work-image > img {
  transform: scale(1.09);
}

.work-card.is-click-zooming .work-image::after {
  opacity: 0.22;
}

.work-card:hover {
  translate: 0 -8px;
}

.work-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  font-family: Sora, sans-serif;
  min-width: 0;
  line-height: 1.35;
  white-space: nowrap;
  transition: opacity 240ms ease, translate 400ms var(--ease-out), color 300ms ease;
}

.work-card:hover .work-meta {
  translate: 8px 0;
}

.work-card:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 8px;
}

.work-meta strong {
  font-size: 24px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.work-meta span {
  font-size: 18px;
  overflow-wrap: anywhere;
}

.works-revealed .works-kicker,
.motion-ready .work-card.is-inview {
  filter: blur(0);
  opacity: 1;
  transform: translateY(var(--column-offset));
}


/* 02.4 — Custom cursor states */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  width: 10px;
  height: 10px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #030712;
  font: 700 0px/1 Sora, sans-serif;
  mix-blend-mode: difference;
  opacity: 0;
  pointer-events: none;
  transition: width 260ms ease, height 260ms ease, font-size 180ms ease, opacity 160ms ease;
  translate: -50% -50%;
}

.cursor-dot span {
  display: block;
  width: 100%;
  opacity: 0;
  text-align: center;
  transition: opacity 160ms ease 80ms;
}

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

.cursor-dot.is-work-hover {
  width: 132px;
  height: 132px;
  font-size: 19px;
  font-weight: 800;
}

.cursor-dot.is-work-hover::after {
  position: absolute;
  inset: -9px;
  border: 1px solid currentColor;
  border-radius: inherit;
  content: "";
  animation: cursorRipple 1.2s ease-out infinite;
}

@keyframes cursorRipple {
  0% { opacity: 0.72; scale: 0.7; }
  100% { opacity: 0; scale: 1.42; }
}

.cursor-dot.is-work-hover span {
  opacity: 1;
}

.cursor-dot.is-footer-hover {
  width: 64px;
  height: 64px;
}

.cursor-dot.is-social-hover {
  width: 48px;
  height: 48px;
}

/* 02.5 — Experience and information */
.information-section {
  display: grid;
  grid-template-columns: 518px 648px;
  gap: 142px;
  min-height: auto;
  padding: 160px max(24px, calc((100% - 1320px) / 2)) 72px;
  background: #030712;
  color: #fff;
}

.information-intro {
  align-self: start;
}

.information-kicker {
  margin: 0 0 31px;
  color: rgba(255, 255, 255, 0.7);
  font: 400 16px/normal Sora, sans-serif;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.information-intro h2 {
  margin: 0;
  font: 600 28px/1.4 Sora, sans-serif;
}

.cv-button {
  --button-texture: url("assets/figma-button-texture.png");
  display: inline-flex;
  gap: 4px;
  margin-top: 28px;
}

.cv-button img {
  width: 24px;
  height: 24px;
}

.information-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
}

.information-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 25px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.information-row:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.information-row dt {
  color: rgba(255, 255, 255, 0.5);
  font: 400 16px/1.35 Sora, sans-serif;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.information-row dd {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  min-width: 0;
  letter-spacing: 0.32px;
}

.information-row strong {
  font: 600 16px/1.45 Sora, sans-serif;
}

.information-row strong span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.information-row small {
  color: rgba(255, 255, 255, 0.8);
  font: 400 16px/1.5 Sora, sans-serif;
}

@media (pointer: fine) {
  .work-image,
  .socials a,
  .footer-heading-link,
  .footer-contacts a,
  .footer-socials a {
    cursor: none;
  }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  margin: 0;
  color: currentColor;
  font: 600 13px/1 Sora, sans-serif;
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.section-label::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
  scale: 1;
  transform-origin: left;
}

.motion-ready .process-heading .section-label::before {
  scale: 0 1;
  transition: scale 560ms var(--ease-out) 180ms;
}

.motion-ready .process-heading.is-inview .section-label::before {
  scale: 1;
}


/* 02.6 — Capabilities */
.capabilities-section {
  --capabilities-scene-height: 100vh;
  --capabilities-track-y: 0px;
  position: relative;
  height: 450vh;
  color: var(--color-white);
  background: var(--canvas);
}

@supports (height: 100svh) {
  .capabilities-section {
    --capabilities-scene-height: 100svh;
    height: 450svh;
  }
}

.capabilities-sticky {
  position: sticky;
  top: 0;
  display: flex;
  width: 100%;
  height: var(--capabilities-scene-height);
  align-items: center;
  overflow: hidden;
  background: var(--canvas);
}

.capabilities-composition {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 677fr) minmax(0, 536fr);
  gap: clamp(52px, 5.57vw, 107px);
  width: min(calc(100% - 96px), 1320px);
  height: min(600px, calc(var(--capabilities-scene-height) - 176px));
  min-height: 460px;
  margin: 0 auto;
}

.capabilities-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.capabilities-intro {
  margin: 0;
  color: var(--color-text-muted);
  font: 400 16px/normal var(--font-ui);
  letter-spacing: 3.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 0.84vw, 16px);
  width: 100%;
  min-width: 0;
}

.capability-item {
  min-height: clamp(66px, 5.26vw, 101px);
  min-width: 0;
}

.capability-title {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.3);
  background: transparent;
  font: 600 clamp(52px, 4.167vw, 80px)/1.2625 var(--font-ui);
  letter-spacing: clamp(-6.4px, -0.333vw, -4px);
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transform: translate3d(0, var(--capabilities-track-y), 0);
  transition: color 480ms var(--ease-out), opacity 480ms var(--ease-out);
  will-change: transform;
}

.capability-item.is-active .capability-title {
  color: var(--color-white);
}

.capability-panel {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  display: grid;
  width: min(40.61%, 536px);
  height: 100%;
  place-items: center;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-white);
  color: var(--color-ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(1.015);
  transform-origin: center;
  transition: opacity 560ms var(--ease-out), transform 620ms var(--ease-out);
  will-change: opacity, transform;
}

.capability-item.is-before .capability-panel {
  transform: translateY(-18px) scale(0.985);
}

.capability-item.is-active .capability-panel {
  z-index: 1;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.capability-panel > img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 900ms var(--ease-out);
}

.capability-item.is-active .capability-panel > img {
  transform: scale(1);
}

/* 02.7 — Design process */
.process-section {
  padding: 112px max(24px, calc((100% - 1320px) / 2)) 178px;
  color: #fff;
  background: var(--canvas);
}

.process-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 64px;
  padding-bottom: 100px;
}

.process-heading h2 {
  width: min(910px, 70vw);
  margin: 0;
  font: 400 clamp(48px, 4.6vw, 76px)/0.98 var(--font-display);
  letter-spacing: -4.4px;
}

.process-heading h2 span {
  display: block;
  white-space: nowrap;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li {
  display: grid;
  grid-template-columns: 31% 1fr;
  gap: 48px;
  padding: 38px 0 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list li > span {
  color: var(--lime);
  font: 600 13px/1.3 Sora, sans-serif;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.process-list h3 {
  margin: 0 0 13px;
  font: 400 clamp(28px, 3vw, 44px) / 1 var(--font-display);
  letter-spacing: -1.8px;
}

.process-list p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font: 400 16px/1.5 Sora, sans-serif;
}

/* ==========================================================================
   03 — HOMEPAGE: WRITING, CONTACT FOOTER & REVEAL MOTION
   ========================================================================== */

/* 03.1 — Writing and ideas */
.writing-section {
  padding: 178px var(--page-gutter);
  color: var(--color-white);
  background: #060a16;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.writing-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 84px;
}

.writing-heading h2 {
  margin: 24px 0 0;
  font: 400 clamp(48px, 5.6vw, 88px) / 0.98 var(--font-display);
  letter-spacing: -4.4px;
}

.writing-heading h2 em {
  color: var(--lime);
  font-family: var(--font-ui);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.writing-heading > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--color-text-muted);
  font: 400 18px/1.55 var(--font-ui);
}

.writing-layout {
  display: grid;
  grid-template-columns: minmax(0, 669px) minmax(360px, 1fr);
  gap: 28px;
}

.newsletter-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 0;
  overflow: hidden;
  background-color: #101932;
  background-image: url("assets/themerge-card-texture.jpeg");
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100% auto;
  border: 1px solid #364156;
  border-radius: 20px;
  transition: background-color var(--duration-base) ease, border-color var(--duration-base) ease;
}

.newsletter-feature:hover,
.newsletter-feature:focus-within {
  background-color: #15203a;
  border-color: rgba(187, 244, 81, 0.62);
}

.newsletter-feature > div:first-child {
  position: absolute;
  top: 50px;
  left: 60px;
}

.newsletter-label,
.newsletter-type,
.writing-articles-label,
.writing-article-category {
  margin: 0;
  font: 600 12px/1.2 var(--font-ui);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.newsletter-label {
  color: var(--lime);
}

.newsletter-type {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.52);
}

.newsletter-copy {
  position: absolute;
  top: 311px;
  left: 60px;
  width: min(513px, calc(100% - 120px));
  margin: 0;
}

.newsletter-copy h3 {
  width: min(487px, 100%);
  margin: 0;
}

.newsletter-copy h3 img {
  display: block;
  width: 100%;
  height: auto;
}

.newsletter-description {
  max-width: 487px;
  /* Preserve the former browser-default paragraph spacing explicitly. */
  margin: 1em 0;
  color: var(--color-text-muted);
  font: 400 17px/1.58 var(--font-ui);
}

.writing-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: inherit;
  font: 600 14px/1.2 var(--font-ui);
}

.writing-link--featured {
  position: absolute;
  bottom: 53px;
  left: 60px;
  color: var(--lime);
  font-size: 16px;
}

.writing-arrow {
  display: inline-block;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  transition: transform var(--duration-base) var(--ease-out);
}

.newsletter-feature:hover .writing-arrow,
.writing-article:hover .writing-arrow,
.writing-article a:focus-visible .writing-arrow {
  transform: translateX(5px);
}

.writing-articles {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.writing-articles-label {
  margin: 7px 0 16px;
  color: rgba(255, 255, 255, 0.52);
}

.writing-articles-list {
  display: grid;
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.writing-article {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.writing-article a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 148px;
  padding: 22px 0;
  transition: padding var(--duration-base) var(--ease-out), color var(--duration-fast) ease;
}

.writing-article a:hover,
.writing-article a:focus-visible {
  padding-inline: 14px;
  color: var(--lime);
}

.writing-article-category {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.writing-article h3 {
  max-width: 510px;
  margin: 0;
  font: 500 clamp(19px, 1.65vw, 25px) / 1.16 var(--font-ui);
  letter-spacing: -0.045em;
}

.writing-article-description {
  display: -webkit-box;
  max-width: 500px;
  margin: 10px 0 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.62);
  font: 400 13px/1.45 var(--font-ui);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.writing-article .writing-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.writing-article a:hover .writing-link,
.writing-article a:focus-visible .writing-link {
  color: var(--lime);
}

/* 03.2 — Contact footer */
.contact-footer {
  position: relative;
  min-height: 1260px;
  overflow: hidden;
  padding: 150px var(--page-gutter) 0;
  color: #030712;
  background: var(--lime);
  border-radius: 50px 50px 0 0;
}

.footer-content,
.footer-meta,
.footer-wordmark-wrap {
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  width: 100%;
}

.footer-title-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  container-type: inline-size;
}

.footer-kicker {
  margin: 0;
  color: rgba(3, 7, 18, 0.7);
  font: 400 16px/normal var(--font-ui);
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.contact-footer h2 {
  width: 100%;
  margin: 0;
  color: var(--color-ink);
  font: 700 clamp(88px, 9.5vw, 182.222px) / 0.86 var(--font-ui);
  letter-spacing: normal;
}

.footer-heading-link {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: fit-content;
}

.footer-heading-link > span,
.footer-heading-link > em {
  display: block;
  letter-spacing: -0.044em;
  white-space: nowrap;
}

.contact-footer h2 em {
  font-weight: 700;
  font-style: normal;
}

.footer-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px 72px;
  font: 400 clamp(21px, 1.7vw, 32px) / 1.2 var(--font-ui);
}

.footer-email-group {
  display: grid;
  gap: 12px;
}

.availability-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: rgba(3, 7, 18, 0.7);
  font: 600 12px/1.3 var(--font-ui);
  letter-spacing: 0.02em;
}

.availability-status > span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #030712;
  box-shadow: 0 0 0 4px rgba(3, 7, 18, 0.1);
}

.motion-ready .availability-status > span:first-child {
  animation: availabilityPulse 3.6s ease-in-out infinite;
}

.availability-status.is-copied {
  color: rgba(3, 7, 18, 0.96);
}

.availability-status.is-copied > span:first-child {
  animation: none;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.32);
}

@keyframes availabilityPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(3, 7, 18, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(3, 7, 18, 0.03); }
}

.footer-contacts a,
.footer-socials a {
  opacity: 1;
}

.footer-divider {
  position: absolute;
  top: 730px;
  right: 0;
  left: 0;
  height: 1px;
}

.footer-divider img {
  width: 100%;
  height: 1px;
}

.footer-meta {
  position: absolute;
  top: 746px;
  right: var(--page-gutter);
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(3, 7, 18, 0.7);
  font: 400 14px/normal var(--font-ui);
  letter-spacing: 2.8px;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 22px;
}

.footer-meta p {
  margin: 0;
  white-space: nowrap;
}

.footer-wordmark-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 446px;
  overflow: hidden;
}

.footer-wordmark {
  position: absolute;
  top: 0.04px;
  left: -0.415vw;
  width: 108.67vw;
  height: auto;
  max-width: none;
}

.motion-ready .footer-wordmark {
  transform: translateY(12%);
  transition: transform 1200ms var(--ease-out) 380ms;
}

.motion-ready .footer-wordmark-wrap.is-inview .footer-wordmark {
  transform: translateY(0);
}

/* 03.3 — Scroll reveal choreography */
/* JavaScript only adds .motion-ready after it is available. */
.motion-ready .about-content,
.motion-ready .information-intro,
.motion-ready .information-row,
.motion-ready .process-heading,
.motion-ready .process-list li,
.motion-ready .writing-heading,
.motion-ready .newsletter-feature,
.motion-ready .writing-article,
.motion-ready .footer-content,
.motion-ready .footer-meta,
.motion-ready .footer-wordmark-wrap {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 700ms ease, transform 900ms var(--ease-out);
}

.motion-ready .about-content.is-inview,
.motion-ready .information-intro.is-inview,
.motion-ready .information-row.is-inview,
.motion-ready .process-heading.is-inview,
.motion-ready .process-list li.is-inview,
.motion-ready .writing-heading.is-inview,
.motion-ready .newsletter-feature.is-inview,
.motion-ready .writing-article.is-inview,
.motion-ready .footer-content.is-inview,
.motion-ready .footer-meta.is-inview,
.motion-ready .footer-wordmark-wrap.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .about-content.is-inview {
  transition-duration: 900ms;
}

.motion-ready .information-row:nth-child(2),
.motion-ready .process-list li:nth-child(2) {
  transition-delay: 100ms;
}

.motion-ready .information-row:nth-child(3),
.motion-ready .process-list li:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .writing-article:nth-child(2) {
  transition-delay: 100ms;
}

.motion-ready .writing-article:nth-child(3) {
  transition-delay: 180ms;
}

.motion-ready .information-row:nth-child(4) {
  transition-delay: 240ms;
}

.motion-ready .information-row:nth-child(5) {
  transition-delay: 300ms;
}

.motion-ready .information-row:nth-child(6) {
  transition-delay: 360ms;
}

.motion-ready .footer-meta {
  transition-delay: 180ms;
}

.motion-ready .footer-wordmark-wrap {
  transition-delay: 260ms;
}


/* ==========================================================================
   04 — RESPONSIVE: TABLET & SMALL LAPTOP
   ========================================================================== */

@media (max-width: 1100px) {
  .topbar {
    width: 100%;
    height: 64px;
    padding: 0 48px;
  }

  .topbar.is-scrolled {
    height: 64px;
  }

  .header-actions {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: calc(100svh - 64px);
    padding: 40px max(32px, calc((100% - 480px) / 2)) 32px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 360ms var(--ease-out), visibility 0s linear 360ms;
  }

  .menu-toggle {
    display: block;
    width: 24px;
    height: 24px;
  }

  .topbar.is-menu-open {
    background: #030712;
  }

  .topbar.is-menu-open .header-actions {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 360ms var(--ease-out), visibility 0s;
  }

  .topbar #site-navigation {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 24px;
    width: min(480px, 100%);
  }

  .topbar #site-navigation a {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 75px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font: 600 clamp(32px, 4.7vw, 36px)/1.4 var(--font-ui);
    text-align: center;
  }

  .topbar #site-navigation a::after {
    display: none;
  }

  .topbar #site-navigation a:hover,
  .topbar #site-navigation a:focus-visible,
  .topbar #site-navigation a.is-active {
    color: #fff;
  }

  .topbar.is-menu-open .hello-button {
    align-self: center;
    width: min(480px, 100%);
    min-height: 60px;
    font-size: 20px;
  }

  @supports (height: 100dvh) {
    .topbar.is-menu-open .header-actions {
      height: calc(100dvh - 64px);
    }
  }

  .portrait {
    left: 50%;
  }

  .hero-copy {
    left: 12%;
    width: 76%;
  }

  .scroll-down {
    left: 30px;
  }

  .showreel-section {
    min-height: calc(200svh + var(--banner-transition-height));
    height: calc(200svh + var(--banner-transition-height));
    margin-top: calc(0px - var(--banner-transition-height));
  }

  .selected-works {
    min-height: auto;
  }

  .works-content {
    width: min(100% - 64px, 960px);
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    row-gap: 150px;
  }

  .work-image {
    height: auto;
    aspect-ratio: 610 / 750;
  }

  .information-section {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 72px;
    min-height: auto;
    padding: 120px 48px 72px;
  }

  .capabilities-section {
    --capabilities-scene-height: 100svh;
    height: 360svh;
    padding: 0;
  }

  .capabilities-sticky {
    position: sticky;
    top: 0;
    height: var(--capabilities-scene-height);
    padding: 80px 48px;
    overflow: hidden;
  }

  .capabilities-composition {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(32px, 5vw, 56px);
    width: min(100%, 960px);
    height: min(560px, calc(var(--capabilities-scene-height) - 160px));
    min-height: 460px;
  }

  .capabilities-copy {
    display: flex;
  }

  .capabilities-intro {
    font-size: 14px;
    white-space: normal;
  }

  .capabilities-list {
    gap: 12px;
    margin-top: 0;
  }

  .capability-item {
    min-height: 70px;
  }

  .capability-title {
    font-size: clamp(40px, 5.7vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.065em;
    cursor: pointer;
    transform: translate3d(0, var(--capabilities-track-y), 0);
    will-change: transform;
  }

  .capability-panel,
  .capability-item.is-before .capability-panel,
  .capability-item.is-active .capability-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(52%, 480px);
    height: 100%;
    max-width: none;
    margin-top: 0;
  }

  .capability-panel,
  .capability-item.is-after .capability-panel {
    opacity: 0;
    transform: translateY(24px) scale(1.015);
  }

  .capability-item.is-before .capability-panel {
    opacity: 0;
    transform: translateY(-18px) scale(0.985);
  }

  .capability-item.is-active .capability-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .process-section {
    padding: 96px 48px 128px;
  }

  .writing-section {
    padding: 128px 48px;
  }

  .writing-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .newsletter-feature {
    width: min(100%, 669px);
    min-height: 650px;
  }

  .contact-footer {
    padding-inline: 48px;
  }

  .footer-meta {
    right: 48px;
    left: 48px;
  }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .topbar {
    left: 0;
    width: 100%;
    height: 72px;
    padding: 0 16px;
    transform: none;
  }

  .topbar.is-scrolled {
    height: 72px;
  }

  .brand {
    font-size: 36.116px;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
  }

  .topbar.is-menu-open .header-actions {
    top: 72px;
    height: calc(100svh - 72px);
    padding: 42px max(32px, calc((100% - 480px) / 2)) 32px;
  }

  @supports (height: 100dvh) {
    .topbar.is-menu-open .header-actions {
      height: calc(100dvh - 72px);
    }
  }

  .green-shape {
    top: calc(50% + 299.57px);
    right: -119px;
    width: 775px;
    height: 1096.133px;
    transform: translateY(calc(-50% + var(--hero-shape-shift, 0px)));
  }

  .hero-copy {
    top: 157px;
    left: 50%;
    width: min(569px, calc(100% - 48px));
    text-align: center;
    transform: translateX(-50%) translateY(var(--hero-copy-shift, 0));
  }

  h1 {
    margin-top: 0;
    font-size: clamp(150px, 26.66vw, 198.335px);
    line-height: 1.1;
    letter-spacing: -11px;
  }

  .hero-copy p {
    margin-top: 38px;
    margin-left: 0;
    font-family: var(--font-display);
    font-size: clamp(22px, 4.01vw, 29.86px);
    line-height: 1.1;
    white-space: normal;
  }

  .socials {
    justify-content: center;
    gap: 26.8px;
    margin: 39.813px auto 0;
  }

  .socials a {
    width: 33.178px;
    height: 33.178px;
  }

  .portrait {
    top: 300px;
    left: 50%;
    width: min(116vw, 890px);
    height: auto;
    transform: translateX(-50%) translateY(var(--hero-portrait-shift, 0));
  }

  .scroll-down {
    display: none;
  }
}

/* 04.1 — Tablet portrait: readable information layout and clear hero spacing */
@media (min-width: 768px) and (max-width: 1023.98px) {
  .information-section {
    grid-template-columns: 1fr;
    gap: 80px;
    padding: 112px 48px 64px;
  }

  .information-intro {
    display: grid;
    grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
    align-items: start;
    column-gap: clamp(32px, 5vw, 48px);
  }

  .information-kicker {
    grid-row: 1 / span 2;
    margin: 7px 0 0;
    font-size: 14px;
    letter-spacing: 2.8px;
  }

  .information-intro h2 {
    max-width: 660px;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.3;
    text-wrap: balance;
  }

  .information-intro .cv-button {
    grid-column: 2;
    justify-self: start;
    margin-top: 28px;
  }

  .information-list {
    width: 100%;
  }

  .information-row {
    grid-template-columns: minmax(160px, 0.36fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 48px);
    margin-bottom: 28px;
    padding-bottom: 28px;
  }

  .information-row dt {
    font-size: 14px;
    letter-spacing: 2.8px;
  }

  .information-row strong,
  .information-row small {
    font-size: 16px;
  }

  .hero-copy {
    top: clamp(120px, 16vh, 150px);
    width: min(620px, calc(100% - 64px));
  }

  .hero-copy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-copy h1 {
    margin: 0;
    font-size: clamp(132px, 20vw, 165px);
    line-height: 0.92;
    letter-spacing: -8px;
  }

  .hero-copy p {
    margin: 0;
    font-size: clamp(19px, 3vw, 24px);
    line-height: 1.2;
  }

  .socials {
    gap: 20px;
    margin: 4px 0 0;
  }

  .socials a {
    width: 28px;
    height: 28px;
  }

  .portrait {
    top: clamp(390px, 49vh, 430px);
  }
}

/* 1024px laptop composition from the dedicated Figma frame. */
@media (min-width: 1024px) and (max-width: 1100px) {
  .background-art {
    width: 1446px;
    height: 460px;
  }

  .green-shape {
    top: calc(50% + 36px);
    right: -90.09px;
    width: 492.094px;
    height: 696px;
  }

  .topbar {
    left: 0;
    width: 100%;
    height: 88px;
    padding: 24px 44px;
    transform: none;
  }

  .topbar.is-scrolled {
    height: 72px;
  }

  .header-actions {
    display: flex;
    gap: 20px;
  }

  .menu-toggle {
    /* The navigation drawer and JS breakpoint both remain active to 1100px. */
    display: block;
  }

  nav a {
    padding-inline: 10px;
  }

  .button {
    padding: 11.5px 18px;
  }

  .hero-copy {
    top: 350px;
    left: 44px;
    width: min(46%, 450px);
    text-align: left;
    transform: translateY(var(--hero-copy-shift, 0));
  }

  h1 {
    margin-top: 0;
    font-size: clamp(132px, 14.5vw, 150px);
    line-height: 0.96;
    letter-spacing: -8px;
  }

  .hero-copy p {
    margin: 14px 0 0 2px;
    font-size: 18px;
    line-height: 1.1;
    white-space: normal;
  }

  .socials {
    justify-content: flex-start;
    gap: 14px;
    margin: 16px 0 0 2px;
  }

  .socials a {
    width: 21px;
    height: 21px;
  }

  .portrait {
    top: 92px;
    left: 75%;
    width: min(78vw, 800px);
    height: auto;
    transform: translateX(-50%) translateY(var(--hero-portrait-shift, 0));
  }
}


/* ==========================================================================
   05 — RESPONSIVE: MOBILE
   ========================================================================== */

@media (max-width: 767.98px) {
  #about,
  #project,
  #information,
  #contact {
    scroll-margin-top: 72px;
  }

  .banner {
    min-height: 100svh;
    height: 100svh;
  }

  /* Safari's bottom controls change the visible viewport while scrolling. */
  @supports (height: 100dvh) {
    .banner {
      min-height: 100dvh;
      height: 100dvh;
    }

    .topbar.is-menu-open .header-actions {
      height: calc(100dvh - 56px);
    }
  }

  .topbar {
    height: 56px;
    padding: 0 16px;
  }

  .topbar.is-scrolled {
    height: 56px;
  }

  .brand {
    font-size: 30.712px;
    letter-spacing: -1.85px;
  }

  .brand img {
    width: 23.81px;
    height: 23.81px;
    margin-right: 1.38px;
  }

  /* 05.1 — Figma mobile navigation drawer */
  .header-actions {
    position: fixed;
    top: 56px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: calc(100svh - 56px);
    padding: 35px max(16px, calc((100% - 290px) / 2)) 24px;
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(3, 7, 18, 0.92);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 360ms var(--ease-out), visibility 0s linear 360ms;
  }

  .menu-toggle {
    display: block;
    width: 24px;
    height: 24px;
  }

  .menu-toggle span {
    left: 2px;
    width: 20px;
  }

  .topbar.is-menu-open {
    background: #030712;
  }

  .topbar.is-menu-open .header-actions {
    top: 56px;
    align-items: center;
    gap: 24px;
    height: calc(100svh - 56px);
    padding: 35px max(16px, calc((100% - 290px) / 2)) 24px;
    background: rgba(3, 7, 18, 0.92);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 220ms ease, transform 360ms var(--ease-out), visibility 0s;
  }

  @supports (height: 100dvh) {
    .topbar.is-menu-open .header-actions {
      height: calc(100dvh - 56px);
    }
  }

  .topbar #site-navigation {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 24px;
    width: min(290px, 100%);
  }

  .topbar #site-navigation a {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 69px;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font: 600 32px/1.4 var(--font-ui);
    text-align: center;
  }

  .topbar #site-navigation a::after {
    display: none;
  }

  .topbar #site-navigation a:hover,
  .topbar #site-navigation a:focus-visible,
  .topbar #site-navigation a.is-active {
    color: #fff;
  }

  .topbar.is-menu-open .hello-button {
    align-self: center;
    width: min(290px, 100%);
    min-height: 56px;
    padding: 11.5px 22px;
    font-size: 18px;
  }

  .background-art {
    top: 0;
    left: calc(50% + 0.5px);
    width: 1428px;
    height: 453px;
    object-fit: cover;
  }

  .green-shape {
    top: 347px;
    right: -73px;
    width: 448px;
    height: 635px;
    transform: translateY(var(--hero-shape-shift, 0));
  }

  .portrait {
    top: 324px;
    left: 50%;
    width: min(145vw, 540px);
    height: auto;
    max-width: none;
    transform: translateX(-50%) translateY(var(--hero-portrait-shift, 0));
  }

  .hero-copy {
    top: 118px;
    bottom: auto;
    left: 16px;
    width: calc(100% - 32px);
    text-align: center;
  }

  .hero-copy-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
  }

  h1 {
    margin: 0;
    font-size: clamp(88px, 31.88vw, 119.558px);
    line-height: 0.9;
    letter-spacing: -7px;
    transform: translateY(15px);
  }

  .hero-copy p {
    margin: 0;
    font-size: 18px;
    text-align: center;
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .socials {
    display: flex;
    gap: 16px;
    margin: 0;
  }

  .socials a {
    width: 20px;
    height: 20px;
  }

  .scroll-down {
    display: none;
  }

  /* Preserve the 375px Figma composition on iPhone 16 Pro's 402px viewport. */
  @media (min-width: 390px) and (max-width: 430px) and (min-height: 800px) {
    .portrait {
      top: 314px;
      left: 50%;
      width: 540px;
    }
  }

  .showreel-section {
    --banner-transition-height: clamp(72px, 11vh, 96px);
    min-height: calc(200svh + var(--banner-transition-height));
    height: calc(200svh + var(--banner-transition-height));
    margin-top: calc(0px - var(--banner-transition-height));
    padding: 0;
  }

  .video-stage {
    min-height: 0;
  }

  .video-caption {
    right: 18px;
    bottom: 16px;
    left: 18px;
    font-size: 11px;
  }

  .about-section {
    min-height: 100svh;
    margin-top: -100svh;
    padding: 48px 24px;
    border-radius: 0;
  }

  .about-content h2 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .about-copy {
    font-size: 17px;
  }

  .about-proof {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
    padding-top: 14px;
  }

  .about-proof li {
    grid-template-columns: 72px 1fr;
    align-items: baseline;
    gap: 12px;
  }

  .selected-works {
    min-height: auto;
  }

  .works-content {
    width: min(100% - 40px, 610px);
    padding: 84px 0 110px;
  }

  .works-kicker {
    margin-bottom: 54px;
    font-size: 34px;
  }

  .works-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .work-card,
  .work-card:nth-child(even) {
    --column-offset: 0px;
  }

  .work-image {
    height: auto;
    aspect-ratio: 610 / 750;
    border-radius: 12px;
  }

  .work-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 12px;
    gap: 12px;
    white-space: normal;
  }

  .work-meta strong {
    font-size: 19px;
  }

  .work-meta span {
    font-size: 13px;
    text-wrap: balance;
  }

  .cursor-dot {
    display: none;
  }

  .information-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 80px 24px 56px;
  }

  .information-kicker {
    margin-bottom: 22px;
    font-size: 13px;
  }

  .information-intro h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .cv-button {
    margin-top: 24px;
    padding: 9px 16px;
    font-size: 15px;
  }

  .information-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 24px;
    margin-bottom: 28px;
  }

  .information-row dt,
  .information-row strong,
  .information-row small {
    font-size: 14px;
    overflow-wrap: anywhere;
  }

  .process-section {
    display: block;
    padding: 72px 24px 96px;
  }

  .capabilities-section {
    --capabilities-scene-height: 100svh;
    --capabilities-mobile-visual-top: min(375px, 46.18svh);
    height: 300svh;
  }

  .capabilities-sticky {
    align-items: stretch;
    height: var(--capabilities-scene-height);
    padding: 0 16px;
  }

  .capabilities-composition {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .capabilities-copy {
    display: block;
    height: 100%;
  }

  .capabilities-intro {
    position: absolute;
    top: 66px;
    left: 0;
    width: 100%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: normal;
    letter-spacing: 3.2px;
    text-align: center;
    text-wrap: balance;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 2.2px;
  }

  .process-heading h2 {
    width: auto;
    margin: 20px 0 24px;
    font-size: clamp(46px, 13vw, 62px);
    letter-spacing: -3px;
  }

  .process-heading h2 span {
    white-space: normal;
  }

  .capabilities-list {
    position: static;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 0;
    padding-top: 198px;
  }

  .capability-item {
    display: flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: center;
  }

  .capability-title {
    width: auto;
    max-width: 100%;
    font-size: 40px;
    line-height: 1;
    letter-spacing: -3.2px;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    scale: 0.8;
    transform-origin: center;
    transition: color 480ms var(--ease-out), opacity 480ms var(--ease-out), scale 800ms var(--ease-out);
  }

  .capability-item.is-active .capability-title {
    scale: 1;
  }

  .capability-panel,
  .capability-item.is-before .capability-panel,
  .capability-item.is-active .capability-panel {
    top: var(--capabilities-mobile-visual-top);
    right: 0;
    width: 100%;
    height: min(calc((100vw - 32px) * 1.1195), calc(100svh - var(--capabilities-mobile-visual-top) - 24px));
    margin-top: 0;
    border-radius: 12.8px;
  }

  .capability-panel,
  .capability-item.is-after .capability-panel {
    opacity: 0;
    transform: translateY(18px) scale(1.01);
  }

  .capability-item.is-before .capability-panel {
    opacity: 0;
    transform: translateY(-14px) scale(0.99);
  }

  .capability-item.is-active .capability-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .capability-item:first-child .capability-panel > img {
    width: 115.3%;
    height: auto;
    object-position: left top;
  }

  .process-heading {
    display: block;
    padding-bottom: 56px;
  }

  .process-heading .section-label {
    margin-bottom: 20px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 0;
  }

  .process-list h3 {
    font-size: 30px;
    letter-spacing: -1.2px;
  }

  .process-list p {
    font-size: 14px;
  }

  .writing-section {
    padding: 96px 24px;
  }

  .writing-heading {
    display: block;
    margin-bottom: 56px;
  }

  .writing-heading h2 {
    margin-top: 20px;
    font-size: clamp(46px, 13vw, 62px);
    letter-spacing: -3px;
  }

  .writing-heading > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .writing-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .newsletter-feature {
    min-height: 0;
    padding: 28px;
  }

  .newsletter-feature > div:first-child,
  .newsletter-copy,
  .writing-link--featured {
    position: static;
  }

  .newsletter-copy {
    width: auto;
    margin: 74px 0 54px;
  }

  .newsletter-copy h3 {
    width: min(487px, 100%);
  }

  .newsletter-description {
    margin-top: 22px;
    font-size: 15px;
  }

  .writing-link--featured {
    margin-top: auto;
  }

  .writing-articles-label {
    margin-top: 0;
  }

  .writing-article a {
    min-height: 0;
    padding: 26px 0;
  }

  .writing-article h3 {
    font-size: 20px;
  }

  .writing-article-description {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .contact-footer {
    min-height: 0;
    padding: 72px 24px 0;
    border-radius: 24px 24px 0 0;
  }

  .footer-content {
    gap: 36px;
  }

  .footer-title-group {
    gap: 14px;
  }

  .footer-kicker {
    font-size: 12px;
    letter-spacing: 2.4px;
  }

  .contact-footer h2 {
    font-size: clamp(40px, 15cqw, 78px);
    line-height: 0.9;
    letter-spacing: -0.065em;
  }

  .footer-heading-link {
    gap: 4px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 12px;
    font-size: 18px;
  }

  .footer-contacts a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .footer-divider {
    position: relative;
    top: auto;
    margin-top: 36px;
  }

  .footer-meta {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 1.7px;
  }

  .footer-socials {
    flex-wrap: nowrap;
    gap: 16px;
  }

  .footer-meta p {
    text-align: left;
  }

  .footer-wordmark {
    top: 0;
    left: -12.5vw;
    width: 125vw;
    height: auto;
  }

  .footer-wordmark-wrap {
    position: relative;
    height: clamp(108px, 31vw, 150px);
    margin-top: 34px;
  }
}

/* ==========================================================================
   06 — CASE STUDIES: KOTHAY, BUILDECOM & TIMODESK
   ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Kothay case study                                                          */
/* -------------------------------------------------------------------------- */

body.kothay-case-page {
  min-width: 320px;
  color: #f7f7f4;
  background: #07070d;
}

.kothay-case-page a:focus-visible {
  outline: 2px solid #ff4b59;
  outline-offset: 5px;
}

.kothay-shell {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.kothay-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 13, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.kothay-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.kothay-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f7f7f4;
  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.09em;
}

.kothay-brand img {
  width: 25px;
  height: 25px;
}

.kothay-brand span span {
  color: var(--lime);
}

.kothay-back {
  color: #f7f7f4;
  font-size: 12px;
  font-weight: 600;
}

.kothay-back:hover,
.kothay-back:focus-visible {
  color: #ff5965;
}

.kothay-case h1,
.kothay-case h2,
.kothay-case p,
.kothay-case figure {
  margin: 0;
}

.kothay-hero {
  position: relative;
  min-height: 870px;
  padding: clamp(156px, 16vw, 230px) 0 clamp(60px, 8vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 30%, rgba(242, 57, 72, 0.26), transparent 25rem),
    radial-gradient(circle at 9% 88%, rgba(255, 68, 83, 0.13), transparent 28rem),
    #07070d;
}

.kothay-hero-grid,
.kothay-workflow-grid,
.kothay-principle-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 126px);
}

.kothay-hero-grid {
  min-height: 610px;
}

.kothay-hero-copy {
  align-self: center;
  position: relative;
  z-index: 1;
}

.kothay-eyebrow {
  color: #ff5965;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.kothay-eyebrow span {
  opacity: 0.58;
}

.kothay-hero h1,
.kothay-case h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.08em;
}

.kothay-hero h1 {
  margin-top: 22px;
  font-size: clamp(62px, 8.2vw, 132px);
  line-height: 0.88;
}

.kothay-hero h1 span,
.kothay-case h2 span {
  color: #ff5965;
}

.kothay-hero-copy > p:not(.kothay-eyebrow) {
  max-width: 540px;
  margin-top: 36px;
  color: rgba(247, 247, 244, 0.75);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.72;
}

.kothay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.kothay-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(247, 247, 244, 0.26);
  border-radius: 999px;
  color: #f7f7f4;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.kothay-button:hover,
.kothay-button:focus-visible {
  border-color: #ff5965;
  background: #ff5965;
  color: #07070d;
  transform: translateY(-2px);
}

.kothay-button-primary {
  border-color: #ff3c4d;
  background: #ff3c4d;
  color: #fff;
}

.kothay-button-primary:hover,
.kothay-button-primary:focus-visible {
  border-color: #ff6c76;
  background: #ff6c76;
  color: #fff;
}

.kothay-hero-art {
  position: absolute;
  right: clamp(-320px, -17vw, -120px);
  bottom: 0;
  z-index: 0;
  width: min(94vw, 1500px);
  height: auto;
  margin: 0;
  overflow: visible;
  background: transparent;
  filter: drop-shadow(0 32px 45px rgba(0, 0, 0, 0.48));
}

.kothay-hero-art::before {
  position: absolute;
  inset: 20% 2% -10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 73, 86, 0.22), transparent 65%);
  content: "";
}

.kothay-hero-art img {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
}

.kothay-overview,
.kothay-workflow,
.kothay-principle,
.kothay-outcome {
  padding: clamp(100px, 14vw, 190px) 0;
}

.kothay-overview {
  background: #f4f2f0;
  color: #16141a;
}

.kothay-overview .kothay-eyebrow {
  color: #e83949;
}

.kothay-overview-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(44px, 10vw, 180px);
  align-items: end;
  margin-top: 42px;
}

.kothay-overview h2 {
  font-size: clamp(54px, 7vw, 112px);
  line-height: 0.9;
}

.kothay-overview-grid p {
  padding-bottom: 6px;
  color: rgba(22, 20, 26, 0.72);
  font-size: clamp(17px, 1.45vw, 22px);
  letter-spacing: -0.04em;
  line-height: 1.52;
}

.kothay-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(78px, 11vw, 150px);
  border-top: 1px solid rgba(22, 20, 26, 0.2);
}

.kothay-facts div {
  min-height: 124px;
  padding: 20px 22px 10px 0;
  border-right: 1px solid rgba(22, 20, 26, 0.2);
}

.kothay-facts div + div {
  padding-left: 22px;
}

.kothay-facts div:last-child {
  border-right: 0;
}

.kothay-facts dt {
  color: rgba(22, 20, 26, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kothay-facts dd {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 600;
}

.kothay-workflow {
  background: #0b0a10;
}

.kothay-workflow-grid {
  align-items: stretch;
}

.kothay-workflow h2,
.kothay-principle h2,
.kothay-outcome h2 {
  margin-top: 22px;
  font-size: clamp(52px, 6.2vw, 100px);
  line-height: 0.9;
}

.kothay-workflow-grid > div > p:not(.kothay-eyebrow),
.kothay-principle-grid > div > p:not(.kothay-eyebrow),
.kothay-outcome > div > p:not(.kothay-eyebrow) {
  max-width: 560px;
  margin-top: 32px;
  color: rgba(247, 247, 244, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.kothay-feature-list {
  display: grid;
  gap: 14px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.kothay-feature-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(247, 247, 244, 0.9);
  font-size: 15px;
}

.kothay-feature-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5965;
  content: "";
}

.kothay-dashboard-shot {
  min-height: 620px;
  aspect-ratio: auto;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #ecebea;
}

.kothay-dashboard-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin-left: 0;
  object-fit: cover;
  object-position: center;
}

.kothay-principle {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 72%, rgba(236, 52, 69, 0.24), transparent 23rem),
    #151017;
}

.kothay-principle-grid {
  grid-template-columns: 1.14fr 0.86fr;
  align-items: stretch;
}

.kothay-field-shot {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #e9e7e5;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}

.kothay-field-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.kothay-outcome {
  background: #ff3c4d;
  color: #fff;
}

.kothay-outcome .kothay-eyebrow {
  color: #6b0f1a;
}

.kothay-outcome h2 span {
  color: #63111b;
}

.kothay-outcome > div > p:not(.kothay-eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.kothay-outcome .kothay-button {
  margin-top: 38px;
  border-color: #fff;
  background: #fff;
  color: #151017;
}

.kothay-outcome .kothay-button:hover,
.kothay-outcome .kothay-button:focus-visible {
  border-color: #151017;
  background: #151017;
  color: #fff;
}

/* Kothay case-study narrative modules */
.kothay-problem,
.kothay-audit,
.kothay-operations {
  padding: clamp(100px, 14vw, 190px) 0;
}

.kothay-problem {
  color: #16141a;
  background: #ff3c4d;
}

.kothay-problem .kothay-eyebrow {
  color: rgba(22, 20, 26, 0.62);
}

.kothay-problem h2,
.kothay-audit h2,
.kothay-operations h2 {
  margin-top: 24px;
  font-size: clamp(52px, 7.6vw, 122px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.kothay-problem h2 span {
  color: rgba(22, 20, 26, 0.46);
}

.kothay-problem-grid,
.kothay-outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(60px, 9vw, 126px);
  border-top: 1px solid rgba(22, 20, 26, 0.22);
}

.kothay-problem-grid article,
.kothay-outcome-grid article {
  min-height: 200px;
  padding: 23px 22px 0 0;
  border-right: 1px solid rgba(22, 20, 26, 0.22);
}

.kothay-problem-grid article + article,
.kothay-outcome-grid article + article {
  padding-left: 22px;
}

.kothay-problem-grid article:last-child,
.kothay-outcome-grid article:last-child {
  border-right: 0;
}

.kothay-problem-grid strong,
.kothay-outcome-grid strong {
  display: block;
  font-size: clamp(20px, 2vw, 29px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.kothay-problem-grid p,
.kothay-outcome-grid p {
  margin-top: 54px;
  font-size: 14px;
  line-height: 1.55;
}

.kothay-audit {
  background: #f4f2f0;
  color: #16141a;
}

.kothay-audit .kothay-eyebrow {
  color: #e83949;
}

.kothay-section-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(22, 20, 26, 0.18);
}

.kothay-section-topline > p:last-child {
  max-width: 420px;
  color: rgba(22, 20, 26, 0.62);
  font-size: 13px;
  line-height: 1.58;
}

.kothay-audit h2 span {
  color: #e83949;
}

.kothay-audit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 0.8fr);
  justify-content: space-between;
  gap: clamp(54px, 13vw, 240px);
  margin-top: clamp(52px, 8vw, 112px);
}

.kothay-audit-grid > p {
  max-width: 620px;
  font-size: clamp(20px, 2.3vw, 32px);
  letter-spacing: -0.05em;
  line-height: 1.34;
}

.kothay-audit-grid ol {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(22, 20, 26, 0.18);
  list-style: none;
}

.kothay-audit-grid li {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(22, 20, 26, 0.18);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
}

.kothay-audit-grid li span {
  color: #e83949;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kothay-operations {
  background: #151017;
}

.kothay-operations h2 span {
  color: #ff5965;
}

.kothay-operations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(58px, 9vw, 128px);
}

.kothay-operations-grid article {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(247, 247, 244, 0.16);
  border-radius: 18px;
  background: rgba(247, 247, 244, 0.04);
}

.kothay-card-label {
  color: #ff5965;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.kothay-operations-grid h3 {
  margin: 78px 0 16px;
  color: #f7f7f4;
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.kothay-operations-grid article > p:last-child {
  max-width: 510px;
  color: rgba(247, 247, 244, 0.67);
  font-size: 15px;
  line-height: 1.62;
}

.kothay-outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-color: rgba(255, 255, 255, 0.28);
}

.kothay-outcome-grid article {
  border-color: rgba(255, 255, 255, 0.28);
}

.kothay-outcome-grid p {
  color: rgba(255, 255, 255, 0.82);
}

.kothay-closing {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(72px, 11vw, 150px);
}

.kothay-closing p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.kothay-closing .kothay-button {
  flex: 0 0 auto;
  margin: 0;
}

@media (max-width: 850px) {
  .kothay-shell {
    width: min(100% - 36px, 1280px);
  }

  .kothay-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .kothay-hero-grid,
  .kothay-workflow-grid,
  .kothay-principle-grid,
  .kothay-overview-grid,
  .kothay-audit-grid {
    grid-template-columns: 1fr;
  }

  .kothay-problem-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kothay-hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 680px);
    height: auto;
    margin-inline: auto;
  }

  .kothay-hero-art img {
    width: 100%;
    height: auto;
  }

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

  .kothay-facts div:nth-child(2) {
    border-right: 0;
  }

  .kothay-facts div:nth-child(n + 3) {
    border-top: 1px solid rgba(22, 20, 26, 0.2);
  }

  .kothay-principle-grid > div {
    order: -1;
  }

  .kothay-dashboard-shot {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .kothay-field-shot {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .kothay-closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .kothay-brand {
    font-size: 22px;
  }

  .kothay-back {
    font-size: 10px;
  }

  .kothay-hero h1 {
    font-size: clamp(56px, 16vw, 78px);
  }

  .kothay-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .kothay-button {
    justify-content: space-between;
  }

  .kothay-facts div {
    min-height: 108px;
  }

  .kothay-dashboard-shot {
    min-height: 0;
  }

  .kothay-dashboard-shot img {
    min-height: 0;
  }

  .kothay-field-shot img {
    min-height: 0;
  }

  .kothay-section-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .kothay-problem-grid,
  .kothay-outcome-grid,
  .kothay-operations-grid {
    grid-template-columns: 1fr;
  }

  .kothay-problem-grid article,
  .kothay-problem-grid article + article,
  .kothay-outcome-grid article,
  .kothay-outcome-grid article + article {
    min-height: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(22, 20, 26, 0.22);
    border-right: 0;
  }

  .kothay-outcome-grid article,
  .kothay-outcome-grid article + article {
    border-color: rgba(255, 255, 255, 0.28);
  }

  .kothay-problem-grid article:first-child,
  .kothay-outcome-grid article:first-child {
    border-top: 0;
  }

  .kothay-problem-grid p,
  .kothay-outcome-grid p {
    margin-top: 22px;
  }

  .kothay-operations-grid article {
    min-height: 0;
    padding: 24px;
  }

  .kothay-operations-grid h3 {
    margin-top: 48px;
  }
}

/* -------------------------------------------------------------------------- */
/* TimoDesk case study                                                        */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* BuildeCom case study                                                       */
/* -------------------------------------------------------------------------- */

body.buildecom-case-page {
  min-width: 320px;
  color: #f5f8ff;
  background: #070a16;
}

.buildecom-case-page a:focus-visible {
  outline: 2px solid #5d87ff;
  outline-offset: 5px;
}

.buildecom-shell {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.buildecom-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 10, 22, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.buildecom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.buildecom-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f5f8ff;
  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.09em;
}

.buildecom-brand img { width: 25px; height: 25px; }
.buildecom-brand span span { color: var(--lime); }

.buildecom-back {
  color: #f5f8ff;
  font-size: 12px;
  font-weight: 600;
}

.buildecom-back:hover { color: #7297ff; }

.buildecom-case h1,
.buildecom-case h2,
.buildecom-case p,
.buildecom-case figure { margin: 0; }

.buildecom-hero {
  position: relative;
  overflow: hidden;
  min-height: 850px;
  padding: clamp(150px, 15vw, 220px) 0 clamp(72px, 9vw, 140px);
  background:
    radial-gradient(circle at 88% 35%, rgba(53, 104, 244, 0.22), transparent 26rem),
    radial-gradient(circle at 9% 88%, rgba(91, 135, 255, 0.13), transparent 28rem),
    #070a16;
}

.buildecom-hero-grid,
.buildecom-workflow-grid,
.buildecom-principle-grid,
.buildecom-brand-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(40px, 8vw, 126px);
}

.buildecom-hero-grid { min-height: 560px; }
.buildecom-hero-copy { position: relative; z-index: 1; }

.buildecom-eyebrow {
  color: #7194ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.buildecom-eyebrow span { opacity: 0.58; }

.buildecom-hero h1,
.buildecom-case h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.08em;
}

.buildecom-hero h1 {
  margin-top: 22px;
  font-size: clamp(62px, 8vw, 128px);
  line-height: 0.88;
}

.buildecom-hero h1 span,
.buildecom-case h2 span { color: #5f86ff; }

.buildecom-hero-copy > p:not(.buildecom-eyebrow) {
  max-width: 535px;
  margin-top: 36px;
  color: rgba(245, 248, 255, 0.74);
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.72;
}

.buildecom-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.buildecom-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(245, 248, 255, 0.28);
  border-radius: 999px;
  color: #f5f8ff;
  font-size: 13px;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.buildecom-button:hover { border-color: #5f86ff; background: #5f86ff; color: #fff; transform: translateY(-2px); }
.buildecom-button-primary { border-color: #5f86ff; background: #5f86ff; color: #fff; }
.buildecom-button-primary:hover { border-color: #83a2ff; background: #83a2ff; }

.buildecom-hero-art {
  position: absolute;
  right: clamp(-180px, -6vw, -72px);
  bottom: -110px;
  z-index: 0;
  width: min(74vw, 1280px);
  min-height: 0;
  overflow: visible;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.buildecom-hero-art img,
.buildecom-builder-shot img,
.buildecom-device-shot img,
.buildecom-brand-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buildecom-hero-art img {
  height: auto;
  object-position: center;
}

.buildecom-overview,
.buildecom-workflow,
.buildecom-principle,
.buildecom-brand-section,
.buildecom-outcome { padding: clamp(100px, 14vw, 190px) 0; }

.buildecom-overview { color: #111827; background: #f1f4f8; }
.buildecom-overview .buildecom-eyebrow { color: #3568e6; }

.buildecom-overview-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  align-items: end;
  gap: clamp(44px, 10vw, 180px);
  margin-top: 42px;
}

.buildecom-overview h2 { font-size: clamp(54px, 7vw, 112px); line-height: 0.9; }

.buildecom-overview-grid p {
  padding-bottom: 6px;
  color: rgba(17, 24, 39, 0.7);
  font-size: clamp(17px, 1.45vw, 22px);
  letter-spacing: -0.04em;
  line-height: 1.52;
}

.buildecom-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(78px, 11vw, 150px);
  border-top: 1px solid rgba(17, 24, 39, 0.2);
}

.buildecom-facts div { min-height: 124px; padding: 20px 22px 10px 0; border-right: 1px solid rgba(17, 24, 39, 0.2); }
.buildecom-facts div + div { padding-left: 22px; }
.buildecom-facts div:last-child { border-right: 0; }
.buildecom-facts dt { color: rgba(17, 24, 39, 0.5); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.buildecom-facts dd { margin: 12px 0 0; font-size: 15px; font-weight: 600; }

.buildecom-workflow {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  padding: 54px 0 0;
  background: #070d20;
}

.buildecom-workflow-grid {
  display: block;
  min-height: 646px;
}

.buildecom-workflow-grid > div {
  position: relative;
  z-index: 1;
  width: min(31%, 360px);
}
.buildecom-workflow h2,
.buildecom-principle h2,
.buildecom-brand-section h2,
.buildecom-outcome h2 { margin-top: 22px; font-size: clamp(52px, 6.2vw, 100px); line-height: 0.9; }

.buildecom-workflow h2 {
  font-size: clamp(52px, 5vw, 82px);
  line-height: 0.88;
}

.buildecom-workflow-grid > div > p:not(.buildecom-eyebrow),
.buildecom-principle-grid > div > p:not(.buildecom-eyebrow),
.buildecom-brand-grid > div > p:not(.buildecom-eyebrow),
.buildecom-outcome > div > p:not(.buildecom-eyebrow) {
  max-width: 560px;
  margin-top: 32px;
  color: rgba(245, 248, 255, 0.7);
  font-size: 17px;
  line-height: 1.7;
}

.buildecom-feature-list { display: grid; gap: 14px; margin: 38px 0 0; padding: 0; list-style: none; }
.buildecom-feature-list li { display: flex; align-items: center; gap: 12px; color: rgba(245, 248, 255, 0.9); font-size: 15px; }
.buildecom-feature-list li::before { width: 8px; height: 8px; border-radius: 50%; background: #5f86ff; content: ""; }

.buildecom-builder-shot,
.buildecom-device-shot {
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #eef2f7;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.buildecom-builder-shot {
  position: absolute;
  top: -12px;
  left: 45.5vw;
  z-index: 0;
  width: min(86vw, 1360px);
  height: auto;
  min-height: 0;
  margin: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.buildecom-builder-shot img {
  height: auto;
  object-position: left center;
}

.buildecom-principle { background: #0e1428; }
.buildecom-principle-grid { grid-template-columns: 1.08fr 0.92fr; align-items: stretch; }

.buildecom-brand-section { background: #f0f3f8; color: #111827; }
.buildecom-brand-section .buildecom-eyebrow { color: #3568e6; }
.buildecom-brand-grid { grid-template-columns: 0.78fr 1.22fr; align-items: center; }
.buildecom-brand-grid > div > p:not(.buildecom-eyebrow) { color: rgba(17, 24, 39, 0.68); }

.buildecom-brand-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #070a16;
  box-shadow: 0 30px 80px rgba(31, 52, 92, 0.2);
}

.buildecom-outcome { background: #5f86ff; color: #fff; }
.buildecom-outcome .buildecom-eyebrow { color: #152d72; }
.buildecom-outcome h2 span { color: #182d6e; }
.buildecom-outcome > div > p:not(.buildecom-eyebrow) { color: rgba(255, 255, 255, 0.8); }
.buildecom-outcome .buildecom-button { margin-top: 38px; border-color: #fff; background: #fff; color: #1d3f9c; }
.buildecom-outcome .buildecom-button:hover { border-color: #182d6e; background: #182d6e; color: #fff; }

/* BuildeCom case-study narrative modules */
.buildecom-complexity,
.buildecom-journey,
.buildecom-exploration,
.buildecom-guardrails {
  padding: clamp(100px, 14vw, 190px) 0;
}

.buildecom-complexity {
  background: #5f86ff;
  color: #07101f;
}

.buildecom-complexity .buildecom-eyebrow {
  color: rgba(7, 16, 31, 0.62);
}

.buildecom-complexity h2,
.buildecom-journey h2,
.buildecom-exploration h2,
.buildecom-guardrails h2 {
  margin-top: 24px;
  font-size: clamp(52px, 7.5vw, 122px);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.buildecom-complexity h2 span {
  color: rgba(7, 16, 31, 0.46);
}

.buildecom-complexity-grid,
.buildecom-guardrails-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(58px, 9vw, 128px);
}

.buildecom-complexity-grid article {
  min-height: 306px;
  padding: 28px;
  border: 1px solid rgba(7, 16, 31, 0.22);
  border-radius: 18px;
  background: rgba(245, 248, 255, 0.22);
}

.buildecom-card-label {
  color: #7194ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.buildecom-complexity .buildecom-card-label {
  color: rgba(7, 16, 31, 0.62);
}

.buildecom-complexity-grid strong {
  display: block;
  max-width: 540px;
  margin-top: 78px;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.buildecom-journey {
  background: #f0f3f8;
  color: #111827;
}

.buildecom-journey .buildecom-eyebrow {
  color: #3568e6;
}

.buildecom-section-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.18);
}

.buildecom-section-topline > p:last-child {
  max-width: 440px;
  color: rgba(17, 24, 39, 0.62);
  font-size: 13px;
  line-height: 1.58;
}

.buildecom-journey h2 span {
  color: #3568e6;
}

.buildecom-journey-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: clamp(60px, 9vw, 126px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(17, 24, 39, 0.2);
  list-style: none;
}

.buildecom-journey-list li {
  display: grid;
  gap: 46px;
  min-height: 160px;
  padding: 20px 20px 0 0;
  border-right: 1px solid rgba(17, 24, 39, 0.2);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.buildecom-journey-list li + li { padding-left: 20px; }
.buildecom-journey-list li:last-child { border-right: 0; }
.buildecom-journey-list span { color: #3568e6; font-size: 11px; letter-spacing: 0.12em; }

.buildecom-exploration { background: #070a16; }
.buildecom-exploration h2 span { color: #7194ff; }

.buildecom-exploration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(58px, 9vw, 128px);
}

.buildecom-exploration-grid article {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 26px;
  border: 1px solid rgba(245, 248, 255, 0.15);
  border-radius: 16px;
  background: rgba(15, 25, 48, 0.72);
}

.buildecom-exploration-grid .is-selected {
  border-color: rgba(113, 148, 255, 0.72);
  background: #16244b;
}

.buildecom-exploration-grid span,
.buildecom-exploration-grid em {
  color: #7194ff;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buildecom-exploration-grid h3 {
  margin: 66px 0 14px;
  color: #f5f8ff;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1;
}

.buildecom-exploration-grid p {
  color: rgba(245, 248, 255, 0.68);
  font-size: 14px;
  line-height: 1.6;
}

.buildecom-exploration-grid em { margin-top: auto; padding-top: 28px; }

.buildecom-guardrails {
  background: #0e1428;
}

.buildecom-guardrails h2 span { color: #7194ff; }

.buildecom-guardrails-grid article {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(245, 248, 255, 0.15);
  border-radius: 18px;
  background: rgba(245, 248, 255, 0.04);
}

.buildecom-guardrails-grid h3 {
  max-width: 510px;
  margin: 78px 0 16px;
  color: #f5f8ff;
  font-size: clamp(27px, 3vw, 43px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.buildecom-guardrails-grid article > p:last-child {
  max-width: 510px;
  color: rgba(245, 248, 255, 0.67);
  font-size: 15px;
  line-height: 1.62;
}

.buildecom-outcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(62px, 9vw, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.buildecom-outcome-grid article {
  min-height: 195px;
  padding: 24px 22px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.buildecom-outcome-grid article + article { padding-left: 22px; }
.buildecom-outcome-grid article:last-child { border-right: 0; }
.buildecom-outcome-grid strong { display: block; font-size: clamp(22px, 2.2vw, 32px); font-weight: 500; letter-spacing: -0.055em; }
.buildecom-outcome-grid p { margin-top: 52px; color: rgba(255, 255, 255, 0.82); font-size: 14px; line-height: 1.55; }

.buildecom-closing {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: clamp(72px, 11vw, 150px);
}

.buildecom-closing p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 3vw, 40px);
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.buildecom-closing .buildecom-button { flex: 0 0 auto; margin: 0; }

@media (max-width: 850px) {
  .buildecom-shell { width: min(100% - 36px, 1280px); }
  .buildecom-hero { min-height: auto; padding-top: 140px; }
  .buildecom-hero-grid,
  .buildecom-workflow-grid,
  .buildecom-principle-grid,
  .buildecom-brand-grid,
  .buildecom-overview-grid { grid-template-columns: 1fr; }
  .buildecom-complexity-grid,
  .buildecom-guardrails-grid { grid-template-columns: 1fr; }
  .buildecom-journey-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .buildecom-workflow { min-height: 0; padding: clamp(90px, 12vw, 130px) 0; }
  .buildecom-workflow-grid { display: grid; min-height: 0; grid-template-columns: 1fr; }
  .buildecom-workflow-grid > div { width: auto; }
  .buildecom-hero-art {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(110%, 680px);
    min-height: 0;
    margin: 16px -5% 0 auto;
  }
  .buildecom-principle-grid > div { order: -1; }
  .buildecom-facts { grid-template-columns: repeat(2, 1fr); }
  .buildecom-facts div:nth-child(2) { border-right: 0; }
  .buildecom-facts div:nth-child(n + 3) { border-top: 1px solid rgba(17, 24, 39, 0.2); }
  .buildecom-builder-shot,
  .buildecom-device-shot { min-height: 0; aspect-ratio: 4 / 3; }
  .buildecom-builder-shot {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-right: 0;
    overflow: hidden;
    border-radius: 16px;
  }

  .buildecom-closing { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .buildecom-brand { font-size: 22px; }
  .buildecom-back { font-size: 10px; }
  .buildecom-hero h1 { font-size: clamp(56px, 16vw, 78px); }
  .buildecom-actions { align-items: stretch; flex-direction: column; }
  .buildecom-button { justify-content: space-between; }
  .buildecom-facts div { min-height: 108px; }
  .buildecom-section-topline { align-items: flex-start; flex-direction: column; gap: 14px; }
  .buildecom-journey-list,
  .buildecom-exploration-grid,
  .buildecom-outcome-grid { grid-template-columns: 1fr; }
  .buildecom-journey-list li,
  .buildecom-journey-list li + li,
  .buildecom-outcome-grid article,
  .buildecom-outcome-grid article + article { min-height: 0; padding: 20px 0; border-top: 1px solid rgba(245, 248, 255, 0.2); border-right: 0; }
  .buildecom-journey-list li { border-color: rgba(17, 24, 39, 0.2); }
  .buildecom-outcome-grid article { border-color: rgba(255, 255, 255, 0.28); }
  .buildecom-journey-list li:first-child,
  .buildecom-outcome-grid article:first-child { border-top: 0; }
  .buildecom-journey-list li { gap: 18px; }
  .buildecom-outcome-grid p { margin-top: 22px; }
  .buildecom-exploration-grid article,
  .buildecom-guardrails-grid article { min-height: 0; padding: 24px; }
  .buildecom-exploration-grid h3,
  .buildecom-guardrails-grid h3 { margin-top: 48px; }
}

body.case-study-page {
  min-width: 320px;
  color: #f7f8f1;
  background: #030712;
}

.case-study-page .case-study-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 7, 18, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.case-study-page .case-study-nav-inner,
.timodesk-shell {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.case-study-page .case-study-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.case-study-page .case-study-brand,
.case-study-page .case-study-back {
  color: #f7f8f1;
}

.case-study-page .case-study-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.09em;
  line-height: 1;
  white-space: nowrap;
}

.case-study-page .case-study-brand img {
  width: 25px;
  height: 25px;
}

.case-study-page .case-study-brand span span {
  color: var(--lime);
}

.case-study-page .case-study-back {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease;
}

.case-study-page .case-study-back:hover,
.case-study-page .case-study-back:focus-visible {
  color: var(--lime);
}


/* ==========================================================================
   07 — SHARED CASE-STUDY CTA BUTTONS
   Figma nodes 20353:1535 and 20353:1536
   ========================================================================== */

:is(.kothay-button, .buildecom-button, .timodesk-button) {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: fit-content;
  min-height: 58px;
  padding: 8px 8px 8px 16px;
  border: 1px solid #fff;
  border-radius: var(--radius-pill);
  color: #fff;
  background: transparent;
  font: 700 18px/1.4 var(--font-ui);
  white-space: nowrap;
  transition: transform 220ms var(--ease-out), border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

:is(.kothay-button, .buildecom-button, .timodesk-button) .case-study-button-arrow {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

:is(.kothay-button, .buildecom-button, .timodesk-button) .case-study-button-arrow img {
  width: 20px;
  height: 20px;
  transition: transform 260ms var(--ease-out);
}

:is(.kothay-button, .buildecom-button, .timodesk-button):hover,
:is(.kothay-button, .buildecom-button, .timodesk-button):focus-visible {
  border-color: #fff;
  color: #fff;
  background: transparent;
  transform: translateY(-2px);
}

:is(.kothay-button, .buildecom-button, .timodesk-button):hover .case-study-button-arrow img,
:is(.kothay-button, .buildecom-button, .timodesk-button):focus-visible .case-study-button-arrow img {
  transform: translate(2px, -2px);
}

:is(.kothay-button-primary, .buildecom-button-primary, .timodesk-button-primary),
.kothay-outcome .kothay-button-primary,
.buildecom-outcome .buildecom-button-primary {
  border-color: #baf551;
  color: #030712;
  background: #baf551;
}

:is(.kothay-button-primary, .buildecom-button-primary, .timodesk-button-primary):hover,
:is(.kothay-button-primary, .buildecom-button-primary, .timodesk-button-primary):focus-visible,
.kothay-outcome .kothay-button-primary:hover,
.kothay-outcome .kothay-button-primary:focus-visible,
.buildecom-outcome .buildecom-button-primary:hover,
.buildecom-outcome .buildecom-button-primary:focus-visible {
  border-color: #d8ff8c;
  color: #030712;
  background: #d8ff8c;
}

.timodesk-outcome .timodesk-button-primary {
  border-color: #030712;
  color: #fff;
  background: #030712;
}

.timodesk-outcome .timodesk-button-primary:hover,
.timodesk-outcome .timodesk-button-primary:focus-visible {
  border-color: #030712;
  color: #fff;
  background: #151a25;
}

.timodesk-outcome .timodesk-button-primary .case-study-button-arrow img {
  filter: brightness(0) invert(1);
}

@media (max-width: 560px) {
  :is(.kothay-button, .buildecom-button, .timodesk-button) {
    width: 100%;
    justify-content: space-between;
    font-size: 16px;
  }
}

/* ==========================================================================
   08 — TIMODESK CASE STUDY / FIGMA EDITORIAL SYSTEM
   ========================================================================== */

.timodesk-case {
  --timo-ink: #030712;
  --timo-panel: #070f1c;
  --timo-paper: #fff;
  --timo-orange: #ff6900;
  --timo-peach: #ffb86a;
  --timo-dark-text: #151515;
  overflow: clip;
  color: var(--timo-paper);
  background: var(--timo-ink);
  font-family: "Sora", sans-serif;
}

.timodesk-shell {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
}

.timodesk-section {
  position: relative;
  padding-block: clamp(112px, 8.4vw, 162px);
  background: var(--timo-ink);
}

.timodesk-orange-section {
  color: var(--timo-dark-text);
  background: var(--timo-peach);
}

.timodesk-case :is(h1, h2, h3, p, blockquote, figure, dl, ol, ul) {
  margin-top: 0;
}

.timodesk-case :is(figure, blockquote) {
  margin-inline: 0;
}

.timodesk-eyebrow,
.timodesk-card-label {
  margin-bottom: 40px;
  color: var(--timo-orange);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.timodesk-orange-section .timodesk-eyebrow,
.timodesk-orange-section .timodesk-card-label {
  color: rgba(21, 21, 21, 0.7);
}

.timodesk-case h2 {
  max-width: 1220px;
  margin-bottom: 72px;
  font-family: "Sora", sans-serif;
  font-size: 120px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -4.8px;
  line-height: 1;
}

.timodesk-case h2 span,
.timodesk-case h1 span {
  color: var(--timo-orange);
}

.timodesk-orange-section h2 span {
  color: inherit;
  font-weight: 600;
}

.timodesk-body-copy,
.timodesk-section-header p,
.timodesk-brand-layout > div > p {
  max-width: 648px;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.timodesk-orange-section .timodesk-body-copy {
  color: rgba(21, 21, 21, 0.72);
}

.timodesk-section-header {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 84px;
  align-items: start;
}

.timodesk-section-header h2 {
  margin-bottom: 48px;
}

.timodesk-section-header p {
  margin-left: 0;
}

.timodesk-media {
  overflow: hidden;
  width: 100%;
  margin-bottom: 0;
  border-radius: 40px;
  background: var(--timo-panel);
}

.timodesk-media img,
.timodesk-brand-gallery img,
.timodesk-transparency-media img,
.timodesk-outcome-media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero */
.timodesk-hero {
  position: relative;
  overflow: hidden;
  min-height: 1232px;
  padding-top: 154px;
  background: var(--timo-ink);
}

.timodesk-hero-layout {
  position: relative;
  min-height: 1078px;
}

.timodesk-hero .timodesk-eyebrow {
  margin-bottom: 14px;
  font-family: "Inter", sans-serif;
}

.timodesk-hero h1 {
  position: relative;
  z-index: 2;
  width: 1200px;
  margin: 0;
  font-size: clamp(112px, 7.82vw, 150px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.9;
  white-space: normal;
}

.timodesk-intro {
  position: relative;
  z-index: 3;
  width: 412px;
  margin: -86px 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1.42;
}

.timodesk-intro strong {
  color: var(--timo-paper);
  font-weight: 600;
}

.timodesk-facts {
  position: relative;
  z-index: 3;
  width: 476px;
  margin: 220px 0 0;
}

.timodesk-facts div {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.timodesk-facts dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.timodesk-facts dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.5;
}

.timodesk-hero-device {
  position: absolute;
  z-index: 1;
  top: 357px;
  left: 39.2%;
  width: min(1215px, 92vw);
  max-width: none;
  height: auto;
  pointer-events: none;
}

.timodesk-hero-glow {
  position: absolute;
  z-index: 0;
  top: 3px;
  left: 245px;
  display: block;
  width: 1361px;
  height: 1361px;
  max-width: none;
  pointer-events: none;
}

/* Challenge */
.timodesk-challenge {
  padding-top: 157px;
  padding-bottom: 144px;
}

.timodesk-challenge h2 {
  margin-bottom: 93px;
}

.timodesk-balance {
  display: flex;
  justify-content: center;
  margin-inline: -90px;
}

.timodesk-balance article {
  display: grid;
  place-content: center;
  flex: 0 0 500px;
  aspect-ratio: 1;
  padding: 52px;
  border: 1px solid rgba(21, 21, 21, 0.35);
  border-radius: 50%;
  text-align: center;
}

.timodesk-balance article + article {
  margin-left: -45px;
}

.timodesk-balance p {
  margin-bottom: 26px;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timodesk-balance h3 {
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.timodesk-balance-center {
  color: var(--timo-paper);
  background: var(--timo-dark-text);
}

.timodesk-balance-center img {
  width: 100px;
  margin: 0 auto 34px;
}

.timodesk-centered-copy {
  max-width: 980px;
  margin: 58px auto 112px;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.35;
  text-align: center;
}

.timodesk-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.timodesk-comparison article {
  min-height: 390px;
  padding: 50px 56px;
  border: 1px solid rgba(21, 21, 21, 0.22);
  border-radius: 40px;
}

.timodesk-comparison-dark {
  color: var(--timo-paper);
  background: var(--timo-dark-text);
}

.timodesk-comparison ul {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timodesk-comparison li {
  padding-bottom: 17px;
  border-bottom: 1px solid currentColor;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.timodesk-question-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
  margin-top: 112px;
  padding-top: 46px;
  border-top: 1px solid rgba(21, 21, 21, 0.28);
}

.timodesk-question {
  max-width: 910px;
  margin-bottom: 0;
  font-size: clamp(44px, 4vw, 76px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.07;
}

/* Discovery */
.timodesk-discovery {
  padding-block: 150px 100px;
}

.timodesk-research-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 96px;
}

.timodesk-research-cards > article {
  position: relative;
  min-height: 390px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.timodesk-research-cards > article > p {
  position: absolute;
  top: 23px;
  left: 23px;
  width: min(264px, calc(100% - 46px));
  min-height: 0;
  margin: 0;
  color: var(--timo-paper);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.timodesk-gauge-art {
  position: absolute;
  top: 80px;
  left: 23px;
  display: block;
  width: min(264px, calc(100% - 46px));
  height: 132px;
}

.timodesk-research-cards article > div:last-child {
  position: absolute;
  top: 236px;
  left: 23px;
  width: min(264px, calc(100% - 46px));
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.timodesk-research-cards h3 {
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.96px;
  line-height: 1.4;
}

.timodesk-research-cards article > div:last-child p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.64px;
  line-height: 1.4;
}

/* Insight and product direction */
.timodesk-insight-section {
  padding-top: 160px;
  background: var(--timo-panel);
}

.timodesk-insight-section > .timodesk-shell > .timodesk-eyebrow,
.timodesk-insight-section h2 {
  margin-bottom: 24px;
}

.timodesk-insight-section h2 {
  max-width: 1320px;
}

.timodesk-insight-section .timodesk-body-copy {
  width: min(1110px, 100%);
  max-width: none;
  margin: 0 0 100px;
}

.timodesk-dual-requirement {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  margin: 0 0 100px;
  border: 0;
}

.timodesk-dual-requirement article {
  position: relative;
  min-height: 296px;
  padding: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 105, 0, 0.5);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.05);
}

.timodesk-dual-requirement article + article {
  padding-left: 40px;
}

.timodesk-dual-requirement p {
  position: absolute;
  top: 39px;
  left: 39px;
  width: min(291px, calc(100% - 78px));
  margin: 0;
  color: var(--timo-orange);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: normal;
  text-transform: uppercase;
}

.timodesk-dual-requirement h3 {
  position: absolute;
  top: 159px;
  left: 39px;
  width: min(542px, calc(100% - 78px));
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2.4px;
  line-height: 1;
}

.timodesk-affinity-media {
  position: relative;
  aspect-ratio: 1287 / 620;
  border: 1px solid #1e2939;
  border-radius: 20px;
}

.timodesk-affinity-media img {
  position: absolute;
  top: -3.06%;
  left: -1.32%;
  width: 102.56%;
  height: 106.45%;
  max-width: none;
  object-fit: fill;
}

.timodesk-direction h2 {
  margin-bottom: 96px;
}

.timodesk-principles-list {
  width: min(816px, 100%);
  margin-left: auto;
  border-top: 1px solid rgba(21, 21, 21, 0.28);
}

.timodesk-principles-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  padding-block: 35px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.28);
}

.timodesk-principles-list article > span {
  padding-top: 5px;
  color: rgba(21, 21, 21, 0.58);
  font-size: 14px;
  font-weight: 600;
}

.timodesk-principles-list h3 {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.timodesk-principles-list p {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

/* Product detail sections */
.timodesk-early .timodesk-body-copy,
.timodesk-decision .timodesk-body-copy,
.timodesk-transparency .timodesk-body-copy,
.timodesk-edge-cases .timodesk-body-copy,
.timodesk-outcome .timodesk-body-copy {
  margin-top: -22px;
  margin-bottom: 82px;
}

.timodesk-early {
  background: var(--timo-panel);
}

.timodesk-early > .timodesk-shell > .timodesk-eyebrow,
.timodesk-early h2 {
  margin-bottom: 24px;
}

.timodesk-early h2 {
  max-width: 1320px;
}

.timodesk-early .timodesk-body-copy {
  width: min(1110px, 100%);
  max-width: none;
  margin: 0 0 102px;
}

.timodesk-early-findings {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.timodesk-early-findings article {
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-height: 164px;
}

.timodesk-early-findings article + article {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.timodesk-early-findings article > p {
  margin: 0;
  color: var(--timo-orange);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: normal;
}

.timodesk-early-findings article > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: min(399px, 100%);
}

.timodesk-early-findings h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.96px;
  line-height: 1.4;
}

.timodesk-early-findings article > div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.64px;
  line-height: 1.4;
}

.timodesk-early .timodesk-monitoring-principle {
  width: min(937px, 100%);
  max-width: none;
  margin: 72px 0 100px auto;
  color: var(--timo-paper);
  font-size: 64px;
  font-weight: 400;
  letter-spacing: -2.56px;
  line-height: 1;
  text-align: left;
}

.timodesk-early-media,
.timodesk-decision-media {
  aspect-ratio: 3 / 2;
}

.timodesk-decision-media {
  position: relative;
  isolation: isolate;
  overflow: visible;
  width: 100%;
  margin: 0;
  background: transparent;
}

.timodesk-decision-media::before {
  position: absolute;
  z-index: -1;
  top: -41.2%;
  left: -8.72%;
  width: 117.3%;
  aspect-ratio: 1546 / 1160;
  background: url("assets/timodesk-figma/core-decision-glow.svg") center / 100% 100% no-repeat;
  content: "";
  pointer-events: none;
}

.timodesk-decision-crop {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.timodesk-decision-crop img {
  position: absolute;
  top: -25.77%;
  left: -1.68%;
  display: block;
  width: 103.23%;
  height: 142.62%;
  max-width: none;
  object-fit: cover;
}

.timodesk-early-media {
  position: relative;
  width: calc(100% - 2px);
  height: auto;
  aspect-ratio: 1318 / 693;
  border-radius: 20px;
}

.timodesk-early-media img {
  position: absolute;
  top: -11.86%;
  left: -16.93%;
  width: 118.78%;
  height: 150.32%;
  max-width: none;
  object-fit: fill;
}

.timodesk-hierarchy {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 96px 0;
  padding: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.timodesk-hierarchy li {
  min-height: 258px;
  padding: 32px 28px;
}

.timodesk-hierarchy li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.timodesk-hierarchy li > span {
  display: block;
  margin-bottom: 68px;
  color: var(--timo-orange);
  font-size: 13px;
  font-weight: 600;
}

.timodesk-hierarchy h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.timodesk-hierarchy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.45;
}

.timodesk-transparency-layout {
  display: grid;
  grid-template-columns: 314px minmax(0, 1fr);
  gap: 84px;
  align-items: center;
  margin-top: 112px;
}

.timodesk-transparency {
  background: var(--timo-panel);
}

.timodesk-transparency-list {
  display: grid;
  gap: 12px;
}

.timodesk-transparency-list article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: transparent;
}

.timodesk-transparency-list span {
  color: var(--timo-orange);
  font-size: 12px;
  font-weight: 600;
}

.timodesk-transparency-list h3 {
  margin: 40px 0 4px;
  font-size: 20px;
  font-weight: 500;
}

.timodesk-transparency-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.45;
}

.timodesk-transparency-media {
  width: calc(100% + max(24px, (100vw - 1320px) / 2));
  margin: 0;
}

.timodesk-transparency-media img {
  object-fit: contain;
}

/* Workflow and imperfect states */
.timodesk-workflow h2 {
  max-width: 1160px;
}

.timodesk-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 112px;
  border-block: 1px solid rgba(21, 21, 21, 0.28);
}

.timodesk-flow article {
  min-height: 330px;
  padding: 36px 42px;
}

.timodesk-flow article + article {
  border-left: 1px solid rgba(21, 21, 21, 0.28);
}

.timodesk-flow span {
  display: block;
  margin-bottom: 82px;
  color: rgba(21, 21, 21, 0.56);
  font-size: 14px;
  font-weight: 600;
}

.timodesk-flow p {
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timodesk-flow h3 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.timodesk-state-list {
  position: relative;
  min-height: 660px;
  margin: 106px 0 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 40px;
  list-style: none;
  background: radial-gradient(circle at center, rgba(255, 105, 0, 0.08), transparent 58%);
}

.timodesk-state-list li {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 176px;
  min-height: 66px;
  padding: 15px 24px;
  border: 2px solid var(--timo-orange);
  border-radius: 50%;
  background: var(--timo-ink);
  font-size: 18px;
  font-weight: 500;
  transform: rotate(-6deg);
}

.timodesk-state-list li:nth-child(1) { top: 13%; left: 8%; }
.timodesk-state-list li:nth-child(2) { top: 14%; right: 17%; transform: rotate(7deg); }
.timodesk-state-list li:nth-child(3) { top: 43%; left: 36%; transform: rotate(4deg); }
.timodesk-state-list li:nth-child(4) { bottom: 15%; left: 12%; transform: rotate(8deg); }
.timodesk-state-list li:nth-child(5) { bottom: 16%; right: 30%; transform: rotate(-8deg); }
.timodesk-state-list li:nth-child(6) { top: 44%; right: 5%; transform: rotate(5deg); }

.timodesk-edge-cases {
  background: var(--timo-panel);
}

.timodesk-state-list {
  border: 0;
  background: none;
}

.timodesk-state-list li[class^="timodesk-state-"] {
  display: block;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.timodesk-state-list img {
  display: block;
  width: 100%;
  height: auto;
}

/* Visual system and brand */
.timodesk-visual-system .timodesk-section-header > .timodesk-eyebrow {
  color: var(--timo-orange);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: normal;
  text-transform: uppercase;
}

.timodesk-visual-system .timodesk-section-header h2 span {
  display: block;
}

.timodesk-visual-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 82px 0 56px;
}

.timodesk-visual-principles span {
  padding: 13px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  color: var(--timo-paper);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.timodesk-visual-media {
  aspect-ratio: 1320 / 939;
}

.timodesk-system {
  padding-bottom: 0;
  background: var(--timo-panel);
}

.timodesk-system-media {
  aspect-ratio: 3 / 2;
}

.timodesk-brand-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 610px;
  gap: 84px;
  align-items: start;
  margin-top: 160px;
}

.timodesk-brand-layout > div {
  padding-top: 40px;
}

.timodesk-brand-layout .timodesk-eyebrow {
  margin-bottom: 24px;
  color: var(--timo-orange);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: normal;
  text-transform: uppercase;
}

.timodesk-brand-layout h2 {
  margin-bottom: 44px;
}

.timodesk-brand-layout > div > p {
  margin-left: 0;
}

.timodesk-logo-construction {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 40px;
  background: var(--timo-ink);
}

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

.timodesk-brand-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 120px;
}

.timodesk-brand-gallery figure {
  overflow: hidden;
  aspect-ratio: 1;
  margin: 0;
  border-radius: 40px;
  background: var(--timo-ink);
}

.timodesk-brand-gallery .timodesk-brand-wide {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.timodesk-brand-gallery img {
  object-position: center;
}

/* Trade-offs and outcome */
.timodesk-tradeoff-list {
  width: min(980px, 100%);
  margin: 96px 0 120px auto;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.timodesk-tradeoff-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  padding-block: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.timodesk-tradeoff-list h3 {
  margin-bottom: 0;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.timodesk-tradeoff-list h3 span {
  color: var(--timo-orange);
}

.timodesk-tradeoff-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  line-height: 1.55;
}

.timodesk-tradeoffs > .timodesk-shell > .timodesk-question {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.82);
}

.timodesk-outcome {
  padding-bottom: 0;
}

.timodesk-outcome-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 100px 0 118px;
  border-block: 1px solid rgba(21, 21, 21, 0.28);
}

.timodesk-outcome-list article {
  min-height: 256px;
  padding: 32px 25px;
}

.timodesk-outcome-list article + article {
  border-left: 1px solid rgba(21, 21, 21, 0.28);
}

.timodesk-outcome-list strong {
  display: block;
  margin-bottom: 74px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.timodesk-outcome-list p {
  margin-bottom: 0;
  color: rgba(21, 21, 21, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.timodesk-outcome-media {
  position: relative;
  width: 100%;
  height: min(75vw, 1144px);
  min-height: 720px;
  margin: 0;
  overflow: hidden;
}

.timodesk-outcome-media > img {
  object-position: center 46%;
}

.timodesk-outcome-media .timodesk-button {
  position: absolute;
  z-index: 2;
  top: 64px;
  right: max(24px, calc((100vw - 1320px) / 2));
}

/* Existing final sections intentionally retained */
.timodesk-reflection {
  padding-top: clamp(120px, 16vw, 230px);
  padding-bottom: clamp(120px, 16vw, 230px);
}

.timodesk-reflection h2 {
  max-width: 1180px;
}

.timodesk-reading-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  max-width: 1050px;
  margin: 88px 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.65;
}

.timodesk-lede {
  color: var(--timo-paper);
  font-size: 25px;
  letter-spacing: -0.035em;
  line-height: 1.45;
}

.timodesk-final-lesson {
  max-width: 1050px;
  margin: clamp(84px, 12vw, 168px) 0 0 auto;
  padding-left: clamp(24px, 4vw, 56px);
  border-left: 3px solid var(--lime);
  font-size: clamp(30px, 5vw, 72px);
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.timodesk-project-navigation {
  padding: clamp(82px, 10vw, 130px) 0;
  border-top: 1px solid rgba(247, 248, 241, 0.14);
  background: var(--timo-panel);
}

.timodesk-project-navigation a {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: 40px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid rgba(247, 248, 241, 0.18);
  color: var(--timo-paper);
}

.timodesk-project-navigation a > span {
  color: rgba(247, 248, 241, 0.58);
  font-size: 13px;
}

.timodesk-project-navigation a > strong {
  font-size: clamp(30px, 5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1;
  transition: color 180ms ease, transform 260ms var(--ease-out);
}

.timodesk-project-navigation a:is(:hover, :focus-visible) > strong {
  color: var(--lime);
  transform: translateX(8px);
}

/* Tablet */
@media (max-width: 1100px) {
  .timodesk-shell {
    width: min(calc(100% - 64px), 900px);
  }

  .timodesk-section {
    padding-block: 112px;
  }

  .timodesk-case h2 {
    margin-bottom: 56px;
    font-size: clamp(62px, 8.5vw, 88px);
  }

  .timodesk-hero {
    min-height: 1050px;
    padding-top: 110px;
  }

  .timodesk-hero-layout {
    min-height: 940px;
  }

  .timodesk-hero h1 {
    width: 100%;
    font-size: clamp(84px, 12.2vw, 118px);
  }

  .timodesk-intro {
    width: min(410px, 48%);
    margin-top: 50px;
  }

  .timodesk-facts {
    width: 42%;
    margin-top: 150px;
  }

  .timodesk-hero-device {
    top: 430px;
    left: 29%;
    width: 990px;
  }

  .timodesk-section-header {
    grid-template-columns: 220px 1fr;
    gap: 48px;
  }

  .timodesk-balance {
    margin-inline: -50px;
  }

  .timodesk-balance article {
    flex-basis: min(38vw, 370px);
    padding: 38px;
  }

  .timodesk-balance h3 {
    font-size: 21px;
  }

  .timodesk-research-cards {
    grid-template-columns: repeat(2, minmax(0, 312px));
    justify-content: center;
  }

  .timodesk-research-cards > article {
    min-height: 390px;
  }

  .timodesk-dual-requirement h3 {
    font-size: clamp(34px, 5vw, 44px);
    letter-spacing: -0.05em;
  }

  .timodesk-early-findings {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .timodesk-early-findings article {
    gap: 20px;
    width: 100%;
    min-height: 0;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timodesk-early-findings article + article {
    padding-left: 0;
    border-left: 0;
  }

  .timodesk-early .timodesk-monitoring-principle {
    margin-top: 72px;
    font-size: clamp(44px, 7vw, 60px);
    letter-spacing: -0.04em;
  }

  .timodesk-hierarchy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timodesk-hierarchy li:nth-child(3) {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timodesk-hierarchy li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timodesk-transparency .timodesk-body-copy {
    width: 100%;
    max-width: 648px;
    margin-left: 0;
  }

  .timodesk-transparency-layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .timodesk-transparency-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .timodesk-transparency-media {
    width: calc(100% + 64px);
    margin-left: -32px;
  }

  .timodesk-brand-layout {
    grid-template-columns: 1fr 45%;
    gap: 56px;
  }

  .timodesk-tradeoff-list article {
    grid-template-columns: minmax(0, 1fr) 44%;
  }

  .timodesk-outcome-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timodesk-outcome-list article:nth-child(4) {
    border-left: 0;
    border-top: 1px solid rgba(21, 21, 21, 0.28);
  }

  .timodesk-outcome-list article:nth-child(5) {
    border-top: 1px solid rgba(21, 21, 21, 0.28);
  }

  .timodesk-state-list {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1320 / 260;
    margin-top: 96px;
    min-height: 0;
    padding: 0;
  }

  .timodesk-state-list li,
  .timodesk-state-list li:nth-child(n) {
    position: absolute;
    flex: none;
    min-width: 0;
    transform: none;
  }

  .timodesk-state-list li.timodesk-state-network { bottom: 0; left: 0.15%; z-index: 2; width: 36.9%; }
  .timodesk-state-list li.timodesk-state-ideal { bottom: -5.4%; left: 35.6%; z-index: 3; width: 22%; }
  .timodesk-state-list li.timodesk-state-permissions { right: 0; bottom: 0; z-index: 2; width: 23.56%; }
  .timodesk-state-list li.timodesk-state-sync { bottom: 31.54%; left: 18.33%; z-index: 1; width: 30.15%; }
  .timodesk-state-list li.timodesk-state-device { bottom: 0; left: 47.58%; z-index: 2; width: 27.5%; }
  .timodesk-state-list li.timodesk-state-background { right: 5.45%; bottom: 35.38%; z-index: 1; width: 36.29%; }
}

/* Mobile */
@media (max-width: 700px) {
  .case-study-page .case-study-nav {
    padding-inline: 20px;
  }

  .case-study-page .case-study-nav-inner {
    width: 100%;
  }

  .case-study-page .case-study-brand {
    font-size: 23px;
  }

  .case-study-page .case-study-back {
    font-size: 10px;
    letter-spacing: 0;
  }

  .timodesk-shell {
    width: min(calc(100% - 40px), 560px);
  }

  .timodesk-section {
    padding-block: 82px;
  }

  .timodesk-eyebrow,
  .timodesk-card-label {
    margin-bottom: 26px;
    font-size: 12px;
  }

  .timodesk-case h2 {
    margin-bottom: 38px;
    font-size: clamp(43px, 13vw, 64px);
    letter-spacing: -0.05em;
  }

  .timodesk-body-copy,
  .timodesk-section-header p,
  .timodesk-brand-layout > div > p {
    margin-left: 0;
    font-size: 18px;
  }

  .timodesk-early h2 {
    font-size: clamp(42px, 11.8vw, 46px);
    letter-spacing: -0.04em;
  }

  .timodesk-early .timodesk-body-copy {
    width: 100%;
    font-size: 16px;
    line-height: 1.45;
  }

  .timodesk-early-findings h3 {
    font-size: 21px;
  }

  .timodesk-early-findings article > div > p {
    font-size: 15px;
    letter-spacing: -0.04em;
  }

  .timodesk-early .timodesk-monitoring-principle {
    width: 100%;
    margin: 64px 0 56px;
    font-size: clamp(38px, 11vw, 46px);
    letter-spacing: -0.04em;
  }

  .timodesk-hero {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .timodesk-hero-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .timodesk-hero h1 {
    width: 100%;
    font-size: clamp(52px, 14vw, 64px);
    line-height: 0.92;
  }

  .timodesk-hero h1 br {
    display: none;
  }

  .timodesk-hero h1 span {
    display: block;
  }

  .timodesk-intro {
    position: static;
    width: 100%;
    margin: 0;
    padding-top: 46px;
    font-size: 19px;
  }

  .timodesk-facts {
    width: 100%;
    margin: 58px 0 0;
  }

  .timodesk-facts div {
    grid-template-columns: 88px 1fr;
  }

  .timodesk-hero-device {
    position: relative;
    order: 5;
    top: auto;
    left: -24%;
    width: 175%;
    margin-top: 24px;
  }

  .timodesk-section-header,
  .timodesk-question-wrap,
  .timodesk-brand-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timodesk-section-header h2 {
    margin-bottom: 30px;
  }

  .timodesk-balance {
    display: grid;
    margin-inline: 0;
  }

  .timodesk-balance article {
    width: 100%;
    max-width: 390px;
    margin-inline: auto;
    padding: 40px;
  }

  .timodesk-balance article + article {
    margin: -30px auto 0;
  }

  .timodesk-centered-copy {
    margin: 54px auto 72px;
    font-size: 24px;
  }

  .timodesk-comparison,
  .timodesk-dual-requirement,
  .timodesk-flow,
  .timodesk-reading-grid {
    grid-template-columns: 1fr;
  }

  .timodesk-comparison article {
    min-height: 0;
    padding: 34px 30px;
    border-radius: 24px;
  }

  .timodesk-question-wrap {
    margin-top: 70px;
  }

  .timodesk-question {
    font-size: clamp(38px, 11vw, 54px);
  }

  .timodesk-research-cards {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .timodesk-research-cards > article {
    width: 100%;
    max-width: 312px;
    height: 390px;
    min-height: 390px;
    margin-inline: auto;
  }

  .timodesk-flow article + article {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .timodesk-principles-list article {
    grid-template-columns: 44px 1fr;
  }

  .timodesk-early .timodesk-monitoring-principle {
    margin-block: 70px 58px;
    text-align: left;
  }

  .timodesk-media,
  .timodesk-logo-construction,
  .timodesk-brand-gallery figure,
  .timodesk-state-list {
    border-radius: 22px;
  }

  .timodesk-affinity-media,
  .timodesk-early-media,
  .timodesk-decision-media,
  .timodesk-system-media,
  .timodesk-visual-media {
    aspect-ratio: 4 / 3;
  }

  .timodesk-hierarchy {
    grid-template-columns: 1fr;
    margin-block: 64px;
  }

  .timodesk-hierarchy li {
    min-height: 0;
  }

  .timodesk-hierarchy li + li,
  .timodesk-hierarchy li:nth-child(3),
  .timodesk-hierarchy li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .timodesk-hierarchy li > span {
    margin-bottom: 32px;
  }

  .timodesk-transparency-layout {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 72px;
  }

  .timodesk-transparency-list {
    grid-template-columns: 1fr;
  }

  .timodesk-transparency-media {
    width: 140%;
    margin-left: -10%;
  }

  .timodesk-flow article {
    min-height: 0;
    padding: 30px 0 36px;
  }

  .timodesk-flow article + article {
    border-color: rgba(21, 21, 21, 0.28);
  }

  .timodesk-flow span {
    margin-bottom: 40px;
  }

  .timodesk-brand-layout {
    margin-top: 90px;
  }

  .timodesk-brand-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 70px;
  }

  .timodesk-brand-gallery .timodesk-brand-wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .timodesk-tradeoff-list {
    margin-block: 64px 84px;
  }

  .timodesk-tradeoff-list article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timodesk-outcome-list {
    grid-template-columns: 1fr;
    margin-block: 64px 80px;
  }

  .timodesk-outcome-list article,
  .timodesk-outcome-list article:nth-child(n) {
    min-height: 0;
    padding: 28px 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.28);
    border-left: 0;
  }

  .timodesk-outcome-list strong {
    margin-bottom: 25px;
  }

  .timodesk-outcome-media {
    height: 72vh;
    min-height: 580px;
  }

  .timodesk-outcome-media .timodesk-button {
    top: 24px;
    right: 20px;
    left: 20px;
    width: auto;
  }

  .timodesk-reading-grid {
    gap: 28px;
    margin-top: 56px;
  }

  .timodesk-project-navigation a {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .timodesk-project-navigation a > strong {
    transition: none;
  }
}

/* 08.1 — Figma fidelity lock: TimoDesk case-study frames */
.timodesk-orange-section h2 span {
  color: rgba(21, 21, 21, 0.5);
  font-weight: inherit;
}

/* Challenge — Figma node 20476:2493 */
.timodesk-challenge > .timodesk-shell > .timodesk-eyebrow {
  margin-bottom: 44px;
}

.timodesk-challenge h2 {
  max-width: 1320px;
  font-weight: 600;
}

.timodesk-balance article {
  border-color: rgba(21, 21, 21, 0.25);
}

.timodesk-balance p {
  margin-bottom: 16px;
  color: rgba(21, 21, 21, 0.7);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: normal;
}

.timodesk-balance h3 {
  font-weight: 600;
}

.timodesk-centered-copy,
.timodesk-comparison li,
.timodesk-question {
  font-weight: 400;
}

.timodesk-comparison article:not(.timodesk-comparison-dark) {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.15);
}

.timodesk-comparison .timodesk-card-label {
  color: var(--timo-orange);
}

.timodesk-hero-device {
  overflow: hidden;
  height: 862px;
  margin: 0;
}

.timodesk-hero-device img {
  position: absolute;
  top: -40.9%;
  left: -29.53%;
  display: block;
  width: 159.43%;
  height: 168.54%;
  max-width: none;
}

.timodesk-balance-center {
  color: var(--timo-dark-text);
  background: transparent;
}

.timodesk-comparison li {
  position: relative;
  padding: 0 0 0 22px;
  border: 0;
}

.timodesk-comparison li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "⬩";
}

.timodesk-system-media img {
  position: relative;
  top: 0;
  left: -29.51%;
  width: 129.51%;
  height: 129.55%;
  max-width: none;
  object-fit: fill;
}

.timodesk-visual-media img {
  position: relative;
  top: -2.86%;
  left: -15.04%;
  width: 130.08%;
  height: 102.86%;
  max-width: none;
  object-fit: fill;
}

.timodesk-brand-gallery figure {
  background: #fff;
}

.timodesk-brand-gallery img {
  object-fit: cover;
}

.timodesk-brand-gallery figure:nth-child(4) img {
  object-position: center 72%;
}

@media (min-width: 1101px) {
  .timodesk-section {
    box-sizing: border-box;
    padding: 100px 0 0;
    overflow: hidden;
  }

  .timodesk-hero { height: 1302px; }
  .timodesk-challenge { height: 2395px; }
  .timodesk-discovery { height: 1296px; }
  .timodesk-insight-section { height: 1948px; }
  .timodesk-direction { height: 1412px; }
  .timodesk-early { height: 1995px; }
  .timodesk-decision { height: 2115px; }
  .timodesk-transparency { height: 1674px; }
  .timodesk-workflow { height: 1064px; }
  .timodesk-edge-cases { height: 1019px; }
  .timodesk-visual-system { height: 1858px; }
  .timodesk-system { height: 4548px; }
  .timodesk-tradeoffs { height: 1308px; }
  .timodesk-outcome { height: 1965px; }

  .timodesk-hero {
    padding-top: 155px;
  }

  .timodesk-hero-layout {
    min-height: 1147px;
  }

  .timodesk-hero .timodesk-eyebrow {
    margin-bottom: 9px;
    font-size: 14px;
  }

  .timodesk-hero h1 {
    width: 1189px;
    font-weight: 400;
  }

  .timodesk-hero h1 span {
    letter-spacing: -0.05em;
  }

  .timodesk-intro {
    position: absolute;
    top: 348px;
    left: 0;
    width: 412px;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.05em;
    line-height: 1.5;
  }

  .timodesk-facts {
    position: absolute;
    top: 496px;
    left: 0;
    width: 476px;
    margin: 0;
  }

  .timodesk-facts div {
    display: block;
    padding: 0 0 32px;
    border-top: 0;
  }

  .timodesk-facts div + div {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .timodesk-facts dt {
    margin-bottom: 8px;
    color: var(--timo-orange);
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.2;
  }

  .timodesk-facts dd {
    width: 334px;
    color: var(--timo-paper);
    font-size: 20px;
    letter-spacing: -0.05em;
    line-height: 1.2;
  }

  .timodesk-hero-device {
    top: 356px;
    left: 517px;
    width: 1214px;
  }

  .timodesk-challenge h2 {
    margin-bottom: 100px;
  }

  .timodesk-balance {
    justify-content: flex-start;
    margin: 0;
  }

  .timodesk-balance article {
    flex-basis: 500px;
    padding: 80px;
  }

  .timodesk-balance article + article {
    margin-left: -90px;
  }

  .timodesk-balance h3 {
    font-size: 32px;
    line-height: 1;
  }

  .timodesk-balance-center img {
    margin-bottom: 12px;
  }

  .timodesk-centered-copy {
    width: 998px;
    max-width: none;
    margin: 40px auto 100px;
    font-size: 32px;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .timodesk-comparison article {
    position: relative;
    height: 391px;
    padding: 40px;
  }

  .timodesk-comparison .timodesk-card-label {
    margin: 0;
  }

  .timodesk-comparison ul {
    position: absolute;
    top: 150px;
    right: 40px;
    left: 40px;
    gap: 0;
    margin: 0;
  }

  .timodesk-comparison li {
    font-size: 28px;
    letter-spacing: -0.04em;
    line-height: 1.8;
  }

  .timodesk-question-wrap {
    grid-template-columns: 392px 1fr;
    gap: 40px;
    margin-top: 100px;
    padding-top: 100px;
  }

  .timodesk-question-wrap .timodesk-eyebrow {
    margin: 19px 0 0;
  }

  .timodesk-question-wrap .timodesk-question {
    font-size: 64px;
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .timodesk-discovery {
    padding-top: 100px;
  }

  .timodesk-discovery .timodesk-section-header {
    grid-template-columns: 420px 816px;
    gap: 84px;
  }

  .timodesk-discovery .timodesk-section-header > .timodesk-eyebrow {
    margin: 29px 0 0;
  }

  .timodesk-discovery .timodesk-section-header h2 {
    margin-bottom: 24px;
  }

  .timodesk-discovery .timodesk-section-header p {
    width: 816px;
  }

  .timodesk-research-cards {
    margin-top: 100px;
  }

  .timodesk-research-cards > article {
    width: 312px;
    height: 390px;
    min-height: 0;
  }

  .timodesk-insight-section .timodesk-body-copy,
  .timodesk-early .timodesk-body-copy,
  .timodesk-decision .timodesk-body-copy,
  .timodesk-transparency .timodesk-body-copy,
  .timodesk-edge-cases .timodesk-body-copy,
  .timodesk-outcome .timodesk-body-copy {
    width: 832px;
    max-width: none;
    margin-top: 0;
  }

  .timodesk-insight-section .timodesk-body-copy {
    width: 1110px;
    margin: 0 0 100px;
  }

  .timodesk-dual-requirement {
    width: 1320px;
    margin: 0 0 100px;
  }

  .timodesk-affinity-media {
    height: 636px;
    aspect-ratio: auto;
  }

  .timodesk-direction h2 {
    margin-bottom: 100px;
  }

  .timodesk-principles-list {
    width: 825px;
  }

  .timodesk-principles-list article {
    grid-template-columns: 104px 684px;
    gap: 37px;
    height: 202px;
    padding: 37px 0;
  }

  .timodesk-principles-list h3 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
  }

  .timodesk-principles-list p {
    font-size: 24px;
    letter-spacing: -0.04em;
    line-height: 1.4;
  }

  .timodesk-early .timodesk-body-copy {
    width: 1110px;
    margin: 0 0 102px;
  }

  .timodesk-early-findings {
    grid-template-columns: repeat(3, 400px);
    justify-content: space-between;
  }

  .timodesk-early-findings article + article {
    position: relative;
    padding-left: 0;
    border-left: 0;
  }

  .timodesk-early-findings article + article::before {
    position: absolute;
    top: 0;
    left: -30px;
    width: 1px;
    height: 164px;
    background: rgba(255, 255, 255, 0.16);
    content: "";
  }

  .timodesk-early .timodesk-monitoring-principle {
    width: 937px;
    margin: 72px 0 100px auto;
    font-size: 64px;
    letter-spacing: -2.56px;
    line-height: 1;
  }

  .timodesk-early-media {
    width: 1318px;
    height: 693px;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .timodesk-decision .timodesk-body-copy {
    margin-bottom: 92px;
  }

  .timodesk-hierarchy {
    display: block;
    width: 952px;
    margin: 0 0 130px auto;
    border: 0;
  }

  .timodesk-hierarchy li {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 37px;
    min-height: 168px;
    padding: 37px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timodesk-hierarchy li + li,
  .timodesk-hierarchy li:nth-child(3),
  .timodesk-hierarchy li:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .timodesk-hierarchy li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timodesk-hierarchy li > span {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .timodesk-hierarchy h3 {
    margin: 0;
    font-size: 48px;
    font-weight: 600;
  }

  .timodesk-hierarchy p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    letter-spacing: -0.04em;
    line-height: 1.4;
  }

  .timodesk-decision-media {
    width: 1318px;
    height: 636px;
    aspect-ratio: auto;
  }

  .timodesk-decision-media::before {
    top: -262px;
    left: -115px;
    width: 1546px;
    height: 1160px;
    aspect-ratio: auto;
  }

  .timodesk-transparency .timodesk-body-copy {
    position: absolute;
    top: 429px;
    left: 547px;
    width: 773px;
    margin: 0;
  }

  .timodesk-transparency > .timodesk-shell {
    position: relative;
    height: 1574px;
  }

  .timodesk-transparency > .timodesk-shell > .timodesk-eyebrow {
    margin-bottom: 24px;
  }

  .timodesk-transparency h2 {
    width: 1320px;
    max-width: none;
    margin-bottom: 0;
  }

  .timodesk-transparency-layout {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
  }

  .timodesk-transparency-list {
    position: absolute;
    top: 643px;
    left: 0;
    width: 312px;
    gap: 24px;
  }

  .timodesk-transparency-list article {
    box-sizing: border-box;
    width: 312px;
    height: 170px;
    min-height: 0;
    padding: 24px;
  }

  .timodesk-transparency-list span {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: normal;
  }

  .timodesk-transparency-list h3 {
    margin: 40px 0 4px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.4;
  }

  .timodesk-transparency-list p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    letter-spacing: -0.04em;
    line-height: 1.4;
  }

  .timodesk-transparency-media {
    position: absolute;
    top: 631px;
    left: 395px;
    overflow: hidden;
    width: 1641px;
    height: 943px;
    margin: 0;
  }

  .timodesk-transparency-media img {
    position: absolute;
    top: -22.73%;
    left: -22.93%;
    width: 122.93%;
    height: 160.54%;
    max-width: none;
    object-fit: cover;
  }

  .timodesk-workflow h2 {
    width: 1320px;
    max-width: none;
    margin: 0;
  }

  .timodesk-workflow > .timodesk-shell {
    position: relative;
    height: 964px;
  }

  .timodesk-workflow > .timodesk-shell > .timodesk-eyebrow {
    margin-bottom: 44px;
  }

  .timodesk-workflow h2 span {
    color: rgba(21, 21, 21, 0.5);
  }

  .timodesk-flow {
    position: absolute;
    top: 644px;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 1320px;
    height: 220px;
    margin: 0;
    border: 0;
  }

  .timodesk-flow article {
    position: relative;
    display: flex;
    flex: 0 0 375px;
    flex-direction: column;
    gap: 63px;
    width: 375px;
    height: 220px;
    min-height: 0;
    padding: 0;
  }

  .timodesk-flow article + article {
    border-left: 0;
  }

  .timodesk-flow article + article::before {
    position: absolute;
    top: 0;
    left: -49px;
    width: 220px;
    height: 1px;
    background: url("assets/timodesk-figma/workflow-divider.svg") center / 220px 1px no-repeat;
    content: "";
    transform: rotate(90deg);
    transform-origin: top left;
  }

  .timodesk-flow span {
    margin: 0;
    color: #151515;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: normal;
  }

  .timodesk-flow article > div {
    width: 375px;
  }

  .timodesk-flow p {
    margin: 0 0 12px;
    color: #151515;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: normal;
  }

  .timodesk-flow h3 {
    width: 375px;
    margin: 0;
    color: #151515;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1.1;
  }

  .timodesk-edge-cases .timodesk-body-copy {
    position: absolute;
    top: 429px;
    left: 488px;
    width: 832px;
    margin: 0;
  }

  .timodesk-edge-cases > .timodesk-shell {
    position: relative;
    height: 919px;
  }

  .timodesk-edge-cases > .timodesk-shell > .timodesk-eyebrow {
    margin-bottom: 24px;
  }

  .timodesk-edge-cases h2 {
    width: 1320px;
    max-width: none;
    margin: 0;
  }

  .timodesk-state-list {
    position: absolute;
    inset: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: none;
  }

  .timodesk-state-list li {
    position: absolute;
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    transform: none;
  }

  .timodesk-state-list li:nth-child(n) {
    inset: auto;
    transform: none;
  }

  .timodesk-state-list li.timodesk-state-network { bottom: 0; left: 2px; z-index: 2; width: 487px; }
  .timodesk-state-list li.timodesk-state-ideal { bottom: -14px; left: 470px; z-index: 3; width: 290px; }
  .timodesk-state-list li.timodesk-state-permissions { right: 0; bottom: 0; z-index: 2; width: 311px; }
  .timodesk-state-list li.timodesk-state-sync { bottom: 82px; left: 242px; z-index: 1; width: 398px; }
  .timodesk-state-list li.timodesk-state-device { bottom: 0; left: 628px; z-index: 2; width: 363px; }
  .timodesk-state-list li.timodesk-state-background { right: 72px; bottom: 92px; z-index: 1; width: 479px; }

  .timodesk-visual-system {
    padding: 0;
  }

  .timodesk-visual-system > .timodesk-shell {
    position: relative;
    height: 100%;
  }

  .timodesk-visual-system .timodesk-section-header {
    display: contents;
  }

  .timodesk-visual-system .timodesk-section-header > .timodesk-eyebrow {
    position: absolute;
    top: 159px;
    left: 0;
    margin: 0;
    color: var(--timo-orange);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.6px;
    line-height: normal;
  }

  .timodesk-visual-system .timodesk-section-header > div {
    display: contents;
  }

  .timodesk-visual-system .timodesk-section-header h2 {
    position: absolute;
    top: 130px;
    left: 432px;
    width: 888px;
    margin: 0;
  }

  .timodesk-visual-system .timodesk-section-header div > p {
    position: absolute;
    top: 628px;
    left: 446px;
    width: 832px;
    max-width: none;
    margin: 0;
  }

  .timodesk-visual-principles {
    position: absolute;
    top: 763px;
    left: 0;
    gap: 16px;
    margin: 0;
  }

  .timodesk-visual-principles span {
    padding: 10px 20px;
    font-size: 24px;
  }

  .timodesk-visual-media {
    position: absolute;
    top: 919px;
    left: 0;
    height: 939px;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .timodesk-system h2 {
    width: 1320px;
    margin-bottom: 100px;
  }

  .timodesk-system-media {
    height: 880px;
    aspect-ratio: auto;
  }

  .timodesk-brand-layout {
    grid-template-columns: 554px 610px;
    gap: 83px;
    margin-top: 168px;
  }

  .timodesk-brand-layout h2 {
    width: 800px;
    margin-bottom: 54px;
  }

  .timodesk-brand-layout > div > p {
    width: 554px;
  }

  .timodesk-brand-gallery {
    width: 1340px;
    margin-top: 76px;
    margin-left: -20px;
  }

  .timodesk-brand-gallery figure {
    height: 657px;
    aspect-ratio: auto;
  }

  .timodesk-brand-gallery .timodesk-brand-wide {
    height: 627px;
    aspect-ratio: auto;
  }

  .timodesk-tradeoff-list {
    display: grid;
    grid-template-columns: repeat(2, 648px);
    gap: 0 24px;
    width: 1320px;
    margin: 100px 0 0;
    border: 0;
  }

  .timodesk-tradeoff-list article {
    display: block;
    min-height: 160px;
    padding: 0 0 32px;
    border: 0;
  }

  .timodesk-tradeoff-list article:nth-child(n + 3) {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timodesk-tradeoff-list h3 {
    font-size: 48px;
    font-weight: 600;
  }

  .timodesk-tradeoff-list p {
    font-size: 24px;
    letter-spacing: -0.04em;
    line-height: 1.4;
  }

  .timodesk-tradeoffs > .timodesk-shell > .timodesk-question {
    width: 957px;
    margin: 100px 0 0 auto;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 64px;
    line-height: 1;
  }

  .timodesk-outcome .timodesk-body-copy {
    width: 938px;
    margin-bottom: 94px;
  }

  .timodesk-outcome-list {
    grid-template-columns: repeat(5, 220px);
    justify-content: space-between;
    margin: 0 0 94px;
    border: 0;
  }

  .timodesk-outcome-list article {
    min-height: 145px;
    padding: 0 27px;
  }

  .timodesk-outcome-list article:first-child {
    padding-left: 0;
  }

  .timodesk-outcome-list article + article {
    border-left: 1px solid rgba(21, 21, 21, 0.28);
  }

  .timodesk-outcome-list strong {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .timodesk-outcome-list p {
    font-size: 16px;
  }

  .timodesk-outcome-media {
    height: 1145px;
    min-height: 0;
  }

  .timodesk-outcome-media .timodesk-button {
    top: 6px;
  }
}

@media (max-width: 1100px) {
  .timodesk-hero-device {
    height: auto;
    aspect-ratio: 1214 / 862;
  }

  .timodesk-hero-glow {
    top: 230px;
    left: 8%;
    width: min(1150px, 150vw);
    height: auto;
    aspect-ratio: 1;
  }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .timodesk-hero {
    min-height: 1530px;
  }

  .timodesk-hero-layout {
    min-height: 1420px;
  }

  .timodesk-hero-device {
    top: 890px;
    left: 29%;
  }
}

/* 06.13 — Reduced-motion fallback for homepage section stacking */
@media (prefers-reduced-motion: reduce) {
  .showreel-section {
    min-height: calc(100svh + var(--banner-transition-height));
    height: calc(100svh + var(--banner-transition-height));
  }

  .showreel-pin {
    position: relative;
  }

  .about-section {
    margin-top: 0;
  }
}

/* ==========================================================================
   06.14 — KOTHAY CASE STUDY: EDITORIAL REDESIGN
   ========================================================================== */

body.kothay-case-page {
  --kc-red: #ef3340;
  --kc-red-soft: #ff6a73;
  --kc-ink: #07070d;
  --kc-panel: #101117;
  --kc-paper: #f3f1ed;
  --kc-copy: rgba(247, 247, 244, 0.72);
  --kc-line: rgba(255, 255, 255, 0.14);
  color: #f7f7f4;
  background: var(--kc-ink);
}

.kothay-case-page :where(h1, h2, h3, p, figure, blockquote, dl, dd, ol, ul) { margin: 0; }
.kothay-case-page :where(button, input) { font: inherit; }
.kothay-case-page a:focus-visible { outline: 2px solid var(--kc-red-soft); outline-offset: 5px; }
.kc-shell { width: min(calc(100% - 64px), 1320px); margin-inline: auto; }

.kc-nav { position: absolute; z-index: 20; inset: 0 0 auto; height: 88px; border-bottom: 1px solid var(--kc-line); }
.kc-nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.kc-brand { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-size: 26px; font-weight: 700; letter-spacing: -1.5px; }
.kc-brand img { width: 28px; height: 28px; }
.kc-brand > span > span { color: var(--lime); }
.kc-back { color: rgba(255, 255, 255, 0.78); font-size: 13px; font-weight: 600; transition: color 180ms ease; }
.kc-back:hover { color: #fff; }

.kc-hero { position: relative; overflow: hidden; padding: 164px 0 0; background: radial-gradient(circle at 76% 46%, rgba(239, 51, 64, 0.19), transparent 30%), var(--kc-ink); }
.kc-eyebrow, .kc-section-label { color: var(--kc-red-soft); font-size: 11px; font-weight: 700; line-height: 1; letter-spacing: 0.14em; text-transform: uppercase; }
.kc-hero h1 { max-width: 1230px; margin-top: 28px; font-size: clamp(64px, 7.45vw, 116px); font-weight: 500; line-height: 0.98; letter-spacing: -0.062em; }
.kc-hero h1 span, .kc-heading h2 span, .kc-design-goal h2 span { color: var(--kc-red); }
.kc-hero h1, .kc-hero h1 span, .kc-lede { max-width: 100%; white-space: normal; }
.kc-hero h1 span { display: block; }
.kc-mobile-break { display: none; }
.kc-hero-lower { display: grid; grid-template-columns: minmax(0, 1fr) minmax(460px, 0.9fr); gap: 96px; align-items: end; margin-top: 72px; }
.kc-lede, .kc-reading, .kc-goal-copy { max-width: 720px; color: var(--kc-copy); font-size: clamp(16px, 1.3vw, 19px); font-weight: 400; line-height: 1.65; letter-spacing: -0.02em; }
.kc-reading p + p { margin-top: 22px; }
.kc-meta { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 36px; }
.kc-meta div { border-top: 1px solid var(--kc-line); padding-top: 13px; }
.kc-meta dt { color: var(--kc-red-soft); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.kc-meta dd { margin-top: 7px; font-size: 13px; line-height: 1.35; }
.kc-hero-visual { overflow: hidden; margin-top: 72px; aspect-ratio: 16 / 8.25; border-radius: 24px 24px 0 0; background: var(--kc-paper); }
.kc-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
.kc-focus-list { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 22px 0 26px; border-top: 1px solid var(--kc-line); color: rgba(255, 255, 255, 0.58); list-style: none; }
.kc-focus-list li { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

.kc-section { padding: clamp(110px, 10vw, 172px) 0; border-top: 1px solid var(--kc-line); }
.kc-heading { display: grid; grid-template-columns: 205px minmax(0, 850px); gap: 44px; align-items: start; margin-bottom: 64px; }
.kc-heading-wide { grid-template-columns: 205px minmax(0, 1040px); }
.kc-heading .kc-section-label { padding-top: 13px; }
.kc-heading h2, .kc-design-goal h2 { font-size: clamp(46px, 5.6vw, 84px); font-weight: 500; line-height: 1.02; letter-spacing: -0.055em; }
.kc-context .kc-reading, .kc-audit > .kc-shell > .kc-reading, .kc-visit > .kc-shell > .kc-reading, .kc-break > .kc-shell > .kc-reading, .kc-outcome > .kc-shell > .kc-reading, .kc-reflection > .kc-shell > .kc-reading { margin-left: 249px; }

.kc-flow { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 1px; margin-top: 76px; padding: 0; overflow: hidden; border: 1px solid var(--kc-line); border-radius: 16px; background: var(--kc-line); list-style: none; counter-reset: flow; }
.kc-flow li { position: relative; min-height: 116px; padding: 52px 18px 20px; color: rgba(255, 255, 255, 0.82); background: var(--kc-panel); font-size: 13px; font-weight: 600; counter-increment: flow; }
.kc-flow li::before { position: absolute; top: 18px; color: var(--kc-red-soft); content: counter(flow, decimal-leading-zero); font-size: 10px; }
.kc-flow li:not(:nth-child(5n))::after { position: absolute; top: 50%; right: -6px; z-index: 2; color: var(--kc-red-soft); content: "→"; }

.kc-challenge { color: var(--kc-ink); background: var(--kc-paper); }
.kc-challenge .kc-section-label { color: #b61420; }
.kc-statement { max-width: 1000px; margin: 110px 0; font-size: clamp(46px, 6.4vw, 94px); font-weight: 500; line-height: 1.03; letter-spacing: -0.06em; }
.kc-split, .kc-two-column, .kc-task-layout, .kc-sync-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(56px, 8vw, 124px); align-items: start; }
.kc-challenge .kc-reading { color: rgba(7, 7, 13, 0.68); }
.kc-small-title { margin-bottom: 24px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.kc-question-list { padding: 0; border-top: 1px solid rgba(7, 7, 13, 0.22); list-style: none; counter-reset: question; }
.kc-question-list li { position: relative; padding: 18px 0 18px 42px; border-bottom: 1px solid rgba(7, 7, 13, 0.22); font-size: 16px; font-weight: 600; counter-increment: question; }
.kc-question-list li::before { position: absolute; left: 0; color: #b61420; content: counter(question, decimal-leading-zero); font-size: 10px; }
.kc-condition-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 88px; padding: 0; list-style: none; }
.kc-condition-strip li { padding: 15px 22px; border: 1px solid rgba(7, 7, 13, 0.32); border-radius: 999px; font-size: 14px; font-weight: 600; }

.kc-full-media { margin-top: 78px; }
.kc-full-media img { width: 100%; aspect-ratio: 16 / 9.5; border-radius: 20px; object-fit: cover; }
.kc-full-media figcaption, .kc-evolution-grid figcaption { margin-top: 14px; color: rgba(255, 255, 255, 0.5); font-size: 11px; line-height: 1.5; }
.kc-observations { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 78px; border-top: 1px solid var(--kc-line); border-bottom: 1px solid var(--kc-line); }
.kc-observations article { min-height: 270px; padding: 28px; }
.kc-observations article + article { border-left: 1px solid var(--kc-line); }
.kc-observations span, .kc-principles span { color: var(--kc-red-soft); font-size: 11px; font-weight: 700; }
.kc-observations h3, .kc-principles h3 { margin-top: 52px; font-size: 20px; line-height: 1.2; letter-spacing: -0.035em; }
.kc-observations p, .kc-principles p { margin-top: 13px; color: var(--kc-copy); font-size: 14px; line-height: 1.55; }

.kc-design-goal, .kc-outcome { padding: clamp(120px, 11vw, 190px) 0; color: var(--kc-ink); background: var(--kc-red); }
.kc-design-goal .kc-section-label, .kc-outcome .kc-section-label { color: rgba(7, 7, 13, 0.62); }
.kc-design-goal h2 { max-width: 1200px; margin-top: 24px; }
.kc-design-goal h2 span, .kc-outcome .kc-heading h2 span { color: #fff; }
.kc-goal-copy { max-width: 710px; margin-top: 54px; }
.kc-design-goal .kc-goal-copy, .kc-outcome .kc-reading { color: rgba(7, 7, 13, 0.7); }
.kc-principles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 80px; border-block: 1px solid rgba(7, 7, 13, 0.28); }
.kc-principles article { min-height: 300px; padding: 28px 26px; }
.kc-principles article + article { border-left: 1px solid rgba(7, 7, 13, 0.28); }
.kc-principles span { color: rgba(7, 7, 13, 0.62); }
.kc-principles p { color: rgba(7, 7, 13, 0.7); }

.kc-evolution-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 80px; }
.kc-evolution-screen img { display: block; width: 100%; height: auto; aspect-ratio: 800 / 1067; border-radius: 18px; object-fit: contain; background: #e7e7e7; }
.kc-evolution-screen figcaption { display: grid; gap: 5px; }
.kc-evolution-screen figcaption strong { color: rgba(255, 255, 255, 0.9); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.kc-evolution .kc-split { margin-top: 88px; }
.kc-feature-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; padding: 0; border-top: 1px solid var(--kc-line); list-style: none; }
.kc-feature-columns li { padding: 15px 0; border-bottom: 1px solid var(--kc-line); color: rgba(255, 255, 255, 0.82); font-size: 13px; }
.kc-pullquote { max-width: 1080px; margin: clamp(100px, 12vw, 176px) auto 0; font-size: clamp(38px, 5.25vw, 76px); font-weight: 500; line-height: 1.05; letter-spacing: -0.055em; text-align: center; }
.kc-pullquote span { color: var(--kc-red-soft); }

.kc-progress, .kc-checkout, .kc-bangla, .kc-validation { background: var(--kc-panel); }
.kc-two-column { align-items: center; }
.kc-two-column .kc-heading { display: block; }
.kc-two-column .kc-heading h2 { margin-top: 22px; }
.kc-progress-demo, .kc-summary, .kc-order-list, .kc-task-card { border-radius: 24px; color: #14151b; background: var(--kc-paper); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24); }
.kc-progress-demo { padding: clamp(32px, 5vw, 64px); }
.kc-progress-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.kc-progress-top div { display: grid; }
.kc-progress-top strong { font-size: clamp(52px, 6vw, 78px); line-height: 0.9; letter-spacing: -0.06em; }
.kc-progress-top span, .kc-progress-top b, .kc-progress-demo > p { font-size: 13px; }
.kc-segments { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 42px; }
.kc-segments i, .kc-progress-demo dt i { display: inline-block; height: 10px; border-radius: 10px; background: #d8d7d3; }
.kc-segments .is-visited, .kc-progress-demo dt .is-visited { background: #23242a; }
.kc-segments .is-order, .kc-progress-demo dt .is-order { background: #1fbd83; }
.kc-progress-demo > p { margin-top: 14px; color: var(--kc-red); font-weight: 700; }
.kc-progress-demo dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(7, 7, 13, 0.15); }
.kc-progress-demo dt, .kc-progress-demo dd { font-size: 10px; }
.kc-progress-demo dt { display: flex; gap: 7px; font-weight: 700; }
.kc-progress-demo dt i { width: 10px; }
.kc-progress-demo dd { margin-top: 5px; color: rgba(7, 7, 13, 0.58); }

.kc-task-layout { align-items: center; }
.kc-task-card { padding: clamp(32px, 5vw, 58px); }
.kc-task-card > p { color: var(--kc-red); font-size: 14px; font-weight: 700; }
.kc-task-card h3 { margin-top: 42px; font-size: clamp(32px, 4vw, 54px); line-height: 1.15; }
.kc-task-card > span { display: block; margin-top: 12px; color: rgba(7, 7, 13, 0.6); font-size: 16px; }
.kc-task-card button, .kc-action-comparison button, .kc-order-list button { width: 100%; margin-top: 48px; padding: 16px 20px; border: 0; border-radius: 999px; color: #fff; background: var(--kc-red); font-weight: 700; }
.kc-task-card button { display: flex; justify-content: space-between; }
.kc-cropped-media { overflow: hidden; aspect-ratio: 4 / 3; border-radius: 18px; background: #e7e7e7; }
.kc-cropped-media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% center; }
.kc-state-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 72px; padding: 0; list-style: none; }
.kc-state-flow li { display: grid; min-height: 165px; padding: 26px; border: 1px solid var(--kc-line); border-radius: 14px; color: rgba(255, 255, 255, 0.48); }
.kc-state-flow .is-current { color: #fff; border-color: var(--kc-red); background: rgba(239, 51, 64, 0.1); }
.kc-state-flow span, .kc-state-flow small { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.kc-state-flow strong { align-self: end; font-size: 20px; }
.kc-center-copy { max-width: 760px; margin: 48px auto 0; color: var(--kc-copy); font-size: 17px; line-height: 1.6; text-align: center; }

.kc-workflow-panel { padding: clamp(34px, 5vw, 68px); border-radius: 22px; color: var(--kc-ink); background: var(--kc-paper); }
.kc-workflow-panel ol { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 8px; padding: 0; list-style: none; counter-reset: visit-flow; }
.kc-workflow-panel li { position: relative; padding: 44px 12px 14px; border-bottom: 2px solid rgba(7, 7, 13, 0.16); font-size: 12px; font-weight: 700; counter-increment: visit-flow; }
.kc-workflow-panel li::before { position: absolute; top: 10px; color: var(--kc-red); content: counter(visit-flow, decimal-leading-zero); font-size: 10px; }
.kc-outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 58px; }
.kc-outcomes > span, .kc-reason-grid > span { display: grid; gap: 5px; padding: 18px; border: 1px solid rgba(7, 7, 13, 0.15); border-radius: 12px; font-weight: 700; }
.kc-outcomes small, .kc-reason-grid small { color: rgba(7, 7, 13, 0.52); font-size: 10px; font-weight: 500; }
.kc-visit .kc-reading, .kc-break .kc-reading { margin-top: 58px; }

.kc-before-after, .kc-action-comparison, .kc-compare { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.kc-before-after article, .kc-action-comparison article { min-height: 380px; padding: clamp(28px, 4vw, 52px); border: 1px solid var(--kc-line); border-radius: 20px; background: var(--kc-panel); }
.kc-before-after article > p, .kc-action-comparison article > p { color: var(--kc-red-soft); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.kc-before-after h3, .kc-action-comparison h3 { margin-top: 62px; font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: -0.05em; }
.kc-fake-input { margin-top: 58px; padding: 18px; border: 1px solid var(--kc-line); border-radius: 10px; color: rgba(255, 255, 255, 0.35); font-size: 13px; }
.kc-before-after article > small { display: block; margin-top: 18px; color: rgba(255, 255, 255, 0.48); }
.kc-before-after .is-after { color: var(--kc-ink); background: var(--kc-paper); }
.kc-before-after .is-after > small { color: rgba(7, 7, 13, 0.55); }
.kc-reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 42px; }
.kc-action-comparison article { display: flex; flex-direction: column; }
.kc-action-comparison button, .kc-swipe { margin-top: auto; }
.kc-action-comparison button { width: auto; align-self: flex-start; padding-inline: 30px; }
.kc-swipe { display: flex; align-items: center; gap: 20px; padding: 8px; border: 1px solid rgba(239, 51, 64, 0.55); border-radius: 999px; color: rgba(255, 255, 255, 0.6); font-size: 13px; }
.kc-swipe i { display: grid; width: 48px; height: 48px; border-radius: 50%; place-items: center; color: #fff; background: var(--kc-red); font-style: normal; }

.kc-summary { padding: clamp(32px, 5vw, 60px); }
.kc-summary > p { color: var(--kc-red); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.kc-summary > small { display: block; margin-top: 7px; color: rgba(7, 7, 13, 0.48); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; }
.kc-summary h3 { margin-top: 26px; font-size: clamp(28px, 3vw, 42px); line-height: 1.2; }
.kc-summary > div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 44px; overflow: hidden; border: 1px solid rgba(7, 7, 13, 0.12); border-radius: 14px; background: rgba(7, 7, 13, 0.12); }
.kc-summary > div span { display: grid; gap: 8px; padding: 22px; background: #fff; color: rgba(7, 7, 13, 0.56); font-size: 11px; }
.kc-summary b { color: var(--kc-ink); font-size: 24px; }
.kc-summary > strong { display: block; margin-top: 24px; color: #168d64; font-size: 13px; }

.kc-order-list { padding: 28px; }
.kc-order-list > p { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 24px; font-weight: 700; }
.kc-order-list > p span { color: var(--kc-red); font-size: 11px; }
.kc-order-list article { display: flex; justify-content: space-between; padding: 18px 0; border-top: 1px solid rgba(7, 7, 13, 0.12); font-size: 13px; }
.kc-order-list article span { font-size: 11px; font-weight: 700; }
.kc-order-list .is-synced { color: #168d64; }
.kc-order-list .is-pending { color: #b61420; }
.kc-language-shift { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; margin-top: 100px; padding: 42px 0; border-block: 1px solid var(--kc-line); font-size: clamp(23px, 3vw, 38px); letter-spacing: -0.04em; }
.kc-language-shift s { color: rgba(255, 255, 255, 0.35); }
.kc-language-shift > span { color: var(--kc-red-soft); }

.kc-bangla .kc-full-media { margin-bottom: 76px; }
.kc-localization-effects { padding: 0; border-top: 1px solid var(--kc-line); list-style: none; }
.kc-localization-effects li { padding: 18px 0; border-bottom: 1px solid var(--kc-line); font-size: 13px; }
.kc-system-grid, .kc-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.kc-system-grid article, .kc-metrics article { min-height: 270px; padding: 28px; border: 1px solid var(--kc-line); border-radius: 16px; background: var(--kc-panel); }
.kc-system-grid article > span { display: inline-grid; min-width: 64px; min-height: 64px; place-items: center; }
.kc-swatch { border-radius: 50%; background: linear-gradient(135deg, #1e1f24 50%, var(--kc-red) 50%); }
.kc-tap-demo { border: 1px solid var(--kc-red); border-radius: 14px; color: var(--kc-red-soft); font-weight: 700; }
.kc-state-demo { display: flex !important; gap: 5px; align-items: center; }
.kc-state-demo i { width: 18px; height: 18px; border-radius: 50%; background: #35363d; }
.kc-state-demo i:nth-child(2) { background: var(--kc-red); }
.kc-state-demo i:nth-child(3) { background: #f3f1ed; }
.kc-number-demo { color: #fff; font-size: 28px; font-weight: 600; letter-spacing: -0.06em; }
.kc-system-grid h3 { margin-top: 58px; font-size: 18px; }
.kc-system-grid p { margin-top: 10px; color: var(--kc-copy); font-size: 13px; line-height: 1.5; }

.kc-compare { gap: 1px; overflow: hidden; border: 1px solid var(--kc-line); border-radius: 20px; background: var(--kc-line); }
.kc-compare > div { padding: clamp(28px, 5vw, 64px); background: var(--kc-panel); }
.kc-compare > div:last-child { color: var(--kc-ink); background: var(--kc-paper); }
.kc-compare > div > p { color: var(--kc-red-soft); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.kc-compare ul { margin-top: 40px; padding: 0; list-style: none; }
.kc-compare li { padding: 15px 0; border-bottom: 1px solid var(--kc-line); font-size: clamp(16px, 2vw, 22px); }
.kc-compare > div:last-child li { border-color: rgba(7, 7, 13, 0.14); }
.kc-validation .kc-goal-copy { margin-left: 249px; }
.kc-metrics { margin-top: 72px; }
.kc-metrics article { display: flex; flex-direction: column; justify-content: space-between; min-height: 190px; }
.kc-metrics span { color: var(--kc-red-soft); font-size: 9px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.kc-metrics p { max-width: 220px; font-size: 15px; line-height: 1.4; }

.kc-outcome .kc-heading { grid-template-columns: 205px minmax(0, 980px); }
.kc-workday-statement { max-width: 1180px; margin-top: 110px; font-size: clamp(42px, 6vw, 88px); font-weight: 500; line-height: 1.04; letter-spacing: -0.06em; }
.kc-workday-statement span { color: #fff; }
.kc-final-line { max-width: 900px; margin: 150px 0 0 auto; color: #fff; font-size: clamp(38px, 5vw, 72px); font-weight: 500; line-height: 1.05; letter-spacing: -0.055em; }

.kc-next-project { border-top: 1px solid var(--kc-line); background: #05060b; }
.kc-next-project a { display: block; }
.kc-next-project .kc-shell { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 64px; align-items: center; min-height: 680px; }
.kc-next-project h2 { margin-top: 24px; font-size: clamp(68px, 10vw, 150px); font-weight: 500; line-height: 0.9; letter-spacing: -0.065em; }
.kc-next-project div > p:not(.kc-section-label) { max-width: 560px; margin-top: 38px; color: var(--kc-copy); font-size: 17px; line-height: 1.55; }
.kc-next-project div > span { display: inline-block; margin-top: 42px; padding-bottom: 6px; border-bottom: 1px solid var(--lime); color: var(--lime); font-size: 13px; font-weight: 700; }
.kc-next-project img { width: 100%; max-height: 520px; border-radius: 18px; object-fit: cover; }

@media (max-width: 1024px) {
  .kc-shell { width: min(calc(100% - 48px), 900px); }
  .kc-hero-lower, .kc-split, .kc-two-column, .kc-task-layout, .kc-sync-layout { gap: 56px; }
  .kc-hero-lower { grid-template-columns: 1fr; }
  .kc-meta { grid-template-columns: repeat(3, 1fr); }
  .kc-heading, .kc-heading-wide, .kc-outcome .kc-heading { grid-template-columns: 150px minmax(0, 1fr); gap: 32px; }
  .kc-context .kc-reading, .kc-audit > .kc-shell > .kc-reading, .kc-visit > .kc-shell > .kc-reading, .kc-break > .kc-shell > .kc-reading, .kc-outcome > .kc-shell > .kc-reading, .kc-reflection > .kc-shell > .kc-reading, .kc-validation .kc-goal-copy { margin-left: 182px; }
  .kc-flow { grid-template-columns: repeat(2, 1fr); }
  .kc-flow li::after { display: none; }
  .kc-observations, .kc-principles, .kc-system-grid, .kc-metrics { grid-template-columns: repeat(2, 1fr); }
  .kc-observations article:nth-child(3), .kc-principles article:nth-child(3) { border-left: 0; }
  .kc-observations article:nth-child(n + 3), .kc-principles article:nth-child(n + 3) { border-top: 1px solid var(--kc-line); }
  .kc-principles article:nth-child(n + 3) { border-color: rgba(7, 7, 13, 0.28); }
  .kc-evolution-grid { grid-template-columns: repeat(2, 1fr); }
  .kc-evolution-grid figure:last-child { grid-column: 1 / -1; }
  .kc-workflow-panel ol { grid-template-columns: repeat(3, 1fr); }
  .kc-next-project .kc-shell { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 700px) {
  .kc-shell { width: min(calc(100% - 32px), 560px); }
  .kc-nav { height: 72px; }
  .kc-brand { font-size: 22px; }
  .kc-brand img { width: 24px; height: 24px; }
  .kc-back { font-size: 0; }
  .kc-back::after { content: "← Works"; font-size: 12px; }
  .kc-hero { padding-top: 124px; }
  .kc-hero h1 { margin-top: 20px; font-size: clamp(42px, 12vw, 58px); letter-spacing: -0.065em; }
  .kc-mobile-break { display: initial; }
  .kc-hero-lower { gap: 42px; margin-top: 42px; }
  .kc-meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .kc-hero-visual { margin-top: 50px; aspect-ratio: 4 / 4.5; border-radius: 16px 16px 0 0; }
  .kc-section { padding: 88px 0; }
  .kc-heading, .kc-heading-wide, .kc-outcome .kc-heading { display: block; margin-bottom: 42px; }
  .kc-heading .kc-section-label { padding-top: 0; }
  .kc-heading h2 { margin-top: 20px; font-size: clamp(39px, 11vw, 58px); }
  .kc-context .kc-reading, .kc-audit > .kc-shell > .kc-reading, .kc-visit > .kc-shell > .kc-reading, .kc-break > .kc-shell > .kc-reading, .kc-outcome > .kc-shell > .kc-reading, .kc-reflection > .kc-shell > .kc-reading, .kc-validation .kc-goal-copy { margin-left: 0; }
  .kc-flow { grid-template-columns: 1fr; margin-top: 54px; }
  .kc-flow li { min-height: 76px; padding: 30px 18px 14px 62px; }
  .kc-flow li::before { top: 31px; left: 18px; }
  .kc-statement { margin: 72px 0; font-size: clamp(42px, 13vw, 62px); }
  .kc-split, .kc-two-column, .kc-task-layout, .kc-sync-layout { grid-template-columns: 1fr; gap: 48px; }
  .kc-condition-strip { margin-top: 58px; }
  .kc-condition-strip li { padding: 12px 16px; font-size: 12px; }
  .kc-full-media { margin-top: 48px; }
  .kc-full-media img { aspect-ratio: 4 / 3; border-radius: 12px; }
  .kc-observations, .kc-principles, .kc-system-grid, .kc-metrics, .kc-evolution-grid, .kc-state-flow, .kc-before-after, .kc-action-comparison, .kc-compare { grid-template-columns: 1fr; }
  .kc-observations article, .kc-observations article + article, .kc-principles article, .kc-principles article + article { min-height: 220px; border: 0; border-top: 1px solid var(--kc-line); }
  .kc-principles article, .kc-principles article + article { border-color: rgba(7, 7, 13, 0.28); }
  .kc-design-goal, .kc-outcome { padding: 96px 0; }
  .kc-design-goal h2 { font-size: clamp(44px, 12vw, 60px); }
  .kc-evolution-grid figure:last-child { grid-column: auto; }
  .kc-evolution .kc-split { margin-top: 58px; }
  .kc-feature-columns { grid-template-columns: 1fr; }
  .kc-pullquote { margin-top: 88px; font-size: clamp(35px, 10vw, 50px); text-align: left; }
  .kc-progress-demo dl { grid-template-columns: 1fr; }
  .kc-state-flow li { min-height: 130px; }
  .kc-workflow-panel ol, .kc-outcomes, .kc-reason-grid { grid-template-columns: 1fr; }
  .kc-before-after article, .kc-action-comparison article { min-height: 330px; }
  .kc-language-shift { grid-template-columns: 1fr; gap: 20px; margin-top: 72px; }
  .kc-language-shift > span { transform: rotate(90deg); transform-origin: left center; }
  .kc-system-grid article, .kc-metrics article { min-height: 210px; }
  .kc-workday-statement { margin-top: 78px; }
  .kc-final-line { margin-top: 100px; }
  .kc-next-project .kc-shell { grid-template-columns: 1fr; gap: 48px; padding: 88px 0 0; }
  .kc-next-project img { max-height: 440px; border-radius: 14px 14px 0 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .kothay-case-page.motion-ready .kc-reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms var(--ease-out), transform 800ms var(--ease-out); }
  .kothay-case-page.motion-ready .kc-reveal.is-inview, .kothay-case-page.motion-ready .kc-reveal:has(:target), .kothay-case-page.motion-ready .kc-reveal:target, .kothay-case-page.motion-ready.intro-complete .kc-hero .kc-reveal { opacity: 1; transform: none; }
  .kothay-case-page.motion-ready.intro-complete .kc-hero .kc-reveal:nth-child(2) { transition-delay: 90ms; }
  .kothay-case-page.motion-ready.intro-complete .kc-hero .kc-reveal:nth-child(3) { transition-delay: 160ms; }
  .kothay-case-page.motion-ready.intro-complete .kc-hero .kc-reveal:nth-child(4) { transition-delay: 230ms; }
}
