:root {
  --green: #a9db84;
  --ink: #0e130c;
  --ink-2: #23291e;
  --paper: #ffffff;
  --yellow: #ffe600;
  --surface: #eef4e6;
  --muted: #3a4734;
  --line: rgba(14, 19, 12, 0.18);
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Hanken Grotesk", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--green);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}
@media (pointer: coarse) {
  body {
    cursor: auto;
  }
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
.wrap {
  width: min(1240px, 90vw);
  margin-inline: auto;
}
.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hl {
  background: var(--yellow);
  color: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 0.12em;
}
.line {
  overflow: hidden;
  display: block;
}
.line__in {
  display: block;
  will-change: transform;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s var(--ease),
    height 0.25s var(--ease);
}
.cursor.big {
  width: 64px;
  height: 64px;
  background: var(--yellow);
}
@media (pointer: coarse) {
  .cursor {
    display: none;
  }
}

.loader {
  position: fixed;
  inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 6vw;
}
.loader__count {
  font-family: var(--display);
  font-size: clamp(4rem, 18vw, 16rem);
  font-weight: 800;
  line-height: 0.85;
}
.loader__label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
  align-self: flex-end;
  text-align: right;
}

header.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  padding: 22px 0;
  mix-blend-mode: difference;
  color: #fff;
}
.nav__in {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.nav__menu {
  display: flex;
  gap: 28px;
}
.nav__menu a {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width 0.4s var(--ease);
}
.nav__menu a:hover::after {
  width: 100%;
}
@media (max-width: 820px) {
  .nav__menu {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14vh 0 6vh;
}
.hero .avail {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 30px;
}
.hero .avail .d {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}
h1.hero__t {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  font-size: clamp(3rem, 12.5vw, 12rem);
  text-transform: uppercase;
  color: var(--ink);
}
h1.hero__t em {
  font-style: normal;
}
.hero__sub {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 46px;
}
.hero__sub p {
  max-width: 52ch;
  font-size: 1.1rem;
  color: var(--ink-2);
}
.hero__sub p b {
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--ink);
  padding: 16px 26px;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  will-change: transform;
  border: 1px solid var(--ink);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow {
  transform: translateX(5px);
}

.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 54px;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 2.3rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.marquee__track .star {
  color: var(--yellow);
}

section {
  padding: 11vh 0;
  position: relative;
}
.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  margin-bottom: 42px;
}
.eyebrow .bar {
  width: 34px;
  height: 1px;
  background: currentColor;
}
.h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: clamp(2.2rem, 6vw, 5rem);
}
.lead {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  font-size: clamp(1.9rem, 4.6vw, 3.4rem);
  max-width: 18ch;
}

.who-lead {
  margin-bottom: 54px;
}
.who {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) {
  .who {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .who-lead {
    margin-bottom: 34px;
  }
}
.who p {
  font-size: 1.1rem;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.who p:last-child {
  margin-bottom: 0;
}
.who__photo {
  position: relative;
  padding: 0 16px 16px 0;
}
.who__photo .accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 64%;
  height: 74%;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 18px;
  z-index: 0;
  will-change: transform;
}
.who__photo .frame {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ink);
  box-shadow: 0 24px 64px -30px rgba(14, 19, 12, 0.55);
  background: var(--surface);
  clip-path: inset(0 0 0 0);
}
.who__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: 60% 40%;
}
.who__photo .tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  border-radius: 100px;
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.who__photo .tag .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
@media (max-width: 860px) {
  .who__photo {
    max-width: 380px;
  }
}

.mm {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.mm .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.mm .h2 {
  max-width: 15ch;
}
.mm__stage {
  position: relative;
  height: 62vh;
  min-height: 440px;
  margin-top: 34px;
}
.mm__label {
  position: absolute;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 2.6vw, 1.7rem);
  opacity: 0.45;
}
.mm__label.start {
  top: 4%;
  left: 0;
}
.mm__label.end {
  bottom: 4%;
  right: 0;
  text-align: right;
  color: var(--yellow);
  opacity: 0.9;
}
.mm__frag {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  will-change: transform;
  text-align: left;
}
.mm__frag.done {
  border-color: var(--yellow);
  background: rgba(255, 230, 0, 0.12);
}
.mm__frag .tick {
  color: var(--yellow);
  margin-right: 9px;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 640px) {
  .mm__frag {
    font-size: 0.68rem;
    padding: 9px 13px;
  }
}

.process {
  background: var(--yellow);
  color: var(--ink);
}
.process .eyebrow {
  color: #4a5a2e;
}
.process .note {
  max-width: 46ch;
  margin: 12px 0 30px;
  font-size: 1.02rem;
}
.q-list {
  border-top: 2px solid var(--ink);
}
.q-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 2px solid var(--ink);
  align-items: baseline;
  transition: padding-left 0.4s var(--ease);
}
.q-row:hover {
  padding-left: 16px;
}
.q-row .n {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 500;
}
.q-row .q {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.6vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-block: 1px solid var(--line);
  padding: 7vh 0;
}
@media (max-width: 760px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
.stat .num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.stat .num small {
  font-size: 0.4em;
  vertical-align: super;
}
.stat .lbl {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 10px;
}

.feat {
  border-radius: 26px;
  padding: clamp(28px, 4vw, 52px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: start;
  margin-top: 22px;
}
.feat--dark {
  background: var(--ink);
  color: var(--paper);
}
.feat--live {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px -26px rgba(14, 19, 12, 0.4);
}
@media (max-width: 860px) {
  .feat {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.feat__status {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.feat--dark .feat__status {
  color: var(--yellow);
}
.feat--live .feat__status {
  color: #157a38;
}
.feat__status .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
.feat--dark .feat__status .d {
  background: var(--yellow);
}
.feat--live .feat__status .d {
  background: #24a651;
}
.feat h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin-bottom: 14px;
}
.feat__one {
  font-size: 1.06rem;
  margin-bottom: 24px;
  max-width: 48ch;
}
.feat--dark .feat__one {
  color: rgba(255, 255, 255, 0.82);
}
.feat--live .feat__one {
  color: var(--ink-2);
}
.feat__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}
.feat__tags span {
  font-family: var(--mono);
  font-size: 0.66rem;
  border-radius: 100px;
  padding: 6px 12px;
}
.feat--dark .feat__tags span {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}
.feat--live .feat__tags span {
  border: 1px solid var(--line);
  color: var(--muted);
}
.feat__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.feat__links a {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 13px 19px;
  border-radius: 100px;
}
.feat--dark .feat__links a {
  background: var(--yellow);
  color: var(--ink);
}
.feat--dark .feat__links a.ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.32);
}
.feat--live .feat__links a {
  background: var(--ink);
  color: var(--paper);
}
.feat--live .feat__links a.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.hi-box {
  border-radius: 16px;
  padding: 24px;
}
.feat--dark .hi-box {
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hi-box h4 {
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  opacity: 0.6;
}
.hi {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hi li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 11px;
  font-size: 0.92rem;
  line-height: 1.42;
}
.hi li .m {
  font-family: var(--mono);
  line-height: 1.5;
}
.feat--dark .hi li .m {
  color: var(--yellow);
}
.feat--live .hi li .m {
  color: #157a38;
}
.hi li b {
  font-weight: 600;
}
.feat--dark .hi li {
  color: rgba(255, 255, 255, 0.85);
}
.feat__shot {
  aspect-ratio: 16/9;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  display: block;
}
.feat__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 18px;
}
@media (max-width: 820px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 16px 44px -22px rgba(14, 19, 12, 0.32);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: translateY(101%);
  transition: transform 0.55s var(--ease);
  z-index: 0;
}
.card:hover::before {
  transform: translateY(0);
}
.card > * {
  position: relative;
  z-index: 1;
}
.card * {
  transition: color 0.4s var(--ease);
}
.card:hover,
.card:hover * {
  color: var(--ink);
}
.card .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 22px;
}
.card .co {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.card .yr {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
}
.card .role {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 22px;
}
.card .row {
  margin-bottom: 13px;
}
.card .row .k {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}
.card .row .v {
  font-size: 0.98rem;
  color: var(--ink-2);
}
.card .row.res .v {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.card .row.res .dotk {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
}

.chat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  max-width: 780px;
  margin-top: 34px;
  box-shadow: 0 22px 60px -26px rgba(14, 19, 12, 0.4);
}
.chat__head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
}
.chat__head h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
}
.chat__head .st {
  font-family: var(--mono);
  font-size: 0.66rem;
  opacity: 0.75;
  display: flex;
  gap: 8px;
  align-items: center;
}
.chat__head .st .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
.chat__log {
  padding: 22px 24px;
  min-height: 120px;
  max-height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.msg {
  max-width: 86%;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 0.96rem;
  line-height: 1.5;
}
.msg.u {
  align-self: flex-end;
  background: var(--ink);
  color: var(--paper);
  border-bottom-right-radius: 4px;
}
.msg.a {
  align-self: flex-start;
  background: var(--surface);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}
.msg.a.think {
  color: var(--muted);
  font-style: italic;
}
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 16px;
}
.chip {
  font-family: var(--mono);
  font-size: 0.68rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 13px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  background: transparent;
  color: var(--ink);
}
.chip:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.chat__in {
  display: flex;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
}
.chat__in input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 12px 18px;
  font-family: var(--body);
  font-size: 0.95rem;
  background: #fff;
  outline: none;
  color: var(--ink);
}
.chat__in input:focus {
  border-color: var(--ink);
}
.chat__in button {
  border: 1px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  border-radius: 100px;
  padding: 0 24px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.chat__in button:disabled {
  opacity: 0.45;
  cursor: default;
}

.contact {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.contact .eyebrow {
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
}
.contact .big {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.86;
  font-size: clamp(2.6rem, 13vw, 12rem);
  text-transform: uppercase;
  display: inline-block;
}
.contact .big:hover {
  color: var(--yellow);
}
.contact .links {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.contact .links a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 3px;
}
.contact .links a:hover {
  border-color: var(--yellow);
}

footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.62);
}
.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .line__in {
    transform: none !important;
  }
}
