:root {
  --ink: #0d1715;
  --muted: #62706c;
  --paper: #f1f3ed;
  --paper-2: #e5e9df;
  --line: rgba(13, 23, 21, 0.16);
  --lime: #b9f44a;
  --lime-dark: #8fc72c;
  --teal: #0e5149;
  --night: #07110f;
  --white: #fbfcf8;
  --container: 1200px;
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--night);
  background: var(--lime);
  font-weight: 700;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 6px);
  align-items: end;
  gap: 3px;
  width: 26px;
  height: 28px;
  padding: 4px;
  color: var(--lime);
  border: 1px solid currentColor;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  top: -3px;
  right: -3px;
  background: currentColor;
}

.brand-mark i { display: block; background: currentColor; }
.brand-mark i:nth-child(1) { height: 8px; }
.brand-mark i:nth-child(2) { height: 15px; }
.brand-mark i:nth-child(3) { height: 11px; }

.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.035em;
}

.brand-name b { color: var(--lime); font-weight: 800; }

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav a,
.language {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.language:hover,
.language:focus-visible { color: var(--white); }
.nav a:hover::after,
.nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }

.language {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 780px;
  padding: 178px 0 104px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 45%, rgba(18, 108, 94, 0.44), transparent 32%),
    linear-gradient(122deg, #07110f 0%, #0b1a17 55%, #071713 100%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -220px;
  bottom: -190px;
  border: 1px solid rgba(185, 244, 74, 0.3);
  transform: rotate(45deg);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0%, black 50%, black 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  align-items: center;
  gap: 72px;
}

.eyebrow,
.section-index,
.data-label,
.visual-caption,
.evidence-type {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.63);
}

.eyebrow span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(185,244,74,.12);
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  font-size: clamp(58px, 6.2vw, 92px);
  font-weight: 800;
  line-height: .91;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.hero h1 em {
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.button:hover,
.button:focus-visible { transform: translateY(-2px); }
.button-primary { color: var(--night); background: var(--lime); }
.button-primary:hover { background: #ccff66; }
.button-ghost { color: var(--white); border-color: rgba(255,255,255,.24); }
.button-ghost:hover { border-color: rgba(255,255,255,.6); }

.hero-note {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.52);
  font-size: 12px;
}

.hero-note b { color: rgba(255,255,255,.8); }
.hero-note a { text-underline-offset: 3px; }

.hero-visual {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(3, 14, 12, .28);
  box-shadow: inset 0 0 80px rgba(0,0,0,.22);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
}

.hero-visual::before { top: -1px; left: -1px; border-top: 2px solid var(--lime); border-left: 2px solid var(--lime); }
.hero-visual::after { right: -1px; bottom: -1px; border-right: 2px solid var(--lime); border-bottom: 2px solid var(--lime); }

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(185,244,74,.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 9%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px var(--lime);
}

.orbit-one { width: 296px; height: 296px; animation: spin 22s linear infinite; }
.orbit-two { width: 402px; height: 402px; border-style: dashed; animation: spin-reverse 32s linear infinite; }

.signal-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: rgba(185,244,74,.07);
  border: 1px solid rgba(185,244,74,.7);
  transform: translate(-50%, -50%) rotate(45deg);
}

.signal-core b {
  font-size: 24px;
  letter-spacing: -.04em;
  transform: rotate(-45deg);
}

.core-ring {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(185,244,74,.26);
}

.core-dot {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: var(--lime);
  box-shadow: 0 0 18px var(--lime);
}

.data-card {
  position: absolute;
  z-index: 3;
  width: 226px;
  padding: 16px 17px;
  color: rgba(255,255,255,.78);
  background: rgba(7,17,15,.86);
  border-left: 2px solid var(--lime);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

.data-card-top { top: 46px; left: 30px; }
.data-card-bottom { right: 28px; bottom: 54px; }
.data-label { display: block; margin-bottom: 8px; color: rgba(255,255,255,.38); font-size: 8px; }
.data-card strong { display: block; color: var(--white); font-size: 15px; letter-spacing: .04em; }
.data-card small { display: block; margin-top: 5px; color: rgba(255,255,255,.48); font-size: 10px; }

.signal-bars { display: flex; align-items: end; gap: 4px; height: 24px; }
.signal-bars i { display: block; width: 10px; background: var(--lime); animation: pulse 1.8s ease-in-out infinite alternate; }
.signal-bars i:nth-child(1) { height: 7px; }
.signal-bars i:nth-child(2) { height: 18px; animation-delay: .2s; }
.signal-bars i:nth-child(3) { height: 12px; animation-delay: .4s; }
.signal-bars i:nth-child(4) { height: 23px; animation-delay: .6s; }
.signal-bars i:nth-child(5) { height: 15px; animation-delay: .8s; }

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1px solid var(--lime);
  background: var(--night);
}
.node::after { content: ""; position: absolute; top: 4px; width: 62px; height: 1px; background: rgba(185,244,74,.3); }
.node-a { top: 30%; right: 16%; }
.node-a::after { right: 9px; transform: rotate(-25deg); transform-origin: right; }
.node-b { bottom: 23%; left: 12%; }
.node-b::after { left: 9px; transform: rotate(-28deg); transform-origin: left; }
.node-c { top: 18%; right: 26%; }
.node-c::after { right: 9px; transform: rotate(45deg); transform-origin: right; }

.visual-caption {
  position: absolute;
  right: 20px;
  top: 50%;
  margin: 0;
  color: rgba(255,255,255,.28);
  font-size: 8px;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes spin-reverse { to { transform: translate(-50%, -50%) rotate(-360deg); } }
@keyframes pulse { to { opacity: .35; transform: scaleY(.72); transform-origin: bottom; } }

.facts { color: var(--night); background: var(--lime); }

.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }

.fact {
  min-height: 120px;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 34px 24px;
  border-right: 1px solid rgba(7,17,15,.2);
}

.fact:first-child { padding-left: 0; }
.fact:last-child { border-right: 0; }
.fact strong { font-size: 28px; line-height: 1; letter-spacing: -.04em; }
.fact span { color: rgba(7,17,15,.62); font-size: 12px; font-weight: 650; }

.section { padding: 124px 0; }

.two-column {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.section-index { color: var(--teal); }

.section h2,
.contact h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", "Segoe UI", sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.about-content { max-width: 720px; }
.about-content > p { color: var(--muted); }
.about-content .big-text { margin: 0 0 28px; color: var(--ink); font-size: 26px; line-height: 1.4; letter-spacing: -.02em; }

.legal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 50px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.legal-card > div {
  min-height: 102px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal-card span,
.contact-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.legal-card b { font-size: 14px; line-height: 1.35; }
.legal-card .legal-wide { grid-column: 1 / -1; }

.work { background: var(--white); }

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.section-heading > p { margin: 0; color: var(--muted); }

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.capability-card {
  position: relative;
  min-height: 440px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color .25s ease, background .25s ease;
}

.capability-card:hover { color: var(--white); background: var(--teal); }
.capability-card:hover p,
.capability-card:hover li { color: rgba(255,255,255,.66); }
.capability-card:hover .card-icon { color: var(--lime); border-color: rgba(185,244,74,.5); }
.capability-card.featured::after {
  content: "CORE";
  position: absolute;
  right: -1px;
  top: -25px;
  padding: 4px 12px;
  color: var(--night);
  background: var(--lime);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.card-number { position: absolute; top: 25px; right: 28px; color: var(--muted); font-size: 11px; font-weight: 800; }
.card-icon { width: 48px; height: 48px; padding: 10px; color: var(--teal); border: 1px solid var(--line); }
.capability-card h3 { max-width: 460px; margin: 40px 0 18px; font-size: 26px; line-height: 1.18; letter-spacing: -.025em; }
.capability-card p { max-width: 520px; margin: 0; color: var(--muted); font-size: 15px; }
.capability-card ul { margin: 30px 0 0; padding: 0; list-style: none; }
.capability-card li { position: relative; padding: 6px 0 6px 19px; color: var(--muted); font-size: 12px; }
.capability-card li::before { content: "+"; position: absolute; left: 0; color: var(--lime-dark); font-weight: 900; }

.process { color: var(--white); background: var(--night); }
.process-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 70px; }
.process .section-index { color: var(--lime); }

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.2);
}

.process-line li {
  position: relative;
  min-height: 210px;
  padding: 34px 24px 24px 0;
}

.process-line li::before { content: ""; position: absolute; width: 7px; height: 7px; top: -4px; left: 0; background: var(--lime); }
.process-line li:not(:last-child)::after { content: "→"; position: absolute; top: 28px; right: 20px; color: rgba(255,255,255,.24); }
.process-line span { display: block; margin-bottom: 38px; color: var(--lime); font-size: 10px; font-weight: 800; }
.process-line b { display: block; margin-bottom: 10px; font-size: 17px; }
.process-line small { display: block; max-width: 160px; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.5; }

.process-summary {
  max-width: 820px;
  margin: 46px 0 0 auto;
  padding-left: 24px;
  color: rgba(255, 255, 255, .62);
  border-left: 2px solid var(--lime);
  font-size: 14px;
  line-height: 1.75;
}

.portfolio { background: var(--paper-2); }

.portfolio-heading { margin-bottom: 54px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.portfolio-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(13, 23, 21, .13);
  transition: transform .25s ease, box-shadow .25s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(7, 17, 15, .1);
}

.portfolio-featured { grid-column: span 7; }
.portfolio-compact { grid-column: span 6; }

.project-art {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  color: var(--lime);
  background-color: var(--night);
}

.portfolio-compact .project-art { min-height: 220px; }

.project-art::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .08);
}

.project-code {
  position: absolute;
  z-index: 9;
  top: 20px;
  left: 22px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.project-photo {
  min-height: 340px;
  background: var(--night);
}

.project-photo > img,
.project-photo-inset img,
.media-tile img,
.media-tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-photo > img {
  position: absolute;
  inset: 0;
  filter: saturate(.88) contrast(1.04) brightness(.76);
}

.project-photo::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(105deg, rgba(7,17,15,.7), transparent 58%);
}

.project-photo .project-code {
  padding: 7px 9px;
  color: var(--white);
  background: rgba(7, 17, 15, .72);
  backdrop-filter: blur(8px);
}

.project-photo-inset {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 22px;
  width: 39%;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
}

.media-caption {
  position: absolute;
  z-index: 5;
  left: 22px;
  bottom: 24px;
  max-width: 42%;
  color: var(--white);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .13em;
  line-height: 1.5;
}

.project-media-grid,
.project-case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 2px;
  min-height: 420px;
  background: var(--night);
}

.media-tile {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #081512;
}

.media-tile img,
.media-tile video {
  transition: transform .35s ease, filter .35s ease;
}

.media-tile video { background: #020504; }

.portfolio-card:hover .media-tile img { transform: scale(1.025); }

.media-tile figcaption {
  position: absolute;
  z-index: 6;
  left: 10px;
  bottom: 9px;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(7, 17, 15, .76);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .12em;
  pointer-events: none;
}

.project-case-gallery .media-tile:first-child img,
.project-case-gallery .media-tile:nth-child(2) img { object-position: center 42%; }

.portfolio-production .portfolio-copy,
.portfolio-case .portfolio-copy { min-height: 285px; }

.project-vr {
  background:
    linear-gradient(rgba(185,244,74,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185,244,74,.06) 1px, transparent 1px),
    radial-gradient(circle at 70% 42%, rgba(14,81,73,.9), transparent 34%),
    var(--night);
  background-size: 36px 36px, 36px 36px, auto, auto;
  perspective: 600px;
}

.project-vr::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 190px;
  left: 50%;
  bottom: -90px;
  border: 1px solid rgba(185,244,74,.38);
  transform: translateX(-50%) rotateX(66deg);
}

.room-plane {
  position: absolute;
  top: 52px;
  bottom: 36px;
  width: 38%;
  border: 1px solid rgba(185,244,74,.25);
}

.plane-left { left: 12%; transform: skewY(18deg); border-right: 0; }
.plane-right { right: 12%; transform: skewY(-18deg); border-left: 0; }

.product-block {
  position: absolute;
  z-index: 2;
  bottom: 48px;
  border: 1px solid var(--lime);
  background: rgba(185,244,74,.08);
  box-shadow: 0 0 28px rgba(185,244,74,.08);
}

.block-one { left: 25%; width: 56px; height: 88px; }
.block-two { right: 25%; width: 78px; height: 56px; }

.project-vr b {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.06em;
  transform: translate(-50%, -50%);
}

.project-polymer {
  background:
    radial-gradient(circle at 50% 50%, rgba(185,244,74,.12), transparent 45%),
    linear-gradient(135deg, #0c2924, var(--night));
}

.project-polymer::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  left: 50%;
  top: 50%;
  border: 1px dashed rgba(185,244,74,.24);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.poly-node,
.edu-dot {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px rgba(185,244,74,.55);
}

.poly-node::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(185,244,74,.28);
  border-radius: 50%;
}

.poly-node.n1 { top: 26%; left: 24%; }
.poly-node.n2 { top: 22%; right: 24%; }
.poly-node.n3 { top: 50%; left: 47%; width: 18px; height: 18px; }
.poly-node.n4 { bottom: 20%; left: 28%; }
.poly-node.n5 { right: 23%; bottom: 22%; }

.poly-line {
  position: absolute;
  z-index: 2;
  width: 35%;
  height: 1px;
  background: rgba(185,244,74,.45);
  transform-origin: left;
}

.poly-line.l1 { top: 31%; left: 27%; transform: rotate(20deg); }
.poly-line.l2 { top: 29%; left: 51%; transform: rotate(-18deg); }
.poly-line.l3 { top: 56%; left: 31%; transform: rotate(-31deg); }
.poly-line.l4 { top: 57%; left: 52%; transform: rotate(32deg); }

.project-keyboard {
  color: var(--night);
  background:
    linear-gradient(115deg, transparent 55%, rgba(255,255,255,.24) 55.5%, transparent 56%),
    var(--lime);
}

.keyboard-shell {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 68%;
  height: 105px;
  border: 2px solid var(--night);
  transform: translateX(-50%) perspective(300px) rotateX(55deg);
}

.keyboard-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  background-image:
    linear-gradient(var(--night) 1px, transparent 1px),
    linear-gradient(90deg, var(--night) 1px, transparent 1px);
  background-size: 18px 17px;
}

.light-beam {
  position: absolute;
  top: 24px;
  right: 18%;
  width: 2px;
  height: 120px;
  background: var(--white);
  box-shadow: 0 0 16px var(--white);
  transform: rotate(24deg);
}

.project-education {
  background:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    var(--teal);
  background-size: 32px 32px;
}

.edu-ring {
  position: absolute;
  top: 54%;
  left: 50%;
  border: 1px solid rgba(185,244,74,.42);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-one { width: 150px; height: 150px; }
.ring-two { width: 92px; height: 92px; border-style: dashed; }
.edu-dot.d1 { top: 30%; left: 34%; }
.edu-dot.d2 { top: 48%; right: 29%; }
.edu-dot.d3 { bottom: 21%; left: 47%; }

.portfolio-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
}

.portfolio-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
  color: var(--teal);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
}

.portfolio-meta span:last-child { color: var(--muted); text-align: right; }
.portfolio-copy h3 { margin: 0 0 14px; font-size: 26px; line-height: 1.14; letter-spacing: -.035em; }
.portfolio-copy p { margin: 0; color: var(--muted); font-size: 14px; }

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.project-tags li {
  padding: 5px 9px;
  color: var(--teal);
  background: rgba(14,81,73,.07);
  font-size: 9px;
  font-weight: 750;
}

.portfolio-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 26px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 850;
  text-underline-offset: 4px;
}

.portfolio-progress {
  width: 100%;
  margin-top: auto;
  padding-top: 30px;
}

.portfolio-progress > span {
  display: block;
  height: 3px;
  margin-bottom: 10px;
  background: var(--paper-2);
}

.portfolio-progress i {
  display: block;
  width: 38%;
  height: 100%;
  background: var(--lime-dark);
}

.portfolio-progress small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.evidence-list { border-top: 1px solid var(--ink); }

.evidence-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.evidence-year { color: var(--teal); font-size: 13px; font-weight: 850; letter-spacing: .08em; }
.evidence-type { margin-bottom: 10px; color: var(--muted); font-size: 9px; }
.evidence-body h3 { margin: 0 0 14px; font-size: 28px; line-height: 1.2; letter-spacing: -.03em; }
.evidence-body p:not(.evidence-type) { max-width: 760px; margin: 0; color: var(--muted); }
.evidence-body a { display: inline-block; margin-top: 20px; color: var(--teal); font-size: 12px; font-weight: 800; text-underline-offset: 4px; }
.evidence-links { display: flex; flex-wrap: wrap; gap: 24px; }

.status-pill {
  display: inline-flex;
  margin-top: 22px;
  padding: 7px 11px;
  color: var(--teal);
  background: rgba(185, 244, 74, .32);
  border: 1px solid rgba(14, 81, 73, .18);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.registry-note {
  max-width: 880px;
  margin: 44px 0 0 228px;
  padding-left: 22px;
  color: var(--muted);
  border-left: 2px solid var(--lime-dark);
  font-size: 12px;
}
.registry-note a { color: var(--teal); font-weight: 750; text-underline-offset: 3px; }

.contact {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: var(--white);
  background: var(--teal);
}

.contact::after {
  content: "QX";
  position: absolute;
  right: -30px;
  bottom: -120px;
  color: rgba(255,255,255,.035);
  font-size: 420px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.12em;
}

.contact-grid { mask-image: linear-gradient(90deg, transparent, black); }

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: end;
  gap: 100px;
}

.section-index.light { color: var(--lime); }
.contact h2 { max-width: 760px; }
.contact-layout > div > p:not(.section-index) { max-width: 640px; margin: 28px 0 34px; color: rgba(255,255,255,.68); font-size: 17px; }
.button-light { color: var(--night); background: var(--white); }
.button-light:hover { background: var(--lime); }

.contact-card {
  margin: 0;
  padding: 0 0 0 32px;
  border-left: 1px solid rgba(255,255,255,.25);
  font-style: normal;
}

.contact-card > div { padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.17); }
.contact-card span { color: rgba(255,255,255,.45); }
.contact-card a,
.contact-card p { margin: 0; color: var(--white); font-size: 14px; font-weight: 650; text-decoration: none; }
.contact-card a:hover { color: var(--lime); }

.footer { color: rgba(255,255,255,.46); background: var(--night); }
.footer-inner { min-height: 112px; display: flex; align-items: center; gap: 36px; }
.footer-brand { margin-right: auto; color: var(--white); }
.footer p { margin: 0; font-size: 10px; letter-spacing: .04em; }

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

@media (max-width: 1050px) {
  .nav { gap: 20px; }
  .hero-layout { grid-template-columns: 1fr 390px; gap: 38px; }
  .hero h1 { font-size: clamp(52px, 6.5vw, 74px); }
  .hero-visual { min-height: 450px; }
  .two-column { gap: 50px; }
  .contact-layout { grid-template-columns: 1fr 360px; gap: 50px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .header-inner { min-height: 74px; gap: 16px; }
  .nav { display: none; }
  .language { margin-left: auto; }
  .hero { min-height: auto; padding: 136px 0 70px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 3; }
  .hero h1 { font-size: clamp(48px, 12vw, 76px); }
  .hero-visual { min-height: 380px; margin-top: 22px; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { min-height: 94px; padding: 25px 18px; border-bottom: 1px solid rgba(7,17,15,.2); }
  .fact:first-child { padding-left: 18px; }
  .fact:nth-child(2) { border-right: 0; }
  .section { padding: 88px 0; }
  .two-column,
  .section-heading,
  .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .section-heading { margin-bottom: 54px; }
  .process-heading { align-items: flex-start; flex-direction: column; }
  .capability-card { min-height: 420px; padding: 34px; }
  .process-line { grid-template-columns: repeat(2, 1fr); border-top: 0; }
  .process-line li { min-height: 180px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.2); }
  .process-line li:last-child { grid-column: 1 / -1; }
  .process-line li:nth-child(even)::after { display: none; }
  .process-summary { margin-left: 0; }
  .portfolio-card,
  .portfolio-featured,
  .portfolio-compact { grid-column: 1 / -1; }
  .portfolio-featured { display: grid; grid-template-columns: .9fr 1.1fr; }
  .evidence-item { grid-template-columns: 120px 1fr; gap: 28px; }
  .registry-note { margin-left: 148px; }
  .contact-card { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.25); }
  .footer-inner { min-height: 160px; flex-wrap: wrap; justify-content: space-between; padding: 30px 0; }
  .footer-brand { flex-basis: 100%; }
}

@media (max-width: 580px) {
  .brand-name { font-size: 13px; }
  .hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { min-height: 330px; }
  .orbit-one { width: 210px; height: 210px; }
  .orbit-two { width: 286px; height: 286px; }
  .signal-core { width: 82px; height: 82px; }
  .data-card { width: 190px; padding: 12px; }
  .data-card-top { top: 22px; left: 14px; }
  .data-card-bottom { right: 14px; bottom: 25px; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact { border-right: 0; }
  .section h2,
  .contact h2 { font-size: clamp(38px, 12vw, 54px); }
  .about-content .big-text { font-size: 22px; }
  .legal-card,
  .capability-grid { grid-template-columns: 1fr; }
  .legal-card .legal-wide { grid-column: auto; }
  .capability-card { min-height: auto; padding: 32px 24px; }
  .capability-card h3 { margin-top: 30px; }
  .process-line { grid-template-columns: 1fr; }
  .process-line li,
  .process-line li:last-child { grid-column: auto; min-height: 150px; }
  .process-line li::after { display: none; }
  .process-line span { margin-bottom: 24px; }
  .portfolio-featured { display: flex; }
  .project-art,
  .portfolio-compact .project-art { min-height: 220px; }
  .project-media-grid,
  .project-case-gallery { min-height: 420px; }
  .project-photo-inset { right: 14px; bottom: 14px; width: 44%; border-width: 3px; }
  .media-caption { left: 15px; bottom: 17px; max-width: 46%; font-size: 8px; }
  .portfolio-copy { padding: 25px 22px; }
  .portfolio-copy h3 { font-size: 23px; }
  .evidence-item { grid-template-columns: 1fr; gap: 12px; padding: 38px 0; }
  .evidence-body h3 { font-size: 24px; }
  .registry-note { margin-left: 0; }
  .footer-inner { display: block; }
  .footer p { margin-top: 18px; }
}

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