:root {
  --ink: #08080a;
  --paper: #f1e4c8;
  --cream: #fff1d6;
  --red: #ff2b1f;
  --blue: #172cff;
  --lime: #d7ff00;
  --cyan: #15cfe8;
  --violet: #7724ff;
  --pink: #ff3bc8;
  --yellow: #ffdf29;
  --green: #16e27d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Roboto Condensed", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.masthead {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  pointer-events: none;
}

.brand-lockup,
.mail-chip {
  pointer-events: auto;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  text-transform: uppercase;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem 0.35rem 0.35rem;
  background: var(--ink);
  color: white;
}

.brand-lockup img {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  padding: 0.25rem;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.18);
  transform: rotate(-5deg);
}

.brand-lockup strong {
  font-size: 1.15rem;
}

.mail-chip {
  padding: 0.7rem 0.9rem;
  color: white;
  background: var(--red);
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  pointer-events: auto;
}

.project-chip {
  padding: 0.7rem 0.85rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 0.95rem;
  text-transform: uppercase;
}

.poster {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background:
    radial-gradient(circle at 11% 17%, rgba(255, 59, 200, 0.16), transparent 15rem),
    radial-gradient(circle at 72% 18%, rgba(21, 207, 232, 0.18), transparent 17rem),
    linear-gradient(115deg, #f7ead0 0%, #eddfc2 100%);
  isolation: isolate;
}

.texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.45;
  background-image:
    radial-gradient(rgba(8, 8, 10, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 8, 10, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(8, 8, 10, 0.08) 1px, transparent 1px);
  background-size: 9px 9px, 42px 42px, 42px 42px;
  mix-blend-mode: multiply;
}

.paper,
.scratch {
  position: absolute;
  pointer-events: none;
}

.paper {
  border: 2px solid rgba(8, 8, 10, 0.18);
  box-shadow: 8px 8px 0 rgba(8, 8, 10, 0.18);
}

.paper-blue {
  top: 0;
  right: 0;
  width: 42vw;
  height: 42vh;
  background: var(--blue);
}

.paper-red {
  top: 11vh;
  left: 5vw;
  width: 70vw;
  height: 30vh;
  background: var(--red);
  transform: rotate(-2deg);
}

.paper-lime {
  left: 36vw;
  bottom: 4vh;
  width: 17vw;
  height: 30vh;
  background: var(--lime);
  transform: rotate(3deg);
}

.paper-cyan {
  top: 8vh;
  left: 44vw;
  width: 13vw;
  height: 18vh;
  background: rgba(21, 207, 232, 0.7);
  transform: rotate(15deg);
}

.scratch {
  width: 9rem;
  height: 9rem;
  border: 0.35rem solid var(--ink);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.scratch::before,
.scratch::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.scratch::before {
  width: 9rem;
  height: 0.35rem;
  top: 3.2rem;
  left: -1.5rem;
  transform: rotate(-28deg);
}

.scratch::after {
  width: 6rem;
  height: 0.35rem;
  top: 5.2rem;
  left: 0.4rem;
  transform: rotate(14deg);
}

.scratch-a {
  top: 5rem;
  left: -2rem;
  transform: rotate(-20deg);
}

.scratch-b {
  right: 2rem;
  bottom: 9rem;
  border-color: var(--lime);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.scratch-b::before,
.scratch-b::after {
  background: var(--lime);
}

.scratch-c {
  top: 44vh;
  left: 30vw;
  border-color: white;
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.scratch-c::before,
.scratch-c::after {
  background: white;
}

.micro {
  position: absolute;
  z-index: 10;
  margin: 0;
  max-width: 20rem;
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.08;
  text-transform: uppercase;
}

.top-left {
  top: 6.2rem;
  left: 1.8rem;
  padding: 0.7rem;
  color: white;
  background: var(--ink);
}

.top-right {
  top: 3.4rem;
  right: 8rem;
  padding: 0.55rem 0.7rem;
  background: var(--cream);
  border: 2px solid var(--ink);
}

.logo-stamp {
  position: absolute;
  z-index: 15;
  right: 2rem;
  top: 6.5rem;
  display: grid;
  place-items: center;
  width: 8.5rem;
  height: 8.5rem;
  padding: 0.7rem;
  background: var(--ink);
  border: 3px solid var(--lime);
  box-shadow: 8px 8px 0 var(--ink), 0 0 32px rgba(21, 207, 232, 0.65);
  transform: rotate(5deg);
}

.logo-stamp::before,
.logo-stamp::after {
  content: "";
  position: absolute;
  inset: -0.55rem;
  border: 2px solid rgba(215, 255, 0, 0.7);
  transform: rotate(12deg);
  pointer-events: none;
}

.logo-stamp::after {
  inset: 0.7rem;
  border-color: rgba(21, 207, 232, 0.85);
  transform: rotate(-9deg);
}

.logo-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mega {
  position: absolute;
  z-index: 3;
  margin: 0;
  font-weight: 1000;
  line-height: 0.74;
  text-transform: uppercase;
}

.mega-hero {
  left: 2.2vw;
  top: 12vh;
  max-width: 96vw;
  color: var(--blue);
  font-size: 14.5rem;
  transform: scaleX(1.08);
}

.agent-head {
  position: absolute;
  z-index: 8;
  left: 43vw;
  top: 17vh;
  width: 29rem;
  height: 34rem;
  filter: drop-shadow(18px 18px 0 rgba(8, 8, 10, 0.18));
}

.face-scan {
  position: absolute;
  inset: 5% 17% 0 12%;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(255, 255, 255, 0.9) 45% 47%, transparent 48%),
    radial-gradient(circle at 48% 31%, var(--cyan) 0 6%, transparent 7%),
    linear-gradient(135deg, #171719 0 42%, #f1e4c8 43% 58%, #111 59%);
  clip-path: polygon(42% 0, 73% 8%, 92% 28%, 84% 57%, 61% 76%, 54% 100%, 25% 92%, 7% 58%, 15% 23%);
}

.face-scan::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(255, 255, 255, 0.18) 6px 8px),
    radial-gradient(circle at 62% 26%, rgba(255, 59, 200, 0.8), transparent 5rem);
  mix-blend-mode: screen;
}

.agent-head::before {
  content: "SPATIAL AI";
  position: absolute;
  z-index: 7;
  left: 0.5rem;
  top: 4.3rem;
  padding: 0.35rem 0.55rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
  transform: rotate(-8deg);
}

.agent-head::after {
  content: "";
  position: absolute;
  z-index: 6;
  right: 2rem;
  bottom: 5rem;
  width: 12rem;
  height: 12rem;
  background:
    linear-gradient(90deg, rgba(21, 207, 232, 0.72) 1px, transparent 1px),
    linear-gradient(rgba(21, 207, 232, 0.72) 1px, transparent 1px);
  background-size: 1rem 1rem;
  transform: perspective(16rem) rotateX(64deg) rotateZ(-11deg);
}

.visor {
  position: absolute;
  top: 10.5rem;
  left: 11.5rem;
  width: 11rem;
  height: 3.2rem;
  background: var(--lime);
  border: 3px solid var(--ink);
  transform: skew(-15deg) rotate(-4deg);
}

.neural-ring,
.neural-core {
  position: absolute;
  border-radius: 50%;
}

.neural-ring {
  border: 4px solid white;
  box-shadow: 0 0 24px rgba(21, 207, 232, 0.85);
}

.ring-one {
  width: 15rem;
  height: 15rem;
  left: 8rem;
  top: 7rem;
}

.ring-two {
  width: 21rem;
  height: 7rem;
  left: 3rem;
  top: 12rem;
  border-color: var(--pink);
  transform: rotate(-28deg);
}

.neural-core {
  width: 6rem;
  height: 6rem;
  left: 12.4rem;
  top: 11.4rem;
  background: radial-gradient(circle, white, var(--cyan) 42%, transparent 70%);
}

.black-panel {
  position: absolute;
  z-index: 12;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
}

.intro-panel {
  left: 0;
  bottom: 0;
  width: 47vw;
  min-height: 35vh;
  padding: 2rem 3.25rem 2rem 2rem;
  clip-path: polygon(0 0, 92% 13%, 100% 100%, 0 100%);
}

.lead {
  max-width: 40rem;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.16;
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.icon-row span {
  display: grid;
  place-items: center;
  min-height: 4.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--lime);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.terminal-card,
.metric-card,
.flow-card,
.module-card,
.about-copy,
.principle-stack article,
.contact-block,
.terms-block {
  position: absolute;
  z-index: 14;
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.terminal-card {
  left: 27vw;
  bottom: 36vh;
  display: grid;
  gap: 0.25rem;
  width: 18rem;
  padding: 0.8rem;
  color: white;
  background: #111;
  font-family: "Courier New", monospace;
}

.terminal-card span {
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.terminal-card code {
  font-size: 0.82rem;
}

.metric-card {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem;
  background: var(--cream);
  text-transform: uppercase;
}

.metric-card span,
.metric-card small {
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.metric-card strong {
  font-size: 2.8rem;
  line-height: 0.9;
}

.roi-card {
  right: 2.4rem;
  bottom: 31vh;
  background: var(--ink);
  color: var(--lime);
}

.hologram-card {
  right: 13rem;
  top: 23vh;
  background: var(--pink);
  color: white;
}

.flow-card {
  right: 4rem;
  bottom: 2.5rem;
  width: 29rem;
  padding: 1rem;
  background: var(--cream);
}

.flow-card h2,
.module-card h3,
.contact-block h3,
.terms-block h3,
.principle-stack h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-title-row h2 small {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.18rem 0.4rem;
  font-size: 0.42em;
  line-height: 1;
  vertical-align: middle;
  color: white;
  background: var(--ink);
  border: 2px solid var(--lime);
  box-shadow: 3px 3px 0 rgba(8, 8, 10, 0.35);
  text-transform: uppercase;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.flow-grid span {
  min-height: 4rem;
  padding: 0.55rem;
  border: 2px solid var(--ink);
  background: white;
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.poster-modules {
  min-height: 118vh;
}

.module-paper-a {
  right: 0;
  top: 0;
  width: 48vw;
  height: 35vh;
  background: var(--cyan);
}

.module-paper-b {
  right: 0;
  top: 29vh;
  width: 44vw;
  height: 34vh;
  background: var(--lime);
}

.module-paper-c {
  left: 30vw;
  bottom: 0;
  width: 36vw;
  height: 31vh;
  background: var(--blue);
}

.mega-modules {
  left: -1rem;
  top: 9vh;
  max-width: 50vw;
  color: var(--red);
  font-size: 11rem;
}

.profile-cutout {
  position: absolute;
  z-index: 8;
  left: 29vw;
  top: 13vh;
  width: 22rem;
  height: 40rem;
}

.profile-hair {
  position: absolute;
  left: 4rem;
  top: 1rem;
  width: 13rem;
  height: 13rem;
  background: var(--ink);
  border-radius: 50% 50% 38% 42%;
}

.profile-face {
  position: absolute;
  left: 7rem;
  top: 6rem;
  width: 10rem;
  height: 17rem;
  background:
    linear-gradient(90deg, rgba(21, 207, 232, 0.42), transparent 44%),
    #f2cfac;
  border: 3px solid var(--ink);
  clip-path: polygon(36% 0, 100% 12%, 92% 57%, 65% 100%, 18% 83%, 0 30%);
}

.profile-visor {
  position: absolute;
  left: 9rem;
  top: 10rem;
  width: 11rem;
  height: 2.2rem;
  background: var(--lime);
  border: 3px solid var(--ink);
  transform: skew(-18deg);
}

.profile-collar {
  position: absolute;
  left: 1rem;
  bottom: 0;
  width: 19rem;
  height: 19rem;
  background: var(--ink);
  clip-path: polygon(45% 0, 80% 5%, 100% 100%, 0 100%, 16% 18%);
}

.module-card {
  padding: 1rem;
  background: var(--cream);
}

.module-card p,
.module-card li,
.about-copy p,
.principle-stack p,
.contact-block p,
.terms-block p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.module-card ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.seo-card {
  top: 4rem;
  right: 29vw;
  width: 20rem;
  min-height: 18rem;
  background: var(--cyan);
}

.ads-card {
  top: 4rem;
  right: 2rem;
  width: 23rem;
  min-height: 16rem;
  background: var(--red);
  color: white;
}

.coin {
  position: absolute;
  right: 1rem;
  top: 0.7rem;
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  color: var(--red);
  background: var(--ink);
  border-radius: 50%;
  font-size: 2.5rem;
}

.community-card {
  top: 38vh;
  right: 28vw;
  width: 23rem;
  min-height: 14rem;
  color: white;
  background: var(--violet);
}

.telegram-card {
  top: 35vh;
  right: 2rem;
  width: 24rem;
  min-height: 20rem;
  background: var(--lime);
}

.creative-card {
  left: 38vw;
  bottom: 6rem;
  width: 27rem;
  min-height: 16rem;
  color: white;
  background: var(--blue);
}

.report-card {
  right: 2rem;
  bottom: 5rem;
  width: 22rem;
  min-height: 20rem;
  background: var(--ink);
  color: white;
}

.mini-chart {
  height: 4rem;
  margin-top: 1rem;
  border: 2px solid var(--ink);
  background:
    linear-gradient(135deg, transparent 0 45%, var(--blue) 46% 49%, transparent 50%),
    repeating-linear-gradient(90deg, transparent 0 2.4rem, rgba(8, 8, 10, 0.22) 2.4rem 2.5rem);
}

.avatars {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}

.avatars span,
.avatars b {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-right: -0.35rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
}

.avatars span:nth-child(2) {
  background: var(--pink);
}

.avatars span:nth-child(3) {
  background: var(--cyan);
}

.avatars span:nth-child(4) {
  background: var(--yellow);
}

.phone-ui {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.7rem;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.phone-ui span {
  padding: 0.55rem;
  border-radius: 7px;
  background: white;
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.video-tile {
  position: relative;
  height: 6.5rem;
  margin-top: 1rem;
  border: 2px solid white;
  background:
    linear-gradient(135deg, var(--pink), transparent),
    radial-gradient(circle at 60% 40%, white, transparent 1.6rem),
    var(--ink);
}

.video-tile span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 3.5rem;
  height: 3.5rem;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.video-tile span::after {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.85rem;
  border-left: 1rem solid white;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
}

.radar-chart {
  position: relative;
  height: 10rem;
  margin-top: 1rem;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(circle at 50% 50%, rgba(21, 207, 232, 0.28), transparent 4.5rem),
    linear-gradient(90deg, rgba(215, 255, 0, 0.16) 1px, transparent 1px),
    linear-gradient(rgba(215, 255, 0, 0.16) 1px, transparent 1px),
    #050505;
  background-size: auto, 1.1rem 1.1rem, 1.1rem 1.1rem, auto;
}

.radar-ring,
.radar-axis,
.radar-node,
.radar-pulse {
  position: absolute;
  display: block;
}

.radar-ring {
  left: 50%;
  top: 50%;
  border: 2px solid rgba(21, 207, 232, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 18px rgba(21, 207, 232, 0.38);
}

.ring-outer {
  width: 8.8rem;
  height: 8.8rem;
}

.ring-mid {
  width: 5.8rem;
  height: 5.8rem;
  border-color: rgba(215, 255, 0, 0.8);
}

.ring-inner {
  width: 2.6rem;
  height: 2.6rem;
  border-color: rgba(255, 59, 200, 0.9);
}

.radar-axis {
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}

.axis-x {
  width: 92%;
  height: 1px;
}

.axis-y {
  width: 1px;
  height: 92%;
}

.radar-pulse {
  left: 50%;
  top: 50%;
  width: 7rem;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), transparent);
  transform: translateY(-50%) rotate(-28deg);
  transform-origin: left center;
}

.radar-node {
  width: 0.8rem;
  height: 0.8rem;
  background: var(--lime);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 0 18px var(--lime);
}

.node-a {
  left: 66%;
  top: 23%;
}

.node-b {
  left: 33%;
  top: 37%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.node-c {
  left: 57%;
  top: 67%;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}

.node-d {
  left: 77%;
  top: 58%;
  background: var(--yellow);
  box-shadow: 0 0 18px var(--yellow);
}

.telemetry-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.telemetry-row span {
  padding: 0.45rem;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid white;
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.scratch-d {
  left: 3rem;
  bottom: 7rem;
  border-color: var(--blue);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.scratch-d::before,
.scratch-d::after {
  background: var(--blue);
}

.poster-about {
  min-height: 112vh;
}

.about-paper-a {
  top: 0;
  right: 0;
  width: 46vw;
  height: 38vh;
  background: var(--yellow);
}

.about-paper-b {
  left: 0;
  bottom: 0;
  width: 42vw;
  height: 42vh;
  background: var(--violet);
}

.about-paper-c {
  right: 8vw;
  bottom: 13vh;
  width: 25vw;
  height: 33vh;
  background: var(--lime);
}

.mega-about {
  top: 3rem;
  left: 1.5rem;
  width: 96vw;
  color: var(--red);
  font-size: 10rem;
}

.about-copy {
  left: 3rem;
  top: 34vh;
  width: min(46rem, 52vw);
  padding: 1.4rem;
  color: white;
  background: var(--ink);
}

.about-copy .tagline {
  display: inline-block;
  margin-top: 0;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  background: var(--lime);
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.principle-stack {
  position: absolute;
  right: 2rem;
  top: 34vh;
  display: grid;
  gap: 0.8rem;
  width: min(34rem, 38vw);
  z-index: 16;
}

.principle-stack article {
  position: static;
  padding: 1rem;
  background: var(--cream);
}

.principle-stack article:nth-child(2) {
  background: var(--cyan);
}

.principle-stack article:nth-child(3) {
  background: var(--lime);
}

.principle-stack span {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.25rem 0.45rem;
  color: white;
  background: var(--ink);
}

.contact-block {
  left: 3rem;
  bottom: 3rem;
  width: 28rem;
  padding: 1rem;
  background: var(--red);
  color: white;
}

.contact-block a {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-size: 1.25rem;
}

.terms-block {
  right: 2rem;
  bottom: 2rem;
  width: 34rem;
  padding: 1rem;
  background: var(--cream);
}

.scratch-e {
  right: 23vw;
  top: 18vh;
  border-color: var(--pink);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.scratch-e::before,
.scratch-e::after {
  background: var(--pink);
}

.site-footer {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 1.25rem 1.1rem;
  color: white;
  background: #050505;
  border-top: 4px solid var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.75fr 0.95fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
  position: relative;
}

.footer-main::before {
  content: none;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-logo img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  padding: 0.25rem;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer strong {
  font-size: 2rem;
}

.site-footer span,
.site-footer p,
.site-footer a,
.site-footer h3 {
  font-family: Arial, sans-serif;
}

.footer-column {
  display: grid;
  gap: 0.55rem;
}

.footer-column h3 {
  margin: 0 0 0.2rem;
  color: var(--lime);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span,
.footer-brand p {
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--lime);
}

.footer-brand {
  gap: 0.8rem;
}

.footer-brand p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.footer-brand .footer-tagline {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: 0.55rem 0.75rem;
  color: #000;
  background: var(--lime);
  border: 2px solid white;
  box-shadow: 5px 5px 0 rgba(255, 255, 255, 0.15);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-legal a:hover {
  color: var(--lime);
}

.legal-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 59, 200, 0.18), transparent 16rem),
    radial-gradient(circle at 82% 14%, rgba(21, 207, 232, 0.22), transparent 18rem),
    linear-gradient(115deg, #f7ead0 0%, #ead9b7 100%);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(247, 234, 208, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}

.back-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.back-chip::before {
  content: "<";
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.legal-main {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.legal-hero {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 rgba(8, 8, 10, 0.18);
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(8, 8, 10, 0.08) 1px, transparent 1px),
    linear-gradient(120deg, #fff0d6 0%, #f0dfbe 100%);
  background-size: 2rem 2rem, 2rem 2rem, auto;
}

.legal-hero::before,
.legal-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.legal-hero::before {
  left: -3rem;
  top: 4rem;
  width: 36rem;
  height: 11rem;
  background: var(--red);
  transform: rotate(-4deg);
}

.legal-hero::after {
  right: -2rem;
  top: 1.5rem;
  width: 24rem;
  height: 18rem;
  background:
    linear-gradient(90deg, rgba(23, 44, 255, 0.72) 1px, transparent 1px),
    linear-gradient(rgba(23, 44, 255, 0.72) 1px, transparent 1px),
    rgba(21, 207, 232, 0.72);
  background-size: 1rem 1rem, 1rem 1rem, auto;
  transform: rotate(6deg);
}

.legal-kicker {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin: 1.5rem 0 0 1.5rem;
  padding: 0.55rem 0.75rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  font-family: "Courier New", monospace;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.legal-title {
  position: relative;
  z-index: 2;
  max-width: 10ch;
  margin: 1.2rem 0 0 1.5rem;
  color: var(--blue);
  font-size: 6rem;
  line-height: 0.8;
  text-transform: uppercase;
}

.legal-summary {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  margin: 1.2rem 0 0 1.5rem;
  padding: 0.9rem 1rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
  clip-path: polygon(0 0, 98% 4%, 100% 92%, 4% 100%);
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.4;
}

.legal-content {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.legal-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(8, 8, 10, 0.18);
  background: rgba(255, 247, 220, 0.94);
}

.legal-card:nth-child(2n) {
  background: rgba(21, 207, 232, 0.16);
}

.legal-card h2 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-card p,
.legal-card li {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

.legal-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

.legal-note {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-hero::before {
  background: var(--lime);
}

.contact-hero::after {
  background:
    linear-gradient(90deg, rgba(23, 44, 255, 0.72) 1px, transparent 1px),
    linear-gradient(rgba(23, 44, 255, 0.72) 1px, transparent 1px),
    rgba(255, 43, 31, 0.72);
  background-size: 1rem 1rem, 1rem 1rem, auto;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-form-card,
.contact-info-card {
  padding: 1.2rem;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(8, 8, 10, 0.18);
}

.contact-form-card {
  background: rgba(255, 247, 220, 0.96);
}

.contact-info-card {
  background: rgba(21, 207, 232, 0.18);
}

.contact-form-card h2,
.contact-info-card h2 {
  margin: 0 0 0.9rem;
  font-size: 2.2rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.contact-form,
.contact-info-card p,
.contact-info-list span,
.contact-help {
  font-family: Arial, sans-serif;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 4px 4px 0 rgba(8, 8, 10, 0.12);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 11rem;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.contact-submit,
.contact-direct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit {
  color: var(--ink);
  background: var(--lime);
}

.contact-direct {
  color: white;
  background: var(--ink);
}

.contact-help {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.contact-info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-info-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.contact-info-list span {
  display: block;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.72);
  border: 2px solid var(--ink);
  line-height: 1.4;
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contact-tags span {
  padding: 0.45rem 0.6rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-hero,
.systems-hero {
  position: relative;
  min-height: 74vh;
  padding: 7rem 2rem 3rem;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background:
    radial-gradient(circle at 14% 22%, rgba(255, 59, 200, 0.22), transparent 18rem),
    radial-gradient(circle at 84% 18%, rgba(21, 207, 232, 0.28), transparent 20rem),
    linear-gradient(115deg, #f7ead0 0%, #ead9b7 100%);
  isolation: isolate;
}

.project-hero::after,
.systems-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  top: 5rem;
  z-index: -1;
  width: 36rem;
  height: 36rem;
  background:
    linear-gradient(90deg, rgba(23, 44, 255, 0.75) 1px, transparent 1px),
    linear-gradient(rgba(23, 44, 255, 0.75) 1px, transparent 1px);
  background-size: 1.1rem 1.1rem;
  transform: rotate(8deg);
}

.project-paper {
  position: absolute;
  z-index: -1;
  border: 2px solid rgba(8, 8, 10, 0.2);
  box-shadow: 8px 8px 0 rgba(8, 8, 10, 0.2);
}

.paper-one {
  left: 4vw;
  top: 20vh;
  width: 54vw;
  height: 23vh;
  background: var(--red);
  transform: rotate(-2deg);
}

.paper-two {
  right: 8vw;
  top: 12vh;
  width: 24vw;
  height: 32vh;
  background: var(--cyan);
  transform: rotate(4deg);
}

.paper-three {
  left: 41vw;
  bottom: 7vh;
  width: 20vw;
  height: 25vh;
  background: var(--lime);
  transform: rotate(8deg);
}

.project-kicker {
  position: relative;
  display: inline-block;
  z-index: 3;
  margin: 0 0 1rem;
  padding: 0.6rem 0.8rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--lime);
  font-family: "Courier New", monospace;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-hero h1,
.systems-hero h1 {
  position: relative;
  z-index: 3;
  max-width: 12ch;
  margin: 0;
  color: var(--red);
  font-size: 9rem;
  line-height: 0.76;
  text-transform: uppercase;
}

.project-hero p:not(.project-kicker),
.systems-hero p:not(.project-kicker) {
  position: relative;
  z-index: 3;
  max-width: 58rem;
  margin: 2rem 0 0;
  padding: 0.8rem 1rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
  clip-path: polygon(0 0, 98% 4%, 100% 88%, 3% 100%);
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 10% 12%, rgba(215, 255, 0, 0.2), transparent 18rem),
    radial-gradient(circle at 82% 18%, rgba(119, 36, 255, 0.24), transparent 18rem),
    var(--paper);
}

.project-card {
  position: relative;
  min-height: 22rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.project-card::after {
  content: "";
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  width: 9rem;
  height: 9rem;
  border: 1.1rem solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.project-neugrid,
.project-vibe,
.project-pulse {
  grid-column: span 4;
}

.project-bitbyte,
.project-spectra {
  grid-column: span 6;
}

.project-grox,
.project-suipal {
  grid-column: span 6;
}

.project-neugrid {
  background: var(--lime);
}

.project-vibe {
  color: white;
  background: var(--ink);
}

.project-pulse {
  background: var(--cyan);
}

.project-bitbyte {
  color: white;
  background: var(--blue);
}

.project-spectra {
  color: white;
  background: var(--violet);
}

.project-grox {
  background: var(--red);
  color: white;
}

.project-suipal {
  background: var(--cream);
}

.project-title-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.project-title-row h2 {
  margin: 0;
  font-size: 2.8rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-card p,
.system-lane p {
  position: relative;
  z-index: 2;
  max-width: 42rem;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.36;
}

.project-logo {
  position: relative;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  color: white;
  background: var(--ink);
  border: 2px solid currentColor;
  box-shadow: 5px 5px 0 rgba(8, 8, 10, 0.72);
  overflow: hidden;
}

.project-logo b {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  line-height: 1;
}

.project-logo::before,
.project-logo::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.logo-neugrid::before {
  width: 3rem;
  height: 3rem;
  border: 0.35rem solid var(--lime);
  transform: rotate(45deg);
}

.logo-neugrid::after {
  width: 1rem;
  height: 1rem;
  background: var(--cyan);
  border-radius: 50%;
}

.logo-vibe {
  background: var(--red);
}

.logo-vibe::before {
  inset: 0.45rem;
  border: 2px dashed white;
  transform: rotate(-12deg);
}

.logo-pulse {
  background: var(--blue);
}

.logo-pulse::before {
  width: 4.8rem;
  height: 1.4rem;
  border-top: 0.32rem solid var(--lime);
  border-bottom: 0.32rem solid var(--pink);
  transform: rotate(-22deg);
}

.logo-bitbyte {
  background: var(--ink);
}

.logo-bitbyte::before {
  width: 3.2rem;
  height: 3.2rem;
  background:
    linear-gradient(90deg, transparent 45%, var(--cyan) 46% 54%, transparent 55%),
    linear-gradient(transparent 45%, var(--lime) 46% 54%, transparent 55%);
}

.logo-spectra {
  background: var(--violet);
}

.logo-spectra::before {
  width: 3.5rem;
  height: 3.5rem;
  border: 0.35rem solid var(--cyan);
  border-left-color: transparent;
  border-radius: 50%;
}

.logo-grox {
  background: var(--ink);
  color: var(--lime);
}

.logo-grox::before {
  width: 3.1rem;
  height: 3.1rem;
  border: 0.28rem solid var(--lime);
  border-radius: 38% 62% 42% 58%;
  transform: rotate(18deg);
}

.logo-grox::after {
  width: 0.55rem;
  height: 3.6rem;
  background: linear-gradient(180deg, var(--cyan), var(--lime));
  box-shadow: 0 0 16px rgba(21, 207, 232, 0.75);
  transform: rotate(32deg);
}

.logo-suipal {
  background: #6fdcff;
  color: var(--ink);
}

.logo-suipal::before {
  width: 3.2rem;
  height: 3.2rem;
  background: linear-gradient(135deg, transparent 0 42%, white 43% 58%, transparent 59%);
  border: 0.25rem solid var(--ink);
  border-radius: 45% 45% 55% 55%;
}

.project-tags,
.system-nodes {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.project-tags span,
.system-nodes span {
  padding: 0.42rem 0.55rem;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.systems-hero {
  background:
    radial-gradient(circle at 20% 18%, rgba(21, 207, 232, 0.24), transparent 18rem),
    radial-gradient(circle at 70% 22%, rgba(255, 43, 31, 0.2), transparent 20rem),
    linear-gradient(115deg, #f7ead0 0%, #e8dcc3 100%);
}

.systems-board {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  padding: 1rem;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(8, 8, 10, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 2rem 2rem;
}

.system-lane {
  position: relative;
  grid-column: span 6;
  min-height: 21rem;
  padding: 1.15rem;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.system-lane::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 9rem;
  height: 9rem;
  background:
    radial-gradient(circle, transparent 0 24%, rgba(255, 255, 255, 0.72) 25% 27%, transparent 28%),
    conic-gradient(from 90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  border-radius: 50%;
}

.lane-network {
  grid-column: span 7;
  background: var(--lime);
}

.lane-builder {
  grid-column: span 5;
  color: white;
  background: var(--ink);
}

.lane-markets {
  color: var(--ink);
  background: var(--cyan);
}

.lane-finance {
  color: white;
  background: var(--blue);
}

.lane-security {
  color: white;
  background: var(--violet);
}

.lane-world {
  color: white;
  background: var(--red);
}

.lane-sui {
  grid-column: span 12;
  background: var(--cream);
}

.lane-builder .system-nodes span,
.lane-finance .system-nodes span,
.lane-security .system-nodes span,
.lane-world .system-nodes span {
  border-color: white;
}

.future-lab {
  position: relative;
  min-height: 112vh;
  overflow: hidden;
  border-bottom: 4px solid var(--ink);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 59, 200, 0.26), transparent 17rem),
    radial-gradient(circle at 78% 30%, rgba(21, 207, 232, 0.32), transparent 22rem),
    linear-gradient(115deg, #f7ead0 0%, #ead9b7 100%);
  isolation: isolate;
}

.future-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.36;
  background:
    linear-gradient(90deg, rgba(23, 44, 255, 0.72) 1px, transparent 1px),
    linear-gradient(rgba(23, 44, 255, 0.72) 1px, transparent 1px),
    radial-gradient(rgba(8, 8, 10, 0.55) 1px, transparent 1px);
  background-size: 2.2rem 2.2rem, 2.2rem 2.2rem, 8px 8px;
  transform: rotate(-5deg) scale(1.15);
}

.future-lab::after {
  content: "";
  position: absolute;
  left: -7rem;
  right: -7rem;
  bottom: -5rem;
  height: 18rem;
  background: var(--ink);
  transform: rotate(3deg);
}

.lab-word {
  position: absolute;
  z-index: 0;
  color: var(--red);
  font-size: 11rem;
  font-weight: 1000;
  line-height: 0.72;
  text-transform: uppercase;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.lab-word-one {
  left: -1rem;
  top: 4rem;
}

.lab-word-two {
  right: -2rem;
  bottom: 10rem;
  color: var(--lime);
  font-size: 7rem;
  transform: rotate(-2deg);
}

.logo-orbit {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 33rem;
  height: 33rem;
  transform: translate(-50%, -50%);
}

.logo-orbit img {
  position: relative;
  z-index: 6;
  width: 12rem;
  height: 12rem;
  object-fit: contain;
  padding: 1rem;
  background: var(--ink);
  border: 3px solid var(--lime);
  box-shadow: 10px 10px 0 var(--ink), 0 0 42px rgba(21, 207, 232, 0.7);
  transform: rotate(-5deg);
}

.orbit-ring {
  position: absolute;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(21, 207, 232, 0.65);
}

.orbit-a {
  width: 31rem;
  height: 31rem;
}

.orbit-b {
  width: 22rem;
  height: 10rem;
  border-color: var(--pink);
  transform: rotate(-25deg);
}

.orbit-c {
  width: 17rem;
  height: 17rem;
  border-color: var(--lime);
}

.lab-signal {
  position: absolute;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 0.45rem;
  padding: 1rem;
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(8, 8, 10, 0.18);
  overflow: hidden;
}

.lab-signal::before,
.lab-signal::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lab-signal span,
.lab-signal strong {
  position: relative;
  z-index: 2;
  display: block;
  text-transform: uppercase;
}

.lab-signal span {
  width: max-content;
  max-width: 100%;
  padding: 0.35rem 0.5rem;
  color: white;
  background: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.lab-signal strong {
  max-width: 19rem;
  font-size: 2.25rem;
  line-height: 0.86;
}

.signal-a {
  left: 4rem;
  top: 19rem;
  width: 26rem;
  height: 18rem;
  background: var(--cyan);
  transform: rotate(-4deg);
}

.signal-a::before {
  inset: 1rem;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 0.28) 1px, transparent 1px),
    linear-gradient(rgba(8, 8, 10, 0.28) 1px, transparent 1px);
  background-size: 1.1rem 1.1rem;
  transform: skew(-10deg);
}

.signal-a::after {
  right: 1.3rem;
  top: 1.2rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 0.55rem solid var(--ink);
  border-left-color: transparent;
  border-radius: 50%;
}

.signal-b {
  right: 3rem;
  top: 10rem;
  width: 28rem;
  height: 22rem;
  background: var(--red);
  transform: rotate(4deg);
}

.signal-b::before {
  left: 4.5rem;
  right: 4.5rem;
  bottom: 1rem;
  height: 13rem;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(180deg, rgba(21, 207, 232, 0.85), rgba(255, 255, 255, 0.08));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  mix-blend-mode: screen;
}

.signal-b::after {
  left: 50%;
  bottom: 2rem;
  width: 10rem;
  height: 3.4rem;
  border: 0.32rem solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  box-shadow: 0 -4rem 0 -1.2rem rgba(215, 255, 0, 0.75), 0 -7rem 0 -1.35rem rgba(21, 207, 232, 0.65);
  transform: translateX(-50%);
}

.signal-b strong {
  color: white;
}

.signal-c {
  left: 23vw;
  bottom: 6rem;
  width: 30rem;
  height: 18rem;
  background: var(--lime);
  transform: rotate(7deg);
}

.signal-c strong {
  color: var(--ink);
}

.signal-c::before {
  left: 1rem;
  right: 1rem;
  top: 4rem;
  height: 5rem;
  background:
    linear-gradient(135deg, transparent 0 20%, var(--ink) 21% 24%, transparent 25% 45%, var(--ink) 46% 49%, transparent 50% 69%, var(--ink) 70% 73%, transparent 74%),
    radial-gradient(circle at 18% 72%, white 0 0.65rem, transparent 0.7rem),
    radial-gradient(circle at 50% 30%, white 0 0.65rem, transparent 0.7rem),
    radial-gradient(circle at 82% 65%, white 0 0.65rem, transparent 0.7rem);
}

.signal-c::after {
  right: 1.25rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  color: var(--lime);
  background: var(--ink);
  border: 0.3rem solid white;
  border-radius: 50%;
  box-shadow: -5rem 6.5rem 0 -1.3rem var(--ink), -10rem 2.2rem 0 -1.5rem var(--ink);
}

.lab-title-card {
  position: absolute;
  z-index: 8;
  left: 2rem;
  top: 4rem;
  width: min(38rem, 44vw);
  padding: 1rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
  clip-path: polygon(0 0, 98% 4%, 100% 92%, 4% 100%);
}

.lab-title-card .project-kicker {
  margin-bottom: 0.8rem;
  box-shadow: none;
  border-color: white;
}

.lab-title-card h2 {
  margin: 0;
  color: var(--lime);
  font-size: 3.4rem;
  line-height: 0.86;
  text-transform: uppercase;
}

.lab-title-card p:not(.project-kicker) {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.pro-title {
  position: absolute;
  z-index: 9;
  padding: 0.65rem 0.85rem;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-family: "Courier New", monospace;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.title-a {
  right: 7rem;
  top: 8rem;
  background: var(--lime);
  transform: rotate(3deg);
}

.title-b {
  right: 4rem;
  top: 29rem;
  background: var(--cyan);
  transform: rotate(-3deg);
}

.title-c {
  left: 8rem;
  bottom: 8rem;
  background: var(--pink);
  color: white;
  transform: rotate(4deg);
}

.title-d {
  right: 17rem;
  bottom: 11rem;
  background: var(--red);
  color: white;
  transform: rotate(-4deg);
}

.title-e {
  left: 5rem;
  top: 42rem;
  background: var(--blue);
  color: white;
  transform: rotate(-2deg);
}

@media (max-width: 1120px) {
  .poster {
    min-height: auto;
    padding: 6.5rem 1rem 2rem;
  }

  .mega,
  .agent-head,
  .black-panel,
  .terminal-card,
  .metric-card,
  .flow-card,
  .module-card,
  .about-copy,
  .principle-stack,
  .contact-block,
  .terms-block,
  .profile-cutout {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .mega {
    display: block;
    width: 100%;
    max-width: none;
    margin-bottom: 1rem;
  }

  .mega-hero,
  .mega-modules,
  .mega-about {
    font-size: 6rem;
    transform: none;
  }

  .agent-head,
  .profile-cutout {
    width: 22rem;
    max-width: 100%;
    height: 28rem;
    margin: 1rem auto;
  }

  .intro-panel,
  .about-copy,
  .principle-stack,
  .contact-block,
  .terms-block {
    width: 100%;
  }

  .intro-panel {
    clip-path: none;
    min-height: 0;
    padding: 1.2rem;
  }

  .lead {
    font-size: 1.35rem;
  }

  .terminal-card,
  .metric-card,
  .flow-card,
  .module-card,
  .contact-block,
  .terms-block {
    width: 100%;
    margin-top: 1rem;
  }

  .poster-modules,
  .poster-about {
    min-height: auto;
  }

  .profile-cutout {
    display: none;
  }

  .principle-stack {
    display: grid;
    width: 100%;
    margin-top: 1rem;
  }

  .top-left,
  .top-right,
  .logo-stamp {
    display: none;
  }
}

@media (max-width: 620px) {
  .masthead {
    position: absolute;
    align-items: flex-start;
    padding: 0.75rem;
  }

  .brand-lockup,
  .mail-chip,
  .project-chip {
    box-shadow: 3px 3px 0 var(--ink);
  }

  .header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .mail-chip,
  .project-chip {
    max-width: 10.5rem;
    overflow-wrap: anywhere;
    font-size: 0.8rem;
  }

  .mega-hero,
  .mega-modules,
  .mega-about {
    font-size: 3.6rem;
  }

  .icon-row,
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-card h2,
  .module-card h3,
  .contact-block h3,
  .terms-block h3,
  .principle-stack h3 {
    font-size: 1.65rem;
  }
}

@media (max-width: 900px) {
  .project-hero,
  .systems-hero {
    min-height: auto;
    padding: 7rem 1rem 2rem;
  }

  .project-hero h1,
  .systems-hero h1 {
    font-size: 5rem;
  }

  .project-grid,
  .systems-board {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-neugrid,
  .project-vibe,
  .project-pulse,
  .project-bitbyte,
  .project-spectra,
  .project-grox,
  .project-suipal,
  .system-lane,
  .lane-network,
  .lane-builder,
  .lane-sui {
    grid-column: auto;
  }

  .project-title-row h2 {
    font-size: 2.1rem;
  }
}

@media (max-width: 520px) {
  .project-hero h1,
  .systems-hero h1 {
    font-size: 3.4rem;
  }

  .project-title-row {
    align-items: flex-start;
  }

  .project-logo {
    width: 3.8rem;
    height: 3.8rem;
  }
}

/* Project pages: maximalist collage mode */
.project-hero,
.systems-hero {
  min-height: 82vh;
}

.project-hero h1,
.systems-hero h1 {
  max-width: 11ch;
  text-shadow: 10px 10px 0 rgba(8, 8, 10, 0.12);
}

.project-hero-console {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 42rem;
  margin-top: 1.5rem;
  padding: 0.75rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--lime);
  transform: rotate(-1deg);
}

.project-hero-console span {
  padding: 0.45rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--lime);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-grid,
.systems-board {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 9% 18%, rgba(23, 44, 255, 0.22), transparent 19rem),
    radial-gradient(circle at 86% 11%, rgba(255, 43, 31, 0.2), transparent 20rem),
    linear-gradient(90deg, rgba(8, 8, 10, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(8, 8, 10, 0.1) 1px, transparent 1px),
    var(--paper);
  background-size: auto, auto, 2.2rem 2.2rem, 2.2rem 2.2rem, auto;
}

.project-grid::before,
.systems-board::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.26;
  background-image:
    radial-gradient(rgba(8, 8, 10, 0.65) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 47%, rgba(255, 59, 200, 0.36) 48% 50%, transparent 51%);
  background-size: 8px 8px, 19rem 19rem;
  mix-blend-mode: multiply;
}

.project-grid::after,
.systems-board::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -4rem;
  right: -4rem;
  bottom: -4rem;
  height: 12rem;
  background: var(--ink);
  transform: rotate(-2deg);
}

.collage-word {
  position: absolute;
  z-index: 0;
  margin: 0;
  font-weight: 1000;
  line-height: 0.72;
  text-transform: uppercase;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.word-projects {
  left: 2rem;
  top: 2rem;
  color: var(--red);
  font-size: 10.5rem;
  transform: scaleX(1.03) rotate(-1deg);
}

.word-live {
  right: -0.5rem;
  bottom: 8rem;
  color: var(--lime);
  font-size: 8rem;
  transform: rotate(3deg);
}

.word-systems {
  left: -1rem;
  top: 1.5rem;
  color: var(--red);
  font-size: 12rem;
  transform: scaleX(1.05);
}

.cyber-profile {
  position: absolute;
  z-index: 2;
  left: 34%;
  top: 10rem;
  width: 24rem;
  height: 43rem;
  pointer-events: none;
  filter: drop-shadow(18px 18px 0 rgba(8, 8, 10, 0.18));
}

.project-logo-constellation {
  position: absolute;
  z-index: 2;
  left: 35%;
  top: 11rem;
  display: grid;
  place-items: center;
  width: 28rem;
  height: 28rem;
  pointer-events: none;
  transform: rotate(-4deg);
}

.project-logo-constellation::before,
.project-logo-constellation::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.project-logo-constellation::before {
  left: 50%;
  top: 50%;
  width: 25rem;
  height: 25rem;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-left-color: rgba(21, 207, 232, 0.8);
  border-bottom-color: rgba(215, 255, 0, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(21, 207, 232, 0.35);
  transform: translate(-50%, -50%) rotate(18deg);
}

.project-logo-constellation::after {
  left: 50%;
  top: 50%;
  width: 32rem;
  height: 5rem;
  background:
    linear-gradient(90deg, transparent 0 8%, var(--cyan) 9% 12%, transparent 13% 44%, var(--lime) 45% 48%, transparent 49% 78%, var(--pink) 79% 82%, transparent 83%),
    linear-gradient(rgba(8, 8, 10, 0.62), rgba(8, 8, 10, 0.62));
  clip-path: polygon(0 44%, 100% 0, 95% 56%, 2% 100%);
  opacity: 0.72;
  transform: translate(-50%, -50%) rotate(-14deg);
}

.project-logo-constellation img {
  position: relative;
  z-index: 5;
  width: 17rem;
  height: 17rem;
  object-fit: contain;
  padding: 0;
  opacity: 0.58;
  filter: drop-shadow(0 0 30px rgba(21, 207, 232, 0.7));
  transform: rotate(4deg);
}

.constellation-ring {
  position: absolute;
  z-index: 1;
  border: 2px solid rgba(8, 8, 10, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(215, 255, 0, 0.4);
  background: transparent;
}

.constellation-a {
  width: 20rem;
  height: 20rem;
  border-color: rgba(8, 8, 10, 0.42);
}

.constellation-b {
  width: 14rem;
  height: 5rem;
  border-color: var(--pink);
  transform: rotate(-28deg);
}

.constellation-c {
  width: 9rem;
  height: 9rem;
  border-color: var(--lime);
}

.constellation-note {
  position: absolute;
  z-index: 6;
  padding: 0.45rem 0.6rem;
  color: var(--ink);
  background: white;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.note-a {
  left: 0.4rem;
  top: 1rem;
  background: var(--lime);
  transform: rotate(4deg);
}

.note-b {
  right: -0.8rem;
  top: 11rem;
  background: var(--cyan);
  transform: rotate(9deg);
}

.note-c {
  left: 3.5rem;
  bottom: 2.3rem;
  background: var(--pink);
  color: white;
  transform: rotate(-4deg);
}

.cyber-hair,
.cyber-face,
.cyber-visor,
.cyber-aura,
.cyber-label {
  position: absolute;
  display: block;
}

.cyber-hair {
  left: 4rem;
  top: 0;
  width: 14rem;
  height: 15rem;
  background:
    radial-gradient(circle at 70% 30%, rgba(21, 207, 232, 0.45), transparent 3rem),
    var(--ink);
  border-radius: 48% 52% 42% 44%;
}

.cyber-face {
  left: 7rem;
  top: 7rem;
  width: 10.5rem;
  height: 18rem;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0 3px, transparent 3px 7px),
    linear-gradient(90deg, rgba(21, 207, 232, 0.55), transparent 45%),
    #e8c4a2;
  border: 3px solid var(--ink);
  clip-path: polygon(35% 0, 100% 10%, 91% 54%, 63% 100%, 19% 85%, 0 28%);
}

.cyber-visor {
  left: 9rem;
  top: 11.5rem;
  width: 12rem;
  height: 2.4rem;
  background: var(--lime);
  border: 3px solid var(--ink);
  box-shadow: 0 0 28px rgba(215, 255, 0, 0.75);
  transform: skew(-18deg) rotate(-2deg);
}

.cyber-aura {
  left: 2.8rem;
  top: 7rem;
  width: 15rem;
  height: 15rem;
  border: 4px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(21, 207, 232, 0.72);
}

.cyber-label {
  left: 4.3rem;
  top: 26rem;
  max-width: 10rem;
  padding: 0.6rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--lime);
  font-family: "Courier New", monospace;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  transform: rotate(-9deg);
}

.project-scribble {
  position: absolute;
  z-index: 3;
  width: 8rem;
  height: 8rem;
  border: 0.45rem solid var(--ink);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  pointer-events: none;
}

.project-scribble::before,
.project-scribble::after {
  content: "";
  position: absolute;
  width: 9rem;
  height: 0.42rem;
  background: currentColor;
}

.project-scribble::before {
  top: 2.6rem;
  left: -1.5rem;
  transform: rotate(-24deg);
}

.project-scribble::after {
  top: 4.8rem;
  left: 0.2rem;
  transform: rotate(18deg);
}

.scribble-one {
  left: 4rem;
  top: 30rem;
  color: var(--blue);
  border-color: var(--blue);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.scribble-two {
  right: 4rem;
  top: 18rem;
  color: var(--pink);
  border-color: var(--pink);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.scribble-three {
  right: 8rem;
  top: 9rem;
  color: var(--lime);
  border-color: var(--lime);
  border-left-color: transparent;
  border-bottom-color: transparent;
}

.project-card,
.system-lane {
  clip-path: polygon(0 0, 96% 3%, 100% 92%, 84% 100%, 4% 98%);
  transform: rotate(var(--tilt, 0deg));
}

.project-card::before,
.system-lane::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  z-index: 0;
  border: 1px dashed rgba(8, 8, 10, 0.42);
  pointer-events: none;
}

.project-vibe::before,
.project-bitbyte::before,
.project-spectra::before,
.project-grox::before,
.lane-builder::before,
.lane-finance::before,
.lane-security::before,
.lane-world::before {
  border-color: rgba(255, 255, 255, 0.42);
}

.project-title-row h2,
.system-lane h2 {
  display: inline;
  padding: 0.1rem 0.25rem;
  background: rgba(255, 255, 255, 0.28);
  box-decoration-break: clone;
}

.project-tags span,
.system-nodes span {
  box-shadow: 3px 3px 0 rgba(8, 8, 10, 0.35);
}

.project-card p,
.system-lane p {
  background: rgba(255, 255, 255, 0.18);
}

.project-card:nth-of-type(odd) .project-logo {
  border-radius: 50%;
}

.project-card:nth-of-type(even) .project-logo {
  transform: rotate(-8deg);
}

.system-hub {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: 25rem;
  height: 25rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hub-ring,
.hub-core {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.hub-ring {
  left: 50%;
  top: 50%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 30px rgba(21, 207, 232, 0.65);
}

.hub-one {
  width: 24rem;
  height: 24rem;
}

.hub-two {
  width: 17rem;
  height: 17rem;
  border-color: var(--lime);
}

.hub-three {
  width: 9rem;
  height: 9rem;
  border-color: var(--pink);
}

.hub-core {
  left: 50%;
  top: 50%;
  width: 5.5rem;
  height: 5.5rem;
  color: white;
  background: var(--ink);
  border: 2px solid var(--lime);
  font-size: 2rem;
  transform: translate(-50%, -50%) rotate(-8deg);
}

@media (min-width: 901px) {
  .project-grid {
    display: block;
    min-height: 1250px;
    padding: 0;
  }

  .project-card {
    position: absolute;
    z-index: 5;
    min-height: auto;
  }

  .project-neugrid {
    --tilt: -2deg;
    left: 4rem;
    top: 13rem;
    width: 26rem;
    min-height: 22rem;
  }

  .project-vibe {
    --tilt: 2deg;
    left: 8rem;
    top: 41rem;
    width: 31rem;
    min-height: 21rem;
  }

  .project-pulse {
    --tilt: -1deg;
    right: 27rem;
    top: 8rem;
    width: 28rem;
    min-height: 20rem;
  }

  .project-bitbyte {
    --tilt: 1deg;
    right: 2rem;
    top: 13rem;
    width: 24rem;
    min-height: 24rem;
  }

  .project-spectra {
    --tilt: -2deg;
    right: 24rem;
    top: 34rem;
    width: 30rem;
    min-height: 21rem;
  }

  .project-grox {
    --tilt: 2deg;
    right: 4rem;
    top: 45rem;
    width: 27rem;
    min-height: 23rem;
  }

  .project-suipal {
    --tilt: -1deg;
    left: 39%;
    bottom: 6rem;
    width: 28rem;
    min-height: 18rem;
  }

  .systems-board {
    display: block;
    min-height: 1220px;
    padding: 0;
  }

  .system-lane {
    position: absolute;
    z-index: 5;
  }

  .lane-network {
    --tilt: -2deg;
    left: 3rem;
    top: 11rem;
    width: 36rem;
    min-height: 21rem;
  }

  .lane-builder {
    --tilt: 2deg;
    right: 4rem;
    top: 8rem;
    width: 31rem;
    min-height: 24rem;
  }

  .lane-markets {
    --tilt: -1deg;
    left: 5rem;
    top: 38rem;
    width: 31rem;
    min-height: 22rem;
  }

  .lane-finance {
    --tilt: 1deg;
    right: 5rem;
    top: 36rem;
    width: 32rem;
    min-height: 22rem;
  }

  .lane-security {
    --tilt: -2deg;
    left: 3rem;
    bottom: 7rem;
    width: 32rem;
    min-height: 22rem;
  }

  .lane-world {
    --tilt: 2deg;
    left: 39%;
    bottom: 5rem;
    width: 30rem;
    min-height: 23rem;
  }

  .lane-sui {
    --tilt: -1deg;
    right: 3rem;
    bottom: 7rem;
    width: 27rem;
    min-height: 21rem;
  }
}

@media (max-width: 900px) {
  .collage-word,
  .cyber-profile,
  .project-logo-constellation,
  .project-scribble,
  .system-hub {
    display: none;
  }

  .project-card,
  .system-lane {
    transform: none;
  }

  .future-lab {
    min-height: auto;
    padding: 6.5rem 1rem 2rem;
  }

  .lab-word,
  .lab-signal {
    display: none;
  }

  .logo-orbit,
  .lab-title-card,
  .pro-title {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .logo-orbit {
    width: min(24rem, 100%);
    height: 24rem;
    margin: 1rem auto;
  }

  .orbit-a {
    width: 23rem;
    height: 23rem;
  }

  .orbit-b {
    width: 17rem;
    height: 8rem;
  }

  .orbit-c {
    width: 13rem;
    height: 13rem;
  }

  .lab-title-card {
    width: 100%;
  }

  .pro-title {
    display: inline-block;
    margin: 0.65rem 0.45rem 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: hidden;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-tagline {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .logo-stamp,
  .scratch-a,
  .scratch-b,
  .scratch-c,
  .scribble-one,
  .scribble-two,
  .scribble-three,
  .word-live,
  .lab-word-two {
    display: none;
  }

  .poster,
  .project-grid,
  .future-lab,
  .legal-shell {
    overflow-x: clip;
  }
}
