@font-face { font-family: 'Space Grotesk'; font-style: normal; font-weight: 400 700; font-display: swap; src: url("/assets/fonts/space-grotesk-latin.woff2") format('woff2'); }
@font-face { font-family: 'JetBrains Mono'; font-style: normal; font-weight: 400 500; font-display: swap; src: url("/assets/fonts/jetbrains-mono-latin.woff2") format('woff2'); }
@font-face { font-family: 'Instrument Serif'; font-style: normal; font-weight: 400; font-display: swap; src: url("/assets/fonts/instrument-serif-latin.woff2") format('woff2'); }
@font-face { font-family: 'Instrument Serif'; font-style: italic; font-weight: 400; font-display: swap; src: url("/assets/fonts/instrument-serif-italic-latin.woff2") format('woff2'); }

:root {
  --acc:   #ccff00;
  --bg:    #08090a;
  --panel: #0b0c0e;
  --ink:   #eceae3;
  --dim:   #a2a6a0;
  --dim2:  #8b8f8a;
  --faint: #919790;
  --line:  rgba(255, 255, 255, 0.10);
  --line2: rgba(255, 255, 255, 0.12);
  --sans:  'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Instrument Serif', Georgia, serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;
  --wrap: 1360px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--acc); }
img, svg, canvas { display: block; max-width: 100%; }
::selection { background: var(--acc); color: var(--bg); }

@keyframes nz-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes nz-blink   { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }

.wrap { max-width: var(--wrap); margin-inline: auto; }
.mono { font-family: var(--mono); }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; }
.acc { color: var(--acc); }
.eyebrow { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.atmos--grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 80px 80px;
}
.atmos--noise {
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' sc-camel-base-frequency='0.85' sc-camel-num-octaves='2' sc-camel-stitch-tiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 26px; height: 26px;
  border: 1.5px solid var(--acc); border-radius: 50%;
  z-index: 9999; pointer-events: none;
  transform: translate(-100px, -100px);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s, opacity 0.3s;
}

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}
.nav.is-scrolled {
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav__inner { display: flex; align-items: center; gap: 24px; padding: 20px 34px; }
.nav__brand { display: flex; align-items: center; }
.nav__brand img { height: 20px; width: auto; }
.nav__links {
  display: flex; gap: 34px; margin-left: auto;
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--dim2);
}
.nav__links a { transition: color 0.2s; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16); color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.nav__cta:hover { background: var(--acc); color: var(--bg); border-color: var(--acc); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--acc); animation: nz-blink 1.6s ease-in-out infinite; }

.btn {
  display: inline-flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 999px;
  transition: transform 0.2s, background 0.25s, border-color 0.25s, color 0.25s;
}
.btn svg { width: 17px; height: 17px; }
.btn--primary { background: var(--acc); color: var(--bg); }
.btn--primary:hover { color: var(--bg); }
.btn--ghost { font-weight: 500; padding: 16px 26px; border: 1px solid rgba(255, 255, 255, 0.16); color: var(--ink); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.4); background: rgba(255, 255, 255, 0.03); color: var(--ink); }

main { position: relative; z-index: 1; }
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 150px 34px 60px; max-width: var(--wrap); margin-inline: auto; overflow: hidden;
}
.hero__field { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__vignette {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 30% 45%, transparent 30%, var(--bg) 88%);
}
.telemetry {
  position: absolute; top: 120px; right: 34px; z-index: 2;
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.05em;
  color: var(--faint); text-align: right; line-height: 1.9;
}
.hero__content { position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acc); margin-bottom: 36px;
}
.hero__eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--acc); }
.hero__title { font-size: clamp(3rem, 9.2vw, 9rem); line-height: 0.94; font-weight: 700; letter-spacing: -0.04em; max-width: 15ch; }
.hero__title span { display: block; }
.hero__title .serif { font-size: 1.06em; letter-spacing: -0.01em; color: var(--acc); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.35rem); color: var(--dim); max-width: 56ch; margin-top: 34px; line-height: 1.55; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 44px; align-items: center; }
.hero__foot {
  position: absolute; bottom: 38px; left: 34px; right: 34px; z-index: 1;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--faint);
}

.marquee {
  position: relative; z-index: 1; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; background: var(--panel);
}
.marquee__track { display: flex; width: max-content; animation: nz-marquee 32s linear infinite; }
.marquee__group {
  display: flex; align-items: center; gap: 40px; padding-right: 40px;
  font-family: var(--mono); font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: #c9cdc6;
}
.marquee__group i { color: var(--acc); font-style: normal; }

.section { max-width: var(--wrap); margin-inline: auto; padding: 130px 34px; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 70px; }
.sec-head__title { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.02; max-width: 18ch; margin-top: 18px; }
.sec-head__note { max-width: 34ch; color: var(--dim2); font-size: 1.02rem; }

.row {
  position: relative; border-top: 1px solid var(--line2); padding: 40px 0;
  display: grid; grid-template-columns: 100px 1fr auto; gap: 30px; align-items: center; cursor: default;
}
.rows .row:last-child { border-bottom: 1px solid var(--line2); }
.row__num { font-family: var(--mono); font-size: 0.9rem; color: var(--faint); transition: color 0.3s; }
.row__body { display: flex; flex-direction: column; gap: 10px; }
.row__title { font-size: clamp(1.6rem, 3.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; transition: transform 0.4s var(--ease), color 0.3s; }
.row__body p { color: var(--dim2); max-width: 60ch; font-size: 1rem; }
.row__arrow { width: 30px; height: 30px; opacity: 0; transform: translateX(-14px) rotate(-45deg); transition: opacity 0.35s, transform 0.35s; }
.row:hover .row__num { color: var(--acc); }
.row:hover .row__title { transform: translateX(22px); color: var(--acc); }
.row:hover .row__arrow { opacity: 1; transform: translateX(0) rotate(-45deg); }

.highlight {
  margin-top: 44px; position: relative; overflow: hidden;
  border: 1px solid var(--line2); border-radius: 20px;
  background: linear-gradient(150deg, rgba(204,255,0,0.07), transparent 58%), var(--panel);
  padding: 52px 48px;
  display: flex; justify-content: space-between; align-items: center; gap: 44px; flex-wrap: wrap;
}
.highlight__glow { position: absolute; top: -40%; right: -6%; width: 460px; height: 460px; background: radial-gradient(circle, rgba(204,255,0,0.10), transparent 66%); filter: blur(30px); pointer-events: none; }
.highlight__k { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--acc); margin-bottom: 16px; }
.highlight h3 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; max-width: 15ch; position: relative; }
.highlight p { color: var(--dim); font-size: 1.08rem; max-width: 40ch; line-height: 1.55; position: relative; }

.flagship { position: relative; padding: 130px 34px; overflow: hidden; }
.flagship__glow { position: absolute; top: 20%; left: 50%; transform: translateX(-50%); width: 900px; height: 520px; background: radial-gradient(ellipse, rgba(204, 255, 0, 0.10), transparent 68%); filter: blur(50px); z-index: 0; pointer-events: none; }
.flagship__inner { max-width: var(--wrap); margin-inline: auto; position: relative; z-index: 1; }
.flagship__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: 56px; }
.flagship__title { font-size: clamp(2.2rem, 6vw, 4.4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 0.98; margin-top: 18px; }
.flagship__desc { color: var(--dim); font-size: 1.1rem; max-width: 52ch; margin-top: 20px; }
.link-pill {
  flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.link-pill svg { width: 15px; height: 15px; }
.link-pill:hover { background: var(--acc); color: var(--bg); border-color: var(--acc); }
.flagship__cta { flex-shrink: 0; display: flex; gap: 12px; flex-wrap: wrap; }
.link-pill--acc { background: var(--acc); color: var(--bg); border-color: var(--acc); }
.link-pill--acc:hover { background: transparent; color: var(--acc); border-color: var(--acc); }
.shot { position: relative; margin: 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--line2); box-shadow: 0 60px 120px -40px rgba(0, 0, 0, 0.8); will-change: transform; transition: transform 0.15s ease-out; }
.shot img { width: 100%; height: auto; }
.shot figcaption { position: absolute; left: 22px; bottom: 22px; display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; }
.shot figcaption span { padding: 7px 12px; border-radius: 999px; background: rgba(8, 9, 10, 0.72); backdrop-filter: blur(8px); border: 1px solid var(--line2); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 60px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.stats > div { background: var(--panel); padding: 28px 24px; }
.stats__num { font-size: 2.6rem; font-weight: 700; letter-spacing: -0.03em; }
.stats__num--acc { color: var(--acc); }
.stats__label { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dim2); margin-top: 6px; }

.process { max-width: var(--wrap); margin-inline: auto; padding: 40px 34px 130px; }
.process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.process__step { position: relative; padding-top: 34px; border-top: 1px solid var(--line2); }
.process__step::before { content: ''; position: absolute; top: -1px; left: 0; width: 40px; height: 2px; background: var(--acc); transition: width 0.9s var(--ease) 0.15s; }
.process__step.is-in::before { width: 100%; }
.process__viz { position: relative; height: 76px; margin-bottom: 24px; }
.process__viz--build { display: flex; align-items: flex-end; gap: 6px; }
.process__viz--scope .doc { position: absolute; left: 0; top: 8px; width: 54px; height: 62px; border-radius: 6px; border: 1px solid var(--line2); background: #0e1013; overflow: hidden; }
.process__viz--scope .doc span { display: block; height: 4px; margin: 9px 9px 0; border-radius: 2px; background: rgba(255,255,255,0.14); }
.process__viz--scope .scan { position: absolute; left: 0; top: 8px; width: 54px; height: 2px; background: var(--acc); box-shadow: 0 0 12px var(--acc); opacity: 0; }
.process__step.is-in .process__viz--scope .scan { animation: scan 2.8s var(--ease) infinite; }
@keyframes scan { 0% { transform: translateY(2px); opacity: 0; } 12% { opacity: 1; } 50% { transform: translateY(56px); opacity: 1; } 88% { opacity: 0; } 100% { transform: translateY(2px); opacity: 0; } }
.process__viz--design .frame { position: absolute; width: 54px; height: 42px; border-radius: 6px; border: 1px solid var(--line2); }
.process__viz--design .frame.b { left: 16px; top: 22px; background: #0e1013; }
.process__viz--design .frame.a { left: 0; top: 8px; background: #12151a; }
.process__viz--design .node { position: absolute; left: 9px; top: 18px; width: 11px; height: 11px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 12px var(--acc); z-index: 2; }
.process__step.is-in .process__viz--design .node { animation: node-move 3.2s var(--ease) infinite; }
@keyframes node-move { 0% { transform: translate(0,0); } 50% { transform: translate(38px,22px); } 100% { transform: translate(0,0); } }
.process__viz--build i { width: 10px; height: 14px; border-radius: 3px 3px 0 0; background: var(--acc); opacity: 0.4; }
.process__step.is-in .process__viz--build i { animation: grow 1.9s var(--ease) infinite; }
.process__step.is-in .process__viz--build i:nth-child(2) { animation-delay: 0.16s; }
.process__step.is-in .process__viz--build i:nth-child(3) { animation-delay: 0.32s; }
.process__step.is-in .process__viz--build i:nth-child(4) { animation-delay: 0.48s; }
.process__step.is-in .process__viz--build i:nth-child(5) { animation-delay: 0.64s; }
@keyframes grow { 0% { height: 14px; opacity: 0.4; } 50% { height: 62px; opacity: 1; } 100% { height: 14px; opacity: 0.4; } }
.process__viz--ship .pad { position: absolute; left: 4px; bottom: 4px; width: 40px; height: 40px; border-radius: 10px; background: var(--acc); box-shadow: 0 0 22px rgba(204,255,0,0.4); }
.process__viz--ship .arrow { position: absolute; left: 16px; bottom: 14px; width: 16px; height: 16px; border-top: 2.5px solid var(--acc); border-right: 2.5px solid var(--acc); transform: rotate(45deg); opacity: 0; }
.process__step.is-in .process__viz--ship .arrow { animation: launch 2.2s var(--ease) infinite; }
.process__step.is-in .process__viz--ship .arrow--2 { animation-delay: 1.1s; }
@keyframes launch { 0% { transform: translate(0,0) rotate(45deg); opacity: 0; } 18% { opacity: 1; } 78% { transform: translate(30px,-40px) rotate(45deg); opacity: 0; } 100% { transform: translate(30px,-40px) rotate(45deg); opacity: 0; } }

/* ---- Service showcase ---- */
.showcase { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; }
.showcase__list { display: flex; flex-direction: column; }
.svc { appearance: none; -webkit-appearance: none; background: none; border: 0; border-top: 1px solid var(--line2); text-align: left; cursor: pointer; color: inherit; font-family: var(--sans); display: grid; grid-template-columns: 52px 1fr; gap: 6px; padding: 22px 0; transition: opacity 0.35s; }
.showcase__list .svc:last-child { border-bottom: 1px solid var(--line2); }
.svc__num { font-family: var(--mono); font-size: 0.85rem; color: var(--faint); padding-top: 7px; transition: color 0.3s; }
.svc__title { display: block; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; transition: color 0.3s; }
.svc__desc { display: block; color: var(--dim2); font-size: 0.96rem; line-height: 1.55; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.55s var(--ease), opacity 0.4s, margin 0.4s; }
.svc:not(.is-active) { opacity: 0.45; }
.svc:not(.is-active):hover { opacity: 0.8; }
.svc:hover .svc__title { color: var(--ink); }
.svc.is-active { opacity: 1; }
.svc.is-active .svc__num { color: var(--acc); }
.svc.is-active .svc__title { color: var(--acc); }
.svc.is-active .svc__desc { max-height: 130px; opacity: 1; margin-top: 12px; }

.showcase__stage { position: relative; aspect-ratio: 4 / 3; border: 1px solid var(--line2); border-radius: 20px; overflow: hidden; background: radial-gradient(120% 120% at 50% 0%, #101215, #0a0b0d 70%); box-shadow: 0 50px 100px -50px rgba(0,0,0,0.9); }
.showcase__stage::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 30px 30px; pointer-events: none; }
.stage__tag { position: absolute; top: 16px; left: 18px; z-index: 6; font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--acc); display: inline-flex; align-items: center; gap: 8px; }
.stage__tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--acc); animation: nz-blink 1.6s ease-in-out infinite; }
.demo { position: absolute; inset: 0; display: none; align-items: center; justify-content: center; padding: 46px 40px 40px; }
.demo.is-active { display: flex; }

@keyframes fade-in { to { opacity: 1; } }
@keyframes fade-out { to { opacity: 0; } }

/* 0 · Custom Webflow — visual builder */
.wb { width: 100%; max-width: 384px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line2); background: #0d0f12; box-shadow: 0 22px 55px -22px rgba(0,0,0,0.85); position: relative; }
.wb__top { display: flex; align-items: center; gap: 8px; padding: 8px 12px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--line); }
.wb__dots { display: flex; gap: 5px; }
.wb__dots i { width: 8px; height: 8px; border-radius: 50%; background: #2a2f33; }
.wb__mode { font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.1em; color: var(--dim2); text-transform: uppercase; margin-left: 4px; }
.wb__pub { margin-left: auto; font-family: var(--mono); font-size: 0.58rem; color: var(--bg); background: var(--acc); border-radius: 5px; padding: 3px 9px; letter-spacing: 0.04em; }
.wb__work { display: flex; min-height: 196px; }
.wb__rail { width: 42px; border-right: 1px solid var(--line); padding: 12px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; background: rgba(255,255,255,0.012); }
.wb__rail span { width: 16px; height: 16px; border-radius: 4px; background: rgba(255,255,255,0.10); }
.wb__rail span.on { background: var(--acc); }
.demo--web.is-active .wb__rail span.on { animation: rail-blink 2.8s ease-in-out infinite; }
@keyframes rail-blink { 0%,100% { box-shadow: 0 0 0 rgba(204,255,0,0); } 50% { box-shadow: 0 0 12px rgba(204,255,0,0.65); } }
.wb__canvas { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; position: relative; }
.wf { border-radius: 5px; background: rgba(255,255,255,0.06); opacity: 0; transform: translateY(10px); position: relative; overflow: hidden; }
.wf--nav { height: 20px; display: flex; align-items: center; justify-content: space-between; padding: 0 8px; }
.wf--nav em { width: 26px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.28); }
.wf--nav b { width: 46px; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.14); }
.wf--hero { height: 56px; display: flex; flex-direction: column; justify-content: center; gap: 7px; padding: 0 11px; background: linear-gradient(120deg, rgba(204,255,0,0.16), rgba(255,255,255,0.04)); }
.wf--hero em { width: 62%; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.55); }
.wf--hero span { width: 40%; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.28); }
.wf--hero::after { content: ''; position: absolute; inset: 0; border: 1.5px solid var(--acc); border-radius: 5px; opacity: 0; }
.demo--web.is-active .wf--hero::after { animation: wf-select 3.6s var(--ease) 1.5s infinite; }
@keyframes wf-select { 0%,100% { opacity: 0; } 18%,58% { opacity: 1; } }
.wf-row { display: flex; gap: 8px; }
.wf--card { flex: 1; height: 40px; }
.wf--foot { height: 16px; }
.demo--web.is-active .wf { animation: wf-in 0.5s var(--ease) forwards; }
.demo--web.is-active .wf--nav { animation-delay: 0.15s; }
.demo--web.is-active .wf--hero { animation-delay: 0.35s; }
.demo--web.is-active .wf-row .wf--card:nth-child(1) { animation-delay: 0.68s; }
.demo--web.is-active .wf-row .wf--card:nth-child(2) { animation-delay: 0.80s; }
.demo--web.is-active .wf-row .wf--card:nth-child(3) { animation-delay: 0.92s; }
.demo--web.is-active .wf--foot { animation-delay: 1.14s; }
@keyframes wf-in { to { opacity: 1; transform: none; } }
.wb-cursor { position: absolute; right: 46px; bottom: 46px; width: 12px; height: 12px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.16); opacity: 0; z-index: 6; }
.wb-cursor__tip { position: absolute; left: 15px; top: 9px; white-space: nowrap; font-family: var(--mono); font-size: 0.55rem; color: var(--bg); background: var(--acc); border-radius: 4px; padding: 2px 6px; }
.demo--web.is-active .wb-cursor { animation: wb-cursor 3.6s var(--ease) infinite; }
@keyframes wb-cursor { 0% { opacity: 0; transform: translate(30px,24px); } 12% { opacity: 1; } 46% { transform: translate(-44px,-34px); } 60% { transform: translate(-44px,-34px) scale(0.82); } 64% { transform: translate(-44px,-34px) scale(1); } 86% { opacity: 1; } 100% { opacity: 0; transform: translate(-44px,-34px); } }

/* 1 · Web apps & API integrations */
.api { position: relative; width: 100%; max-width: 360px; aspect-ratio: 3 / 2; }
.api__wires { position: absolute; inset: 0; width: 100%; height: 100%; }
.api__wires .wire { stroke: rgba(204,255,0,0.32); stroke-width: 1.4; stroke-dasharray: 4 6; }
.demo--api.is-active .wire { animation: wire-flow 1.1s linear infinite; }
@keyframes wire-flow { to { stroke-dashoffset: -20; } }
.api__core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 76px; height: 76px; border-radius: 16px; background: var(--acc); color: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; z-index: 3; }
.api__core b { font-family: var(--mono); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.06em; }
.api__core em { font-family: var(--mono); font-style: normal; font-size: 0.5rem; opacity: 0.72; letter-spacing: 0.04em; }
.demo--api.is-active .api__core { animation: core-beat 2.2s ease-in-out infinite; }
@keyframes core-beat { 0%,100% { box-shadow: 0 0 30px rgba(204,255,0,0.35); } 50% { box-shadow: 0 0 48px rgba(204,255,0,0.62); } }
.api__node { position: absolute; transform: translate(-50%,-50%); padding: 6px 11px; border-radius: 10px; border: 1px solid var(--line2); background: #0e1013; font-family: var(--mono); font-size: 0.66rem; color: var(--ink); white-space: nowrap; display: flex; align-items: center; gap: 7px; z-index: 2; }
.api__node i { font-style: normal; font-size: 0.5rem; padding: 1px 5px; border-radius: 4px; background: rgba(204,255,0,0.16); color: var(--acc); letter-spacing: 0.04em; }
.api__node.n1 { left: 18%; top: 20%; }
.api__node.n2 { left: 82%; top: 20%; }
.api__node.n3 { left: 18%; top: 80%; }
.api__node.n4 { left: 82%; top: 80%; }
.demo--api.is-active .api__node { animation: node-glow 2.2s ease-in-out infinite; }
.demo--api.is-active .api__node.n2 { animation-delay: 0.55s; }
.demo--api.is-active .api__node.n3 { animation-delay: 1.1s; }
.demo--api.is-active .api__node.n4 { animation-delay: 1.65s; }
@keyframes node-glow { 0%,100% { border-color: var(--line2); } 42% { border-color: var(--acc); box-shadow: 0 0 16px rgba(204,255,0,0.26); } }
.api__pulse { position: absolute; width: 8px; height: 8px; margin: -4px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 10px var(--acc); opacity: 0; z-index: 2; }
.demo--api.is-active .api__pulse.p1 { animation: fp1 2.2s ease-in-out infinite; }
.demo--api.is-active .api__pulse.p2 { animation: fp2 2.2s ease-in-out 0.55s infinite; }
.demo--api.is-active .api__pulse.p3 { animation: fp3 2.2s ease-in-out 1.1s infinite; }
.demo--api.is-active .api__pulse.p4 { animation: fp4 2.2s ease-in-out 1.65s infinite; }
@keyframes fp1 { 0% { left:50%; top:50%; opacity:0; } 10% { opacity:1; } 46% { left:18%; top:20%; opacity:1; } 60% { opacity:0; } 100% { left:18%; top:20%; opacity:0; } }
@keyframes fp2 { 0% { left:50%; top:50%; opacity:0; } 10% { opacity:1; } 46% { left:82%; top:20%; opacity:1; } 60% { opacity:0; } 100% { left:82%; top:20%; opacity:0; } }
@keyframes fp3 { 0% { left:50%; top:50%; opacity:0; } 10% { opacity:1; } 46% { left:18%; top:80%; opacity:1; } 60% { opacity:0; } 100% { left:18%; top:80%; opacity:0; } }
@keyframes fp4 { 0% { left:50%; top:50%; opacity:0; } 10% { opacity:1; } 46% { left:82%; top:80%; opacity:1; } 60% { opacity:0; } 100% { left:82%; top:80%; opacity:0; } }

/* 2 · macOS apps — Compressor */
.win { width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid var(--line2); background: #0e1013; box-shadow: 0 20px 50px -20px rgba(0,0,0,0.8); position: relative; }
.win__bar { display: flex; align-items: center; gap: 7px; padding: 9px 12px; background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--line); }
.win__bar i { width: 9px; height: 9px; border-radius: 50%; background: #2a2f33; }
.win__bar i:nth-child(1) { background: #ff5f57; }
.win__bar i:nth-child(2) { background: #febc2e; }
.win__bar i:nth-child(3) { background: #28c840; }
.win__url { margin-left: 10px; font-family: var(--mono); font-size: 0.66rem; color: var(--dim2); }
.demo--mac .win { max-width: 348px; }
.mac__body { padding: 16px; display: flex; flex-direction: column; gap: 9px; }
.mac__file { display: flex; align-items: center; gap: 10px; opacity: 0; transform: translateX(-8px); }
.demo--mac.is-active .mac__file.f1 { animation: mac-row 0.45s var(--ease) 0.2s forwards; }
.demo--mac.is-active .mac__file.f2 { animation: mac-row 0.45s var(--ease) 0.35s forwards; }
.demo--mac.is-active .mac__file.f3 { animation: mac-row 0.45s var(--ease) 0.5s forwards; }
@keyframes mac-row { to { opacity: 1; transform: none; } }
.mac__doc { width: 22px; height: 28px; border-radius: 4px; background: rgba(255,255,255,0.08); border: 1px solid var(--line2); flex-shrink: 0; }
.mac__name { font-family: var(--mono); font-size: 0.72rem; color: var(--ink); }
.mac__chk { margin-left: auto; width: 17px; height: 17px; border-radius: 50%; border: 1.5px solid var(--line2); position: relative; flex-shrink: 0; }
.mac__chk::after { content: ''; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border-right: 2px solid var(--bg); border-bottom: 2px solid var(--bg); transform: rotate(45deg) scale(0); transform-origin: center; }
.demo--mac.is-active .mac__file.f1 .mac__chk { animation: chk-on 0.35s var(--ease) 1.0s forwards; }
.demo--mac.is-active .mac__file.f2 .mac__chk { animation: chk-on 0.35s var(--ease) 1.35s forwards; }
.demo--mac.is-active .mac__file.f3 .mac__chk { animation: chk-on 0.35s var(--ease) 1.7s forwards; }
@keyframes chk-on { to { background: var(--acc); border-color: var(--acc); } }
.demo--mac.is-active .mac__file.f1 .mac__chk::after { animation: chk-tick 0.3s var(--ease) 1.12s forwards; }
.demo--mac.is-active .mac__file.f2 .mac__chk::after { animation: chk-tick 0.3s var(--ease) 1.47s forwards; }
.demo--mac.is-active .mac__file.f3 .mac__chk::after { animation: chk-tick 0.3s var(--ease) 1.82s forwards; }
@keyframes chk-tick { to { transform: rotate(45deg) scale(1); } }
.mac__pct { font-family: var(--mono); font-size: 0.62rem; font-weight: 700; color: var(--bg); background: var(--acc); border-radius: 5px; padding: 2px 6px; opacity: 0; }
.demo--mac.is-active .mac__file.f1 .mac__pct { animation: fade-in 0.4s ease 1.12s forwards; }
.demo--mac.is-active .mac__file.f2 .mac__pct { animation: fade-in 0.4s ease 1.47s forwards; }
.demo--mac.is-active .mac__file.f3 .mac__pct { animation: fade-in 0.4s ease 1.82s forwards; }
.mac__barwrap { height: 8px; border-radius: 999px; background: #08090a; border: 1px solid var(--line); overflow: hidden; margin-top: 4px; }
.mac__bar { height: 100%; width: 6%; border-radius: 999px; background: linear-gradient(90deg, #5f8f13, var(--acc)); }
.demo--mac.is-active .mac__bar { animation: bar-fill 1.9s var(--ease) 0.4s forwards; }
@keyframes bar-fill { to { width: 96%; } }
.mac__stat { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.66rem; color: var(--dim2); }
.mac__label { color: var(--acc); }
.mac__to b { color: var(--ink); }

/* 3 · iOS apps */
.demo--ios { padding: 22px; }
.phone { height: min(300px, 100%); width: auto; aspect-ratio: 174 / 352; border-radius: 28px; border: 1.5px solid var(--line2); background: #0e1013; padding: 8px; position: relative; box-shadow: 0 24px 60px -24px rgba(0,0,0,0.85); }
.phone__notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 56px; height: 14px; border-radius: 999px; background: #050506; z-index: 4; }
.phone__screen { height: 100%; border-radius: 21px; background: linear-gradient(180deg, #0c0e11, #0a0c0e); overflow: hidden; padding: 11px 10px 8px; display: flex; flex-direction: column; }
.ios__status { display: flex; justify-content: space-between; align-items: center; font-family: var(--mono); font-size: 0.56rem; color: var(--dim); padding: 3px 5px 8px; }
.ios__sig { display: flex; gap: 2px; align-items: flex-end; }
.ios__sig i { width: 3px; background: var(--dim); border-radius: 1px; }
.ios__sig i:nth-child(1) { height: 4px; }
.ios__sig i:nth-child(2) { height: 6px; }
.ios__sig i:nth-child(3) { height: 8px; }
.ios__sig i:nth-child(4) { height: 10px; }
.ios__title { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; color: var(--ink); padding: 0 5px 10px; letter-spacing: -0.02em; }
.ios__row { display: flex; align-items: center; gap: 9px; padding: 8px; border-radius: 10px; background: rgba(255,255,255,0.05); margin-bottom: 7px; opacity: 0; transform: translateX(16px); }
.ios__av { width: 24px; height: 24px; border-radius: 50%; background: linear-gradient(135deg, rgba(204,255,0,0.55), rgba(204,255,0,0.12)); flex-shrink: 0; }
.ios__lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ios__lines b { width: 72%; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.38); }
.ios__lines em { width: 46%; height: 5px; border-radius: 3px; background: rgba(255,255,255,0.16); }
.ios__tog { width: 26px; height: 15px; border-radius: 999px; background: rgba(255,255,255,0.12); position: relative; flex-shrink: 0; }
.ios__tog::after { content: ''; position: absolute; top: 2px; left: 2px; width: 11px; height: 11px; border-radius: 50%; background: #fff; }
.demo--ios.is-active .ios__row { animation: ios-in 0.5s var(--ease) forwards; }
.demo--ios.is-active .ios__row.r1 { animation-delay: 0.3s; }
.demo--ios.is-active .ios__row.r2 { animation-delay: 0.46s; }
.demo--ios.is-active .ios__row.r3 { animation-delay: 0.62s; }
@keyframes ios-in { to { opacity: 1; transform: none; } }
.demo--ios.is-active .ios__row.r1 .ios__tog { animation: tog-bg 0.4s var(--ease) 1.2s forwards; }
@keyframes tog-bg { to { background: var(--acc); } }
.demo--ios.is-active .ios__row.r1 .ios__tog::after { animation: tog-slide 0.4s var(--ease) 1.2s forwards; }
@keyframes tog-slide { to { left: 13px; } }
.ios__tabs { margin-top: auto; display: flex; justify-content: space-around; padding-top: 8px; border-top: 1px solid var(--line); }
.ios__tabs i { width: 16px; height: 16px; border-radius: 5px; background: rgba(255,255,255,0.14); }
.ios__tabs i.on { background: var(--acc); }

/* 4 · AI integrations & chatbots */
.chat { width: 100%; max-width: 324px; display: flex; flex-direction: column; gap: 9px; }
.chat__hd { display: flex; align-items: center; gap: 9px; padding-bottom: 7px; border-bottom: 1px solid var(--line); margin-bottom: 2px; }
.chat__ava { width: 22px; height: 22px; border-radius: 7px; background: var(--acc); flex-shrink: 0; }
.chat__who { font-family: var(--sans); font-size: 0.76rem; font-weight: 600; color: var(--ink); display: flex; flex-direction: column; line-height: 1.25; }
.chat__who em { font-family: var(--mono); font-style: normal; font-size: 0.54rem; color: var(--acc); }
.msg { max-width: 84%; padding: 10px 13px; border-radius: 14px; font-size: 0.82rem; line-height: 1.4; }
.msg--u { align-self: flex-end; background: var(--acc); color: var(--bg); border-bottom-right-radius: 4px; font-family: var(--mono); font-size: 0.7rem; opacity: 0; }
.demo--ai.is-active .msg--u { animation: fade-in 0.4s ease 0.25s forwards; }
.msg--typing { align-self: flex-start; background: #14171a; border: 1px solid var(--line2); border-bottom-left-radius: 4px; display: flex; gap: 5px; opacity: 0; }
.demo--ai.is-active .msg--typing { animation: fade-in 0.3s ease 0.85s forwards, fade-out 0.3s ease 1.75s forwards; }
.msg--typing .d { width: 6px; height: 6px; border-radius: 50%; background: var(--dim); }
.demo--ai.is-active .msg--typing .d { animation: dot 1.2s ease-in-out infinite; }
.demo--ai.is-active .msg--typing .d:nth-child(2) { animation-delay: 0.18s; }
.demo--ai.is-active .msg--typing .d:nth-child(3) { animation-delay: 0.36s; }
@keyframes dot { 0%,100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
.msg--b { align-self: flex-start; background: #14171a; border: 1px solid var(--line2); color: var(--ink); border-bottom-left-radius: 4px; opacity: 0; margin-top: -34px; display: flex; align-items: center; white-space: nowrap; overflow: hidden; }
.demo--ai.is-active .msg--b { animation: fade-in 0.25s ease 1.9s forwards; }
.msg__stream { display: inline-block; overflow: hidden; white-space: nowrap; width: 0; }
.demo--ai.is-active .msg__stream { animation: stream 1.5s steps(24) 2.05s forwards; }
@keyframes stream { to { width: 20ch; } }
.msg__caret { width: 2px; height: 15px; background: var(--acc); margin-left: 2px; flex-shrink: 0; opacity: 0; }
.demo--ai.is-active .msg__caret { animation: caret 0.8s steps(1) 2.05s infinite; }
@keyframes caret { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }

@media (max-width: 900px) {
  .showcase { grid-template-columns: 1fr; gap: 30px; }
  .showcase__stage { order: -1; }
}
@media (max-width: 560px) {
  .svc__title { font-size: 1.25rem; }
  .svc { grid-template-columns: 40px 1fr; }
}
.process__k { font-family: var(--mono); font-size: 0.82rem; letter-spacing: 0.1em; color: var(--faint); }
.process__step h3 { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; margin: 16px 0 12px; }
.process__step p { color: var(--dim2); font-size: 0.98rem; line-height: 1.62; }

.studio { position: relative; z-index: 1; background: #f2f0e9; color: #14140f; padding: 140px 34px; }
.studio__eyebrow { color: #8a8676; margin-bottom: 40px; }
.studio__manifesto { font-size: clamp(1.9rem, 4.6vw, 3.5rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.18; max-width: 26ch; }
.studio__manifesto .serif { color: inherit; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 90px; }
.principle__k { font-family: var(--mono); font-size: 0.8rem; color: #b5301f; margin-bottom: 14px; }
.principle h3 { font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; letter-spacing: -0.01em; }
.principle p { color: #55524a; font-size: 1rem; line-height: 1.6; }

.how { max-width: var(--wrap); margin-inline: auto; padding: 130px 34px; }
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.how__item { background: var(--panel); padding: 42px 34px; display: flex; flex-direction: column; gap: 14px; transition: background 0.25s; }
.how__item:hover { background: #0e0f12; }
.how__n { font-family: var(--mono); font-size: 0.9rem; letter-spacing: 0.1em; color: var(--acc); }
.how__item h3 { font-size: 1.34rem; font-weight: 600; letter-spacing: -0.01em; }
.how__item p { color: var(--dim2); font-size: 1rem; line-height: 1.62; }

.contact { position: relative; z-index: 1; padding: 150px 34px; text-align: center; overflow: hidden; }
.contact__glow { position: absolute; bottom: -160px; left: 50%; transform: translateX(-50%); width: 820px; height: 520px; background: radial-gradient(ellipse, rgba(204, 255, 0, 0.12), transparent 68%); filter: blur(60px); z-index: 0; pointer-events: none; }
.contact__inner { max-width: 1000px; margin-inline: auto; position: relative; z-index: 1; }
.contact__title { font-size: clamp(2.4rem, 7vw, 5.6rem); font-weight: 700; letter-spacing: -0.035em; line-height: 0.98; margin-top: 30px; }
.contact__title .serif { color: var(--acc); }
.contact__actions { margin-top: 50px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact__meta { margin-top: 30px; font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.05em; color: var(--faint); }

.footer { position: relative; z-index: 1; border-top: 1px solid var(--line); padding: 50px 34px; }
.footer__inner { max-width: var(--wrap); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__brand img { height: 56px; width: auto; }
.footer__nav { display: flex; gap: 26px; font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim2); }
.footer__nav a { transition: color 0.2s; }
.footer__nav a:hover { color: var(--acc); }
.footer__copy { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--faint); width: 100%; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { margin-left: auto; }
  .telemetry { display: none; }
  .row { grid-template-columns: 60px 1fr; }
  .row__arrow { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: 1fr; gap: 34px; }
  .how__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr 1fr; }
  .footer__copy { order: 3; }
}
@media (max-width: 560px) {
  .section, .flagship, .studio, .contact, .how, .process { padding-left: 22px; padding-right: 22px; }
  .hero { padding: 130px 22px 90px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .nav__inner { padding: 16px 22px; }
  .highlight { padding: 36px 26px; }
  .flagship__cta { width: 100%; }
  .link-pill { padding: 18px 24px; flex: 1 1 auto; justify-content: center; }
  .shot { overflow: visible; border: none; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7); }
  .shot img { border-radius: 16px; border: 1px solid var(--line2); display: block; }
  .shot figcaption { position: static; margin-top: 14px; left: auto; bottom: auto; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001s !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
