/* ============================================================
   THE CREATIVITY LAB — WORK / LIVING ARCHIVE
   Dark editorial index, built to feel closer to a title sequence
   than a portfolio template.
   ============================================================ */

.wkx {
  --wka-orange: var(--mg-orange, #ed4609);
  --wka-ink: #050506;
  --wka-paper: #eee8dd;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--wka-ink);
}
.wkx-amb {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #050506;
}
.wkx-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-inline: clamp(18px, 3.25vw, 58px);
}
.wkx-shell--top { padding-top: 0; }

.wka-sectionhead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.52);
}
.wka-sectionhead p:last-child { text-align: right; }
.wka-sectionhead span { color: var(--wka-orange); }

/* Hero — type collides with three strips from the selected work. */
.wka-hero {
  min-height: min(920px, calc(100svh - 72px));
  padding-top: clamp(20px, 2vw, 34px);
  display: flex;
  flex-direction: column;
}
.wka-hero__main {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  align-items: center;
  flex: 1;
  min-height: 610px;
  padding-block: clamp(38px, 5vw, 72px);
}
.wka-hero__word { position: relative; z-index: 2; }
.wka-hero__word > p {
  margin: 0 0 clamp(18px, 2vw, 30px);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.wka-hero h1 {
  margin: 0 0 0 -.065em;
  font-family: var(--font-display);
  font-size: clamp(7.2rem, 16.5vw, 17.5rem);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.09em;
  color: #f5f4f1;
  white-space: nowrap;
}
.wka-hero h1 span { color: var(--wka-orange); }
.wka-hero__films {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .9fr 1.14fr .96fr;
  gap: clamp(7px, .9vw, 14px);
  height: clamp(470px, 60vh, 650px);
  min-width: 0;
}
.wka-film {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.19);
  border-right: 1px solid rgba(255,255,255,.08);
  background: #101012;
}
.wka-film:nth-child(1) { margin-top: 11%; margin-bottom: 1%; }
.wka-film:nth-child(2) { margin-bottom: 10%; }
.wka-film:nth-child(3) { margin-top: 5%; margin-bottom: 5%; }
.wka-film::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,5,6,.12), transparent 45%, rgba(5,5,6,.76));
  pointer-events: none;
}
.wka-film img,
.wka-film video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05) brightness(.75);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1), filter .8s ease;
}
.wka-film--1 img, .wka-film--1 video { object-position: 48% center; }
.wka-film--2 img, .wka-film--2 video { object-position: 76% center; }
.wka-film--3 img, .wka-film--3 video { object-position: 58% center; }
.wka-film:hover img,
.wka-film:hover video { transform: scale(1.035); filter: saturate(.98) contrast(1.04) brightness(.9); }
.wka-film > span,
.wka-film > b {
  position: absolute;
  z-index: 2;
  bottom: 17px;
  font-family: var(--font-label);
  font-size: 9px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.wka-film > span { left: 14px; color: var(--wka-orange); }
.wka-film > b { right: 14px; font-weight: var(--fw-semibold); }
.wka-hero__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.wka-hero__footer > p {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.45vw, 2.65rem);
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: #f1f0ed;
}
.wka-hero__footer a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.32);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .3s ease, border-color .3s ease;
}
.wka-hero__footer a span { color: var(--wka-orange); font-size: 18px; }
.wka-hero__footer a:hover { color: #fff; border-color: var(--wka-orange); }

/* Interactive archive index. */
.wka-index { padding: clamp(120px, 14vw, 210px) 0 clamp(120px, 14vw, 210px); }
.wka-index__title {
  margin: clamp(34px, 4vw, 62px) 0 clamp(50px, 6vw, 88px);
  max-width: 10ch;
  font-family: var(--font-display);
  font-size: clamp(4rem, 9.5vw, 10rem);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.075em;
  color: #f3f2ef;
}
.wka-index__title span { color: var(--wka-orange); }
.wka-index__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  align-items: start;
  gap: clamp(34px, 5vw, 82px);
}
.wka-index__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,.2);
  list-style: none;
}
.wka-index__list li { position: relative; border-bottom: 1px solid rgba(255,255,255,.15); }
.wka-index__list li::before {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 3px;
  background: var(--wka-orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.wka-index__list li.is-active::before { transform: scaleY(1); }
.wka-index__list button {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: 46px minmax(190px, 1fr) minmax(105px, .42fr) 48px 22px;
  align-items: center;
  gap: 14px;
  padding: 21px 4px 21px 15px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .28s ease, padding-left .35s ease;
}
.wka-index__list button:hover,
.wka-index__list li.is-active button { padding-left: 25px; background: rgba(255,255,255,.035); }
.wka-index__list button:focus-visible { outline: 1px solid var(--wka-orange); outline-offset: -1px; }
.wka-row__num,
.wka-row__cat,
.wka-row__year {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}
.wka-row__num { color: var(--wka-orange); }
.wka-row__name {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.75rem);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -.035em;
  color: rgba(255,255,255,.78);
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .25s ease;
}
.wka-index__list li.is-active .wka-row__name,
.wka-index__list button:hover .wka-row__name { color: #fff; }
.wka-row__mark { color: rgba(255,255,255,.34); transition: transform .3s ease, color .3s ease; }
.wka-index__list li.is-active .wka-row__mark { color: var(--wka-orange); transform: translate(2px, -2px); }
.wka-preview { position: sticky; top: 30px; min-width: 0; }
.wka-preview > a { display: block; color: inherit; }
.wka-preview__media {
  position: relative;
  aspect-ratio: 4 / 4.35;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #0e0e10;
}
.wka-preview__media::before,
.wka-preview__media::after {
  content: '';
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.wka-preview__media::before { top: 13px; left: 13px; border-top: 1px solid rgba(255,255,255,.55); border-left: 1px solid rgba(255,255,255,.55); }
.wka-preview__media::after { right: 13px; bottom: 13px; border-right: 1px solid rgba(255,255,255,.55); border-bottom: 1px solid rgba(255,255,255,.55); }
.wka-preview__media img,
.wka-preview__media video,
.wka-preview__media .wka-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .5s ease;
}
.wka-preview__media img[alt*="CalcAI"] { object-fit: contain; background: #ebe4d8; }
.wka-preview__media img[alt*="Quivaroo"] { object-position: center; }
.wka-preview > a:hover .wka-preview__media img,
.wka-preview > a:hover .wka-preview__media video { transform: scale(1.025); }
.wka-preview__scan {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(237,70,9,.16) 50%, transparent 52%);
  background-size: 100% 230%;
  opacity: 0;
  transition: opacity .3s ease;
}
.wka-preview > a:hover .wka-preview__scan { opacity: .7; animation: wkaScan 2.8s linear infinite; }
@keyframes wkaScan { from { background-position: 0 100%; } to { background-position: 0 -100%; } }
.wka-preview__open {
  position: absolute;
  z-index: 4;
  right: 20px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  background: #080809;
  border: 1px solid rgba(255,255,255,.18);
}
.wka-preview__open b { color: var(--wka-orange); }
.wka-preview__copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding-top: 18px;
}
.wka-preview__copy p { max-width: 42ch; font-size: 1rem; line-height: 1.5; color: rgba(255,255,255,.68); }
.wka-preview__copy span {
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  white-space: nowrap;
}

/* Shared editorial case language. */
.wka-case { position: relative; margin-bottom: clamp(110px, 14vw, 210px); }
.wka-case > a { position: relative; display: block; overflow: hidden; color: inherit; }
.wka-case__topline {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 20px;
  border-bottom: 1px solid rgba(255,255,255,.23);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.wka-case__topline span:first-child { color: var(--wka-orange); }
.wka-case__shade { position: absolute; z-index: 1; inset: 0; pointer-events: none; }
.wka-placeholder {
  display: grid;
  place-items: center;
  background: #101012;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 750;
  letter-spacing: -.07em;
  color: rgba(255,255,255,.85);
}

/* Harvest — cinematic, near-monochrome, specimen annotations. */
.wka-case--harvest > a { min-height: clamp(620px, 82vh, 920px); border: 1px solid rgba(255,255,255,.15); background: #050505; }
.wka-case--harvest > a > img,
.wka-case--harvest > a > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.58) contrast(1.18) brightness(.65);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter 1s ease;
}
.wka-case--harvest:hover > a > img,
.wka-case--harvest:hover > a > video { transform: scale(1.025); filter: saturate(.82) contrast(1.12) brightness(.76); }
.wka-case--harvest .wka-case__shade {
  background: linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.08) 71%), linear-gradient(0deg, rgba(0,0,0,.65), transparent 45%);
}
.wka-case__harvestcopy { position: absolute; z-index: 3; left: clamp(24px, 4vw, 66px); bottom: clamp(45px, 7vw, 100px); }
.wka-case__harvestcopy > p {
  margin-bottom: 18px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: rgba(255,255,255,.54);
}
.wka-case__harvestcopy h2 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 11vw, 11.5rem);
  font-weight: 800;
  line-height: .69;
  letter-spacing: -.085em;
  color: #f4f3ef;
}
.wka-case__harvestcopy h2 span { color: var(--wka-orange); }
.wka-case__harvestcopy em {
  display: inline-block;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.42);
  font-family: var(--font-label);
  font-size: 10px;
  font-style: normal;
  font-weight: var(--fw-semibold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.wka-case__note {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 4vw, 60px);
  bottom: clamp(28px, 3vw, 48px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}
.wka-case__note b { color: var(--wka-orange); }
.wka-case__cross { position: absolute; z-index: 3; font-family: monospace; font-size: 18px; font-weight: 300; color: rgba(255,255,255,.58); }
.wka-case__cross--a { top: 28%; right: 8%; }
.wka-case__cross--b { right: 40%; bottom: 12%; }

/* CalcAI — product precision against a warm material canvas. */
.wka-case--calcai {
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,.2);
}
.wka-case--calcai > .wka-case__topline { top: 0; padding-inline: 0; }
.wka-case--calcai > a {
  display: grid;
  grid-template-columns: minmax(0, 1.23fr) minmax(340px, .77fr);
  min-height: clamp(660px, 78vh, 850px);
  border: 1px solid rgba(255,255,255,.14);
}
.wka-calcai__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding: clamp(36px, 5.2vw, 86px);
  overflow: hidden;
  background: var(--wka-paper);
}
.wka-calcai__visual::before {
  content: '';
  position: absolute;
  inset: clamp(17px, 2vw, 30px);
  border: 1px solid rgba(20,20,22,.18);
  pointer-events: none;
}
.wka-calcai__visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-height: 610px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(25,20,14,.16));
  transition: transform .8s cubic-bezier(.2,.8,.2,1);
}
.wka-case--calcai:hover .wka-calcai__visual img { transform: scale(1.018); }
.wka-calcai__label {
  position: absolute;
  z-index: 2;
  top: 27px;
  left: 30px;
  font-family: var(--font-label);
  font-size: 8px;
  font-weight: var(--fw-semibold);
  letter-spacing: .15em;
  color: rgba(16,16,18,.6);
}
.wka-calcai__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 80px);
  background: #080809;
}
.wka-calcai__kicker {
  margin-bottom: 24px;
  font-family: var(--font-label);
  font-size: 9px !important;
  font-weight: var(--fw-semibold);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wka-orange) !important;
}
.wka-calcai__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(4.7rem, 8vw, 8.5rem);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.085em;
  color: #f4f3f0;
}
.wka-calcai__copy h2 span { color: var(--wka-orange); }
.wka-calcai__copy h2 b { color: #f4f3f0; }
.wka-calcai__copy > p:not(.wka-calcai__kicker) {
  max-width: 35ch;
  margin-top: 34px;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  line-height: 1.55;
  color: rgba(255,255,255,.64);
}
.wka-calcai__copy em {
  align-self: flex-start;
  margin-top: 32px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  font-family: var(--font-label);
  font-size: 9px;
  font-style: normal;
  font-weight: var(--fw-semibold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
}
.wka-calcai__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
  padding-top: 54px;
}
.wka-calcai__facts span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-family: var(--font-label);
  font-size: 8px;
  font-weight: var(--fw-semibold);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.43);
}
.wka-calcai__facts b { color: var(--wka-orange); }

/* Solara — one full horizon, monumental outline typography. */
.wka-case--solara > a { min-height: clamp(650px, 88vh, 940px); border: 1px solid rgba(255,255,255,.14); background: #19110b; }
.wka-case--solara > a > img,
.wka-case--solara > a > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: sepia(.28) saturate(.75) contrast(1.08) brightness(.72);
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1), filter .9s ease;
}
.wka-case--solara:hover > a > img,
.wka-case--solara:hover > a > video { transform: scale(1.025); filter: sepia(.12) saturate(.94) contrast(1.06) brightness(.8); }
.wka-case--solara .wka-case__shade { background: linear-gradient(0deg, rgba(14,8,4,.78), transparent 46%), linear-gradient(90deg, rgba(14,8,4,.28), transparent 58%); }
.wka-solara__copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-48%);
  text-align: center;
}
.wka-solara__copy > p {
  margin-bottom: 18px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.wka-solara__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15.8vw, 16rem);
  font-weight: 800;
  line-height: .72;
  letter-spacing: -.09em;
  color: rgba(255,255,255,.07);
  -webkit-text-stroke: 1px rgba(255,255,255,.78);
  text-shadow: 0 0 40px rgba(255,255,255,.06);
}
.wka-solara__copy > span {
  display: block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -.04em;
  color: #fff;
}
.wka-solara__footer {
  position: absolute;
  z-index: 3;
  left: clamp(20px, 3vw, 48px);
  right: clamp(20px, 3vw, 48px);
  bottom: clamp(20px, 3vw, 42px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.34);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}
.wka-solara__footer span { max-width: 55ch; line-height: 1.5; }
.wka-solara__footer b { color: #fff; white-space: nowrap; }

/* Closing proposition. */
.wka-final {
  padding: 0 0 clamp(90px, 11vw, 160px);
  border-top: 1px solid rgba(255,255,255,.17);
}
.wka-final__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 18px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
}
.wka-final__meta span:first-child { color: var(--wka-orange); }
.wka-final h2 {
  max-width: 9.2ch;
  margin: clamp(70px, 9vw, 135px) 0;
  font-family: var(--font-display);
  font-size: clamp(4.8rem, 12.4vw, 13rem);
  font-weight: 800;
  line-height: .75;
  letter-spacing: -.085em;
  color: #f3f2ef;
}
.wka-final h2 span { color: var(--wka-orange); }
.wka-final__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.wka-final__bottom p { max-width: 50ch; font-size: clamp(1rem, 1.3vw, 1.25rem); line-height: 1.55; color: rgba(255,255,255,.56); }
.wka-final__bottom a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 230px;
  padding: 16px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid rgba(255,255,255,.25);
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: var(--fw-semibold);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  transition: color .3s ease, border-color .3s ease;
}
.wka-final__bottom a svg { color: var(--wka-orange); transition: transform .3s ease; }
.wka-final__bottom a:hover { color: var(--wka-orange); border-color: var(--wka-orange); }
.wka-final__bottom a:hover svg { transform: translate(3px, -3px); }

/* ============================================================
   LIVE SITE VIEWER
   A full-viewport browser sheet. It keeps visitors in the archive,
   but always offers a direct route to the real domain.
   ============================================================ */
html.wka-viewer-open,
html.wka-viewer-open body { overflow: hidden; overscroll-behavior: none; }
html.wka-viewer-open .cl-cbtn,
html.wka-viewer-open .cl-ai {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(18px) scale(.84) !important;
}
.wka-live {
  --wka-live-ease: cubic-bezier(.16, 1, .3, 1);
  position: fixed;
  z-index: 500;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1vw, 16px);
  font-family: var(--font-body);
  pointer-events: none;
}
.wka-live__backdrop {
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: default;
  background: rgba(2,2,3,.87);
  -webkit-backdrop-filter: blur(18px) saturate(.6);
  backdrop-filter: blur(18px) saturate(.6);
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: auto;
}
.wka-live__panel {
  position: relative;
  z-index: 1;
  width: min(1880px, 100%);
  height: calc(100dvh - clamp(16px, 2vw, 32px));
  display: grid;
  grid-template-rows: 64px minmax(0, 1fr) 44px;
  overflow: hidden;
  color: #f4f3f0;
  background: #080809;
  border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 70px 180px -38px rgba(0,0,0,.95), inset 0 1px 0 rgba(255,255,255,.05);
  opacity: .4;
  transform: translate3d(0, 106%, 0) scale(.985) skewY(.35deg);
  transform-origin: bottom center;
  transition: transform .86s var(--wka-live-ease), opacity .55s ease;
  will-change: transform;
  pointer-events: auto;
}
.wka-live--open .wka-live__backdrop { opacity: 1; }
.wka-live--open .wka-live__panel { opacity: 1; transform: translate3d(0,0,0) scale(1) skewY(0); }
.wka-live--closing .wka-live__backdrop { opacity: 0; transition-duration: .55s; }
.wka-live--closing .wka-live__panel {
  opacity: .6;
  transform: translate3d(0, 108%, 0) scale(.99) skewY(-.25deg);
  transition-duration: .62s;
  transition-timing-function: cubic-bezier(.7,0,.84,0);
}
.wka-live__drag { display: none; }

.wka-live__bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(260px, .82fr) minmax(240px, 1fr);
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding: 0 clamp(18px, 2vw, 34px);
  border-bottom: 1px solid rgba(255,255,255,.15);
  background: #0b0b0d;
}
.wka-live__identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: var(--font-label);
  line-height: 1;
}
.wka-live__identity > span {
  flex: none;
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  color: var(--wka-orange);
}
.wka-live__identity strong {
  overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.28rem);
  font-weight: 650;
  letter-spacing: -.035em;
  color: #f4f3f0;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.wka-live__identity em {
  flex: none;
  font-size: 8px;
  font-style: normal;
  font-weight: var(--fw-semibold);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.wka-live__address {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.025);
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
}
.wka-live__address i { width: 6px; height: 6px; flex: none; border-radius: 50%; background: #51b77a; box-shadow: 0 0 12px rgba(81,183,122,.65); }
.wka-live__address span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wka-live__actions { justify-self: end; display: flex; align-items: center; gap: 18px; }
.wka-live__actions > a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.32);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  transition: color .25s ease, border-color .25s ease;
}
.wka-live__actions > a span { color: var(--wka-orange); }
.wka-live__actions > a:hover { color: #fff; border-color: var(--wka-orange); }
.wka-live__close {
  appearance: none;
  position: relative;
  width: 38px;
  height: 38px;
  flex: none;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background .28s ease, border-color .28s ease, transform .28s ease;
}
.wka-live__close i { position: absolute; top: 50%; left: 50%; width: 14px; height: 1px; background: currentColor; }
.wka-live__close i:first-child { transform: translate(-50%,-50%) rotate(45deg); }
.wka-live__close i:last-child { transform: translate(-50%,-50%) rotate(-45deg); }
.wka-live__close:hover { color: #080809; background: #fff; border-color: #fff; transform: rotate(5deg); }
.wka-live__close:focus-visible,
.wka-live__actions a:focus-visible,
.wka-live__foot button:focus-visible,
.wka-live__blockedcopy a:focus-visible { outline: 2px solid var(--wka-orange); outline-offset: 3px; }

.wka-live__viewport {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #111114;
}
.wka-live__viewport::before,
.wka-live__viewport::after {
  content: '';
  position: absolute;
  z-index: 5;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: .55;
}
.wka-live__viewport::before { top: 12px; left: 12px; border-top: 1px solid #fff; border-left: 1px solid #fff; }
.wka-live__viewport::after { right: 12px; bottom: 12px; border-right: 1px solid #fff; border-bottom: 1px solid #fff; }
.wka-live__iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #fff;
  opacity: 0;
  transform: scale(1.008);
  transition: opacity .65s ease .15s, transform .9s var(--wka-live-ease);
}
.wka-live.is-loaded .wka-live__iframe { opacity: 1; transform: scale(1); }
.wka-live__loader {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #09090b;
  transition: opacity .55s ease, visibility .55s ease;
}
.wka-live.is-loaded .wka-live__loader { opacity: 0; visibility: hidden; }
.wka-live__loader::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--wka-orange);
  transform-origin: left;
  animation: wkaLiveProgress 2.8s var(--wka-live-ease) infinite;
}
.wka-live__loaderword {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 17vw, 18rem);
  font-weight: 800;
  line-height: .75;
  letter-spacing: -.09em;
  color: rgba(255,255,255,.025);
  -webkit-text-stroke: 1px rgba(255,255,255,.13);
}
.wka-live__loader > div {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 11px;
  transform: translateX(-50%);
  font-family: var(--font-label);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.wka-live__loader > div i { width: 6px; height: 6px; border-radius: 50%; background: var(--wka-orange); animation: wkaLiveBlink 1s ease-in-out infinite alternate; }
.wka-live__loader > div b { font-weight: var(--fw-semibold); white-space: nowrap; }
@keyframes wkaLiveProgress { 0% { transform: scaleX(0); } 45% { transform: scaleX(.62); } 100% { transform: scaleX(.94); } }
@keyframes wkaLiveBlink { to { opacity: .25; transform: scale(.76); } }

.wka-live__blocked { position: absolute; inset: 0; overflow: hidden; background: #080809; }
.wka-live__blockedmedia { position: absolute; inset: 0; }
.wka-live__blockedmedia img,
.wka-live__blockedmedia video,
.wka-live__blockedmedia .wka-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.55) brightness(.48) contrast(1.1);
  transform: scale(1.035);
  animation: wkaBlockedIn 1.3s var(--wka-live-ease) forwards;
}
.wka-live__blockedshade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,3,4,.97) 0%, rgba(3,3,4,.78) 45%, rgba(3,3,4,.22) 78%), linear-gradient(0deg, rgba(3,3,4,.64), transparent 50%);
}
.wka-live__blockedcopy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 6vw, 100px);
  top: 50%;
  width: min(600px, 58vw);
  transform: translateY(-48%);
}
.wka-live__blockedcopy > p:first-child {
  margin-bottom: 22px;
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--wka-orange);
}
.wka-live__blockedcopy h2 {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 11vw, 11rem);
  font-weight: 800;
  line-height: .75;
  letter-spacing: -.085em;
  color: #f4f3ef;
}
.wka-live__blockedcopy h2 span { color: var(--wka-orange); }
.wka-live__blockedcopy > p:not(:first-child) {
  max-width: 45ch;
  margin-top: 32px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}
.wka-live__blockedcopy a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
  padding: 15px 19px;
  border: 1px solid rgba(255,255,255,.34);
  font-family: var(--font-label);
  font-size: 9px;
  font-weight: var(--fw-semibold);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(8,8,9,.45);
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}
.wka-live__blockedcopy a span { color: var(--wka-orange); }
.wka-live__blockedcopy a:hover { color: #080809; background: #fff; border-color: #fff; }
@keyframes wkaBlockedIn { to { transform: scale(1); } }

.wka-live__foot {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 clamp(18px, 2vw, 34px);
  border-top: 1px solid rgba(255,255,255,.13);
  background: #0b0b0d;
  font-family: var(--font-label);
  font-size: 8px;
  font-weight: var(--fw-semibold);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}
.wka-live__foot p { color: rgba(255,255,255,.5); }
.wka-live__foot button {
  appearance: none;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  transition: color .25s ease;
}
.wka-live__foot button b { color: var(--wka-orange); transform: rotate(180deg); }
.wka-live__foot button:hover { color: #fff; }

@media (max-width: 1100px) {
  .wka-hero__main { grid-template-columns: .74fr 1.26fr; }
  .wka-hero h1 { font-size: clamp(7rem, 18vw, 12rem); }
  .wka-index__layout { grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr); gap: 34px; }
  .wka-index__list button { grid-template-columns: 40px minmax(140px, 1fr) 86px 40px 18px; gap: 9px; }
  .wka-row__cat { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .wka-case--calcai > a { grid-template-columns: 1.05fr .95fr; }
  .wka-live__bar { grid-template-columns: minmax(180px, 1fr) minmax(210px, .75fr) auto; gap: 16px; }
  .wka-live__identity em { display: none; }
}

@media (max-width: 820px) {
  .wka-hero { min-height: auto; }
  .wka-hero__main { display: block; min-height: auto; padding: 50px 0 30px; }
  .wka-hero__word { position: absolute; z-index: 3; top: 30px; left: 0; right: 0; }
  .wka-hero__word > p { margin-left: 4px; }
  .wka-hero h1 { font-size: clamp(5.4rem, 25vw, 11rem); line-height: .78; }
  .wka-hero__films { height: clamp(500px, 70svh, 700px); padding-top: 120px; }
  .wka-index__layout { display: block; }
  .wka-preview { position: relative; top: auto; margin-top: 34px; }
  .wka-preview__media { aspect-ratio: 16 / 10; }
  .wka-preview__copy { grid-template-columns: 1fr auto; }
  .wka-case--calcai > a { grid-template-columns: 1fr; }
  .wka-calcai__visual { min-height: 550px; }
  .wka-calcai__copy { min-height: 500px; }
  .wka-calcai__facts { margin-top: 60px; }
}

@media (max-width: 600px) {
  .wkx-shell { padding-inline: 16px; }
  .wka-sectionhead { padding-block: 14px; font-size: 8px; letter-spacing: .13em; }
  .wka-hero__main { padding-top: 36px; }
  .wka-hero__word { top: 24px; }
  .wka-hero__word > p { font-size: 8px; }
  .wka-hero h1 { font-size: 23.5vw; }
  .wka-hero__films { height: 500px; gap: 5px; padding-top: 95px; }
  .wka-film:nth-child(1) { margin-top: 15%; }
  .wka-film:nth-child(2) { margin-bottom: 14%; }
  .wka-film > b { display: none; }
  .wka-film > span { left: 9px; bottom: 11px; font-size: 8px; }
  .wka-hero__footer { align-items: center; }
  .wka-hero__footer > p { font-size: 1.3rem; }
  .wka-hero__footer a { gap: 10px; font-size: 8px; }
  .wka-index { padding: 100px 0 120px; }
  .wka-index__title { margin: 28px 0 54px; font-size: 17vw; }
  .wka-index__list button {
    grid-template-columns: 32px minmax(0, 1fr) 38px 15px;
    gap: 8px;
    padding: 18px 3px 18px 10px;
  }
  .wka-index__list button:hover,
  .wka-index__list li.is-active button { padding-left: 17px; }
  .wka-row__cat { display: none; }
  .wka-row__name { font-size: 1.04rem; }
  .wka-row__year, .wka-row__num { font-size: 8px; }
  .wka-preview { margin-top: 24px; }
  .wka-preview__media { aspect-ratio: 4 / 3; }
  .wka-preview__copy { display: block; }
  .wka-preview__copy span { display: block; margin-top: 12px; }
  .wka-case { margin-bottom: 110px; }
  .wka-case__topline { padding: 13px 12px; font-size: 7px; }
  .wka-case--harvest > a { min-height: 650px; }
  .wka-case--harvest .wka-case__shade { background: linear-gradient(0deg, rgba(0,0,0,.9), rgba(0,0,0,.18) 80%); }
  .wka-case__harvestcopy { left: 20px; right: 20px; bottom: 90px; }
  .wka-case__harvestcopy h2 { font-size: 19vw; }
  .wka-case__note { left: 20px; right: auto; bottom: 24px; }
  .wka-case__cross--b { display: none; }
  .wka-case--calcai { padding-top: 42px; }
  .wka-case--calcai > a { min-height: 0; }
  .wka-calcai__visual { min-height: 390px; padding: 42px 28px; }
  .wka-calcai__copy { min-height: 510px; padding: 44px 24px 30px; }
  .wka-calcai__copy h2 { font-size: 20vw; }
  .wka-case--solara > a { min-height: 650px; }
  .wka-solara__copy h2 { font-size: 20vw; }
  .wka-solara__footer { display: block; }
  .wka-solara__footer span { display: block; margin-bottom: 14px; }
  .wka-final h2 { margin: 80px 0; font-size: 18vw; }
  .wka-final__bottom { display: block; }
  .wka-final__bottom a { margin-top: 38px; }

  .wka-live {
    align-items: flex-end;
    padding: 6px 0 0;
  }
  .wka-live__backdrop { background: rgba(2,2,3,.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
  .wka-live__panel {
    width: 100%;
    height: calc(100dvh - 6px);
    grid-template-rows: 92px minmax(0, 1fr) 48px;
    border: 0;
    border-top: 1px solid rgba(255,255,255,.26);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -30px 90px rgba(0,0,0,.72);
  }
  .wka-live__drag {
    position: absolute;
    z-index: 8;
    top: 0;
    left: 0;
    right: 0;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
    touch-action: none;
  }
  .wka-live__drag i { width: 42px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.3); }
  .wka-live__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 40px 32px;
    gap: 0 12px;
    padding: 18px 13px 6px;
  }
  .wka-live__identity { min-width: 0; gap: 9px; }
  .wka-live__identity strong { font-size: 1rem; }
  .wka-live__address { grid-column: 1 / -1; grid-row: 2; justify-content: flex-start; padding: 8px 10px; font-size: 8px; }
  .wka-live__actions { grid-column: 2; grid-row: 1; gap: 10px; }
  .wka-live__actions > a { gap: 6px; font-size: 7px; letter-spacing: .1em; }
  .wka-live__close { width: 34px; height: 34px; }
  .wka-live__viewport::before,
  .wka-live__viewport::after { width: 17px; height: 17px; }
  .wka-live__loaderword { font-size: 24vw; }
  .wka-live__loader > div { bottom: 22px; font-size: 8px; }
  .wka-live__blockedmedia img,
  .wka-live__blockedmedia video { object-position: center; }
  .wka-live__blockedshade { background: linear-gradient(0deg, rgba(3,3,4,.98) 0%, rgba(3,3,4,.68) 58%, rgba(3,3,4,.18)); }
  .wka-live__blockedcopy {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 34px;
    width: auto;
    transform: none;
  }
  .wka-live__blockedcopy > p:first-child { margin-bottom: 14px; font-size: 7px; }
  .wka-live__blockedcopy h2 { font-size: 20vw; }
  .wka-live__blockedcopy > p:not(:first-child) { margin-top: 22px; font-size: .96rem; }
  .wka-live__blockedcopy a { margin-top: 24px; padding: 13px 15px; font-size: 8px; }
  .wka-live__foot { grid-template-columns: 1fr auto; padding: 0 13px; font-size: 7px; }
  .wka-live__foot > span { display: none; }
  .wka-live__foot p { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

@media (prefers-reduced-motion: reduce) {
  .wka-film img,
  .wka-film video,
  .wka-preview__media img,
  .wka-preview__media video,
  .wka-case > a > img,
  .wka-case > a > video,
  .wka-calcai__visual img { transition: none; }
  .wka-preview__scan { display: none; }
  .wka-live__panel { transition-duration: .48s; }
  .wka-live__backdrop { transition-duration: .3s; }
  .wka-live__loader::before,
  .wka-live__loader > div i,
  .wka-live__blockedmedia img,
  .wka-live__blockedmedia video { animation: none; }
}
