:root {
  --ink: #0b0c0e;
  --paper: #f1efe8;
  --paper-bright: #faf8f2;
  --white: #ffffff;
  --muted: #64635e;
  --line: rgba(11, 12, 14, 0.15);
  --dark-line: rgba(255, 255, 255, 0.14);
  --orange: #ff5c35;
  --orange-ink: #c43a1c;
  --orange-soft: #f2b39f;
  --blue: #7598ff;
  --violet: #cab9ff;
  --acid: #dfff5f;
  --gold: #d5aa52;
  --max-width: 1440px;
  --gutter: clamp(22px, 4vw, 72px);
  --radius-lg: clamp(28px, 3vw, 48px);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 9999;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .025;
  background-image: repeating-radial-gradient(circle at 0 0, rgba(255, 255, 255, .9) 0 .45px, transparent .55px 3px);
  background-size: 5px 5px;
}

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

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

button, a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-weight: 750;
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 18px;
  right: var(--gutter);
  left: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: calc(var(--max-width) - (var(--gutter) * 2));
  margin: 0 auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(13, 14, 16, .62);
  color: var(--white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .15);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: transform .35s var(--ease), background .35s ease;
}

.site-header.scrolled {
  background: rgba(13, 14, 16, .88);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: -.02em;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: -.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.desktop-nav a {
  padding: 8px 15px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
}

.header-cta {
  justify-self: end;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  transition: transform .25s var(--ease), background .25s ease;
}

.header-cta:hover {
  background: var(--acid);
  transform: translateY(-2px);
}

.menu-button,
.mobile-menu {
  display: none;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(30px, 4vw, 72px);
  overflow: hidden;
  padding: clamp(130px, 15vh, 190px) var(--gutter) clamp(70px, 9vh, 110px);
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 82%);
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .9;
}

.hero-glow-one {
  top: -22vw;
  right: -9vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(53, 107, 255, .32), transparent 67%);
}

.hero-glow-two {
  bottom: -36vw;
  left: 8vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(255, 92, 53, .22), transparent 68%);
}

.hero-copy,
.hero-stage {
  width: 100%;
  max-width: calc(var(--max-width) / 2);
}

.hero-copy {
  justify-self: end;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, .64);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .3);
}

.eyebrow-dark {
  color: rgba(11, 12, 14, .58);
}

.hero h1,
.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: clamp(60px, 7.5vw, 124px);
  font-weight: 700;
  letter-spacing: -.075em;
  line-height: .84;
}

.hero h1 em,
.section-heading h2 em,
.contact h2 em,
.kibo-copy h3 em,
.working-grid h3 em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-heading h2 em {
  color: var(--orange-ink);
}

.section-heading-light h2 em {
  color: var(--orange);
}

.hero-intro {
  max-width: 620px;
  margin: 38px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
  letter-spacing: -.025em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  transition: transform .25s var(--ease), background .25s ease;
}

.button-primary {
  background: var(--orange);
  color: var(--ink);
}

.button-primary:hover {
  background: #ff7657;
  transform: translateY(-3px);
}

.text-link {
  padding-block: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  transition: color .2s ease, border-color .2s ease;
}

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

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 680px;
  margin: clamp(42px, 7vh, 76px) 0 0;
  border-top: 1px solid var(--dark-line);
}

.hero-facts div {
  padding: 18px 10px 0 0;
}

.hero-facts dt {
  color: rgba(255, 255, 255, .58);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 620;
}

.hero-stage {
  position: relative;
  justify-self: start;
  height: min(680px, 72vh);
  min-height: 520px;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.stage-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(36vw, 530px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.stage-orbit::before,
.stage-orbit::after {
  position: absolute;
  inset: 11%;
  content: "";
  border: 1px dashed rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.stage-orbit::after {
  inset: 33%;
  border-style: solid;
  border-color: rgba(223, 255, 95, .14);
}

.stage-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 30px;
  background: #1a1b1e;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .42);
  will-change: transform;
  transition: transform .7s var(--ease), filter .4s ease;
}

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

.stage-card-main {
  z-index: 3;
  top: 8%;
  left: 31%;
  width: min(16vw, 245px);
  aspect-ratio: 222 / 480;
  transform: rotate(2deg) translate3d(var(--mx, 0), var(--my, 0), 30px);
}

.stage-card-back {
  z-index: 1;
  top: 21%;
  left: 7%;
  width: min(13vw, 195px);
  aspect-ratio: 222 / 480;
  filter: saturate(.8) brightness(.76);
  transform: rotate(-9deg) translate3d(var(--mx, 0), var(--my, 0), -20px);
}

.stage-card-front {
  z-index: 4;
  right: 3%;
  bottom: 5%;
  width: min(12vw, 180px);
  aspect-ratio: 221 / 480;
  transform: rotate(9deg) translate3d(var(--mx, 0), var(--my, 0), 70px);
}

.floating-label {
  position: absolute;
  z-index: 7;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(20, 21, 24, .72);
  color: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .22);
  backdrop-filter: blur(14px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-transform: uppercase;
  will-change: transform;
}

.floating-label-top {
  top: 14%;
  right: 2%;
  transform: translate3d(var(--mx, 0), var(--my, 0), 90px);
}

.floating-label-bottom {
  bottom: 15%;
  left: 7%;
  background: var(--acid);
  color: var(--ink);
  transform: translate3d(var(--mx, 0), var(--my, 0), 60px) rotate(-4deg);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5ee080;
  box-shadow: 0 0 0 5px rgba(94, 224, 128, .12);
}

.icon-stack {
  position: absolute;
  z-index: 8;
  top: 3%;
  left: 8%;
  display: flex;
  will-change: transform;
  transform: translate3d(var(--mx, 0), var(--my, 0), 110px);
}

.icon-stack img {
  width: 48px;
  height: 48px;
  margin-left: -12px;
  border: 3px solid var(--ink);
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .25);
}

.icon-stack img:first-child {
  margin-left: 0;
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero-scroll i {
  position: relative;
  width: 25px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
}

.hero-scroll i::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--white);
  content: "";
  transform: translateX(-50%);
  animation: scrollCue 1.7s ease-in-out infinite;
}

@keyframes scrollCue {
  0%, 100% { opacity: .3; transform: translate(-50%, 0); }
  50% { opacity: 1; transform: translate(-50%, 10px); }
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--acid);
  color: var(--ink);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding: 16px 0;
  animation: ticker 32s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.ticker-track span {
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.ticker-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

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

.work,
.capabilities {
  padding-top: clamp(100px, 12vw, 190px);
  padding-bottom: clamp(100px, 12vw, 190px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(140px, .33fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 90px);
  align-items: start;
  margin-bottom: clamp(65px, 9vw, 130px);
}

.section-index {
  margin: 10px 0 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 680;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(50px, 6.5vw, 104px);
}

.section-heading > div > p {
  max-width: 600px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 20px);
  letter-spacing: -.02em;
}

.case-study {
  position: relative;
  display: grid;
  min-height: 720px;
  grid-template-columns: minmax(0, .82fr) minmax(430px, 1.18fr);
  overflow: hidden;
  margin-bottom: clamp(24px, 3vw, 46px);
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.case-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(34px, 5vw, 76px);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  margin-bottom: auto;
}

.case-meta span {
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: .62;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.case-icon {
  width: clamp(68px, 6vw, 88px);
  height: clamp(68px, 6vw, 88px);
  margin: 48px 0 22px;
  border-radius: 22%;
  box-shadow: 0 18px 36px rgba(0, 0, 0, .22);
}

.case-copy h3 {
  margin: 0;
  font-size: clamp(54px, 6vw, 90px);
  line-height: .95;
  letter-spacing: -.065em;
}

.case-copy > p {
  max-width: 510px;
  margin: 26px 0 0;
  opacity: .68;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
  letter-spacing: -.015em;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  font-size: 10px;
  font-weight: 650;
}

.case-link,
.dark-link {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 730;
  transition: gap .25s var(--ease), opacity .25s ease;
}

.case-link:hover,
.dark-link:hover {
  gap: 36px;
  opacity: .7;
}

.case-visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.phone-shot {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: clamp(24px, 2.6vw, 40px);
  background: #1b1c1f;
  box-shadow: 0 35px 80px rgba(0, 0, 0, .35);
  transition: transform .8s var(--ease);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-visual .shot-one {
  top: 10%;
  left: 18%;
  width: min(31%, 270px);
  aspect-ratio: 222 / 480;
  transform: rotate(-5deg);
}

.case-visual .shot-two {
  right: 12%;
  bottom: -7%;
  width: min(34%, 295px);
  aspect-ratio: 222 / 480;
  transform: rotate(6deg);
}

.case-study:hover .shot-one {
  transform: rotate(-7deg) translateY(-10px);
}

.case-study:hover .shot-two {
  transform: rotate(4deg) translateY(-16px);
}

.case-cloudnav {
  background: #181d20;
  color: var(--white);
}

.case-cloudnav::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 52px 52px;
}

.case-cloudnav .case-visual {
  background: radial-gradient(circle at 48% 45%, rgba(39, 191, 176, .35), transparent 40%);
}

.visual-halo {
  position: absolute;
  top: 20%;
  left: 22%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(77, 229, 211, .28);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(77, 229, 211, .11), inset 0 0 80px rgba(77, 229, 211, .08);
}

.visual-halo::before,
.visual-halo::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.visual-halo::before {
  inset: 12%;
  border: 1px dashed rgba(77, 229, 211, .22);
}

.visual-halo::after {
  inset: 46%;
  background: #4de5d3;
  box-shadow: 0 0 24px #4de5d3;
}

.case-patna {
  background: #e9c7ad;
  color: #7d2617;
}

.case-patna::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent 45%);
}

.case-patna .feature-list li {
  background: rgba(125, 38, 23, .08);
}

.case-patna .case-meta span {
  opacity: .9;
}

.case-patna .case-copy > p {
  opacity: .85;
}

.patna-sun {
  position: absolute;
  top: 2%;
  right: -4%;
  width: min(42vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(125, 38, 23, .16);
  border-radius: 50%;
}

.patna-sun::before,
.patna-sun::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(125, 38, 23, .12);
  border-radius: 50%;
}

.patna-sun::before { inset: 12%; }
.patna-sun::after { inset: 28%; background: rgba(194, 53, 31, .05); }

.kibo-story {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: 90px minmax(0, .92fr) minmax(400px, 1.08fr);
  gap: clamp(28px, 4vw, 70px);
  align-items: center;
  overflow: hidden;
  margin: clamp(24px, 3vw, 46px) 0;
  padding: clamp(36px, 5vw, 78px);
  border-radius: var(--radius-lg);
  background: var(--acid);
}

.kibo-number {
  align-self: start;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.kibo-copy h3,
.working-grid h3 {
  margin: 0;
  font-size: clamp(48px, 5vw, 78px);
  line-height: .94;
  letter-spacing: -.06em;
}

.kibo-copy h3 em,
.working-grid h3 em {
  color: var(--ink);
}

.kibo-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 0;
  color: rgba(11, 12, 14, .65);
  font-size: clamp(15px, 1.25vw, 18px);
}

.kibo-system {
  position: relative;
  height: 440px;
  border: 1px solid rgba(11, 12, 14, .18);
  border-radius: 50%;
}

.kibo-system::before,
.kibo-system::after {
  position: absolute;
  content: "";
  border: 1px dashed rgba(11, 12, 14, .18);
  border-radius: 50%;
}

.kibo-system::before { inset: 13%; }
.kibo-system::after { inset: 32%; }

.system-core,
.system-node,
.system-chip {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11, 12, 14, .2);
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 10px 28px rgba(11, 12, 14, .08);
  backdrop-filter: blur(8px);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.system-core {
  top: 50%;
  left: 50%;
  width: 118px;
  height: 118px;
  border-radius: 35%;
  background: var(--ink);
  color: var(--white);
  font-family: inherit;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -.04em;
  transform: translate(-50%, -50%) rotate(-5deg);
}

.system-node {
  width: 132px;
  height: 44px;
  border-radius: 999px;
}

.node-source { top: 8%; left: 5%; transform: rotate(-7deg); }
.node-output { right: 2%; bottom: 12%; transform: rotate(6deg); }

.system-chip {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  animation: floatChip 4s ease-in-out infinite;
}

.chip-one { top: 6%; right: 13%; }
.chip-two { bottom: 5%; left: 15%; animation-delay: -1.3s; }
.chip-three { top: 53%; right: 2%; animation-delay: -2.2s; }

@keyframes floatChip {
  0%, 100% { transform: translateY(-4px); }
  50% { transform: translateY(6px); }
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.app-card {
  position: relative;
  display: grid;
  min-height: 670px;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  padding: clamp(24px, 3vw, 42px);
  border-radius: var(--radius-lg);
  isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s ease;
}

.app-card:hover {
  z-index: 2;
  box-shadow: 0 28px 70px rgba(11, 12, 14, .16);
  transform: translateY(-8px);
}

.app-card:focus-visible {
  z-index: 2;
  outline: 2px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink), 0 28px 70px rgba(11, 12, 14, .16);
}

.app-card-head {
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.app-card-head img {
  width: 64px;
  height: 64px;
  border-radius: 20%;
  box-shadow: 0 13px 30px rgba(0, 0, 0, .18);
}

.app-card-head > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.app-card-screen {
  position: absolute;
  z-index: -1;
  top: 85px;
  right: 4%;
  width: min(45%, 280px);
  height: 72%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .2);
  transform: rotate(8deg) translateY(8%);
  transition: transform .65s var(--ease);
}

.app-card:hover .app-card-screen {
  transform: rotate(5deg) translateY(4%);
}

.app-card-screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity .45s ease;
}

.app-card-screen img + img {
  opacity: 0;
}

.app-card:hover .app-card-screen img:first-child,
.app-card:focus-visible .app-card-screen img:first-child {
  opacity: 0;
}

.app-card:hover .app-card-screen img + img,
.app-card:focus-visible .app-card-screen img + img {
  opacity: 1;
}

.app-card-copy {
  z-index: 2;
  align-self: end;
  max-width: 55%;
}

.app-card-copy p {
  margin: 0 0 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.app-card-copy h3 {
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: .95;
  letter-spacing: -.06em;
}

.app-card-copy > span {
  display: block;
  margin-top: 16px;
  color: rgba(11, 12, 14, .72);
  font-size: 13px;
  line-height: 1.5;
}

.app-card-blue { background: #bad8ff; }
.app-card-orange { background: #ffd0a8; }
.app-card-violet { background: var(--violet); }
.app-card-gold { background: #e7d5a7; }

.more-work {
  display: grid;
  grid-template-columns: .5fr 1.5fr;
  gap: 40px;
  margin-top: clamp(65px, 8vw, 110px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.more-work > p {
  margin: 4px 0 0;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.more-work ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.more-work li {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 620;
  letter-spacing: -.045em;
}

.more-work li > span {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: 0;
}

.more-work li small {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.experience {
  padding: clamp(100px, 12vw, 190px) 0;
  background: var(--ink);
  color: var(--white);
}

.section-heading-light .section-index,
.section-heading-light > div > p {
  color: rgba(255, 255, 255, .48);
}

.timeline {
  border-top: 1px solid var(--dark-line);
}

.timeline-item {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) minmax(280px, .75fr) minmax(320px, .8fr);
  gap: clamp(26px, 4vw, 70px);
  align-items: start;
  padding: clamp(32px, 4vw, 58px) 0;
  border-bottom: 1px solid var(--dark-line);
}

.timeline-date {
  color: rgba(255, 255, 255, .55);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.timeline-role p {
  margin: 0 0 9px;
  color: var(--orange-soft);
  font-size: 12px;
  font-weight: 670;
}

.timeline-role h3 {
  margin: 0;
  font-size: clamp(25px, 2.7vw, 40px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.timeline-role h3 span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0;
}

.timeline-summary {
  margin: 0;
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
}

.capability-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.5vw, 52px);
  background: var(--paper-bright);
}

.capability-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
}

.capability-card h3 {
  margin: auto 0 16px;
  font-size: clamp(35px, 3.5vw, 52px);
  line-height: 1;
  letter-spacing: -.055em;
}

.capability-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 650;
}

.working-style {
  margin-top: clamp(24px, 3vw, 46px);
  padding: clamp(38px, 6vw, 90px);
  border-radius: var(--radius-lg);
  background: var(--orange-soft);
}

.working-style .eyebrow-dark {
  color: rgba(11, 12, 14, .8);
}

.working-grid {
  display: grid;
  grid-template-columns: 1.2fr .65fr .65fr;
  gap: clamp(35px, 6vw, 90px);
  align-items: end;
}

.working-grid p {
  margin: 0;
  color: rgba(11, 12, 14, .64);
  font-size: 14px;
  line-height: 1.7;
}

.contact {
  position: relative;
  display: grid;
  min-height: 780px;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  overflow: hidden;
  padding: clamp(100px, 14vw, 200px) var(--gutter) clamp(70px, 8vw, 120px);
  background: var(--blue);
  color: var(--ink);
  isolation: isolate;
}

.contact-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .13;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 82px 82px;
  -webkit-mask-image: radial-gradient(circle at 40% 70%, #000 0, transparent 70%);
  mask-image: radial-gradient(circle at 40% 70%, #000 0, transparent 70%);
}

.contact::before {
  position: absolute;
  z-index: -1;
  top: -22%;
  right: -9%;
  width: min(60vw, 850px);
  aspect-ratio: 1;
  border: 1px solid rgba(11, 12, 14, .2);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 70px rgba(255,255,255,.025), inset 0 0 0 140px rgba(255,255,255,.025);
}

.contact-copy {
  max-width: 1000px;
}

.contact .eyebrow {
  margin-bottom: 34px;
  color: rgba(11, 12, 14, .8);
}

.contact h2 {
  font-size: clamp(54px, 7vw, 112px);
}

.contact h2 em {
  color: var(--ink);
  text-decoration-line: underline;
  text-decoration-color: var(--acid);
  text-decoration-thickness: .08em;
  text-underline-offset: .12em;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 35px 0 0;
  color: rgba(11, 12, 14, .8);
  font-size: clamp(16px, 1.35vw, 20px);
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 720px;
  margin-top: 42px;
  padding: 18px 0;
  border-top: 1px solid rgba(11, 12, 14, .35);
  border-bottom: 1px solid rgba(11, 12, 14, .35);
  font-size: clamp(17px, 2.2vw, 34px);
  font-weight: 650;
  letter-spacing: -.035em;
}

.contact-email i {
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  font-style: normal;
  transition: transform .3s var(--ease);
}

.contact-email:hover i {
  transform: rotate(45deg);
}

.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  padding-bottom: 8px;
}

.contact-meta div {
  padding-top: 14px;
  border-top: 1px solid rgba(11, 12, 14, .25);
}

.contact-meta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(11, 12, 14, .8);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-meta strong,
.contact-meta a {
  font-size: 17px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 20px;
  padding: 24px var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.site-footer p,
.site-footer > a:last-child {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
}

.site-footer p {
  text-align: center;
}

.site-footer > a:last-child {
  justify-self: end;
}

.brand-mark-light {
  background: var(--white);
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .85s var(--ease) var(--delay, 0ms), transform .85s var(--ease) var(--delay, 0ms);
}

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  }

  .stage-card-main { width: min(19vw, 230px); left: 28%; }
  .stage-card-back { width: min(15vw, 175px); left: 2%; }
  .stage-card-front { width: min(14vw, 165px); }

  .case-study {
    min-height: 650px;
    grid-template-columns: minmax(0, .9fr) minmax(370px, 1.1fr);
  }

  .case-visual { min-height: 650px; }

  .app-card { min-height: 600px; }

  .kibo-story {
    grid-template-columns: 45px 1fr 1fr;
  }
}

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

  html.js .desktop-nav,
  .header-cta {
    display: none;
  }

  html.js .menu-button {
    display: grid;
    width: 36px;
    height: 36px;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
  }

  .menu-button span {
    display: block;
    width: 14px;
    height: 1px;
    background: var(--white);
    transition: transform .25s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 24px;
    background: rgba(13,14,16,.96);
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
  }

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

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 16px;
    color: rgba(255,255,255,.75);
    font-size: 14px;
  }

  .mobile-menu a:hover { background: rgba(255,255,255,.07); color: var(--white); }

  html:not(.js) .site-header {
    grid-template-columns: auto 1fr;
  }

  html:not(.js) .desktop-nav {
    justify-self: end;
    gap: 0;
    background: transparent;
  }

  html:not(.js) .desktop-nav a {
    padding-inline: 9px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 135px;
  }

  .hero-copy,
  .hero-stage {
    max-width: none;
  }

  .hero-stage {
    height: 640px;
    margin-top: 20px;
  }

  .stage-orbit { width: min(78vw, 530px); }
  .stage-card-main { width: min(34vw, 245px); left: 35%; }
  .stage-card-back { width: min(27vw, 195px); left: 10%; }
  .stage-card-front { width: min(25vw, 180px); right: 7%; }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .case-study {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .case-meta { margin-bottom: 0; }
  .case-icon { margin-top: 55px; }
  .case-visual { min-height: 600px; }

  .kibo-story {
    grid-template-columns: 1fr;
  }

  .kibo-number { display: none; }
  .kibo-system { max-width: 520px; width: 100%; margin: 10px auto 0; }

  .app-grid { grid-template-columns: 1fr; }
  .app-card { min-height: 650px; }

  .timeline-item {
    grid-template-columns: .55fr 1fr;
  }

  .timeline-summary {
    grid-column: 2;
  }

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

  .capability-card { min-height: 390px; }

  .working-grid {
    grid-template-columns: 1fr 1fr;
  }

  .working-grid h3 { grid-column: 1 / -1; }

  .contact {
    min-height: 720px;
    grid-template-columns: 1fr;
  }

  .contact-meta { max-width: 500px; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; }

  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    width: auto;
  }

  .brand-name { display: none; }

  .hero {
    padding-top: 118px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 78px);
    line-height: .88;
  }

  .hero-intro { margin-top: 28px; }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .hero-facts {
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div:last-child { display: none; }

  .hero-stage {
    height: 530px;
    min-height: 0;
    margin-top: 0;
  }

  .stage-card {
    border-radius: 22px;
  }

  .stage-card-main { top: 7%; left: 32%; width: min(45vw, 210px); }
  .stage-card-back { top: 25%; left: -2%; width: min(34vw, 155px); }
  .stage-card-front { right: -1%; bottom: 4%; width: min(31vw, 145px); }
  .floating-label-top { top: 10%; right: -2%; }
  .floating-label-bottom { bottom: 4%; left: 2%; }
  .icon-stack { top: 0; left: 1%; }
  .icon-stack img { width: 42px; height: 42px; }
  .hero-scroll { display: none; }

  .section-heading h2 {
    font-size: clamp(48px, 15vw, 70px);
  }

  .section-heading > div > p { margin-top: 24px; }

  .case-copy { padding: 28px; }
  .case-copy h3 { font-size: 54px; }
  .case-copy > p { font-size: 15px; }
  .case-visual { min-height: 480px; }
  .case-visual .shot-one { left: 9%; width: 42%; }
  .case-visual .shot-two { right: 7%; width: 46%; }

  .kibo-story { min-height: auto; padding: 30px; }
  .kibo-copy h3,
  .working-grid h3 { font-size: 46px; }
  .kibo-system { height: 330px; }
  .system-core { width: 96px; height: 96px; }
  .system-node { width: 110px; font-size: 8px; }
  .system-chip { width: 58px; height: 58px; font-size: 8px; }

  .app-card {
    min-height: 560px;
    padding: 26px;
  }

  .app-card-screen {
    top: 85px;
    width: 48%;
    height: 70%;
  }

  .app-card-copy { max-width: 57%; }
  .app-card-copy h3 { font-size: 42px; }

  .more-work {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .more-work li {
    grid-template-columns: 28px 1fr;
    font-size: 27px;
  }

  .more-work li small {
    grid-column: 2;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .timeline-summary { grid-column: auto; }
  .capability-card { min-height: 360px; }

  .working-grid { grid-template-columns: 1fr; }
  .working-grid h3 { grid-column: auto; }

  .contact {
    min-height: 700px;
    align-items: center;
  }

  .contact h2 { font-size: clamp(50px, 15vw, 72px); }

  .contact-email {
    align-items: flex-end;
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .contact-email i { width: 44px; height: 44px; }
  .contact-meta { grid-template-columns: 1fr; }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p { display: none; }
}

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

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