:root {
  --bg: #0b0d10;
  --bg-soft: #111419;
  --ink-bg: #15181d;
  --paper: #f1efe9;
  --paper-deep: #e8e5dd;
  --ink: #141517;
  --muted: #9da2aa;
  --paper-muted: #6e6c68;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(20, 21, 23, .14);
  --accent: #b7ff5a;
  --accent-blue: #b9d7ff;
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--bg);
  color: #fff;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 11px 15px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.noise {
  position: fixed;
  z-index: 100;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(183, 255, 90, .62);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(183, 255, 90, .11) 0, rgba(183, 255, 90, .035) 42%, transparent 70%);
  box-shadow:
    0 0 0 1px rgba(7, 9, 11, .28),
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 8px 26px rgba(183, 255, 90, .1);
  transform: translate(-50%, -50%);
  transition:
    width .22s cubic-bezier(.2, .8, .2, 1),
    height .22s cubic-bezier(.2, .8, .2, 1),
    border-color .2s ease,
    background .2s ease,
    box-shadow .2s ease,
    opacity .18s ease;
  will-change: transform, opacity;
}
.cursor-glow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b7ff5a;
  box-shadow: 0 0 8px rgba(183, 255, 90, .65);
  content: "";
  transform: translate(-50%, -50%);
}
.cursor-glow::after {
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: inherit;
  content: "";
}
.cursor-glow.is-interactive {
  width: 56px;
  height: 56px;
  border-color: rgba(183, 255, 90, .9);
  background: radial-gradient(circle, rgba(183, 255, 90, .16), rgba(183, 255, 90, .035) 48%, transparent 72%);
  box-shadow:
    0 0 0 1px rgba(7, 9, 11, .32),
    inset 0 0 0 1px rgba(255, 255, 255, .1),
    0 10px 34px rgba(183, 255, 90, .15);
}
.cursor-glow.is-pressed {
  width: 30px;
  height: 30px;
}

.container {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}
.section-dark { background: var(--bg); color: #fff; }
.section-light { background: var(--paper); color: var(--ink); }
.section-ink { background: var(--ink-bg); color: #fff; }
.section-index,
.eyebrow,
.project-type {
  margin: 0;
  color: #76736e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.light-index { color: #737a83; }

.site-header {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 18px;
  background: rgba(15, 17, 20, .76);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: transform .35s ease, background .35s ease;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 650; letter-spacing: -.02em; }
.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: var(--bg);
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
}
.brand-copy { font-size: 14px; }
.nav { display: flex; align-items: center; gap: 23px; color: #c7cbd0; font-size: 12px; }
.nav a, .footer-links a, .hero-links a { transition: color .2s ease; }
.nav a:hover, .footer-links a:hover, .hero-links a:hover { color: #fff; }
.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  color: #fff !important;
}
.menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 19px;
  height: 1px;
  background: #fff;
  transition: transform .25s ease;
}
.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 24px; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  gap: 24px;
  padding: 118px 28px 40px;
  background: rgba(11, 13, 16, .98);
  font: 700 34px/1.08 Manrope, sans-serif;
  opacity: 0;
  transform: translateY(-12px);
  transition: visibility .25s, opacity .25s ease, transform .25s ease;
}
.mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.mobile-menu a:last-child { margin-top: 16px; color: var(--accent); }

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 90px;
}
.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg), transparent);
  content: "";
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .72fr);
  gap: clamp(45px, 7vw, 96px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 3; padding-top: 24px; }
.eyebrow { color: #a8adb5; }
.eyebrow span { padding: 0 4px; color: var(--accent); }
.hero-title {
  max-width: 850px;
  margin: 23px 0 28px;
  font: 700 clamp(52px, 6.25vw, 91px)/.96 Manrope, sans-serif;
  letter-spacing: -.064em;
}
.title-line { display: block; overflow: hidden; padding: 0 .05em .08em 0; }
.title-line > span { display: block; }
.accent-line { color: var(--accent); }
.hero-lead {
  max-width: 690px;
  margin: 0;
  color: #a9afb7;
  font-size: 16px;
  line-height: 1.76;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #101215; }
.button-primary:hover { background: #c8ff83; }
.button-ghost { border-color: rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .045); color: #fff; }
.button-ghost:hover { border-color: rgba(255, 255, 255, .26); background: rgba(255, 255, 255, .08); }
.button-dark { background: var(--ink); color: #fff; }
.hero-credibility {
  display: grid;
  grid-template-columns: 1.2fr .7fr 1fr;
  max-width: 690px;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-credibility > div {
  display: flex;
  min-height: 84px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 20px;
  border-right: 1px solid var(--line);
}
.hero-credibility > div:first-child { padding-left: 0; }
.hero-credibility > div:last-child { border: 0; }
.hero-credibility strong { color: #edf0f2; font: 600 14px/1.3 Manrope, sans-serif; }
.hero-credibility .experience-mark { flex-direction: row; align-items: center; justify-content: flex-start; gap: 12px; }
.experience-mark strong { color: var(--accent); font: 700 38px/.9 Manrope, sans-serif; letter-spacing: -.05em; }
.experience-mark span { color: #9299a2; font-size: 10px; line-height: 1.4; text-transform: uppercase; }
.meta-label { margin-bottom: 7px; color: #6f7680; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.hero-links { display: flex; gap: 18px; align-items: center; margin-top: 17px; color: #808790; font-size: 10px; }
.hero-links a { color: #c9cdd2; font-weight: 600; }
.hero-links > span { margin-left: auto; }

.portrait-stage { position: relative; z-index: 2; min-height: 665px; perspective: 1100px; }
.portrait-frame {
  position: absolute;
  z-index: 2;
  inset: 4% 8% 3% 7%;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 150px 22px 150px 22px;
  background: #d7d5ce;
  box-shadow: 0 45px 100px rgba(0, 0, 0, .38);
  transform: none;
  transform-origin: center;
}
.portrait-frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 12, 15, .78) 100%);
  content: "";
  pointer-events: none;
}
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; filter: saturate(.82) contrast(1.03); }
.portrait-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .76);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.portrait-frame figcaption i { flex: 1; height: 1px; margin: 0 7px; background: rgba(255, 255, 255, .24); }
.portrait-card {
  position: absolute;
  z-index: 4;
  max-width: 195px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(22, 25, 30, .9);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .3);
  color: #c8ccd2;
  font-size: 10px;
  line-height: 1.45;
  backdrop-filter: blur(12px);
}
.card-availability { top: 12%; left: -2%; }
.card-availability span { display: inline-block; width: 6px; height: 6px; margin-right: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px rgba(183, 255, 90, .08); }
.card-role { right: -3%; bottom: 10%; }
.portrait-orbit {
  position: absolute;
  z-index: 1;
  inset: -1% 0 0 -2%;
  border: 1px solid rgba(183, 255, 90, .14);
  border-radius: 50%;
  transform: rotate(-18deg) scale(.92);
}
.hero-orbit { position: absolute; border: 1px solid rgba(255, 255, 255, .045); border-radius: 50%; pointer-events: none; }
.orbit-a { top: -240px; right: -280px; width: 760px; height: 760px; }
.orbit-b { top: 30px; right: -80px; width: 480px; height: 480px; }
.hero-scroll-hint {
  position: absolute;
  z-index: 3;
  bottom: 23px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #626970;
  font-size: 9px;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.hero-scroll-hint i { position: relative; width: 32px; height: 1px; overflow: hidden; background: #626970; }
.hero-scroll-hint i::after { position: absolute; inset: 0; background: #d3d6db; animation: scan 1.8s infinite ease-in-out; content: ""; }
@keyframes scan { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.problems { overflow: hidden; padding: 155px 0 145px; }
.problems-layout { display: grid; grid-template-columns: .77fr 1.23fr; gap: clamp(60px, 9vw, 130px); }
.problems-intro { position: sticky; top: 135px; align-self: start; }
.problems-intro h2 {
  margin: 27px 0 23px;
  font: 650 clamp(46px, 5.1vw, 72px)/1.02 Manrope, sans-serif;
  letter-spacing: -.055em;
}
.problems-intro > p { max-width: 460px; margin: 0; color: var(--paper-muted); font-size: 14px; line-height: 1.75; }
.audience-note { display: grid; grid-template-columns: 50px 1fr; gap: 16px; margin-top: 50px; padding-top: 20px; border-top: 1px solid var(--line-dark); }
.audience-note span { color: #99958e; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.audience-note p { margin: 0; color: #54534f; font-size: 12px; line-height: 1.6; }
.problem-stream { border-top: 1px solid var(--line-dark); }
.problem-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 20px;
  min-height: 215px;
  align-content: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
}
.problem-line > span { grid-row: 1 / 3; padding-top: 7px; color: #9c9891; font-size: 10px; }
.problem-line h3 { margin: 0; font: 600 clamp(24px, 2.4vw, 33px)/1.2 Manrope, sans-serif; letter-spacing: -.035em; }
.problem-line p { max-width: 610px; margin: 0; color: var(--paper-muted); font-size: 12px; line-height: 1.68; }

.services { padding: 145px 0 135px; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: end; }
.services-heading h2 {
  max-width: 830px;
  margin: 25px 0 0;
  font: 650 clamp(48px, 5.8vw, 78px)/1 Manrope, sans-serif;
  letter-spacing: -.058em;
}
.services-heading > p { max-width: 450px; margin: 0 0 8px; color: #949ba4; font-size: 13px; line-height: 1.72; }
.service-list { margin-top: 85px; border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 52px 1.1fr .9fr;
  gap: 30px;
  min-height: 175px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, padding .3s ease;
}
.service-row:hover { padding-right: 18px; padding-left: 18px; background: rgba(255, 255, 255, .025); }
.service-no { color: #656c75; font-size: 10px; }
.service-row h3 { margin: 0 0 10px; font: 600 clamp(24px, 2.5vw, 32px)/1.15 Manrope, sans-serif; letter-spacing: -.035em; }
.service-row div p { max-width: 520px; margin: 0; color: #a5abb3; font-size: 12px; line-height: 1.6; }
.service-detail { max-width: 470px; margin: 0; color: #7f8690; font-size: 11px; line-height: 1.7; }

.work-intro { padding: 140px 0 105px; }
.work-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.work-intro h2 {
  max-width: 820px;
  margin: 29px 0 0;
  font: 650 clamp(54px, 6.5vw, 90px)/.96 Manrope, sans-serif;
  letter-spacing: -.062em;
}
.work-intro-grid > p { max-width: 480px; margin: 0 0 8px; color: #979da5; font-size: 14px; line-height: 1.78; }

.flagship { padding: 110px 0 145px; overflow: hidden; }
.flagship-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 75px; align-items: center; min-height: 830px; }
.confidential-label { margin: 0; color: #aeb4bc; font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.confidential-label span { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: var(--accent); }
.flagship-copy h2 {
  margin: 22px 0 24px;
  font: 700 clamp(52px, 5.5vw, 78px)/.98 Manrope, sans-serif;
  letter-spacing: -.06em;
}
.flagship-lead { max-width: 580px; margin: 0; color: #a8aeb6; font-size: 15px; line-height: 1.72; }
.ownership-note { margin: 30px 0 35px; padding: 20px 21px; border-left: 2px solid var(--accent); background: rgba(183, 255, 90, .035); }
.ownership-note strong { color: #e8ebed; font-size: 12px; }
.ownership-note p { margin: 8px 0 0; color: #878e97; font-size: 11px; line-height: 1.6; }
.case-facts { margin: 0 0 35px; border-top: 1px solid var(--line); }
.case-facts > div { display: grid; grid-template-columns: 88px 1fr; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.case-facts span { color: #6e757e; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.case-facts p { margin: 0; color: #aeb4bb; font-size: 11px; line-height: 1.6; }
.text-link { padding-bottom: 6px; border-bottom: 1px solid rgba(255, 255, 255, .26); font-size: 11px; font-weight: 700; }

.system-visual { position: relative; min-height: 700px; }
.system-visual::before {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 255, 90, .055), transparent 62%);
  content: "";
}
.system-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; transform: translate(-50%, -50%); }
.system-orbit::before, .system-orbit::after { position: absolute; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); content: ""; box-shadow: 0 0 18px rgba(183, 255, 90, .65); }
.orbit-one { width: 520px; height: 520px; }
.orbit-one::before { top: 46px; left: 78px; }
.orbit-one::after { right: 51px; bottom: 105px; }
.orbit-two { width: 650px; height: 650px; border-color: rgba(255, 255, 255, .045); }
.orbit-two::before { top: 50%; left: -2px; }
.orbit-two::after { top: 15%; right: 105px; background: var(--accent-blue); }
.system-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 260px;
  height: 260px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  border: 1px solid rgba(183, 255, 90, .25);
  border-radius: 50%;
  background: #191d22;
  box-shadow: 0 35px 90px rgba(0, 0, 0, .35), inset 0 0 60px rgba(183, 255, 90, .025);
  text-align: center;
  transform: translate(-50%, -50%);
}
.core-kicker { margin-bottom: 15px; color: var(--accent); font-size: 8px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.system-core strong { font: 600 23px/1.16 Manrope, sans-serif; letter-spacing: -.035em; }
.system-core small { margin-top: 14px; color: #757d86; font-size: 8px; }
.system-node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 190px;
  min-height: 105px;
  align-content: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  background: rgba(20, 23, 28, .9);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(10px);
}
.system-node span { margin-bottom: 9px; color: #68717a; font-size: 8px; }
.system-node strong { font: 600 15px Manrope, sans-serif; }
.system-node small { margin-top: 7px; color: #777f89; font-size: 8px; }
.node-import { top: 12%; left: 0; }
.node-analysis { top: 10%; right: 0; }
.node-documents { bottom: 10%; left: 0; }
.node-access { right: 0; bottom: 10%; }
.system-paths { position: absolute; z-index: 1; inset: 4% 0; width: 100%; height: 92%; overflow: visible; }
.system-paths path { fill: none; stroke: rgba(183, 255, 90, .16); stroke-width: 1.2; stroke-dasharray: 5 8; }
.pulse { position: absolute; z-index: 2; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 8px rgba(183, 255, 90, .06); }
.pulse-a { top: 30%; left: 31%; }
.pulse-b { right: 30%; bottom: 30%; background: var(--accent-blue); }

.production-story {
  display: grid;
  grid-template-columns: 1.05fr .95fr .95fr;
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.story-heading, .production-story article { min-height: 300px; padding: 35px 32px; border-right: 1px solid var(--line); }
.story-heading { padding-left: 0; }
.production-story article:last-child { border: 0; padding-right: 0; }
.story-heading h3 { max-width: 380px; margin: 67px 0 0; font: 600 29px/1.14 Manrope, sans-serif; letter-spacing: -.04em; }
.production-story article > span { color: #656d76; font-size: 9px; }
.production-story article h4 { margin: 66px 0 14px; font: 600 21px/1.2 Manrope, sans-serif; letter-spacing: -.03em; }
.production-story article p { margin: 0; color: #8e959e; font-size: 11px; line-height: 1.7; }

.process { padding: 155px 0 145px; }
.process-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 110px; }
.process-sticky { position: sticky; top: 135px; align-self: start; }
.process-sticky h2 {
  margin: 27px 0 22px;
  font: 650 clamp(46px, 5.3vw, 72px)/1 Manrope, sans-serif;
  letter-spacing: -.057em;
}
.process-sticky > p { max-width: 450px; margin: 0; color: var(--paper-muted); font-size: 13px; line-height: 1.75; }
.process-progress { width: 100%; height: 2px; margin-top: 38px; overflow: hidden; background: rgba(20, 21, 23, .1); }
.process-progress i { display: block; width: 100%; height: 100%; background: var(--ink); transform: scaleX(0); transform-origin: left; }
.process-steps { margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  min-height: 205px;
  align-content: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-dark);
  opacity: 1;
  transition: opacity .3s ease;
}
.js .process-step { opacity: .7; }
.process-step.is-active { opacity: 1; }
.process-step > span { padding-top: 6px; color: #96928c; font-size: 9px; }
.process-step h3 { margin: 0 0 13px; font: 600 clamp(27px, 2.8vw, 38px)/1.1 Manrope, sans-serif; letter-spacing: -.04em; }
.process-step p { max-width: 590px; margin: 0; color: var(--paper-muted); font-size: 12px; line-height: 1.7; }

.automation { padding: 150px 0 140px; overflow: hidden; }
.automation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.automation-copy h2 {
  max-width: 600px;
  margin: 27px 0 24px;
  font: 650 clamp(49px, 5.5vw, 74px)/1 Manrope, sans-serif;
  letter-spacing: -.058em;
}
.automation-copy > p { max-width: 480px; margin: 0; color: #959ca5; font-size: 13px; line-height: 1.75; }
.automation-examples { margin: 38px 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.automation-examples li { position: relative; padding: 15px 0 15px 22px; border-bottom: 1px solid var(--line); color: #b6bbc2; font-size: 11px; line-height: 1.5; }
.automation-examples li::before { position: absolute; top: 21px; left: 2px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); content: ""; }
.automation-visual { display: grid; grid-template-columns: 1fr 46px 1fr 46px 1fr; align-items: center; min-height: 500px; }
.flow-stage {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #13161b;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .22);
}
.flow-stage > span { color: #6f7780; font-size: 8px; font-weight: 700; letter-spacing: .12em; }
.flow-stage > strong { display: block; margin-top: 28px; font: 600 17px/1.35 Manrope, sans-serif; }
.flow-arrow { height: 1px; overflow: hidden; background: rgba(255, 255, 255, .13); }
.flow-arrow i { display: block; width: 45%; height: 100%; background: var(--accent); transform: translateX(-100%); }
.file-stack { position: absolute; right: 20px; bottom: 28px; left: 20px; height: 145px; }
.file-stack i { position: absolute; right: 0; bottom: 0; left: 0; height: 112px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 10px; background: #1d2127; }
.file-stack i:nth-child(1) { transform: translateY(-28px) rotate(-4deg); opacity: .55; }
.file-stack i:nth-child(2) { transform: translateY(-14px) rotate(3deg); opacity: .72; }
.file-stack i:nth-child(3)::before, .file-stack i:nth-child(3)::after { position: absolute; right: 15px; left: 15px; height: 1px; background: rgba(255, 255, 255, .1); content: ""; }
.file-stack i:nth-child(3)::before { top: 34px; }
.file-stack i:nth-child(3)::after { top: 67px; }
.rule-lines { position: absolute; right: 20px; bottom: 37px; left: 20px; display: grid; gap: 13px; }
.rule-lines i { position: relative; display: block; height: 36px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 8px; background: #1c2026; }
.rule-lines i::before { position: absolute; top: 50%; left: 12px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-blue); content: ""; transform: translateY(-50%); }
.rule-lines i::after { position: absolute; top: 50%; right: 14px; left: 31px; height: 1px; background: rgba(255, 255, 255, .12); content: ""; }
.flow-automated { border-color: rgba(183, 255, 90, .2); background: linear-gradient(145deg, #14181b, #192018); }
.status-ring { position: absolute; right: 50%; bottom: 45px; width: 130px; height: 130px; border: 1px solid rgba(183, 255, 90, .22); border-radius: 50%; transform: translateX(50%); }
.status-ring::before, .status-ring::after { position: absolute; border: 1px solid rgba(183, 255, 90, .12); border-radius: 50%; content: ""; }
.status-ring::before { inset: 17px; }
.status-ring::after { inset: 36px; background: rgba(183, 255, 90, .04); }
.status-ring i { position: absolute; z-index: 2; top: 50%; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 24px rgba(183, 255, 90, .55); transform: translate(-50%, -50%); }

.invoice { overflow: hidden; padding: 145px 0; }
.invoice-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 90px; align-items: center; }
.invoice-visual { overflow: hidden; min-height: 455px; border: 1px solid rgba(20, 21, 23, .14); border-radius: 23px; background: #161a1f; box-shadow: 0 35px 80px rgba(20, 21, 23, .2); color: #fff; transform: rotate(-1.5deg); }
.invoice-topbar { display: flex; min-height: 54px; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid rgba(255, 255, 255, .08); color: #a8afb8; font-size: 10px; }
.invoice-topbar i { padding: 6px 9px; border-radius: 99px; background: rgba(183, 255, 90, .08); color: var(--accent); font-size: 8px; font-style: normal; }
.pipeline { display: grid; grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr; align-items: center; padding: 70px 24px 54px; }
.pipeline div { display: grid; min-height: 120px; place-content: center; padding: 12px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 13px; background: #1d2228; text-align: center; }
.pipeline span { font: 600 13px Manrope, sans-serif; }
.pipeline small { margin-top: 8px; color: #707985; font-size: 7px; }
.pipeline > i { height: 1px; background: rgba(183, 255, 90, .35); }
.invoice-details { display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 24px; border-top: 1px solid rgba(255, 255, 255, .09); }
.invoice-details div { display: grid; gap: 9px; padding: 19px 14px; border-right: 1px solid rgba(255, 255, 255, .09); }
.invoice-details div:last-child { border: 0; }
.invoice-details span { color: #68717b; font-size: 7px; letter-spacing: .1em; text-transform: uppercase; }
.invoice-details strong { font-size: 10px; }
.project-type { color: #77736e; }
.invoice-copy h2 { margin: 20px 0 24px; font: 700 clamp(55px, 6.4vw, 88px)/.94 Manrope, sans-serif; letter-spacing: -.065em; }
.invoice-copy > p:not(.project-type) { max-width: 520px; margin: 0 0 15px; color: var(--paper-muted); font-size: 13px; line-height: 1.72; }
.project-stack { max-width: 520px; margin: 27px 0; padding: 16px 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: #55534f; font-size: 10px; line-height: 1.6; }

.about { padding: 145px 0 155px; border-top: 1px solid var(--line-dark); }
.about-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 100px; }
.about h2 {
  max-width: 800px;
  margin: 28px 0 0;
  font: 650 clamp(48px, 5.9vw, 80px)/1 Manrope, sans-serif;
  letter-spacing: -.06em;
}
.about-copy { padding-top: 38px; }
.about-copy > p { margin: 0 0 21px; color: #565550; font-size: 14px; line-height: 1.78; }
.about-copy > p:first-child { color: var(--ink); font-size: 18px; line-height: 1.62; }
.about-capabilities { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.about-capabilities span { padding: 8px 10px; border: 1px solid var(--line-dark); border-radius: 99px; color: #696762; font-size: 9px; }

.contact { position: relative; display: flex; min-height: 100svh; align-items: center; overflow: hidden; padding: 130px 0 45px; }
.contact-glow { position: absolute; top: 50%; left: 50%; width: 1100px; height: 1100px; border-radius: 50%; background: radial-gradient(circle, rgba(183, 255, 90, .08), transparent 63%); transform: translate(-50%, -50%); }
.contact-inner { text-align: center; }
.contact-inner .section-index { text-align: left; }
.contact-kicker { max-width: 680px; margin: 90px auto 24px; color: #878e97; font-size: 13px; line-height: 1.7; }
.contact h2 {
  max-width: 1150px;
  margin: 0 auto;
  color: var(--accent);
  font: 700 clamp(68px, 9.3vw, 128px)/.9 Manrope, sans-serif;
  letter-spacing: -.072em;
}
.contact-actions { justify-content: center; margin-top: 42px; }
.button-large { min-height: 58px; padding: 0 22px; }
.contact-email { display: inline-block; margin-top: 25px; color: #7f8790; font-size: 11px; border-bottom: 1px solid #454b52; }
.contact-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 30px;
  align-items: center;
  margin-top: 110px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #686f78;
  font-size: 9px;
  text-align: left;
}
.footer-links { display: flex; gap: 17px; }
.footer-links a { color: #9299a1; }

@media (max-width: 1120px) {
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero-grid { grid-template-columns: 1.1fr .75fr; gap: 35px; }
  .portrait-stage { min-height: 590px; }
  .system-node { width: 165px; }
  .automation-grid { grid-template-columns: 1fr; }
  .automation-copy { max-width: 720px; }
  .automation-visual { min-height: auto; }
}

@media (max-width: 920px) {
  .nav { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: auto; padding-top: 135px; }
  .hero-grid,
  .problems-layout,
  .section-heading,
  .work-intro-grid,
  .flagship-grid,
  .process-grid,
  .invoice-grid,
  .about-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 55px; }
  .hero-title { font-size: clamp(58px, 10.5vw, 86px); }
  .hero-lead { max-width: 760px; }
  .portrait-stage { width: min(570px, 90%); min-height: 680px; margin: 0 auto; }
  .problems-layout, .process-grid { gap: 65px; }
  .problems-intro, .process-sticky { position: relative; top: auto; max-width: 760px; }
  .problem-line { min-height: 190px; }
  .section-heading { align-items: start; }
  .services-heading > p { margin-top: 24px; }
  .service-row { grid-template-columns: 45px 1fr; }
  .service-detail { grid-column: 2; }
  .work-intro-grid { gap: 35px; }
  .flagship-grid { min-height: auto; }
  .flagship-copy { max-width: 720px; }
  .system-visual { width: min(700px, 100%); margin: 0 auto; }
  .production-story { grid-template-columns: 1fr 1fr; }
  .story-heading { grid-column: 1 / -1; min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .story-heading h3 { margin-top: 40px; }
  .invoice-grid { gap: 70px; }
  .invoice-visual { order: 2; }
  .invoice-copy { max-width: 690px; }
  .about-grid { gap: 40px; }
  .about-copy { max-width: 760px; padding-top: 0; }
  .contact-footer { grid-template-columns: 1fr auto; }
  .footer-links { grid-column: 1 / -1; grid-row: 1; }
}

@media (max-width: 680px) {
  .cursor-glow { display: none; }
  .container { width: min(var(--max), calc(100% - 30px)); }
  .site-header { height: 58px; }
  .brand-copy { display: none; }
  .hero { padding: 118px 0 82px; }
  .hero-title { margin-top: 19px; font-size: clamp(47px, 14vw, 68px); }
  .hero-lead { font-size: 14px; line-height: 1.7; }
  .hero-actions { align-items: stretch; }
  .hero-actions .button { flex: 1 1 190px; }
  .hero-credibility { grid-template-columns: 1fr 1fr; }
  .hero-credibility > div { min-height: 78px; padding: 10px 13px; }
  .hero-credibility > div:nth-child(2) { border-right: 0; }
  .hero-credibility > div:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); }
  .hero-links { flex-wrap: wrap; }
  .hero-links > span { width: 100%; margin-left: 0; }
  .portrait-stage { width: 100%; min-height: 520px; }
  .portrait-frame { inset: 2% 3% 3%; border-radius: 105px 18px 105px 18px; }
  .portrait-frame figcaption { right: 15px; bottom: 17px; left: 15px; font-size: 7px; }
  .card-availability { top: 6%; left: -1%; }
  .card-role { right: -1%; bottom: 8%; max-width: 165px; }
  .hero-scroll-hint { display: none; }
  .problems, .services, .process, .automation, .invoice, .about { padding: 100px 0; }
  .problems-intro h2,
  .services-heading h2,
  .process-sticky h2,
  .automation-copy h2,
  .about h2 { font-size: clamp(43px, 12.5vw, 61px); }
  .problem-line { grid-template-columns: 30px 1fr; min-height: 190px; }
  .problem-line h3 { font-size: 24px; }
  .service-list { margin-top: 55px; }
  .service-row { grid-template-columns: 28px 1fr; gap: 16px; min-height: 210px; }
  .service-row:hover { padding-right: 0; padding-left: 0; background: transparent; }
  .work-intro { padding: 105px 0 70px; }
  .work-intro h2 { font-size: clamp(48px, 13.5vw, 66px); }
  .flagship { padding: 75px 0 100px; }
  .flagship-grid { gap: 55px; }
  .flagship-copy h2 { font-size: clamp(46px, 13vw, 63px); }
  .case-facts > div { grid-template-columns: 72px 1fr; }
  .system-visual { min-height: 570px; }
  .system-core { width: 200px; height: 200px; padding: 20px; }
  .system-core strong { font-size: 18px; }
  .system-node { width: 145px; min-height: 92px; padding: 12px; }
  .system-node small { font-size: 7px; }
  .node-import, .node-documents { left: 0; }
  .node-analysis, .node-access { right: 0; }
  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { width: 530px; height: 530px; }
  .system-paths { display: none; }
  .production-story { grid-template-columns: 1fr; margin-top: 45px; }
  .story-heading { grid-column: auto; }
  .story-heading, .production-story article { min-height: 245px; padding: 29px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .production-story article:last-child { border-bottom: 0; }
  .story-heading h3, .production-story article h4 { margin-top: 45px; }
  .process-step { grid-template-columns: 37px 1fr; min-height: 190px; gap: 14px; }
  .automation-grid { gap: 60px; }
  .automation-visual { display: flex; flex-direction: column; }
  .flow-stage { width: 100%; min-height: 260px; }
  .flow-arrow { width: 1px; height: 42px; }
  .flow-arrow i { width: 100%; height: 45%; transform: translateY(-100%); }
  .file-stack { height: 100px; }
  .file-stack i { height: 80px; }
  .rule-lines { bottom: 25px; }
  .status-ring { bottom: 24px; width: 105px; height: 105px; }
  .invoice-grid { gap: 55px; }
  .invoice-copy h2 { font-size: clamp(55px, 16vw, 76px); }
  .invoice-visual { min-height: 540px; transform: none; }
  .pipeline { grid-template-columns: 1fr; gap: 0; padding: 35px 24px; }
  .pipeline div { min-height: 78px; }
  .pipeline > i { width: 1px; height: 18px; margin: 0 auto; }
  .invoice-details { margin-bottom: 25px; }
  .invoice-details div { padding: 15px 9px; }
  .about-copy > p:first-child { font-size: 16px; }
  .contact { min-height: auto; padding: 105px 0 35px; }
  .contact-kicker { margin-top: 65px; }
  .contact h2 { font-size: clamp(56px, 16.5vw, 85px); }
  .contact-actions .button { width: 100%; }
  .contact-footer { grid-template-columns: 1fr; gap: 20px; margin-top: 85px; }
  .footer-links { grid-column: auto; grid-row: auto; flex-wrap: wrap; }
}

@media (max-width: 410px) {
  .portrait-stage { min-height: 465px; }
  .portrait-card { font-size: 9px; }
  .card-role { bottom: 5%; }
  .system-visual { min-height: 520px; }
  .system-core { width: 165px; height: 165px; }
  .system-core strong { font-size: 15px; }
  .system-core small { display: none; }
  .system-node { width: 124px; min-height: 85px; }
  .system-node small { display: none; }
}

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
  .service-row:hover { padding-right: 0; padding-left: 0; background: transparent; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .cursor-glow { display: none; }
  .js .process-step { opacity: 1; }
}
