:root {
  --scene-pad: clamp(24px, 5vw, 96px);
  --scene-max: 1600px;
  --z-modal: 60;
  --z-menu: 50;
  --safe-bottom: max(24px, env(safe-area-inset-bottom));

  --lime: #d6ff1e;
  --black: #11130f;
  --paper: #f0f0e8;
  --muted: #a4a69a;
  --display: Polonium, Onest, sans-serif;
  --body: Onest, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.78, 0.22, 1);
  font-family: var(--body);
  color: var(--black);
  background: var(--black);
  color-scheme: light;
  --space-7: 104px;
  --radius-rail: 40px;
  --glass-surface: rgba(255, 255, 255, 0.17);
  --glass-border: rgba(255, 255, 255, 0.64);
  --glass-blur: 18px;
  --z-nav: 30;
  --z-trigger: 32;
  --z-skip: 100;
}

@font-face {
  font-family: Polonium;
  src: url("/assets/fonts/polonium-bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: Onest;
  src: url("/assets/fonts/onest-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
  color: inherit;
}
button {
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}
button:active {
  transform: translateY(2px);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
button {
  transition:
    background 0.2s,
    transform 0.2s,
    color 0.2s;
}
::selection {
  background: var(--lime);
  color: var(--black);
}
[hidden] {
  display: none !important;
}
.skip-link {
  position: fixed;
  z-index: var(--z-skip);
  top: -100px;
  left: 20px;
  padding: 16px;
  background: var(--black);
  color: white;
}
.skip-link:focus {
  top: 20px;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.07em;
  font-weight: 500;
}
.display {
  font-family: var(--display);
  font-size: clamp(76px, 12vw, 220px);
  font-weight: 700;
  line-height: 0.87;
  letter-spacing: -0.035em;
}
.indent {
  display: block;
  margin-left: 20%;
}
.section {
  padding: var(--space-7) 5%;
}
.section-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  font-size: 11px;
  letter-spacing: 0.06em;
  margin-bottom: 65px;
}
.dark {
  background: var(--black);
  color: var(--paper);
}
.light {
  background: var(--paper);
  color: var(--black);
}
.text-link {
  display: inline-block;
  background: none;
  border-bottom: 1px solid currentColor;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
}
.text-link:hover {
  border-color: transparent;
}
.glass {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.7),
    inset 0 -1px 1px rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
}

.header {
  position: absolute;
  z-index: var(--z-nav);
  top: 26px;
  left: 4%;
  right: 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  font-weight: 750;
  font-size: 26px;
  letter-spacing: -0.065em;
  line-height: 1;
  display: block;
  white-space: nowrap;
}
.brand sup {
  font-size: 10px;
  vertical-align: top;
  margin-left: 3px;
  letter-spacing: 0;
}
.brand > span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.095em;
  font-weight: 500;
  margin-top: 9px;
}
.header-end {
  display: flex;
  align-items: center;
  gap: 20px;
}
.honx-status {
  font-size: 10px;
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: 7px;
}
.honx-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22390a;
}
.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  padding: 6px;
  border-radius: var(--radius-rail);
  gap: 4px;
}
.nav a {
  font-size: 12px;
  font-weight: 600;
  padding: 15px 20px;
  z-index: 1;
  position: relative;
  border-radius: var(--radius-rail);
  transition: transform 0.15s;
  white-space: nowrap;
}
.nav a:active {
  transform: translateY(2px);
}
.nav-lens {
  position: absolute;
  left: 6px;
  top: 6px;
  height: calc(100% - 12px);
  width: var(--lens-width, 90px);
  transform: translateX(var(--lens-x, 0px));
  opacity: 0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 3px white,
    inset 0 -1px 4px rgba(67, 85, 5, 0.1);
  transition:
    transform 0.4s var(--ease),
    width 0.4s var(--ease),
    opacity 0.2s;
}
.nav:has(a:hover) .nav-lens,
.nav:focus-within .nav-lens,
.nav.has-active .nav-lens {
  opacity: 1;
}
.menu-toggle {
  display: none;
}
.mobile-nav {
  display: none;
}
.hero {
  height: 100svh;
  min-height: 740px;
  position: relative;
  background: var(--lime);
  isolation: isolate;
  overflow: clip;
  touch-action: pan-y;
}
.giant {
  position: absolute;
  z-index: 1;
  top: 18%;
  left: 4%;
  right: 4%;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.77;
  letter-spacing: -0.025em;
  pointer-events: none;
}
.giant-line {
  display: block;
  white-space: nowrap;
  overflow: clip;
  padding-bottom: 0.04em;
}
.giant-line > span {
  display: inline-block;
  font-size: 100px;
  animation: reveal-type 0.9s var(--ease) both;
}
.line-one {
  width: 89%;
}
.line-two {
  width: 100%;
  margin-top: 1%;
}
.line-two > span {
  animation-delay: 0.1s;
}
.mascot-stage {
  position: absolute;
  z-index: 2;
  width: 45%;
  left: 50%;
  top: 10%;
  bottom: 5%;
  transform: translateX(-50%);
  pointer-events: none;
  contain: layout paint;
  opacity: 0;
  transition: opacity 0.65s;
  touch-action: pan-y;
}
.mascot-stage.is-ready {
  opacity: 1;
}
.mascot-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: pan-y;
}
.mascot-stage:not(.is-ready) {
  opacity: 1;
}
.mascot-stage:not(.is-ready) canvas {
  opacity: 0;
}
.mascot-loading {
  position: absolute;
  left: 50%;
  top: 45%;
  transform: translateX(-50%);
  font-size: 11px;
  display: grid;
  gap: 12px;
  text-align: center;
  white-space: nowrap;
}
.mascot-error {
  white-space: normal;
  max-width: 230px;
  pointer-events: auto;
}
.retry-model {
  padding: 12px;
  background: var(--black);
  color: white;
  border-radius: 20px;
}
.hero-info {
  position: absolute;
  z-index: 3;
  bottom: 13%;
  left: 4%;
  width: 29%;
  max-width: 440px;
}
.hero-info .eyebrow {
  margin-bottom: 17px;
}
.hero-info h2 {
  font-size: clamp(32px, 3.5vw, 60px);
  font-weight: 750;
  letter-spacing: -0.07em;
  line-height: 1;
}
.hero-info h2 sup {
  font-size: 14px;
  vertical-align: top;
  letter-spacing: 0;
}
.studio-role {
  font-size: clamp(11px, 1.15vw, 18px);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 11px;
}
.hero-copy {
  font-size: clamp(15px, 1.1vw, 21px);
  line-height: 1.45;
  margin-top: 25px;
  letter-spacing: -0.025em;
}
.geo {
  font-size: 10px;
  margin-top: 42px;
  letter-spacing: 0.025em;
}
.hero-brief {
  position: absolute;
  z-index: 4;
  right: 3.5%;
  bottom: 11%;
  width: 25%;
  max-width: 390px;
}
.honx-label {
  position: absolute;
  bottom: 4%;
  left: 4%;
  font-size: 11px;
  font-weight: 600;
}
.honx-label span {
  margin-left: 14px;
  font-size: 9px;
  opacity: 0.65;
}
.hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  display: flex;
  gap: 22px;
  align-items: center;
}
.hero-scroll span {
  font-size: 24px;
}
.hero-info,
.hero-brief,
.header {
  animation: surface-in 0.65s var(--ease) both;
}
.hero-info {
  animation-delay: 0.15s;
}
.hero-brief {
  animation-delay: 0.25s;
}

.statement {
  font-size: clamp(52px, 8vw, 132px);
  letter-spacing: -0.065em;
  font-weight: 450;
  line-height: 1.02;
  max-width: 1100px;
}
.statement em {
  font-style: normal;
  color: var(--lime);
}
.studio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 70px 0 90px 34%;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: -0.025em;
}
.studio-intro p:last-child {
  color: var(--muted);
}
.studio-machine {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  border-top: 1px solid #41443a;
  border-bottom: 1px solid #41443a;
}
.principles {
  padding-right: 7%;
}
.principles button {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #a1a596;
  width: 100%;
  background: none;
  border-bottom: 1px solid #41443a;
  text-align: left;
  padding: 23px 0;
  font-size: 11px;
}
.principles button:last-child {
  border: 0;
}
.principles button span {
  font-family: var(--display);
  font-size: clamp(29px, 4vw, 66px);
  margin-right: auto;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.principles button[aria-selected="true"] {
  color: var(--lime);
}
.principle-panel {
  padding: 40px 9%;
  border-left: 1px solid #41443a;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.principle-mark {
  font-family: var(--display);
  font-size: 100px;
  color: var(--lime);
  line-height: 1;
  margin-bottom: 40px;
  transition: transform 0.5s var(--ease);
}
.principle-panel h3 {
  font-size: 27px;
  letter-spacing: -0.04em;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 20px;
}
.principle-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 400px;
}
.solutions .display {
  margin-bottom: 65px;
}
.solution-tabs {
  display: flex;
  border-top: 1px solid #bdbfb1;
  border-bottom: 1px solid #bdbfb1;
  justify-content: space-between;
  gap: 15px;
}
.solution-tabs button {
  padding: 23px 0;
  background: none;
  font-size: clamp(12px, 1.35vw, 20px);
  font-weight: 550;
  position: relative;
}
.solution-tabs button[aria-selected="true"]:after {
  content: "";
  height: 5px;
  background: var(--black);
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.solution-panel {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12%;
  padding-top: 55px;
}
.solution-copy h3 {
  font-size: clamp(30px, 3.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 25px;
}
.solution-copy > p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 490px;
}
.solution-copy .text-link {
  margin-top: 28px;
}
.solution-tags {
  font-size: 11px;
  margin-top: 30px !important;
  color: #565b4b;
  line-height: 1.8 !important;
}
.solution-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  background: #e1e3d7;
  overflow: hidden;
}
.work {
  padding-bottom: 70px;
}
.work .display {
  position: relative;
}
.work .display sup {
  font-family: var(--body);
  font-size: 18px;
  position: absolute;
  top: 12px;
  right: 10%;
}
.case-study {
  overflow: clip;
  scroll-margin-top: 0;
}
.case-onbud {
  background: #dcd8cc;
  color: #171913;
}
.case-study figcaption {
  font-size: 11px;
  line-height: 1.5;
  padding: 15px 0;
  color: inherit;
  opacity: 0.75;
}
.case-alla {
  background: #090909;
  color: #f0f0e8;
}
.case-alla h2 {
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 165px);
  line-height: 0.88;
  letter-spacing: -0.025em;
}
.case-alla h2 span {
  -webkit-text-stroke: 1px #f0f0e8;
  color: transparent;
}
.case-alla .text-link {
  color: #ff6c80;
}
.automation {
  border-top: 1px solid #34362d;
}
.automation-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10%;
  margin-bottom: 75px;
}
.automation-heading > p {
  max-width: 370px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  padding-bottom: 10px;
}
.scenario-switch {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 55px;
}
.scenario-switch button {
  background: none;
  color: var(--paper);
  padding: 13px 18px;
  border: 1px solid #4a4f3e;
  border-radius: 30px;
  font-size: 13px;
}
.scenario-switch button[aria-pressed="true"] {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}
.pipeline {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
}
.pipeline li {
  position: relative;
  border-top: 1px solid #4a4f3e;
  padding: 28px 16px 28px 0;
  transition: color 0.35s;
}
.pipeline li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #4a4f3e;
  top: -5px;
  left: 0;
  border-radius: 50%;
}
.pipeline li.is-current,
.pipeline li.is-complete {
  color: var(--lime);
  border-color: var(--lime);
}
.pipeline li.is-current:before,
.pipeline li.is-complete:before {
  background: var(--lime);
}
.pipeline span {
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 30px;
}
.pipeline strong {
  font-size: clamp(14px, 1.65vw, 27px);
  letter-spacing: -0.03em;
}
.pipeline p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 170px;
  margin-top: 15px;
  min-height: 50px;
}
.demo-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
  border-top: 1px solid #34372c;
  padding-top: 30px;
}
.demo-bottom > p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.5;
}
.light-button {
  background: var(--paper);
  color: var(--black);
  padding: 18px 25px;
  font-size: 12px;
  min-width: 220px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.demo-note {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 20px;
}
.automation-services {
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 70px;
  color: var(--muted);
}
.automation-services span {
  margin: 0 15px;
}
.process .display {
  margin-bottom: 85px;
}
.process-track {
  position: relative;
}
.process-stops {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  border-bottom: 1px solid #a8ad99;
  padding-bottom: 25px;
}
.process-stops button {
  background: none;
  font-size: 12px;
  font-weight: 500;
  padding: 12px 0;
  position: relative;
}
.process-stops button:after {
  content: "";
  position: absolute;
  height: 7px;
  width: 7px;
  background: #a8ad99;
  border-radius: 50%;
  bottom: -29px;
  left: 0;
}
.process-stops button[aria-pressed="true"]:after {
  background: var(--black);
  transform: scale(1.7);
}
.process-detail {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
  min-height: 230px;
}
.process-detail > span {
  font-family: var(--display);
  font-size: 140px;
  line-height: 0.85;
  color: #9b9f8f;
}
.process-detail h3 {
  font-size: 30px;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
  font-weight: 550;
}
.process-detail p {
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
}
.founder {
  border-top: 1px solid #babdaf;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.founder-copy > .eyebrow {
  margin-bottom: 30px;
}
.founder-copy h2 {
  font-size: clamp(45px, 5vw, 90px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 550;
}
.founder-role {
  font-size: 12px;
  margin: 16px 0 35px;
  letter-spacing: 0.06em;
}
.founder-copy > p:not(.eyebrow, .founder-role) {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 20px;
  max-width: 490px;
}
.founder-copy .text-link {
  margin-top: 10px;
}
.contact {
  background: var(--lime);
  padding-bottom: 30px;
}
.contact .display {
  font-size: clamp(100px, 17vw, 280px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12%;
  margin: 75px 0 100px;
  align-items: start;
  min-height: 240px;
}
.contact-copy {
  font-size: clamp(23px, 2.5vw, 42px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}
.contact-start {
  background: none;
  border-bottom: 1px solid var(--black);
  width: 100%;
  padding: 25px 0;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  text-align: left;
}
.contact-start span {
  font-size: 35px;
}
.contact-hint {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 16px;
  max-width: 400px;
}
.footer {
  border-top: 1px solid #96ad31;
  padding-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.footer > div {
  display: flex;
  justify-content: end;
  gap: 28px;
  font-size: 12px;
}
.footer > span {
  grid-column: 1;
  font-size: 10px;
}
.footer > p {
  font-size: 10px;
}
.footer .back-top {
  grid-column: 2;
  grid-row: 3;
  justify-self: end;
  min-height: 44px;
  padding: 14px 0;
}
.hero-info,
.hero-brief,
.giant {
  transition:
    opacity 0.45s,
    filter 0.45s;
}
.section.in-view .display {
  animation: reveal-type 0.7s var(--ease);
}
@keyframes reveal-type {
  from {
    clip-path: inset(100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
@keyframes surface-in {
  from {
    opacity: 0;
    filter: blur(3px);
  }
  to {
    opacity: 1;
    filter: none;
  }
}
@keyframes pane-change {
  from {
    opacity: 0.4;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.pane-change {
  animation: pane-change 0.35s var(--ease);
}

@media (min-width: 1700px) {
  .hero {
    max-height: 1300px;
  }
  .hero-brief {
    max-width: 440px;
  }
  .hero-info {
    max-width: 480px;
  }
  .hero-copy {
    font-size: 20px;
  }
}
@media (min-width: 1100px) and (max-height: 850px) {
  .hero {
    min-height: 680px;
  }
  .giant {
    top: 17%;
    transform: scaleY(0.9);
    transform-origin: top;
  }
  .hero-info {
    bottom: 13%;
  }
  .geo {
    margin-top: 27px;
  }
  .hero-copy {
    margin-top: 19px;
  }
  .hero-brief {
    bottom: 10%;
  }
}
@media (max-width: 1240px) {
  .nav a {
    padding: 15px 14px;
    font-size: 11px;
  }
  .honx-status {
    font-size: 9px;
  }
  .header .brand {
    font-size: 24px;
  }
  .hero-info {
    width: 28%;
  }
  .hero-info h2 {
    font-size: 36px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .hero-copy br {
    display: none;
  }
  .hero-brief {
    width: 27%;
  }
  .geo {
    font-size: 9px;
  }
  .pipeline strong {
    font-size: 16px;
  }
}
@media (max-width: 1099px) {
  .header {
    top: 22px;
    left: 5%;
    right: 5%;
    height: 50px;
  }
  .nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: var(--z-trigger);
  }
  .menu-toggle > span {
    display: block;
    width: 19px;
    height: 1px;
    background: var(--black);
    transition:
      width 0.3s,
      transform 0.4s var(--ease);
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px);
    width: 24px;
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.5px);
    width: 10px;
  }
  .hero {
    height: auto;
    min-height: 100svh;
    padding: 100px 5% 65px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .giant {
    top: 150px;
    left: 5%;
    right: 5%;
  }
  .mascot-stage {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    height: 630px;
    grid-column: 1/-1;
    transition:
      transform 0.6s var(--ease),
      opacity 0.65s;
    transform-origin: 80% 25%;
  }
  .hero-info {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    align-self: center;
  }
  .hero-info h2 {
    font-size: 42px;
  }
  .hero-copy {
    font-size: 18px;
  }
  .hero-copy br {
    display: none;
  }
  .studio-role {
    font-size: 12px;
  }
  .geo {
    font-size: 10px;
  }
  .hero-brief {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    align-self: start;
  }
  .hero-scroll {
    bottom: 20px;
    left: auto;
    right: 5%;
    transform: none;
  }
  .honx-label {
    left: 5%;
    bottom: 25px;
  }
  .hero.menu-open .hero-info,
  .hero.menu-open .hero-brief,
  .hero.menu-open .hero-scroll,
  .hero.menu-open .honx-label {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
  .hero.menu-open .giant {
    opacity: 0.09;
    filter: blur(1px);
  }
  .hero.menu-open .mascot-stage {
    transform: translate(19%, -7%) scale(0.57);
    opacity: 0.8;
  }
  .mobile-nav:not([hidden]) {
    display: flex;
    position: absolute;
    z-index: 10;
    top: 170px;
    left: 7%;
    right: 7%;
    flex-direction: column;
    max-width: 700px;
  }
  .mobile-nav > a {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(34px, 6vw, 64px);
    letter-spacing: -0.06em;
    font-weight: 550;
    padding: 13px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    line-height: 1.1;
  }
  .mobile-nav > a small {
    font-size: 11px;
    letter-spacing: 0;
    align-self: start;
    margin-top: 8px;
  }
  .mobile-nav > a > span {
    font-size: 30px;
    margin-left: auto;
  }
  .mobile-nav > a:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.1);
  }
  .mobile-nav > a:active {
    transform: translateY(2px);
  }
  .menu-socials {
    margin-top: 32px;
    font-size: 12px;
  }
  .hero.menu-open {
    min-height: 100svh;
  }
  .section {
    padding: 85px 5%;
  }
  .studio-intro {
    margin-left: 20%;
    font-size: 17px;
    gap: 25px;
  }
  .automation-heading {
    gap: 5%;
  }
  .automation-heading > p {
    font-size: 16px;
    max-width: 320px;
  }
  .solution-panel {
    gap: 6%;
  }
  .founder-copy > p:not(.eyebrow, .founder-role) {
    font-size: 16px;
  }
  .pipeline strong {
    font-size: 14px;
  }
}
@media (max-width: 699px) {
  html {
    scroll-padding-top: 25px;
  }
  .section {
    padding: 65px 22px;
  }
  .section-top {
    margin-bottom: 42px;
    gap: 20px;
  }
  .section-top > span {
    display: none;
  }
  .eyebrow {
    font-size: 10px;
  }
  .display {
    font-size: clamp(62px, 16vw, 115px);
    line-height: 0.9;
  }
  .indent {
    margin-left: 13%;
  }
  .header {
    left: 22px;
    right: 22px;
    top: 19px;
  }
  .header .brand {
    font-size: 23px;
  }
  .brand > span {
    font-size: 7px;
    margin-top: 7px;
    letter-spacing: 0.06em;
  }
  .honx-status {
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 120px 22px 65px;
    gap: 0;
  }
  .giant {
    top: 118px;
    left: 5%;
    right: 5%;
  }
  .mascot-stage {
    margin-top: 40px;
    width: calc(100% + 28px);
    margin-left: -14px;
    height: clamp(350px, 108vw, 540px);
    flex-shrink: 0;
  }
  .hero-info {
    margin-top: 22px;
  }
  .hero-info .eyebrow {
    margin-bottom: 15px;
  }
  .hero-info h2 {
    font-size: 44px;
  }
  .studio-role {
    font-size: 12px;
  }
  .hero-copy {
    font-size: 18px;
    max-width: 350px;
    margin-top: 22px;
    line-height: 1.5;
  }
  .geo {
    font-size: 9px;
    margin-top: 28px;
  }
  .hero-brief {
    margin-top: 36px;
  }
  .honx-label {
    bottom: 24px;
    left: 22px;
    font-size: 10px;
  }
  .honx-label span {
    display: none;
  }
  .hero-scroll {
    right: 22px;
    bottom: 15px;
    font-size: 9px;
  }
  .mobile-nav:not([hidden]) {
    top: 190px;
    left: 25px;
    right: 25px;
  }
  .mobile-nav > a {
    font-size: clamp(32px, 9vw, 49px);
    padding: 16px 0;
  }
  .hero.menu-open .mascot-stage {
    transform: translate(28%, -18%) scale(0.55);
    opacity: 0.64;
  }
  .menu-socials {
    font-size: 11px;
    gap: 25px;
    margin-top: 28px;
  }
  .statement {
    font-size: clamp(44px, 10vw, 72px);
    line-height: 1.07;
  }
  .studio-intro {
    display: block;
    margin: 40px 0 45px 14%;
    font-size: 16px;
  }
  .studio-intro p + p {
    margin-top: 20px;
  }
  .studio-machine {
    grid-template-columns: 1fr;
  }
  .principles {
    padding-right: 0;
  }
  .principles button {
    padding: 17px 0;
    gap: 20px;
  }
  .principles button span {
    font-size: 34px;
  }
  .principle-panel {
    border-left: 0;
    border-top: 1px solid #41443a;
    padding: 35px 0 30px;
    min-height: 280px;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    align-content: center;
  }
  .principle-mark {
    font-size: 72px;
    grid-row: 1/3;
    margin: 0;
  }
  .principle-panel h3 {
    font-size: 22px;
    margin: 0;
  }
  .principle-panel p {
    grid-column: 2;
    font-size: 13px;
  }
  .solutions .display {
    margin-bottom: 40px;
  }
  .solution-tabs {
    overflow-x: auto;
    justify-content: start;
    gap: 24px;
    scrollbar-width: thin;
  }
  .solution-tabs button {
    font-size: 12px;
    flex-shrink: 0;
    padding: 19px 0;
  }
  .solution-panel {
    grid-template-columns: 1fr;
    padding-top: 35px;
    gap: 30px;
    min-height: 680px;
  }
  .solution-copy h3 {
    font-size: 33px;
  }
  .solution-copy > p {
    font-size: 15px;
  }
  .solution-tags {
    font-size: 10px;
    margin-top: 20px !important;
  }
  .solution-visual {
    min-height: 270px;
  }
  .work .display sup {
    font-size: 13px;
    right: 0;
    top: 0;
  }
  .case-alla h2 {
    font-size: clamp(64px, 13.5vw, 92px);
  }
  .automation-heading {
    display: block;
    margin-bottom: 40px;
  }
  .automation-heading > p {
    margin-top: 32px;
    font-size: 16px;
    max-width: 100%;
  }
  .scenario-switch {
    gap: 8px;
    margin-bottom: 32px;
  }
  .scenario-switch button {
    font-size: 11px;
    padding: 12px 14px;
  }
  .pipeline {
    display: block;
    margin-left: 8px;
  }
  .pipeline li {
    border-top: 0;
    border-left: 1px solid #4a4f3e;
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 10px 0 27px 25px;
    align-items: center;
  }
  .pipeline li:before {
    left: -5px;
    top: 17px;
  }
  .pipeline span {
    margin: 0;
    font-size: 10px;
  }
  .pipeline strong {
    font-size: 20px;
  }
  .pipeline p {
    grid-column: 2;
    min-height: 0;
    max-width: none;
    font-size: 13px;
    margin: 0;
  }
  .demo-bottom {
    display: block;
  }
  .demo-bottom > p {
    font-size: 15px;
    min-height: 65px;
    margin-bottom: 20px;
  }
  .light-button {
    width: 100%;
  }
  .automation-services {
    margin-top: 40px;
    font-size: 10px;
    line-height: 2.5;
  }
  .automation-services span {
    margin: 0 7px;
  }
  .process .display {
    margin-bottom: 40px;
  }
  .process-stops {
    overflow-x: auto;
    gap: 28px;
    padding-bottom: 25px;
  }
  .process-stops button {
    font-size: 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .process-detail {
    grid-template-columns: 70px 1fr;
    gap: 20px;
    margin-top: 35px;
    min-height: 270px;
  }
  .process-detail > span {
    font-size: 80px;
  }
  .process-detail h3 {
    font-size: 23px;
    margin-bottom: 14px;
  }
  .process-detail p {
    font-size: 15px;
  }
  .founder {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .founder-copy h2 {
    font-size: 56px;
  }
  .founder-copy > .eyebrow {
    margin-bottom: 23px;
  }
  .founder-role {
    font-size: 11px;
  }
  .founder-copy > p:not(.eyebrow, .founder-role) {
    font-size: 16px;
  }
  .contact .display {
    font-size: clamp(84px, 21vw, 145px);
  }
  .contact-grid {
    display: block;
    margin: 45px 0 65px;
    min-height: 0;
  }
  .contact-copy {
    font-size: 27px;
  }
  .contact-start {
    font-size: 13px;
  }
  .contact-hint {
    font-size: 11px;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-top: 28px;
  }
  .footer > div {
    justify-content: start;
    gap: 22px;
    font-size: 11px;
  }
  .footer > span,
  .footer .back-top {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }
  .footer > p {
    font-size: 9px;
  }
  .footer > .brand {
    font-size: 27px;
  }
}
@media (max-width: 349px) {
  .header {
    left: 16px;
    right: 16px;
  }
  .hero {
    padding-inline: 16px;
  }
  .hero-info h2 {
    font-size: 39px;
  }
  .hero-info .studio-role {
    font-size: 11px;
  }
  .hero-copy {
    font-size: 16px;
  }
  .geo {
    font-size: 8px;
  }
  .mobile-nav:not([hidden]) {
    left: 20px;
    right: 20px;
    top: 175px;
  }
  .mobile-nav > a {
    font-size: 32px;
  }
  .menu-socials {
    font-size: 10px;
  }
  .section {
    padding-inline: 18px;
  }
  .brand > span {
    font-size: 6.7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .mascot-stage {
    transition: none;
  }
}
.navigation-open {
  overflow: hidden;
}
.hero .giant {
  color: #0d1105;
}
@media (min-width: 700px) {
  .work .display {
    font-size: clamp(68px, 11.2vw, 200px);
  }
  .process .display {
    font-size: clamp(62px, 9.8vw, 180px);
  }
  .contact .display {
    font-size: clamp(90px, 15vw, 250px);
  }
}
@media (max-width: 699px) {
  .solutions .display,
  .work .display {
    font-size: 10.7vw;
  }
  .process .display {
    font-size: 10.4vw;
  }
  .contact .display {
    font-size: 17.5vw;
  }
  .automation .display {
    font-size: 13vw;
  }
  .case-alla h2 {
    font-size: 10.5vw;
  }
}
.nav {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}
.nav a + a:before {
  content: "";
  position: absolute;
  left: -3px;
  top: 34%;
  height: 32%;
  width: 1px;
  background: rgba(20, 30, 0, 0.12);
}
.studio-machine,
.principles,
.principle-panel {
  min-width: 0;
}
@media (max-width: 699px) {
  .principles button {
    gap: 16px;
  }
  .principles button span {
    font-size: 6.3vw;
  }
  .contact .display {
    font-size: 16vw;
  }
  .process .display {
    font-size: 10vw;
  }
  .hero.menu-open .mascot-stage {
    opacity: 0.5;
  }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .hero.menu-open .mascot-stage {
    transform: translate(10%, -8%) scale(0.5);
  }
}
@media (max-width: 699px) {
  .hero.menu-open .mascot-stage {
    transform: translate(9%, -24%) scale(0.42);
    opacity: 0.45;
  }
}
.giant {
  visibility: hidden;
}
.giant.type-ready {
  visibility: visible;
}

.localized {
  font-family: var(--body);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.98;
}
.solutions .localized,
.work .localized {
  font-size: clamp(65px, 11.5vw, 190px);
}
.automation .localized {
  font-size: clamp(62px, 9vw, 150px);
}
.process .localized {
  font-size: clamp(70px, 13vw, 210px);
}
.contact .localized {
  font-size: clamp(70px, 11.5vw, 190px);
}
.footer a,
.menu-socials a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer .brand {
  display: block;
}
.dark .text-link {
  color: var(--paper);
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}
input[type="range"]:focus-visible {
  outline: 2px solid var(--black);
}
.process-stops button {
  min-height: 44px;
}
.menu-socials {
  display: flex;
  gap: 24px;
}
.hero,
.section,
.case-study {
  scroll-margin-top: 0;
}
.header {
  top: max(26px, env(safe-area-inset-top));
}
.footer {
  padding-bottom: env(safe-area-inset-bottom);
}
@media (max-width: 1099px) {
  .header {
    top: max(22px, env(safe-area-inset-top));
  }
  .mobile-nav:not([hidden]) {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
}
@media (max-width: 699px) {
  .solutions .localized,
  .work .localized {
    font-size: 14vw;
  }
  .automation .localized {
    font-size: 15vw;
  }
  .process .localized {
    font-size: 17vw;
  }
  .contact .localized {
    font-size: 14vw;
  }
  .header {
    left: max(22px, env(safe-area-inset-left));
    right: max(22px, env(safe-area-inset-right));
  }
  .principles button span {
    font-size: 7vw;
  }
}
@media (max-height: 500px) and (max-width: 1099px) {
  .hero.menu-open .mobile-nav {
    top: 90px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    max-width: none;
  }
  .mobile-nav > a {
    font-size: 28px;
    padding: 10px 0;
  }
  .menu-socials {
    grid-column: 1/-1;
    margin-top: 14px;
  }
  .hero.menu-open .mascot-stage {
    opacity: 0.2;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section.in-view .display {
    animation: none;
  }
}

html {
  scrollbar-gutter: stable;
}
.navigation-open {
  overflow-anchor: none;
}

.section.in-view .display {
  animation: none;
}
.studio.in-view .statement {
  animation: reveal-type 0.65s var(--ease) both;
}
.solutions.in-view .solution-visual {
  animation: solution-arrive 0.55s var(--ease) both;
}
.contact.in-view .contact-grid {
  animation: contact-arrive 0.5s var(--ease) both;
}
@keyframes solution-arrive {
  from {
    opacity: 0.4;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes contact-arrive {
  from {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

html {
  background: var(--lime);
}
body {
  background: var(--black);
}
.process-detail > span {
  color: #696e5e;
}

main,
main > * {
  min-width: 0;
  max-width: 100%;
}
.section {
  padding: 72px max(var(--scene-pad), calc((100vw - var(--scene-max)) / 2));
  overflow: clip;
  min-height: 680px;
  scroll-margin-top: 64px;
}
.section > * {
  min-width: 0;
}
.section-top {
  margin-bottom: 32px;
  align-items: center;
}
.scene-title,
.section .display,
.solutions .localized,
.work .localized,
.automation .localized,
.process .localized {
  font: 550 clamp(42px, 5.2vw, 80px) / 1.02 var(--body);
  letter-spacing: -0.06em;
  margin: 0 0 32px;
}
.section .indent {
  display: inline;
  margin: 0;
}
.section .display br {
  display: none;
}
.section .display,
.section .statement {
  animation: none !important;
}

.studio {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0 7%;
  align-content: center;
}
.studio .section-top {
  grid-column: 1/-1;
}
.studio .statement {
  font-size: clamp(48px, 6vw, 92px);
  grid-column: 1;
  grid-row: 2;
}
.studio-intro {
  display: block;
  margin: 32px 0 0;
  grid-column: 1;
  grid-row: 3;
  font-size: 16px;
  max-width: 390px;
}
.studio-intro p + p {
  margin-top: 16px;
}
.studio-machine {
  grid-column: 2;
  grid-row: 2/4;
  display: flex;
  flex-direction: column;
  border: 0;
}
.principles {
  display: flex;
  padding: 0;
  gap: 4px;
  border-bottom: 1px solid #41443a;
}
.principles button {
  display: block;
  width: auto;
  flex: 1;
  padding: 16px 0;
  font-size: 9px;
  border: 0;
}
.principles button span {
  display: block;
  font: 500 13px var(--body);
  margin: 8px 0;
}
.principle-panel {
  display: block;
  padding: 28px 0 0;
  min-height: 285px;
  border: 0;
}
.principle-mark {
  position: static;
  display: block;
  font: 700 clamp(44px, 5.4vw, 80px) / 1 var(--display);
  letter-spacing: -0.03em;
  color: var(--lime);
  margin: 0 0 24px;
  overflow: clip;
}
.principle-panel h3 {
  font-size: 26px;
  margin-bottom: 16px;
}
.principle-panel p {
  font-size: 15px;
  max-width: 430px;
}
.pane-change {
  animation: panel-mask 0.35s var(--ease);
}
@keyframes panel-mask {
  from {
    clip-path: inset(0 0 100%);
  }
  to {
    clip-path: inset(0);
  }
}

.solutions .display {
  font-size: clamp(36px, 4.6vw, 70px);
}
.solution-tabs {
  position: relative;
  overflow: auto;
  height: 64px;
  align-items: stretch;
  gap: 32px;
  flex-wrap: nowrap;
  padding: 0 4px;
}
.solution-tabs button {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 18px 4px;
  font-size: 14px;
}
.solution-panel {
  grid-template-columns: 1.1fr 1fr;
  gap: 8%;
  min-height: 340px;
  padding-top: 32px;
}
.solution-copy {
  align-self: center;
}
.solution-copy h3 {
  font-size: clamp(28px, 3vw, 44px);
  margin-bottom: 20px;
}
.solution-copy > p {
  font-size: 16px;
}
.solution-copy .solution-tags {
  font-size: 11px;
}

.work-composition {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 6%;
  align-items: center;
}
.work .scene-title {
  font-size: clamp(48px, 6vw, 88px);
}
.scene-title sup {
  font: 12px var(--body);
  vertical-align: top;
  margin-left: 12px;
}
.work-selector {
  display: flex;
  flex-direction: column;
}
.work-selector button {
  background: none;
  text-align: left;
  border-top: 1px solid #4a4e40;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}
.work-selector button[aria-selected="true"] {
  color: var(--paper);
}
.work-selector small,
.work-selector span {
  font-size: 11px;
}
.work-selector strong {
  font-size: clamp(24px, 2.7vw, 40px);
  font-weight: 500;
  letter-spacing: -0.04em;
}
.work-selector button[aria-selected="true"] small {
  color: var(--lime);
}
#work-preview .text-link {
  display: flex;
  justify-content: flex-end;
  font-size: 12px;
  margin-top: 12px;
}
.work {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.case-composition {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr;
  gap: 6%;
  align-items: center;
}
.case-summary h2 {
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 30px;
}
.case-onbud .case-summary h2 span {
  color: #856400;
}
.case-summary h3 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.case-summary p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 440px;
}
.case-summary .case-note {
  font-size: 12px;
}
.case-summary .text-link {
  font-size: 12px;
  display: block;
  width: fit-content;
}
.case-presentation {
  min-width: 0;
}
.case-controls {
  display: flex;
  gap: 24px;
  overflow: auto;
  scrollbar-width: none;
  height: 56px;
  align-items: center;
  white-space: nowrap;
}
.case-controls button {
  background: none;
  padding: 14px 2px;
  font-size: 11px;
  position: relative;
  min-height: 44px;
}
.case-controls button[aria-selected="true"] {
  border-bottom: 2px solid currentColor;
}
.media-caption {
  font-size: 11px;
  margin-top: 16px;
  line-height: 1.5;
  min-height: 32px;
}
.case-alla {
  background: #090909;
}
.case-alla .case-summary h2 {
  font-size: clamp(38px, 4.5vw, 72px);
  font-family: var(--display);
  letter-spacing: -0.03em;
}
.case-alla .case-summary h2 span {
  -webkit-text-stroke: 1px var(--paper);
  color: transparent;
}
.case-alla .text-link {
  color: #ff7185;
}
.case-onbud,
.case-alla {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.automation-heading {
  margin-bottom: 28px;
  align-items: center;
}
.automation-heading .display {
  margin: 0;
}
.automation-heading > p {
  font-size: 16px;
}
.scenario-switch {
  margin-bottom: 32px;
}
.pipeline span {
  margin-bottom: 18px;
}
.pipeline li {
  padding-top: 24px;
  padding-bottom: 20px;
}
.pipeline strong {
  font-size: 19px;
}
.pipeline p {
  min-height: 54px;
}
.demo-bottom {
  padding-top: 20px;
}
.automation-services {
  margin-top: 28px;
  font-size: 11px;
}
.demo-note {
  font-size: 11px;
}
.pipeline li.is-current:after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  height: 3px;
  background: var(--lime);
  width: 100%;
  transform-origin: left;
  animation: signal-pass 0.6s linear;
}
@keyframes signal-pass {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.process .display {
  margin-bottom: 44px;
}
.process-stops {
  height: 64px;
  padding: 0;
  align-items: center;
  overflow: auto;
  gap: 24px;
}
.process-stops button {
  flex-shrink: 0;
  font-size: 11px;
  min-height: 44px;
}
.timeline {
  height: 44px;
  position: relative;
  background: linear-gradient(
    transparent 21px,
    #adb2a0 21px,
    #adb2a0 23px,
    transparent 23px
  );
  touch-action: pan-y;
  cursor: ew-resize;
  margin: 12px 20px 24px;
}
.timeline:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}
.process-detail {
  display: grid;
  grid-template-columns: clamp(110px, 18vw, 250px) minmax(0, 1fr) 60px;
  gap: 48px;
  align-items: center;
  margin-top: 24px;
  min-height: 220px;
}
.process-detail > span {
  font: 500 clamp(90px, 15vw, 220px) / 0.9 var(--body);
  letter-spacing: -0.08em;
  position: static;
  color: #727865;
}
.process-detail h3 {
  font: 550 clamp(26px, 3vw, 44px) / 1.1 var(--body);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}
.process-detail p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 540px;
}

.founder {
  gap: 8%;
  grid-template-columns: 1fr 1fr;
}
.founder-system {
  width: 100%;
  max-width: 560px;
  color: #656b59;
  overflow: clip;
}
.founder-system svg {
  width: 100%;
  height: auto;
  display: block;
}
.founder-system path[pathLength] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.1s var(--ease);
}
.founder.in-view path[pathLength] {
  stroke-dashoffset: 0;
}
.founder-copy h2 {
  font-size: clamp(44px, 5vw, 80px);
}
.founder-copy > p:not(.eyebrow, .founder-role) {
  font-size: 17px;
}
.founder-role {
  margin-bottom: 24px;
}

.contact {
  min-height: 760px;
  padding-bottom: var(--safe-bottom);
}
.contact .localized {
  font-size: clamp(60px, 8vw, 128px);
  line-height: 0.98;
  margin-bottom: 0;
}
.contact .display br {
  display: block;
}
.contact .display .indent {
  margin-left: 12%;
  display: inline;
}
.contact-grid {
  margin: 36px 0 48px;
  min-height: 0;
  grid-template-columns: 1.3fr 1fr;
  gap: 12%;
}
.contact-copy {
  font-size: clamp(20px, 2vw, 30px);
}
.contact-start {
  font-size: 14px;
  margin-top: 12px;
  padding: 18px 0;
}
.contact-start:hover span {
  transform: translate(5px, -4px);
}
.contact-start span {
  transition: transform 0.2s;
}
.contact-hint {
  font-size: 11px;
}
#contact-brief {
  border-left: 1px solid #a0b839;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 40px;
  gap: 10px;
  font-size: 10px;
}
#contact-brief strong {
  font: 100 100px/1 var(--body);
}
.footer {
  gap: 16px;
  padding-top: 24px;
}
.footer > div {
  flex-wrap: wrap;
}
.footer a {
  min-height: 44px;
}
.footer .back-top {
  grid-row: auto;
}
.footer .brand {
  font-size: 26px;
}
@media (min-width: 1100px) {
  .section {
    min-height: min(900px, 100svh);
    padding-top: 88px;
    padding-bottom: 64px;
  }
  .contact {
    min-height: 100svh;
  }
  .studio {
    min-height: 800px;
  }
  .case-composition {
    min-height: 440px;
  }
  .automation {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .process {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 700px) and (max-width: 1099px) {
  .section {
    padding: 80px 5%;
    min-height: 650px;
  }
  .studio {
    gap: 0 5%;
  }
  .studio .statement {
    font-size: 56px;
  }
  .principles {
    flex-wrap: wrap;
  }
  .principles button {
    flex-basis: 40%;
  }
  .case-composition {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 5%;
  }
  .case-summary h2 {
    font-size: 48px;
  }
  .case-alla .case-summary h2 {
    font-size: 36px;
  }
  .case-summary p {
    font-size: 13px;
  }
  .process-detail {
    gap: 24px;
  }
  .contact .localized {
    font-size: 9vw;
  }
}
@media (max-width: 699px) {
  .section {
    padding: 56px 22px;
    min-height: 0;
  }
  .section-top {
    margin-bottom: 28px;
  }
  .scene-title,
  .section .display,
  .solutions .localized,
  .work .localized,
  .automation .localized,
  .process .localized {
    font-size: clamp(34px, 10vw, 50px);
    margin-bottom: 28px;
  }
  .section .display br {
    display: block;
  }
  .section .indent {
    display: inline;
    margin: 0;
  }
  .studio {
    display: block;
  }
  .studio .statement {
    font-size: clamp(44px, 12vw, 62px);
  }
  .studio-intro {
    font-size: 15px;
    margin: 24px 0 32px;
  }
  .studio-machine {
    display: block;
  }
  .principles {
    gap: 10px;
  }
  .principles button span {
    font-size: 11px;
  }
  .principle-panel {
    display: block;
    min-height: 245px;
    padding-top: 24px;
  }
  .principle-mark {
    font-size: clamp(42px, 13vw, 70px);
    margin-bottom: 20px;
  }
  .principle-panel h3 {
    font-size: 24px;
  }
  .principle-panel p {
    font-size: 14px;
  }
  .solution-tabs {
    height: 60px;
    gap: 24px;
    justify-content: flex-start;
  }
  .solution-tabs button {
    font-size: 12px;
  }
  .solution-panel {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 20px;
    padding-top: 24px;
  }
  .solution-copy h3 {
    font-size: 30px;
  }
  .solution-copy > p {
    font-size: 15px;
  }
  .work-composition {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .work-selector {
    flex-direction: row;
    gap: 16px;
  }
  .work-selector button {
    width: 50%;
    min-width: 0;
    padding: 18px 0;
    gap: 8px;
  }
  .work-selector strong {
    font-size: 21px;
  }
  .work-selector small,
  .work-selector span {
    font-size: 9px;
  }
  .work .scene-title {
    font-size: 46px;
  }
  .case-composition {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .case-summary h2 {
    font-size: 58px;
    margin-bottom: 22px;
  }
  .case-alla .case-summary h2 {
    font-size: 46px;
  }
  .case-summary h3 {
    font-size: 27px;
    margin-bottom: 16px;
  }
  .case-summary p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .case-controls {
    gap: 18px;
    height: 56px;
  }
  .case-controls button {
    font-size: 10px;
    flex-shrink: 0;
  }
  .media-caption {
    font-size: 10px;
  }
  .automation-heading {
    margin-bottom: 24px;
  }
  .automation-heading > p {
    margin-top: 20px;
    font-size: 15px;
    max-width: none;
  }
  .scenario-switch {
    margin-bottom: 26px;
    gap: 8px;
  }
  .scenario-switch button {
    font-size: 11px;
    padding: 12px;
  }
  .pipeline {
    margin-left: 4px;
  }
  .pipeline li {
    padding: 8px 0 22px 22px;
    grid-template-columns: 28px 1fr;
  }
  .pipeline span {
    margin: 0;
  }
  .pipeline p {
    min-height: 0;
    font-size: 13px;
  }
  .pipeline strong {
    font-size: 19px;
  }
  .pipeline li.is-current:after {
    width: 2px;
    height: 100%;
    left: -1px;
    top: 0;
    transform-origin: top;
  }
  .demo-bottom > p {
    min-height: 64px;
    margin-bottom: 20px;
    font-size: 14px;
  }
  .automation-services {
    margin-top: 24px;
    font-size: 10px;
    line-height: 2;
  }
  .process .display {
    margin-bottom: 24px;
  }
  .process-stops {
    padding: 0;
    height: 60px;
    gap: 24px;
  }
  .process-detail {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    min-height: 250px;
  }
  .process-detail > span {
    font-size: 84px;
    letter-spacing: -0.09em;
  }
  .process-detail h3 {
    font-size: 22px;
    margin-bottom: 16px;
    overflow-wrap: anywhere;
  }
  .process-detail p {
    font-size: 14px;
  }
  .founder {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .founder-system {
    max-width: 340px;
    order: 2;
  }
  .founder-copy h2 {
    font-size: 50px;
  }
  .founder-copy > p:not(.eyebrow, .founder-role) {
    font-size: 15px;
  }
  .founder-role {
    font-size: 11px;
  }
  .contact .localized {
    font-size: clamp(43px, 12.2vw, 68px);
  }
  .contact .display .indent {
    margin: 0;
  }
  .contact-grid {
    display: block;
    margin: 28px 0 36px;
  }
  .contact-copy {
    font-size: 22px;
  }
  .contact-copy br {
    display: none;
  }
  #contact-brief {
    display: none;
  }
  .contact-start {
    font-size: 12px;
  }
  .footer {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    padding-bottom: var(--safe-bottom);
  }
  .footer > div {
    gap: 20px;
    font-size: 11px;
  }
  .footer > p {
    font-size: 9px;
  }
  .section-top > span {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .founder-system path[pathLength] {
    stroke-dashoffset: 0;
    transition: none;
  }
  .pipeline li.is-current:after {
    animation: none;
  }
}

html {
  scroll-padding-top: 0;
  scrollbar-gutter: auto;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
}
.header {
  position: absolute;
  animation: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  z-index: var(--z-menu);
}
.nav a {
  border: 1px solid transparent;
  border-radius: 30px;
  box-shadow: inset 0 1px 0 #fff5;
  transition:
    background 0.22s,
    transform 0.15s,
    border-color 0.22s;
}
.nav a:hover,
.nav a[aria-current] {
  background: #ffffff35;
  border-color: #ffffff80;
}
.nav a:active,
.menu-toggle:active {
  transform: scale(0.95);
}
.nav a + a:before {
  display: none;
}
.menu-toggle {
  box-shadow:
    inset 0 2px 3px #fffa,
    0 5px 18px #0001;
}
.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(3.5px) rotate(45deg);
  width: 20px;
}
.menu-toggle[aria-expanded="true"] > span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
  width: 20px;
}
.hero {
  overflow: clip;
}
.giant {
  max-width: 100%;
  overflow: clip;
}
.hero-info,
.hero-brief {
  animation: none;
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.hero.is-loading .hero-info,
.hero.is-loading .hero-brief,
.hero.is-loading .honx-label,
.hero.is-loading .hero-scroll {
  opacity: 0;
  pointer-events: none;
}
.hero.is-loading .giant-line > span {
  clip-path: inset(0 0 20%);
  opacity: 0.3;
}
.giant-line > span {
  transition:
    clip-path 0.4s var(--ease),
    opacity 0.3s;
}
.mascot-loading {
  font-size: 11px;
  letter-spacing: 0.12em;
  background: transparent;
}
.mascot-stage canvas {
  transition: opacity 0.3s;
}
.hero.is-loading .mascot-stage canvas {
  opacity: 0;
}
.scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}
.navigation-open .header {
  background: transparent;
  box-shadow: none;
}
.navigation-open .hero {
  position: relative;
  overflow: visible;
}
.navigation-open .hero:before {
  content: "";
  position: fixed;
  inset: 0;
  background: var(--lime);
  z-index: var(--z-nav);
}
.navigation-open .hero .mascot-stage {
  position: fixed;
  z-index: 31;
  top: 70px;
  left: auto;
  right: 0;
  width: min(45vw, 350px);
  height: min(40svh, 320px);
  margin: 0;
  transform: none;
  opacity: 0.55;
  pointer-events: none;
}
.navigation-open .mobile-nav:not([hidden]) {
  position: fixed;
  z-index: var(--z-menu);
  top: 150px;
  bottom: var(--safe-bottom);
  left: 6%;
  right: 6%;
  max-width: none;
  overflow: auto;
  overscroll-behavior: contain;
  justify-content: center;
  max-height: calc(100dvh - 174px);
  padding: 0;
}
.navigation-open .mobile-nav > a {
  max-width: 700px;
}
.navigation-open .menu-socials {
  margin-top: 24px;
}
.navigation-open .giant {
  opacity: 0.08;
}
.mobile-nav > a {
  transition:
    transform 0.15s,
    opacity 0.15s;
}
.mobile-nav > a:active {
  transform: scale(0.98);
}
.brief-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: #11130f26;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 32px max(5vw, 24px);
  overscroll-behavior: contain;
  isolation: isolate;
}
.received-label {
  font-size: 11px;
  margin: 44px 0;
}
.honey {
  position: absolute;
  clip-path: inset(100%);
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.brief-overlay [aria-busy="true"] {
  cursor: progress;
}
.brief-placeholder {
  width: 100%;
}
@media (min-width: 1100px) and (max-height: 850px) {
  .hero {
    height: 100svh;
    min-height: 620px;
  }
  .hero .mascot-stage {
    bottom: 4%;
    top: 12%;
  }
  .hero-info {
    bottom: 12%;
  }
  .hero-brief {
    bottom: 10%;
  }
  .hero-info h2 {
    font-size: 36px;
  }
  .hero-copy {
    font-size: 14px;
  }
}
@media (max-width: 1099px) {
  .hero {
    padding-top: 90px;
    gap: 20px;
  }
  .hero .mascot-stage {
    height: clamp(350px, 52svh, 530px);
  }
  .giant {
    top: 130px;
  }
  .hero-info h2 {
    font-size: 36px;
  }
  .hero-info .geo {
    margin-top: 20px;
  }
  .brief-overlay {
    padding: 24px;
    justify-content: center;
  }
}
@media (max-width: 699px) {
  .hero {
    padding: 100px 22px max(56px, env(safe-area-inset-bottom));
    min-height: 100svh;
    gap: 0;
  }
  .hero .mascot-stage {
    width: 100%;
    margin: 12px 0 0;
    height: clamp(300px, 43svh, 410px);
    transform: none;
  }
  .giant {
    top: 116px;
    left: 22px;
    right: 22px;
  }
  .hero-info {
    margin-top: 12px;
  }
  .hero-info h2 {
    display: none;
  }
  .hero-info .eyebrow {
    font-size: 9px;
    margin-bottom: 12px;
  }
  .hero-info .studio-role {
    font-size: 14px;
  }
  .hero-info .hero-copy {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 12px;
    max-width: 360px;
  }
  .hero-info .geo {
    font-size: 8px;
    margin-top: 16px;
  }
  .hero-brief {
    margin-top: 24px;
  }
  .honx-label {
    display: none;
  }
  .hero-scroll {
    bottom: 18px;
  }
  .header .brand {
    font-size: 23px;
  }
  .header {
    top: max(16px, env(safe-area-inset-top));
    left: 22px;
    right: 22px;
  }
  .brief-overlay {
    padding: max(12px, env(safe-area-inset-top)) 12px
      max(12px, env(safe-area-inset-bottom));
    align-items: center;
  }
  .navigation-open .mobile-nav:not([hidden]) {
    top: 160px;
    max-height: calc(100dvh - 184px);
  }
  .navigation-open .mobile-nav > a {
    font-size: clamp(30px, 8vw, 42px);
    padding: 16px 0;
  }
  .navigation-open .hero .mascot-stage {
    top: 60px;
    width: 45vw;
    height: 230px;
  }
  .navigation-open .menu-socials {
    font-size: 10px;
  }
}
@media (max-width: 349px) {
  .hero {
    padding-inline: 16px;
  }
  .giant {
    left: 16px;
    right: 16px;
  }
  .hero .mascot-stage {
    height: 300px;
  }
  .navigation-open .mobile-nav > a {
    font-size: 30px;
  }
}
@media (max-height: 500px) and (max-width: 1099px) {
  .navigation-open .mobile-nav:not([hidden]) {
    top: 86px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    max-height: calc(100dvh - 108px);
    align-content: center;
  }
  .navigation-open .mobile-nav > a {
    font-size: 27px;
    padding: 9px 0;
  }
  .navigation-open .menu-socials {
    grid-column: 1/-1;
    margin: 8px 0;
  }
  .navigation-open .hero .mascot-stage {
    opacity: 0.16;
  }
  .brief-overlay {
    align-items: start;
  }
}
@supports not (backdrop-filter: blur(1px)) {
  .glass {
    background: #e9f2c4;
  }
  .nav {
    background: #e9f2c4;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero.is-loading .giant-line > span {
    clip-path: none;
  }
  .hero-info,
  .hero-brief,
  .giant-line > span,
  .header {
    transition: none;
  }
}
.hero.is-loading .giant-line > span {
  clip-path: inset(0 calc((1 - var(--asset-progress, 0)) * 75%) 0 0);
  opacity: 0.45;
}
.hero.is-loading .line-two > span {
  clip-path: inset(0 0 0 calc((1 - var(--asset-progress, 0)) * 75%));
}
.section {
  scroll-margin-top: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero.is-loading .giant-line > span {
    clip-path: none;
  }
}

.navigation-open .hero {
  z-index: calc(var(--z-menu) - 1);
}

.color-boundary {
  height: clamp(36px, 5vw, 76px);
  width: 100%;
  line-height: 0;
  pointer-events: none;
}
.color-boundary svg {
  display: block;
  width: 100%;
  height: 100%;
}
.header.is-away {
  opacity: 0;
  transform: translateY(-28px);
  pointer-events: none;
}
.navigation-open .header {
  position: fixed;
  opacity: 1;
  transform: none;
}
.section {
  scroll-margin-top: 0;
}
.case-summary {
  container-type: inline-size;
}
.case-alla .case-summary h2 {
  font-family: var(--body);
  font-size: clamp(24px, 12cqw, 62px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
}
.case-alla .case-summary h2 span {
  display: block;
  white-space: nowrap;
}
.case-alla .case-summary h2 br {
  display: none;
}
.case-onbud .case-summary h2 {
  white-space: nowrap;
  font-size: clamp(38px, 18cqw, 78px);
}
.process-stops {
  height: 68px;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: center;
  gap: 24px;
  scroll-behavior: auto;
}
.process-stops button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-height: 44px;
  padding: 10px 0;
  flex-shrink: 0;
}
.process-stops button span {
  font-size: 10px;
  opacity: 0.6;
}
.process-stops button:after {
  display: none;
}
.process-stops button[aria-pressed="true"] {
  font-weight: 750;
}
.timeline {
  margin: 12px 22px 24px;
  touch-action: pan-y;
}
.process-detail {
  grid-template-columns: 110px minmax(0, 1fr) 52px;
  gap: 32px;
  min-height: 185px;
  align-items: start;
}
.process-detail > span {
  font: 500 84px/1 var(--body);
  letter-spacing: -0.07em;
  position: static;
  white-space: nowrap;
}
.process-detail h3 {
  font-size: clamp(23px, 2.5vw, 36px);
  overflow-wrap: normal;
  word-break: normal;
  line-height: 1.12;
}
.process-detail p {
  max-width: 660px;
}
.brief-overlay .received-label {
  margin: 24px 0;
}
.brief-overlay textarea {
  max-height: 180px;
}
@media (min-width: 1100px) {
  .section {
    min-height: 0;
    padding-top: 76px;
    padding-bottom: 76px;
  }
  .studio {
    min-height: 640px;
  }
  .work,
  .automation,
  .process,
  .founder {
    min-height: 620px;
  }
  .case-composition {
    min-height: 400px;
  }
  .contact {
    min-height: 0;
  }
  .contact-grid {
    margin-bottom: 32px;
  }
}
@media (max-width: 699px) {
  .color-boundary {
    height: 36px;
  }
  .process-detail {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    min-height: 235px;
  }
  .process-detail > span {
    font-size: 46px;
  }
  .process-detail h3 {
    font-size: 20px;
    letter-spacing: -0.035em;
  }
  .process-stops {
    height: 64px;
    gap: 24px;
  }
  .case-alla .case-summary h2 {
    font-size: 12cqw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .header {
    transition: none;
  }
}
.section.in-view > h2,
.section.in-view .case-summary h2 {
  animation: section-heading-in 0.5s var(--ease) both !important;
}
@keyframes section-heading-in {
  from {
    opacity: 0.55;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .section.in-view > h2,
  .section.in-view .case-summary h2 {
    animation: none !important;
  }
}

:root {
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --panel-gutter: 24px;
  --ease-tactile: cubic-bezier(0.2, 0.8, 0.3, 1);
  --z-canvas: 31;
}
html {
  overscroll-behavior-x: none;
}
body {
  min-width: 0;
}
main {
  width: 100%;
  min-width: 0;
  overflow: clip;
  overflow-clip-margin: 0;
}
.section {
  contain: inline-size;
  min-width: 0;
  position: relative;
  overflow: clip;
}
.section > * {
  min-width: 0;
  max-width: 100%;
}
.mascot-stage canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.color-boundary {
  overflow: hidden;
}
svg {
  max-width: 100%;
}
.navigation-open main {
  overflow: visible;
}
.navigation-open .hero {
  overflow: clip;
}
.navigation-open .hero .mascot-stage {
  z-index: var(--z-canvas);
  opacity: 1;
  overflow: clip;
}
.orbit {
  display: block !important;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 112px !important;
  overflow: hidden !important;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  cursor: grab;
  isolation: isolate;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.orbit[data-dragged="true"] {
  cursor: grabbing;
}
.orbit button {
  position: absolute !important;
  left: calc(50% - var(--orbit-item) / 2);
  top: 22px;
  width: var(--orbit-item);
  height: 62px;
  min-height: 44px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px !important;
  margin: 0 !important;
  transition:
    background 0.2s,
    color 0.2s;
  will-change: transform;
  letter-spacing: -0.035em;
  font-size: 17px;
  line-height: 1.1;
  border: 0 !important;
}
.orbit button:after {
  display: none !important;
}
.orbit button:focus-visible {
  outline-offset: 3px;
}
.solution-tabs {
  margin: 28px 0 0 !important;
  border: 0 !important;
}
.solution-tabs button {
  border-radius: 22px;
  background: linear-gradient(135deg, #fff9, #fff2);
  box-shadow:
    inset 0 1px 2px #fff,
    0 5px 15px #1111;
  color: var(--black);
  font-weight: 550;
}
.solution-tabs button[aria-selected="true"] {
  background: linear-gradient(130deg, #e6f5ba, #d5ef82);
  box-shadow:
    inset 0 1px 2px white,
    0 7px 15px #30391a22;
}
.orbit-hint {
  font-size: 10px;
  letter-spacing: 0.03em;
  opacity: 0.65;
  margin: 0 0 24px;
  text-align: center;
}
.solution-panel {
  margin-top: 24px;
  min-height: 350px;
}
.solution-copy {
  align-self: center;
}
.solution-copy h3 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
}
.process-track {
  margin: 24px 0 0;
  border: 0;
}
.process-stops {
  border: 0;
}
.process-stops button {
  background: none;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 500;
  color: var(--black);
  height: 70px;
  top: 17px;
}
.process-stops button span {
  font: 500 11px var(--body);
  align-self: start;
  margin-top: 6px;
  letter-spacing: 0;
}
.process-stops button[aria-pressed="true"] {
  font-weight: 750;
}
.process-stops:before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 50%;
  height: 13px;
  width: 1px;
  background: currentColor;
  pointer-events: none;
}
.process-detail {
  grid-template-columns: 110px minmax(0, 680px);
  margin: 28px auto 0;
  max-width: 920px;
  min-height: 180px;
}
.process .orbit-hint {
  margin-bottom: 12px;
}
.process-detail p {
  font-size: 18px;
  line-height: 1.6;
}
.process-detail > span {
  color: var(--black);
}
.mobile-nav > a {
  border: 0 !important;
  position: relative;
  width: fit-content;
  max-width: 100%;
  padding-right: 10px !important;
  gap: 14px !important;
}
.mobile-nav > a:after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 5px;
  width: 26px;
  height: 4px;
  background: var(--black);
  transform: scaleX(0.35);
  transform-origin: left;
  opacity: 0.35;
  transition:
    transform 0.2s var(--ease-tactile),
    opacity 0.2s;
}
.mobile-nav > a:hover:after,
.mobile-nav > a:focus-visible:after,
.mobile-nav > a:active:after {
  transform: scaleX(1);
  opacity: 1;
}
.menu-socials {
  border: 0 !important;
  gap: 24px;
}
.menu-socials a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.navigation-open .mobile-nav:not([hidden]) {
  left: max(6%, var(--safe-left));
  right: max(6%, var(--safe-right));
  overflow-x: hidden;
}
.navigation-open .hero .mascot-stage {
  right: max(4%, var(--safe-right));
  top: max(80px, env(safe-area-inset-top));
  width: 30vw;
  height: 210px;
}
.navigation-open .mobile-nav > a {
  font-weight: 600;
  letter-spacing: -0.055em;
}
.brief-overlay {
  bottom: auto;
  min-width: 0;
  height: 100dvh;
  padding: max(var(--panel-gutter), env(safe-area-inset-top))
    max(var(--panel-gutter), var(--safe-right))
    max(var(--panel-gutter), env(safe-area-inset-bottom))
    max(var(--panel-gutter), var(--safe-left));
}
.hero.is-loading .hero-info,
.hero.is-loading .hero-brief,
.hero.is-loading .hero-scroll {
  opacity: 1;
  pointer-events: auto;
}
.mascot-loading {
  border: 1px solid #1113;
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 90%;
  background: #d7ff524d;
  gap: 10px;
}
.mascot-loading:before {
  content: "VADIM.OS / СИСТЕМА";
  display: block;
  font-size: 9px;
  opacity: 0.6;
  margin-bottom: 6px;
}
.hero:not(.is-loading) .mascot-stage canvas {
  animation: model-reveal 0.55s var(--ease) both;
}
@keyframes model-reveal {
  from {
    clip-path: inset(100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}
#work-description {
  font-size: 15px;
  line-height: 1.5;
  max-width: 560px;
  min-height: 46px;
  margin-top: 20px;
}
.work-selector button {
  min-width: 0;
}
.work-selector button span {
  font-size: 12px;
}
.contact footer {
  padding-bottom: max(16px, env(safe-area-inset-bottom));
}
@media (min-width: 1100px) {
  .solutions > h2,
  .process > h2 {
    font-size: clamp(76px, 8vw, 140px);
  }
  .solutions > h2 br,
  .process > h2 br {
    display: none;
  }
  .solutions > h2 .indent,
  .process > h2 .indent {
    display: inline;
    margin-left: 0.12em;
  }
  .solutions,
  .process {
    padding-top: 60px;
    padding-bottom: 64px;
  }
  .solutions .section-top,
  .process .section-top {
    margin-bottom: 38px;
  }
  .solution-panel {
    gap: 7%;
    grid-template-columns: 1.1fr 0.9fr;
    max-width: 1320px;
    margin-inline: auto;
  }
  .process-detail {
    min-height: 170px;
  }
  .work-composition {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
@media (min-width: 1920px) {
  .section {
    padding-inline: max(5%, calc((100% - 1700px) / 2));
  }
}
@media (max-width: 1099px) {
  .header {
    left: max(22px, var(--safe-left));
    right: max(22px, var(--safe-right));
  }
  .solution-panel {
    min-height: 0;
  }
  .process-detail {
    grid-template-columns: 80px minmax(0, 1fr);
    gap: 22px;
  }
  .process-detail > span {
    font-size: 64px;
  }
}
@media (max-width: 699px) {
  .section {
    padding-inline: max(22px, var(--safe-left)) max(22px, var(--safe-right));
  }
  .orbit {
    height: 102px !important;
  }
  .orbit button {
    font-size: 15px;
    height: 58px;
  }
  .solution-tabs {
    margin-top: 22px !important;
  }
  .solution-panel {
    margin-top: 16px;
    gap: 24px;
  }
  .solution-copy {
    min-height: 245px;
  }
  .solution-copy h3 {
    font-size: 30px;
  }
  .orbit-hint {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .process-detail {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 16px;
    min-height: 220px;
    margin-top: 24px;
  }
  .process-detail > span {
    font-size: 43px;
  }
  .process-detail h3 {
    font-size: 23px;
  }
  .process-detail p {
    font-size: 16px;
  }
  .process-stops button {
    font-size: 19px;
  }
  .brief-overlay {
    --panel-gutter: 22px;
  }
  .navigation-open .mobile-nav:not([hidden]) {
    top: 160px;
  }
  .navigation-open .hero .mascot-stage {
    width: 30vw;
    height: 180px;
    top: 95px;
  }
  .navigation-open .mobile-nav > a {
    font-size: clamp(28px, 8vw, 42px);
    padding-block: 17px;
  }
  .work-selector {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .work-selector button {
    padding: 14px 0 !important;
  }
  .work-selector button strong {
    font-size: clamp(20px, 5vw, 27px);
  }
  .work-selector button small {
    font-size: 8px;
  }
  .work-selector button span {
    font-size: 10px;
    line-height: 1.5;
  }
  #work-description {
    min-height: 68px;
  }
  .hero .mascot-stage {
    height: clamp(270px, 37svh, 360px);
  }
  .hero-brief {
    margin-top: 20px;
  }
  .hero {
    padding-bottom: 48px;
  }
}
@media (max-width: 360px) {
  .brief-overlay {
    --panel-gutter: 18px;
  }
  .solution-copy h3 {
    font-size: 27px;
  }
  .section {
    padding-inline: max(18px, var(--safe-left)) max(18px, var(--safe-right));
  }
}
@media (max-height: 500px) and (max-width: 1099px) {
  .navigation-open .mobile-nav:not([hidden]) {
    top: 80px;
    right: max(26%, var(--safe-right));
    gap: 4px 20px;
    max-height: calc(100dvh - 92px);
  }
  .navigation-open .mobile-nav > a {
    font-size: 25px;
    padding-block: 10px;
  }
  .navigation-open .hero .mascot-stage {
    opacity: 1;
    width: 23vw;
    height: 220px;
    top: 90px;
    right: 2%;
  }
  .navigation-open .menu-socials {
    margin-top: 4px;
  }
  .brief-overlay {
    --panel-gutter: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .orbit button {
    will-change: auto;
  }
  .hero:not(.is-loading) .mascot-stage canvas {
    animation: none;
  }
  .mobile-nav > a:after {
    transition: none;
  }
}
.solution-panel {
  padding-top: 8px;
}
.solution-copy {
  min-height: 275px;
}
.process .display {
  margin-bottom: 20px;
}
@media (max-width: 699px) {
  .work-selector {
    display: grid;
  }
  .solution-copy {
    min-height: 265px;
  }
  .solution-panel {
    padding-top: 0;
  }
  .solution-copy .solution-tags {
    margin-top: 18px !important;
  }
}

.mascot-frame {
  display: contents;
}
.navigation-open .mascot-frame {
  display: block;
  position: fixed;
  inset: 0;
  overflow: hidden;
  contain: paint;
  z-index: var(--z-canvas);
  pointer-events: none;
}
.brief-overlay {
  overflow: hidden;
}
@media (min-width: 700px) and (max-width: 1099px) {
  .hero {
    padding-top: 88px;
    padding-bottom: 46px;
    gap: 18px;
  }
  .hero .mascot-stage {
    height: clamp(270px, 36svh, 420px);
  }
  .hero-info h2 {
    font-size: 30px;
  }
  .hero-info .hero-copy {
    font-size: 15px;
  }
  .giant {
    top: 114px;
  }
}
@media (max-width: 699px) {
  .work-selector button {
    width: 100%;
  }
}
@media (max-width: 699px) {
  .hero {
    padding-top: 92px;
  }
  .hero .mascot-stage {
    height: clamp(250px, 35svh, 340px);
  }
  .process-stops button {
    font-size: 17px;
    padding: 18px 4px 8px !important;
  }
  .process-stops button span {
    position: absolute;
    left: 12px;
    top: 4px;
    margin: 0;
    font-size: 9px;
  }
}

@media (max-width: 1099px) {
  .navigation-open .hero .giant {
    position: absolute;
    left: max(22px, var(--safe-left));
    right: auto;
    top: 156px;
    width: var(--menu-title-width);
    max-width: none;
    transform: scale(var(--menu-title-scale));
    transform-origin: 0 0;
    opacity: 1;
    filter: none;
    color: var(--black);
    z-index: 1;
    transition: none;
  }
  .navigation-open .giant-line > span {
    animation: none;
    transition: none;
    clip-path: none;
    opacity: 1;
  }
}
@media (max-width: 699px) {
  .navigation-open .hero .giant {
    top: max(158px, calc(env(safe-area-inset-top) + 143px));
  }
  .navigation-open .hero .mascot-stage {
    top: max(95px, calc(env(safe-area-inset-top) + 80px));
  }
}
@media (max-width: 699px) and (max-height: 650px) {
  .navigation-open .mobile-nav:not([hidden]) {
    top: max(220px, calc(env(safe-area-inset-top) + 205px));
    max-height: calc(100dvh - 244px - env(safe-area-inset-top));
  }
}
@media (max-width: 349px) {
  .navigation-open .hero .giant {
    left: max(16px, var(--safe-left));
  }
}
@media (min-width: 700px) and (max-height: 500px) {
  .navigation-open .hero .giant {
    left: 53%;
    top: 140px;
  }
  .navigation-open .mobile-nav:not([hidden]) {
    right: 52%;
    gap: 0 16px;
  }
  .navigation-open .mobile-nav > a {
    font-size: 22px;
  }
}

:root {
  --glass-surface: linear-gradient(135deg, #ffffff80, #ffffff25);
  --glass-border: #ffffffb3;
}
.brief-overlay {
  background: #10120bcc;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.mascot-loading {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
  text-align: center;
  gap: 12px;
  width: 180px;
}
.mascot-loading:before {
  display: none;
}
.nav {
  background: none !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  gap: 8px;
}
.nav:before,
.nav:after {
  display: none !important;
}
.nav a {
  background: var(--glass-surface);
  border: 1px solid #fff8;
  border-radius: 999px;
  box-shadow: inset 0 1px #fff6;
  transition:
    transform 0.18s,
    background 0.18s;
}
.nav a:active {
  transform: scale(0.96);
}
.nav a[aria-current] {
  background: #fff9;
}
.solution-copy {
  min-height: 0;
}
.solution-copy h3 {
  margin-top: 0;
}
.solution-panel {
  align-items: center;
}
.network-node {
  fill: currentColor;
  animation: network-drift 16s ease-in-out infinite alternate;
  animation-play-state: paused;
}
.network-node text,
.network-core {
  font: 12px var(--body);
  text-anchor: middle;
  letter-spacing: 1px;
  fill: currentColor;
}
.network-core {
  font-weight: 750;
  font-size: 16px;
  letter-spacing: -0.5px;
}
.node-dev {
  animation-delay: -3s;
}
.node-ai {
  animation-delay: -7s;
}
.node-growth {
  animation-delay: -11s;
}
.node-content {
  animation-delay: -14s;
}
.network-rings {
  transform-origin: 280px 240px;
  animation: network-turn 70s linear infinite;
  animation-play-state: paused;
}
.motion-visible .network-node,
.motion-visible .network-rings {
  animation-play-state: running;
}
@keyframes network-drift {
  to {
    transform: translate(9px, -9px);
  }
}
@keyframes network-turn {
  to {
    transform: rotate(360deg);
  }
}
.page-background * {
  animation-play-state: paused !important;
}
.founder-system svg {
  overflow: visible;
  width: 100%;
  height: auto;
}
.work-selector button:after {
  content: none;
}
.work > h2:after {
  display: none;
}
.automation-cta {
  margin-top: 16px;
  color: var(--lime);
}
.pipeline li.is-current:before {
  box-shadow: 0 0 0 4px #d7ff521c;
}
.case-summary .text-link {
  display: inline-flex;
  margin-right: 18px;
  margin-top: 12px;
}
.contact footer a[href^="tel:"] {
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .hero-brief {
    align-self: end;
  }
  .solution-panel {
    min-height: 360px;
  }
  .founder {
    gap: 6%;
  }
  .automation-heading {
    margin-bottom: 24px;
  }
  .automation-demo {
    margin-top: 26px;
  }
}
@media (max-width: 1099px) {
  .navigation-open .hero .mascot-stage {
    width: 34vw;
    height: 230px;
  }
  .navigation-open .hero .giant {
    top: 165px;
  }
}
@media (max-width: 699px) {
  .hero {
    padding-top: 76px;
    gap: 0;
  }
  .hero .mascot-stage {
    height: clamp(270px, 38svh, 350px);
    width: 100%;
    margin-bottom: 0;
  }
  .hero-info {
    margin-top: 0;
  }
  .hero-info .studio-role {
    margin-top: 8px;
  }
  .hero-info .hero-copy {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.45;
  }
  .hero-info .geo {
    margin-top: 14px;
  }
  .hero-brief {
    margin-top: 17px;
  }
  .navigation-open .hero .mascot-stage {
    width: 34vw;
    height: 190px;
    top: 90px;
    right: 3%;
  }
  .navigation-open .hero .giant {
    top: 156px;
  }
  .navigation-open .mobile-nav:not([hidden]) {
    top: 300px;
    max-height: calc(100dvh - 320px);
    overflow-y: auto;
  }
  .navigation-open .mobile-nav > a {
    font-size: clamp(28px, 8vw, 38px);
    padding-block: 14px;
  }
  .menu-socials {
    margin-top: 18px !important;
  }
  .solution-copy h3 {
    font-size: clamp(25px, 7vw, 30px);
  }
  .solution-copy p {
    font-size: 15px;
    line-height: 1.45;
  }
  .solution-copy .solution-tags {
    font-size: 9px;
    line-height: 1.5;
  }
  .solution-panel {
    gap: 18px;
  }
  .solutions {
    padding-block: 48px;
  }
  .solutions .orbit-hint {
    margin-bottom: 0;
  }
  .automation {
    padding-block: 46px;
  }
  .automation-heading h2 {
    font-size: clamp(46px, 12vw, 74px);
  }
  .automation-heading p {
    font-size: 14px;
    line-height: 1.5;
  }
  .automation-demo {
    margin-top: 20px;
  }
  .pipeline {
    gap: 0;
  }
  .pipeline li {
    padding: 11px 12px;
    min-height: 0;
  }
  .pipeline li strong {
    font-size: 14px;
  }
  .pipeline li p {
    font-size: 12px;
    line-height: 1.35;
    margin: 4px 0 0;
  }
  .scenario-switch {
    gap: 6px;
  }
  .scenario-switch button {
    font-size: 10px;
    padding: 10px 8px;
    min-height: 44px;
  }
  .demo-bottom {
    gap: 12px;
    margin-top: 16px;
  }
  .demo-bottom p {
    font-size: 13px;
    min-height: 38px;
  }
  .demo-note {
    font-size: 9px;
  }
  .automation-services {
    font-size: 9px;
    margin-top: 20px;
  }
  .founder-system {
    max-width: 440px;
    margin-inline: auto;
  }
  .network-node text {
    font-size: 14px;
    letter-spacing: 0;
  }
  .network-core {
    font-size: 18px;
  }
  .process-detail {
    min-height: 185px;
  }
}
@media (max-width: 360px) {
  .navigation-open .mobile-nav:not([hidden]) {
    top: 270px;
    max-height: calc(100dvh - 284px);
  }
  .navigation-open .hero .mascot-stage {
    height: 175px;
  }
}
@media (max-height: 650px) and (max-width: 699px) {
  .navigation-open .mobile-nav:not([hidden]) {
    top: 260px;
    max-height: calc(100dvh - 274px);
  }
  .navigation-open .mobile-nav > a {
    padding-block: 9px;
  }
}
@media (min-width: 700px) and (max-height: 500px) {
  .navigation-open .hero .mascot-stage {
    width: 25vw;
    height: 230px;
    top: 84px;
  }
  .navigation-open .mobile-nav:not([hidden]) {
    top: 80px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .network-node,
  .network-rings {
    animation: none !important;
  }
}

.start-panel {
  width: 100%;
  min-width: 0;
  padding: clamp(14px, 2vw, 22px);
  border-radius: 24px;
  color: var(--black);
  border: 1px solid #ffffffe0;
  background: linear-gradient(135deg, #ffffff80, #ffffff38);
  box-shadow:
    inset 0 1px 2px #fff9,
    0 8px 28px #18200012;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.start-composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 3vw, 24px);
}
.panel-preview {
  display: block;
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1.5;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  background: transparent;
}
.start-button {
  position: relative;
  isolation: isolate;
  width: clamp(72px, 8vw, 104px);
  height: clamp(72px, 8vw, 104px);
  flex: none;
  border-radius: 50%;
  border: 1px solid #fffffff2;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--black);
  font-size: clamp(12px, 1.2vw, 16px);
  font-weight: 500;
  background:
    radial-gradient(ellipse at 28% 16%, #ffffffb8, transparent 42%),
    linear-gradient(145deg, #fcffcd70, #809b2940 48%, #faffbe80);
  box-shadow:
    inset 0 2px 3px #fffd,
    inset 0 -3px 8px #ffffffb0,
    0 4px 14px #4b600c26;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.start-button::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid #ffffff65;
  border-radius: inherit;
  pointer-events: none;
}
.start-button:hover {
  box-shadow:
    inset 0 2px 4px #fff,
    inset 0 -3px 10px #fff9,
    0 5px 20px #71851040;
}
.start-button:active {
  transform: scale(0.96);
}
.control-arrow {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.start-disciplines {
  font-size: clamp(8px, 0.65vw, 10px);
  letter-spacing: 0.025em;
  margin: 10px 0 0;
  line-height: 1.5;
}
.start-panel.is-open {
  width: 100%;
  margin: 0;
  overflow: hidden;
}
.hero-brief .start-panel.is-inline {
  position: relative;
  inset: auto;
  transform: none;
  max-width: 100%;
  z-index: 2;
}
#panel-content {
  min-width: 0;
}
.flow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.flow-counter {
  font-size: 10px;
  letter-spacing: 0.05em;
}
.icon-button,
.back-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid #ffffffe0;
  border-radius: 50%;
  background: #ffffff38;
  color: var(--black);
  flex: none;
}
.icon-button {
  font-size: 23px;
}
.back-button .control-arrow {
  transform: rotate(180deg);
}
.flow-progress {
  height: 1px;
  background: #53632220;
  margin-bottom: 17px;
}
.flow-progress i {
  display: block;
  width: calc(var(--step) * 100%);
  height: 100%;
  background: #28331955;
  transition: width 0.35s;
}
.flow-title {
  font: 500 clamp(23px, 2vw, 30px) / 1.1 var(--body);
  letter-spacing: -0.045em;
  margin: 0 0 18px;
  overflow-wrap: normal;
}
.flow-title:focus {
  outline: none;
}
.flow-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.option {
  min-width: 0;
  min-height: 44px;
  padding: 10px 9px;
  border: 1px solid #ffffffd9;
  border-radius: 24px;
  background: #ffffff35;
  color: var(--black);
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  transition:
    background 0.2s,
    box-shadow 0.2s;
}
.option:last-child {
  grid-column: 1/-1;
  text-align: left;
  padding-left: 16px;
}
.option[aria-pressed="true"] {
  background: #161b10;
  color: var(--paper);
  box-shadow:
    0 3px 10px #18240025,
    inset 0 1px 2px #ffffff55;
}
.option:hover {
  box-shadow: inset 0 0 0 1px #fff8;
}
.flow-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  flex: none;
}
.primary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: auto;
  max-width: 100%;
  min-height: 44px;
  padding: 10px 18px;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid #ffffff90;
  background: linear-gradient(145deg, #24291c, #070a05);
  box-shadow:
    inset 0 1px 2px #fff5,
    0 4px 12px #28350020;
  color: var(--paper);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.primary-button:disabled {
  opacity: 0.4;
  cursor: default;
  box-shadow: none;
}
.form-field {
  display: grid;
  gap: 8px;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 14px;
  min-width: 0;
}
.form-field input,
.form-field textarea {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  font: 400 16px/1.45 var(--body);
  color: var(--black);
  padding: 12px;
  border: 1px solid #ffffffc9;
  border-radius: 18px;
  background: #ffffff35;
  box-shadow: inset 0 1px 2px #fff5;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    outline-color 0.2s;
}
.form-field input {
  min-height: 46px;
}
.form-field textarea {
  height: 138px;
  min-height: 80px;
  max-height: 180px;
  resize: none;
  overflow: auto;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #465039;
  opacity: 0.72;
}
.form-field input:focus,
.form-field textarea:focus {
  outline-color: #fff9;
  background: #ffffff50;
  box-shadow:
    inset 0 1px 2px #fff9,
    0 0 14px #eaffbf55;
}
.form-field [aria-invalid="true"] {
  border-color: #a5382a;
  outline-color: #a5382a55;
}
.field-error {
  font-size: 12px;
  line-height: 1.35;
  color: #922a20;
  margin: 8px 0;
}
.field-error:empty {
  display: none;
}
.field-note {
  font-size: 10px;
  line-height: 1.5;
  margin: 10px 0;
}
.contact-methods {
  display: flex;
  gap: 6px;
  border: 0;
  padding: 0;
  margin: 0 0 12px;
  min-width: 0;
}
.contact-methods legend {
  font-size: 12px;
  margin-bottom: 8px;
}
.contact-methods label {
  flex: 1;
  position: relative;
  min-width: 0;
}
.contact-methods input {
  position: absolute;
  opacity: 0;
}
.contact-methods span {
  display: grid;
  place-items: center;
  padding: 10px 5px;
  min-height: 44px;
  border: 1px solid #fffc;
  border-radius: 24px;
  font-size: 11px;
  background: #ffffff30;
}
.contact-methods input:checked + span {
  background: #181e11;
  color: var(--paper);
}
.contact-methods input:focus-visible + span {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.success-copy {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 18px;
}
.brief-overlay .start-panel {
  width: min(410px, 100%);
  max-height: 100%;
  overflow-y: auto;
  margin: 0;
  background: linear-gradient(145deg, #efffc9ee, #d9ecb5ed);
  transform-origin: top left;
  overscroll-behavior: contain;
}
.menu-network {
  display: none;
  pointer-events: none;
}
.navigation-open .menu-network {
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  z-index: 30;
  color: #354909;
  opacity: 0.09;
  pointer-events: none;
  overflow: hidden;
}
.menu-network-nodes {
  transform-origin: 360px 450px;
  animation: menu-network-drift 32s ease-in-out infinite alternate;
}
@keyframes menu-network-drift {
  to {
    transform: rotate(18deg) translateY(16px);
  }
}
@media (max-width: 699px) {
  .hero-brief .start-panel.is-inline:not(.keyboard-active) {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
  }
  .start-panel {
    padding: 14px;
    border-radius: 22px;
  }
  .start-button {
    width: clamp(72px, 21vw, 90px);
    height: clamp(72px, 21vw, 90px);
    font-size: 14px;
  }
  .start-composition {
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
  }
  .panel-preview {
    aspect-ratio: 1.7;
  }
  .flow-title {
    font-size: 26px;
  }
  .brief-overlay {
    padding: 12px;
  }
}
@media (max-width: 1099px) {
  .start-panel.is-inline.keyboard-active {
    position: fixed;
    top: var(--keyboard-top);
    bottom: auto;
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    width: auto;
    max-height: var(--keyboard-height);
    z-index: var(--z-modal);
    background: linear-gradient(145deg, #edffcdef, #e4f4baed);
  }
  .start-panel.keyboard-active {
    padding: 12px;
    max-height: var(--keyboard-height);
    overflow: hidden;
  }
  .keyboard-active #panel-content {
    display: flex;
    flex-direction: column;
    max-height: calc(var(--keyboard-height) - 26px);
  }
  .keyboard-active #brief-form {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
  }
  .keyboard-active .flow-fields {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
  }
  .keyboard-active .flow-top {
    margin-bottom: 4px;
    flex: none;
  }
  .keyboard-active .flow-progress {
    margin-bottom: 8px;
    flex: none;
  }
  .keyboard-active .flow-title {
    font-size: 21px;
    margin-bottom: 10px;
    flex: none;
  }
  .keyboard-active .flow-title br {
    display: none;
  }
  .keyboard-active .form-field {
    gap: 5px;
    margin-bottom: 8px;
    flex: none;
  }
  .keyboard-active textarea {
    height: clamp(48px, calc(var(--keyboard-height) - 220px), 110px);
    min-height: 48px;
  }
  .keyboard-active .flow-footer {
    position: sticky;
    bottom: 0;
    margin-top: auto;
    padding-top: 8px;
    background: linear-gradient(0deg, #e9f9c6 75%, #e9f9c600);
    z-index: 1;
  }
  .keyboard-active .field-note {
    margin: 4px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .menu-network-nodes {
    animation: none;
  }
  .start-button {
    transition: none;
  }
}
.menu-socials {
  display: flex;
  gap: 24px;
}

.artifact-wrap {
  min-width: 0;
  padding: 6px;
  display: grid;
  place-items: center;
  overflow: visible;
}
.solution-artifact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: clamp(210px, 24vw, 290px);
  max-width: 100%;
  padding: 8px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  color: var(--black);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s var(--ease);
  transform: perspective(900px) rotateY(var(--tilt, 0deg));
}
.solution-diagram {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 332/205;
  overflow: visible;
  pointer-events: none;
  transition: transform 0.25s var(--ease);
}
.solution-diagram rect,
.solution-diagram circle {
  fill: var(--art-glass, #ffffff88);
  stroke: #62695b;
}
.solution-diagram .accent {
  fill: var(--lime);
  stroke: #60684e;
  stroke-width: 1;
}
.solution-diagram .playhead {
  stroke: #586b23;
  stroke-width: 3;
}
.solution-diagram .art-action {
  transition: transform 0.25s var(--ease);
}
.art-caption {
  display: grid;
  gap: 5px;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: 0.055em;
  font-weight: 400;
  width: 100%;
}
.art-caption > span:first-child {
  color: #606759;
  font-size: 10px;
}
.art-invitation {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid #79816b;
  letter-spacing: 0.035em;
}
.solution-artifact:focus-visible {
  outline: 2px solid #596846;
  outline-offset: 4px;
}
.solution-artifact:active {
  transform: scale(0.975);
}
@media (hover: hover) and (pointer: fine) {
  .solution-artifact:hover .solution-diagram {
    transform: translateY(-3px);
  }
  .solution-artifact:hover .art-action {
    transform: translate(2px, -2px);
  }
}
.solution-panel {
  min-height: 0;
  position: relative;
}
.solution-panel > .solution-copy {
  min-height: var(--solution-copy-height, 0px);
}
@media (max-width: 699px) {
  .artifact-wrap {
    justify-items: start;
    padding: 0;
  }
  .solution-artifact {
    width: clamp(195px, 57vw, 235px);
    padding: 6px;
    gap: 8px;
  }
  .solution-panel {
    gap: 12px;
  }
  .art-caption {
    font-size: 10px;
    gap: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .solution-artifact,
  .solution-diagram,
  .solution-diagram .art-action {
    transition: none;
    transform: none !important;
  }
}

.hero-brief {
  min-width: 0;
}
.start-panel:not(.is-open),
.brief-placeholder {
  position: relative;
  isolation: isolate;
}
#panel-content {
  border-radius: inherit;
}
.start-visual,
.start-scene-light {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}
.start-visual {
  object-fit: cover;
  object-position: 48% 50%;
}
.start-scene-light {
  background:
    radial-gradient(ellipse 23% 44% at 82% 44%, #d9ff899c, transparent 100%),
    linear-gradient(transparent 65%, #030805a6);
}
.start-panel:not(.is-open) .start-disciplines,
.brief-placeholder .start-disciplines {
  color: #f3f7e9;
  text-shadow: 0 1px 3px #000;
}
@media (max-width: 699px) {
  .start-visual {
    object-position: 42% 50%;
  }
}
.panel-preview {
  touch-action: manipulation;
  -webkit-user-drag: none;
}
.start-disciplines {
  overflow: hidden;
  white-space: nowrap;
  height: 1.5em;
  line-height: 1.5;
  pointer-events: none;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 4%,
    #000 96%,
    transparent
  );
}
.disciplines-track {
  display: flex;
  width: max-content;
  animation: disciplines-travel 14s linear infinite;
  will-change: transform;
}
.disciplines-track > span {
  flex: none;
  padding-right: 1.5em;
}
@keyframes disciplines-travel {
  to {
    transform: translateX(-50%);
  }
}
.media-stage,
.media-stage.is-mobile {
  position: relative;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  overflow: visible;
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
}
.device-display {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding: 26px 4px 4px;
  border: 1px solid #8c948580;
  border-radius: 12px;
  background: linear-gradient(#d9ded0, #7b827366);
  box-shadow: 0 8px 22px #00000018;
  overflow: hidden;
}
.device-display::before {
  content: attr(data-address);
  position: absolute;
  top: 7px;
  left: 58px;
  right: 20px;
  font: 400 9px/12px var(--body);
  text-align: center;
  color: #414739;
  letter-spacing: 0.02em;
}
.device-display::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #78816d;
  box-shadow:
    8px 0 #78816d,
    16px 0 #78816d;
}
.device-display > img,
#work-preview .device-display > img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 6px;
}
.live-device,
.media-stage.is-mobile .live-device {
  position: relative;
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 390/790;
  padding: 19px 6px 9px;
  border: 1px solid #8f9688;
  border-radius: 32px;
  background: linear-gradient(140deg, #dae0d3, #343b2f 35%, #92998a);
  box-shadow: 0 10px 24px #0002;
  overflow: hidden;
  max-width: 100%;
}
.live-device::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 4px;
  border-radius: 4px;
  background: #252b20;
  pointer-events: none;
}
.device-screen {
  position: absolute;
  inset: 19px 6px 9px;
  overflow: hidden;
  border-radius: 23px;
  background: #fff;
}
.live-device iframe {
  display: block;
  width: 390px;
  border: 0;
  border-radius: 0;
  transform-origin: top left;
  background: #fff;
  touch-action: pan-y;
}
.media-stage.is-mobile {
  padding-block: 8px;
}
@media (max-width: 699px) {
  .live-device,
  .media-stage.is-mobile .live-device {
    width: min(100%, 280px);
  }
  .device-display {
    padding-top: 24px;
    border-radius: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .disciplines-track {
    animation: none;
    transform: none;
    will-change: auto;
  }
}
.page-background .disciplines-track {
  animation-play-state: paused;
}

.mascot-stage .glass-progress {
  top: 47%;
  left: 50%;
  width: 94%;
  max-width: 460px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  perspective: 650px;
}
.progress-object {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.08em;
  font-family: var(--body);
  font-weight: 600;
  font-size: clamp(60px, 8vw, 120px);
  line-height: 1;
  transform: rotateY(-9deg) rotateX(5deg);
  transform-style: preserve-3d;
}
.progress-digits {
  position: relative;
  display: inline-block;
  width: 2.05em;
  flex: none;
  text-align: center;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.035em;
  color: #ffffff45;
  -webkit-text-stroke: 1px #ffffffce;
  text-shadow:
    1px 1px 0 #fff6,
    3px 4px 0 #52641855,
    5px 6px 0 #b9d66a55,
    8px 12px 18px #24300030;
}
.progress-digits::after {
  content: attr(data-value);
  position: absolute;
  inset: 0;
  color: transparent;
  -webkit-text-stroke: 0.5px #2c390c66;
  transform: translate(-2px, -3px);
  text-shadow: none;
}
.progress-unit {
  font-family: var(--body);
  font-size: 0.22em;
  font-weight: 400;
  color: #23300ca6;
  text-shadow: 1px 1px #fff9;
}
.mascot-stage canvas {
  transition: opacity 0.36s ease-out;
}
.mascot-stage.is-recovering canvas {
  opacity: 0;
}
.mascot-recovery {
  position: absolute;
  inset: 47% 0 auto;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  pointer-events: none;
}
@media (max-width: 699px) {
  .progress-object {
    font-size: clamp(68px, 19vw, 96px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .progress-object {
    transform: none;
  }
  .mascot-stage canvas {
    transition: none;
  }
}
