:root {
  --ink: #0a0b0d;
  --paper: #f1f2ec;
  --acid: #2f78ff;
  --mist: #a7aaa2;
  --line: rgba(241, 242, 236, 0.18);
  --mono: "DM Mono", monospace;
  --sans: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .05;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  left: -210px;
  top: -210px;
  border-radius: 50%;
  background: rgba(47,120,255,.12);
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--acid); outline-offset: 5px; }

.site-header {
  width: min(1440px, calc(100% - 64px));
  margin: 0 auto;
  height: 104px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand { display: inline-flex; align-items: center; gap: 12px; width: fit-content; }
.brand-mark, .footer-mark {
  font: 700 22px/1 var(--sans);
  letter-spacing: -2px;
}
.brand-mark span, .footer-mark span { color: var(--acid); }
.brand-text { font: 500 10px/1.05 var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--mist); }

nav { display: flex; align-items: center; gap: 34px; }
nav a { font: 500 13px/1 var(--mono); text-transform: uppercase; letter-spacing: .06em; color: var(--mist); transition: color .25s ease; }
nav a:hover { color: var(--acid); }

.lab-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 500 12px/1 var(--mono);
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid var(--line);
  padding: 11px 14px;
  border-radius: 999px;
}
.lab-dot { width: 7px; height: 7px; background: var(--acid); border-radius: 50%; box-shadow: 0 0 14px var(--acid); }

.hero {
  width: min(1440px, calc(100% - 64px));
  min-height: calc(100svh - 104px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 34px 0 30px;
}

.hero-meta { display: flex; justify-content: space-between; font: 400 11px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--mist); }
.hero-lockup { display: grid; grid-template-columns: 1fr 310px; grid-template-rows: auto 1fr; gap: 0 48px; align-items: end; margin: auto 0; }
.eyebrow { grid-column: 1 / -1; margin: 0 0 18px; font: 500 13px/1 var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--acid); }
.hero h1 { margin: 0; font-size: clamp(5.8rem, 12.5vw, 12rem); line-height: .77; letter-spacing: -.085em; font-weight: 800; text-transform: uppercase; }
.hero h1 span { color: transparent; -webkit-text-stroke: 1.5px var(--paper); }

.hero-aside { align-self: end; padding-bottom: 3px; }
.hero-aside p { margin: 42px 0 0; color: var(--mist); font-size: 15px; line-height: 1.65; max-width: 295px; }
.orbit { width: 132px; height: 132px; position: relative; display: grid; place-items: center; }
.orbit-ring { position: absolute; inset: 5px; border: 1px solid var(--line); border-radius: 50%; }
.orbit-ring::before { content: ""; position: absolute; inset: 16px; border: 1px dashed rgba(47,120,255,.45); border-radius: 50%; }
.orbit-core { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: var(--acid); color: var(--ink); font: 800 15px/1 var(--sans); }
.satellite { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--paper); }
.satellite-one { top: 3px; left: 60px; animation: pulse 2.8s infinite; }
.satellite-two { right: 13px; bottom: 20px; width: 6px; height: 6px; background: var(--acid); }

.hero-footer { display: grid; grid-template-columns: 1fr 310px; gap: 48px; align-items: end; border-top: 1px solid var(--line); padding-top: 24px; }
.primary-link { width: fit-content; display: inline-flex; align-items: center; gap: 30px; font: 600 15px/1 var(--mono); text-transform: uppercase; letter-spacing: .03em; }
.primary-link span { display: grid; place-items: center; width: 35px; height: 35px; color: var(--ink); background: var(--acid); border-radius: 50%; transition: transform .25s ease; }
.primary-link:hover span { transform: rotate(45deg); }
.hero-note { margin: 0; font-size: 12px; color: var(--mist); }
.hero-note strong { color: var(--paper); font-weight: 600; }

.signal-strip { overflow: hidden; background: var(--acid); color: var(--ink); transform: rotate(-1deg) scale(1.02); margin: 30px 0 100px; }
.marquee { padding: 17px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 27s linear infinite; will-change: transform; }
.marquee-group { display: flex; flex-shrink: 0; min-width: 100vw; justify-content: space-around; }
.marquee span { flex-shrink: 0; white-space: nowrap; font: 800 17px/1 var(--sans); letter-spacing: -.02em; padding: 0 21px; }
.marquee i { margin-left: 42px; font-style: normal; }

.section-shell { width: min(1280px, calc(100% - 96px)); margin: 0 auto; }
.section-index { font: 500 11px/1 var(--mono); color: var(--acid); letter-spacing: .1em; }
.about { padding: 80px 0 120px; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-top: 60px; }
.section-title { margin: 0; font-size: clamp(3.5rem, 6.2vw, 6.2rem); line-height: .95; letter-spacing: -.07em; }
.section-title em { color: var(--acid); font-style: normal; }
.about-copy { padding-top: 4px; max-width: 620px; }
.about-copy .lead { margin: 0 0 32px; font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.35; letter-spacing: -.035em; }
.about-copy > p:not(.lead) { color: var(--mist); font-size: 16px; line-height: 1.8; max-width: 570px; }
.role-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.role-grid > div { border-top: 1px solid var(--line); padding-top: 16px; }
.role-label { display: block; font: 500 10px/1 var(--mono); text-transform: uppercase; color: var(--acid); margin-bottom: 22px; }
.role-grid strong { display: block; font-size: 16px; margin-bottom: 5px; }
.role-grid small { color: var(--mist); font-size: 12px; }

.metrics { display: grid; grid-template-columns: 1fr 1fr 2fr 1fr; border: 1px solid var(--line); margin-bottom: 180px; }
.metric { min-height: 210px; padding: 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: background .3s ease, color .3s ease; }
.metric:last-child { border-right: 0; }
.metric:hover { background: var(--acid); color: var(--ink); }
.metric-number { font-size: clamp(3rem, 5.4vw, 5.4rem); font-weight: 700; letter-spacing: -.07em; line-height: 1; }
.metric-number span { color: var(--acid); }
.metric:hover .metric-number span { color: var(--ink); }
.metric p { margin: 0; max-width: 170px; font: 400 12px/1.4 var(--mono); text-transform: uppercase; letter-spacing: .04em; color: var(--mist); }
.metric:hover p { color: var(--ink); }

.work { padding-bottom: 180px; }
.section-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 80px; }
.section-heading h2 { margin: 0; width: 65%; font-size: clamp(3.2rem, 6.5vw, 6.8rem); line-height: .93; letter-spacing: -.07em; }
.project-list { border-top: 1px solid var(--line); }
.project { min-height: 160px; display: grid; grid-template-columns: 54px 1.2fr 1.1fr 1fr 42px; align-items: center; gap: 28px; border-bottom: 1px solid var(--line); position: relative; transition: padding .25s ease; }
.project::before { content: ""; position: absolute; inset: 0; background: var(--acid); transform: scaleY(0); transform-origin: bottom; transition: transform .28s ease; z-index: -1; }
.project:hover::before { transform: scaleY(1); }
.project:hover { color: var(--ink); padding: 0 18px; }
.project-no { font: 500 11px/1 var(--mono); color: var(--mist); }
.project:hover .project-no { color: var(--ink); }
.project-name h3 { margin: 0 0 3px; font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1; letter-spacing: -.055em; }
.project-name p { margin: 0; font: 400 11px/1 var(--mono); color: var(--mist); text-transform: uppercase; }
.project:hover .project-name p { color: var(--ink); }
.project-desc { max-width: 310px; color: var(--mist); font-size: 14px; }
.project:hover .project-desc { color: var(--ink); }
.project-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.project-tags span { border: 1px solid var(--line); border-radius: 99px; padding: 7px 10px; font: 400 10px/1 var(--mono); text-transform: uppercase; }
.project:hover .project-tags span { border-color: rgba(10,11,13,.3); }
.project-arrow { justify-self: end; font-size: 26px; transition: transform .25s ease; }
.project:hover .project-arrow:not(.muted) { transform: rotate(45deg); }
.project-arrow.muted { font-size: 9px; color: var(--acid); }

.method { padding: 120px 0 180px; border-top: 1px solid var(--line); }
.method-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; padding-top: 64px; }
.method-steps { border-top: 1px solid var(--line); }
.method-step { display: grid; grid-template-columns: 48px 1fr; gap: 26px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.method-step > span { font: 500 11px/1 var(--mono); color: var(--acid); margin-top: 7px; }
.method-step h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.03em; }
.method-step p { margin: 0; max-width: 430px; color: var(--mist); font-size: 14px; line-height: 1.65; }

.contact { background: var(--paper); color: var(--ink); padding: 46px 0 55px; }
.contact .section-index { color: var(--ink); opacity: .5; }
.contact-top { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(10,11,13,.22); padding-bottom: 32px; }
.contact-top p { margin: 0; font: 500 12px/1 var(--mono); text-transform: uppercase; }
.contact-main { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; padding-top: 70px; }
.contact h2 { margin: 0; font-size: clamp(5rem, 11.4vw, 11.5rem); line-height: .76; letter-spacing: -.09em; text-transform: uppercase; }
.contact h2 em { color: transparent; -webkit-text-stroke: 1.5px var(--ink); font-style: normal; }
.contact-actions { display: flex; flex-direction: column; width: min(320px, 100%); }
.contact-actions a { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(10,11,13,.3); padding: 18px 0; font: 500 13px/1 var(--mono); text-transform: uppercase; }
.contact-actions a:last-child { border-bottom: 1px solid rgba(10,11,13,.3); }
.contact-actions a span { transition: transform .25s ease; }
.contact-actions a:hover span { transform: rotate(45deg); }

footer { width: min(1440px, calc(100% - 64px)); margin: 0 auto; min-height: 110px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; color: var(--mist); font: 400 11px/1 var(--mono); text-transform: uppercase; }
footer p:last-child { justify-self: end; }
.footer-star { color: var(--acid); }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { transform: scale(1.7); opacity: .35; } }

@media (max-width: 900px) {
  .site-header { width: min(100% - 36px, 1440px); height: 84px; grid-template-columns: 1fr 1fr; }
  nav { display: none; }
  .hero { width: min(100% - 36px, 1440px); min-height: calc(100svh - 84px); padding-top: 26px; }
  .hero-lockup { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(4.5rem, 20vw, 9rem); }
  .hero-aside { display: grid; grid-template-columns: 100px 1fr; align-items: end; gap: 24px; margin-top: 52px; }
  .orbit { width: 100px; height: 100px; }
  .hero-aside p { margin: 0; }
  .hero-footer { grid-template-columns: 1fr; gap: 18px; }
  .section-shell { width: min(100% - 36px, 1280px); }
  .about-grid, .method-grid { grid-template-columns: 1fr; gap: 60px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { border-bottom: 1px solid var(--line); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(3), .metric:nth-child(4) { border-bottom: 0; }
  .project { grid-template-columns: 42px 1fr 38px; padding: 28px 0; }
  .project-desc, .project-tags { grid-column: 2 / -1; }
  .project-arrow { grid-column: 3; grid-row: 1; }
  .section-heading { display: block; }
  .section-heading h2 { width: 100%; margin-top: 38px; }
  .contact-main { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body::before { background-size: 44px 44px; }
  .brand-text { display: none; }
  .hero-meta { font-size: 9px; }
  .hero-meta span:last-child { text-align: right; }
  .hero h1 { font-size: clamp(4rem, 21vw, 7rem); }
  .hero-aside { grid-template-columns: 74px 1fr; }
  .orbit { width: 74px; height: 74px; }
  .orbit-core { width: 40px; height: 40px; font-size: 12px; }
  .satellite-one { left: 33px; }
  .hero-aside p { font-size: 13px; }
  .signal-strip { margin-bottom: 55px; }
  .about { padding: 65px 0 90px; }
  .section-title { font-size: clamp(3rem, 16vw, 5rem); }
  .role-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; margin-bottom: 110px; }
  .metric, .metric:nth-child(2), .metric:nth-child(3) { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .work { padding-bottom: 110px; }
  .project { gap: 14px; }
  .project-desc { font-size: 13px; }
  .method { padding: 90px 0 110px; }
  .contact { padding-bottom: 38px; }
  .contact-top { align-items: flex-start; gap: 20px; }
  .contact-top p { text-align: right; line-height: 1.4; }
  .contact h2 { font-size: 20vw; }
  footer { width: min(100% - 36px, 1440px); grid-template-columns: 1fr 1fr; }
  footer p:nth-child(2) { display: none; }
}

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