@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --baby-blue: #9ed8ff;
  --sky-blue: #69bdff;
  --soft-purple: #a78bfa;
  --rich-purple: #7657e8;
  --baby-yellow: #fff0a8;
  --footer-bg: #0d0d18;
  --footer-panel: #141424;
  --footer-text: #f7f6ff;
  --footer-muted: #a9a7bc;
  --footer-line: rgba(174, 191, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f8ff;
  color: #161625;
  font-family: "DM Sans", sans-serif;
}

a {
  color: inherit;
}

.site-header {
  --pointer-x: 0;
  --pointer-y: 0;
  min-height: 100svh;
  position: relative;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  background: #0a1120;
  color: #f8f6f0;
  isolation: isolate;
}

.hero-art,
.hero-shade,
.hero-noise {
  position: absolute;
  inset: 0;
}

.hero-art {
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(121, 160, 218, 0.42), transparent 24%),
    radial-gradient(circle at 38% 54%, rgba(105, 74, 221, 0.28), transparent 30%),
    linear-gradient(125deg, #030711, #0a1426 48%, #1b2941 100%);
}

.galaxy-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    linear-gradient(rgba(158, 216, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 216, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  transform:
    perspective(850px)
    rotateX(61deg)
    translate3d(
      calc(var(--pointer-x) * -18px),
      calc(32% + var(--pointer-y) * -18px),
      0
    )
    scale(1.25);
  transform-origin: center bottom;
  opacity: 0.34;
  mask-image: linear-gradient(to top, black, transparent 78%);
  transition: transform 500ms ease-out;
}

.hero-orb {
  position: absolute;
  border-radius: 48% 52% 62% 38% / 45% 34% 66% 55%;
  filter: blur(9px);
  opacity: 0.42;
  animation: hero-drift 13s ease-in-out infinite alternate;
}

.hero-orb-one {
  width: 55vw;
  height: 55vw;
  left: -19vw;
  top: 22vh;
  background:
    radial-gradient(circle at 61% 34%, rgba(119, 176, 231, 0.24), transparent 12%),
    repeating-radial-gradient(
      ellipse at 70% 50%,
      rgba(113, 177, 229, 0.18) 0 2px,
      rgba(8, 19, 32, 0) 3px 13px
    ),
    #0d1b2b;
  transform: translate3d(
    calc(var(--pointer-x) * 25px),
    calc(var(--pointer-y) * 18px),
    0
  ) rotate(-18deg);
}

.hero-orb-two {
  width: 47vw;
  height: 58vw;
  right: 5vw;
  top: -18vw;
  background:
    repeating-radial-gradient(
      ellipse at 48% 56%,
      rgba(217, 235, 250, 0.21) 0 2px,
      transparent 3px 12px
    ),
    rgba(122, 160, 197, 0.18);
  transform: rotate(29deg);
  animation-delay: -4s;
}

.hero-orb-three {
  width: 35vw;
  height: 35vw;
  right: 15vw;
  bottom: -20vw;
  background: rgba(119, 84, 224, 0.18);
  filter: blur(70px);
  animation-delay: -8s;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(191, 226, 255, 0.27);
  border-radius: 50%;
  transition: transform 700ms ease-out;
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.hero-ring-one {
  width: 510px;
  height: 510px;
  right: 6vw;
  top: 8vh;
  transform:
    translate3d(
      calc(var(--pointer-x) * -31px),
      calc(var(--pointer-y) * -23px),
      0
    )
    rotate(-17deg);
  animation: ring-turn 24s linear infinite;
}

.hero-ring-one::before {
  inset: 42px;
}

.hero-ring-one::after {
  inset: 88px;
}

.hero-ring-two {
  width: 250px;
  height: 250px;
  left: 43%;
  top: 20%;
  border-style: dashed;
  opacity: 0.55;
  animation: ring-turn-reverse 18s linear infinite;
}

.hero-scan {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, transparent, rgba(158, 216, 255, 0.8), transparent);
  box-shadow: 0 0 20px rgba(158, 216, 255, 0.38);
  opacity: 0;
  animation: hero-scan 7s ease-in-out infinite 1.5s;
}

.hero-pixels {
  position: absolute;
  inset: 0;
}

.hero-pixels i {
  width: 6px;
  height: 6px;
  position: absolute;
  background: var(--baby-blue);
  opacity: 0.66;
  animation: pixel-blink 3s steps(2, end) infinite;
}

.hero-pixels i:nth-child(1) { left: 7%; top: 23%; }
.hero-pixels i:nth-child(2) { left: 13%; top: 38%; animation-delay: -.8s; }
.hero-pixels i:nth-child(3) { left: 54%; top: 17%; animation-delay: -1.4s; }
.hero-pixels i:nth-child(4) { right: 9%; top: 43%; background: var(--baby-yellow); animation-delay: -2s; }
.hero-pixels i:nth-child(5) { right: 17%; bottom: 19%; animation-delay: -.5s; }
.hero-pixels i:nth-child(6) { left: 39%; bottom: 12%; background: var(--soft-purple); animation-delay: -1.7s; }
.hero-pixels i:nth-child(7) { left: 28%; top: 13%; width: 3px; height: 3px; }
.hero-pixels i:nth-child(8) { right: 32%; top: 34%; width: 3px; height: 3px; animation-delay: -2.5s; }

.hero-noise {
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.09), rgba(3, 8, 14, 0.1) 42%, rgba(3, 7, 13, 0.58)),
    linear-gradient(90deg, rgba(5, 10, 17, 0.42), transparent 56%);
}

.header-shell {
  width: 100%;
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 1000;
  pointer-events: none;
}

.main-nav {
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(10, 14, 21, 0.76);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  pointer-events: auto;
  transition: background 260ms ease, box-shadow 260ms ease;
}

.main-nav.is-open {
  background: rgba(7, 9, 14, 0.95);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.main-nav.is-scrolled {
  background: rgba(9, 11, 18, 0.9);
  box-shadow: 0 18px 50px rgba(5, 6, 14, 0.34);
}

.nav-bar {
  height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
}

.nav-logo {
  width: max-content;
  display: flex;
}

.nav-logo img {
  width: 35px;
  height: 35px;
  filter: grayscale(1) brightness(2.6);
}

.nav-bar > p {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-bar > p.is-changing {
  opacity: 0;
  transform: translateY(-5px);
}

.menu-toggle {
  width: 38px;
  height: 38px;
  justify-self: end;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  position: absolute;
  left: 8px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-toggle span:first-child { top: 14px; }
.menu-toggle span:last-child { top: 22px; }
.main-nav.is-open .menu-toggle span:first-child {
  top: 18px;
  transform: rotate(45deg);
}
.main-nav.is-open .menu-toggle span:last-child {
  top: 18px;
  transform: rotate(-45deg);
}

.navigation-panel {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition:
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease,
    visibility 0s linear 520ms;
}

.main-nav.is-open .navigation-panel {
  max-height: 620px;
  visibility: visible;
  opacity: 1;
  transition:
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 300ms ease 80ms,
    visibility 0s;
}

.menu-links {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-links a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #eeeaf7;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-size: 17px;
  font-weight: 600;
  transition: background 180ms ease, padding 180ms ease;
}

.menu-links a > span {
  color: #757184;
  font-family: "DM Sans", sans-serif;
  font-size: 9px;
}

.menu-links svg,
.menu-actions svg,
.hero-meta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-links a:hover {
  padding-left: 29px;
  background: linear-gradient(90deg, rgba(158, 216, 255, 0.08), rgba(167, 139, 250, 0.05));
}

.menu-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 16px;
}

.menu-actions a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: #f5f2ea;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-actions .menu-primary {
  border-color: transparent;
  background: #f5f1e9;
  color: #14141c;
}

.hero-content {
  width: min(1500px, calc(100% - 64px));
  min-height: 100svh;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 0 34px;
}

.hero-kicker {
  margin-bottom: 29px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d8e7f5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 34px;
  height: 1px;
  background: var(--baby-blue);
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
  gap: clamp(50px, 8vw, 150px);
  align-items: end;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(56px, 6vw, 100px);
  font-weight: 800;
  line-height: 0.83;
  letter-spacing: -0.075em;
}

.hero-copy h1 .hero-line-accent {
  color: var(--baby-blue);
}

.hero-line {
  display: block;
  color: #f8f6f0;
  opacity: 0;
  transform: translateY(105%);
  animation: headline-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line:nth-child(1) { animation-delay: 160ms; }
.hero-line:nth-child(2) { animation-delay: 280ms; }
.hero-line:nth-child(3) { animation-delay: 400ms; }

.hero-copy > p {
  margin: 0 0 7px;
  color: #f2f3f7;
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.025em;
  opacity: 0;
  transform: translateY(16px);
  animation: copy-arrive 700ms ease forwards 670ms;
}

.hero-signals {
  position: absolute;
  right: 0;
  top: 27%;
  display: grid;
  gap: 9px;
  transform: translate3d(
    calc(var(--pointer-x) * -15px),
    calc(var(--pointer-y) * -12px),
    0
  );
  transition: transform 450ms ease-out;
}

.hero-code-card {
  width: 232px;
  margin: 3px 0 0 -58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(6, 9, 18, 0.67);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  animation: signal-float 5s ease-in-out infinite -1s;
}

.hero-code-card > div {
  height: 27px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-code-card > div i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #666878;
}

.hero-code-card > div i:first-child {
  background: #ff8b83;
}

.hero-code-card > div i:nth-child(2) {
  background: var(--baby-yellow);
}

.hero-code-card > div i:nth-child(3) {
  background: #77e6ba;
}

.hero-code-card > div span {
  margin-left: auto;
  color: #737789;
  font-family: monospace;
  font-size: 7px;
}

.hero-code-card code {
  display: block;
  padding: 14px 16px 16px;
  color: #c9d6e6;
  font-family: "Courier New", monospace;
  font-size: 9px;
  line-height: 1.65;
}

.hero-code-card code b {
  color: var(--soft-purple);
  font-weight: 500;
}

.hero-code-card code em {
  color: var(--baby-yellow);
  font-style: normal;
}

.hero-signal {
  min-width: 196px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(9, 13, 22, 0.55);
  box-shadow: 0 14px 42px rgba(1, 5, 10, 0.2);
  backdrop-filter: blur(15px);
  animation: signal-float 4s ease-in-out infinite;
}

.hero-signal:nth-child(2) {
  margin-left: 36px;
  animation-delay: -2s;
}

.hero-signal p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.hero-signal small {
  color: #8f9baa;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-signal strong {
  color: white;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.signal-pixel-icon {
  width: 27px;
  height: 25px;
  display: flex;
  align-items: end;
  gap: 2px;
}

.signal-pixel-icon i {
  width: 5px;
  background: var(--baby-blue);
}

.signal-pixel-icon i:nth-child(1) { height: 8px; }
.signal-pixel-icon i:nth-child(2) { height: 14px; }
.signal-pixel-icon i:nth-child(3) { height: 19px; }
.signal-pixel-icon i:nth-child(4) { height: 25px; background: var(--baby-yellow); }

.signal-pulse {
  width: 10px;
  height: 10px;
  margin: 0 8px;
  border-radius: 50%;
  background: #77e6ba;
  box-shadow: 0 0 0 0 rgba(119, 230, 186, 0.42);
  animation: signal-pulse 2s ease-out infinite;
}

.hero-meta {
  margin-top: 32px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(-90deg) translateX(50%);
  transform-origin: center;
}

.hero-scroll span {
  width: 26px;
  height: 1px;
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.25);
}

.hero-scroll span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: var(--baby-yellow);
  animation: scroll-line 2s ease-in-out infinite;
}

.hero-meta a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes hero-drift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-15deg) scale(1); }
  to { transform: translate3d(4%, 3%, 0) rotate(-5deg) scale(1.07); }
}

@keyframes headline-rise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes copy-arrive {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ring-turn {
  to { transform: rotate(343deg); }
}

@keyframes ring-turn-reverse {
  to { transform: rotate(-360deg); }
}

@keyframes hero-scan {
  0%, 10% { top: 0; opacity: 0; }
  20% { opacity: .5; }
  75% { opacity: .18; }
  85%, 100% { top: 100%; opacity: 0; }
}

@keyframes pixel-blink {
  0%, 40% { opacity: .15; }
  50%, 100% { opacity: .75; }
}

@keyframes signal-float {
  50% { transform: translateY(-7px); }
}

@keyframes signal-pulse {
  70% { box-shadow: 0 0 0 10px rgba(119, 230, 186, 0); }
  100% { box-shadow: 0 0 0 0 rgba(119, 230, 186, 0); }
}

@keyframes scroll-line {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@media (max-width: 860px) {
  .site-header,
  .hero-content {
    min-height: 820px;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-bottom: 25px;
  }

  .hero-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(49px, 10.5vw, 76px);
  }

  .hero-copy > p {
    max-width: 480px;
  }

  .hero-signals {
    top: 19%;
  }
}

@media (max-width: 560px) {
  .header-shell {
    top: 12px;
  }

  .main-nav {
    width: calc(100% - 28px);
  }

  .nav-bar {
    height: 64px;
    padding: 0 13px;
  }

  .nav-logo img {
    width: 32px;
    height: 32px;
  }

  .nav-bar > p {
    font-size: 8px;
  }

  .menu-links a {
    min-height: 60px;
    padding: 0 18px;
    font-size: 15px;
  }

  .menu-actions {
    grid-template-columns: 1fr;
  }

  .hero-art {
    background:
      radial-gradient(circle at 78% 8%, rgba(183, 220, 255, 0.63), transparent 31%),
      radial-gradient(circle at 34% 58%, rgba(105, 109, 199, 0.4), transparent 33%),
      linear-gradient(125deg, #08121e, #1b3550 52%, #7089a5 100%);
  }

  .hero-orb-one {
    width: 125vw;
    height: 125vw;
    left: -68vw;
    top: 30vh;
  }

  .hero-orb-two {
    width: 105vw;
    height: 125vw;
    right: -36vw;
    top: -15vw;
  }

  .site-header,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 130px;
  }

  .hero-kicker {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .hero-copy {
    gap: 25px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12.3vw, 58px);
    line-height: 0.89;
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.45;
  }

  .hero-meta {
    margin-top: 28px;
  }

  .hero-meta > span {
    max-width: 145px;
    line-height: 1.5;
  }

  .hero-signals,
  .hero-ring-two,
  .hero-scroll {
    display: none;
  }

  .hero-ring-one {
    width: 340px;
    height: 340px;
    right: -120px;
    top: 14%;
    opacity: .58;
  }
}

/* Editorial developer hero */
.site-header {
  min-height: 900px;
  background: #f7f6f2;
  color: #171721;
}

.hero-art {
  background:
    radial-gradient(circle at 83% 24%, rgba(158, 216, 255, 0.34), transparent 25%),
    radial-gradient(circle at 63% 70%, rgba(167, 139, 250, 0.19), transparent 25%),
    #f7f6f2;
}

.hero-art::before,
.hero-orb,
.hero-ring,
.hero-scan,
.hero-noise,
.galaxy-canvas {
  display: none;
}

.hero-paper-grid {
  position: absolute;
  inset: 0 0 0 52%;
  background-image:
    linear-gradient(rgba(38, 36, 53, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 36, 53, 0.055) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 85%, transparent);
}

.hero-color-wash {
  width: 480px;
  height: 480px;
  position: absolute;
  right: 10%;
  top: 17%;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(158, 216, 255, 0.48), rgba(167, 139, 250, 0.35));
  filter: blur(90px);
  opacity: 0.48;
  animation: wash-breathe 7s ease-in-out infinite;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 30%),
    linear-gradient(90deg, rgba(247, 246, 242, 0.9), transparent 62%);
}

.hero-pixels i {
  background: var(--rich-purple);
  opacity: 0.45;
}

.hero-pixels i:nth-child(4),
.hero-pixels i:nth-child(7) {
  background: #b6dc43;
}

.hero-content {
  width: min(1400px, calc(100% - 72px));
  min-height: 900px;
  justify-content: flex-start;
  padding: 158px 0 28px;
}

.hero-kicker {
  margin-bottom: 65px;
  color: #5f5c6b;
}

.hero-kicker span {
  background: var(--rich-purple);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.hero-layout .hero-copy {
  display: block;
}

.hero-copy h1 {
  color: #171721;
  font-size: clamp(55px, 5.8vw, 92px);
  line-height: 0.9;
}

.hero-line {
  color: #171721;
}

.hero-copy h1 .hero-line-accent {
  color: var(--rich-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.07em;
}

.hero-copy > p {
  max-width: 560px;
  margin: 32px 0 0;
  color: #686573;
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.hero-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-primary {
  gap: 12px;
  padding: 14px 16px 14px 20px;
  border-radius: 999px;
  background: #171721;
  color: white;
  box-shadow: 0 14px 30px rgba(23, 23, 33, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(23, 23, 33, 0.24);
}

.hero-primary svg,
.hero-meta svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-secondary {
  padding-bottom: 5px;
  border-bottom: 1px solid #8c8996;
  color: #4b4857;
}

.developer-system {
  height: 550px;
  position: relative;
  transform:
    translate3d(
      calc(var(--pointer-x) * -11px),
      calc(var(--pointer-y) * -8px),
      0
    );
  transition: transform 500ms ease-out;
}

.system-connectors {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
  fill: #f7f6f2;
  stroke: #656171;
  stroke-width: 1.2;
  stroke-dasharray: 5 6;
}

.system-connectors path {
  animation: connector-flow 14s linear infinite;
}

.system-connectors circle {
  fill: #f7f6f2;
  stroke-dasharray: none;
}

.system-card,
.system-badge {
  position: absolute;
  border: 1px solid rgba(33, 31, 45, 0.14);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(47, 40, 80, 0.1);
  backdrop-filter: blur(14px);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 260ms ease;
}

.system-card:hover {
  z-index: 10;
  transform: translateY(-8px) rotate(0deg) !important;
  box-shadow: 0 26px 60px rgba(47, 40, 80, 0.18);
}

.code-module {
  width: 265px;
  left: 24%;
  top: 22%;
  overflow: hidden;
  background: rgba(18, 18, 29, 0.96);
  color: #dce6f4;
  transform: rotate(-2deg);
}

.module-top {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.module-top > span {
  display: flex;
  gap: 5px;
}

.module-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #686777;
}

.module-top i:first-child { background: #ff8b83; }
.module-top i:nth-child(2) { background: var(--baby-yellow); }
.module-top i:nth-child(3) { background: #73dcb3; }

.module-top small {
  color: #767586;
  font-family: monospace;
  font-size: 8px;
}

.code-module code {
  display: block;
  padding: 20px 20px 15px;
  font-family: "Courier New", monospace;
  font-size: 10px;
  line-height: 1.7;
}

.code-module code b { color: #b997ff; }
.code-module code em { color: #8ed4ff; font-style: normal; }
.code-module code u { color: var(--baby-yellow); text-decoration: none; }

.code-status {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #9492a2;
  font-size: 7px;
  letter-spacing: .08em;
}

.code-status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #73dcb3;
  box-shadow: 0 0 0 5px rgba(115, 220, 179, .09);
}

.metric-module {
  width: 255px;
  right: 0;
  top: 8%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  transform: rotate(2deg);
}

.metric-ring {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 72px;
  border-radius: 50%;
  background: conic-gradient(var(--rich-purple) 0 98%, #dedde5 98%);
}

.metric-ring::before {
  content: "";
  width: 53px;
  height: 53px;
  position: absolute;
  border-radius: 50%;
  background: white;
}

.metric-ring span {
  position: relative;
  z-index: 1;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.metric-module small,
.cro-module small {
  color: #8b8795;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
}

.metric-module strong {
  margin-top: 4px;
  display: block;
  font-size: 12px;
}

.metric-module p {
  margin: 7px 0 0;
  color: #8b8795;
  font-size: 8px;
}

.metric-module p span {
  color: #2a9d73;
  font-weight: 800;
}

.wp-module {
  width: 210px;
  left: 1%;
  top: 4%;
  padding: 18px;
  transform: rotate(-1deg);
}

.pixel-wp {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  background: var(--rich-purple);
  color: white;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  clip-path: polygon(0 0, 82% 0, 100% 18%, 100% 100%, 18% 100%, 0 82%);
}

.wp-module strong {
  display: block;
  font-size: 13px;
}

.wp-module > span {
  margin-top: 6px;
  display: block;
  color: #817d8c;
  font-size: 8px;
}

.shop-module {
  width: 135px;
  right: 5%;
  top: 51%;
  padding: 17px;
  background: #caff4c;
  transform: rotate(3deg);
}

.pixel-shop {
  width: 31px;
  height: 31px;
  position: relative;
  margin-bottom: 16px;
}

.pixel-shop i {
  position: absolute;
  display: block;
  background: #17201c;
}

.pixel-shop i:nth-child(1) { width: 27px; height: 23px; left: 2px; bottom: 0; }
.pixel-shop i:nth-child(2) { width: 16px; height: 10px; left: 7px; top: 0; border: 4px solid #17201c; background: transparent; }
.pixel-shop i:nth-child(3) { width: 5px; height: 5px; left: 13px; bottom: 8px; background: #caff4c; }

.shop-module > span {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
}

.cro-module {
  width: 205px;
  left: 12%;
  bottom: 2%;
  padding: 18px;
  transform: rotate(1deg);
}

.cro-module strong {
  margin: 7px 0 12px;
  display: block;
  color: var(--rich-purple);
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  letter-spacing: -.06em;
}

.mini-bars {
  height: 32px;
  display: flex;
  align-items: end;
  gap: 5px;
}

.mini-bars i {
  width: 14%;
  background: #b5a1f4;
}

.mini-bars i:nth-child(1) { height: 35%; }
.mini-bars i:nth-child(2) { height: 48%; }
.mini-bars i:nth-child(3) { height: 42%; }
.mini-bars i:nth-child(4) { height: 70%; }
.mini-bars i:nth-child(5) { height: 100%; background: var(--rich-purple); }

.system-badge {
  padding: 9px 13px;
  border-radius: 999px;
  color: #22202c;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .08em;
}

.badge-clean {
  left: 0;
  top: 47%;
  background: var(--baby-yellow);
  transform: rotate(-90deg) translateX(-50%);
}

.badge-scale {
  right: 15%;
  bottom: 3%;
  background: #171721;
  color: white;
  transform: rotate(-4deg);
}

.hero-meta {
  margin-top: auto;
  color: #777380;
  border-color: rgba(29, 27, 40, .22);
}

.hero-meta a {
  color: #25232e;
}

.hero-scroll {
  color: #6f6b79;
}

.hero-scroll span {
  background: rgba(28, 26, 38, .2);
}

@keyframes connector-flow {
  to { stroke-dashoffset: -110; }
}

@keyframes wash-breathe {
  50% { transform: translate(25px, -18px) scale(1.12); }
}

/* Distinctive editorial treatment */
.site-header::after {
  content: "";
  width: 6px;
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 4;
  background: linear-gradient(180deg, #caff4c, var(--baby-blue), var(--soft-purple));
}

.hero-kicker b {
  padding: 7px 10px;
  border-radius: 999px;
  background: #caff4c;
  color: #171721;
  font-size: 8px;
  letter-spacing: .06em;
}

.hero-copy h1 {
  color: #171721;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.1vw, 98px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.068em;
}

.hero-copy h1 .hero-line-accent {
  width: max-content;
  position: relative;
  color: #171721;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
}

.hero-copy h1 .hero-line-accent::after {
  content: "";
  height: 14px;
  position: absolute;
  right: -4px;
  bottom: 4px;
  left: 0;
  z-index: -1;
  background: #caff4c;
  transform: rotate(-1deg);
}

.hero-asterisk {
  position: absolute;
  right: -42px;
  top: -10px;
  color: var(--rich-purple);
  font-family: "Manrope", sans-serif;
  font-size: .55em;
  font-style: normal;
  animation: asterisk-turn 10s linear infinite;
}

.developer-system::before {
  content: "RICHFOLDS / DEVELOPMENT SYSTEM";
  position: absolute;
  left: 46%;
  top: -5px;
  color: #787483;
  font-family: monospace;
  font-size: 7px;
  letter-spacing: .12em;
}

.system-card {
  border-radius: 3px;
  box-shadow: 10px 12px 0 rgba(42, 37, 65, .08);
}

.system-card:hover {
  box-shadow: 15px 18px 0 rgba(42, 37, 65, .11);
}

.metric-module {
  border-top: 5px solid #caff4c;
}

.wp-module {
  border-left: 5px solid var(--rich-purple);
}

.shop-module {
  border-radius: 3px;
}

.cro-module {
  border-bottom: 5px solid var(--baby-blue);
}

.system-badge {
  box-shadow: none;
}

.system-star {
  position: absolute;
  right: 1%;
  bottom: 11%;
  color: var(--rich-purple);
  font-size: 42px;
  animation: asterisk-turn 12s linear infinite reverse;
}

@keyframes asterisk-turn {
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .site-header,
  .hero-content {
    min-height: 1040px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-kicker {
    margin-bottom: 45px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .developer-system {
    width: min(720px, 100%);
    height: 480px;
    margin: 15px auto 0;
  }

  .hero-meta {
    margin-top: 35px;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero-content {
    min-height: 960px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 130px;
  }

  .hero-kicker {
    margin-bottom: 38px;
    line-height: 1.5;
  }

  .hero-copy h1 {
    font-size: clamp(43px, 12.5vw, 58px);
  }

  .hero-copy h1 .hero-line-accent {
    width: auto;
  }

  .hero-asterisk {
    right: 0;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .developer-system {
    height: 390px;
    margin-top: 25px;
    transform: scale(.88);
    transform-origin: top center;
  }

  .wp-module {
    width: 170px;
  }

  .metric-module {
    width: 190px;
    padding: 13px;
  }

  .metric-ring {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .metric-ring::before {
    width: 39px;
    height: 39px;
  }

  .code-module {
    width: 235px;
    left: 17%;
    top: 30%;
  }

  .cro-module {
    width: 165px;
  }

  .shop-module {
    right: 0;
  }

  .hero-meta {
    margin-top: 0;
  }
}

/* Contact hero — compact editorial redesign */
.contact-page {
  overflow-x: hidden;
}

.contact-main,
.contact-hero {
  width: 100%;
  min-width: 0;
}

.contact-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.contact-hero::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 90px);
  bottom: 54px;
  width: 64px;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--baby-blue) 0 5px,
    transparent 5px 10px
  );
  opacity: 0.8;
  z-index: -1;
}

.contact-grid-bg {
  opacity: 0.55;
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent 2%, #000 38%, #000 100%);
}

.contact-hero-inner {
  width: min(1240px, calc(100% - 64px));
  min-width: 0;
  margin: 0 auto;
  padding: 152px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.58fr);
  align-items: center;
  gap: clamp(56px, 8vw, 126px);
}

.contact-title-block {
  min-width: 0;
}

.contact-title-block .contact-eyebrow {
  margin-bottom: 25px;
}

.contact-hero h1 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(58px, 6.4vw, 98px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  overflow-wrap: normal;
  word-break: normal;
}

.contact-title-block > p:last-child {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(244, 243, 238, 0.67);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
}

.contact-start-panel {
  position: relative;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(160, 216, 255, 0.2);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(117, 81, 232, 0.13), transparent 52%),
    #11121d;
  box-shadow: 12px 14px 0 rgba(117, 81, 232, 0.11);
}

.contact-start-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 72px;
  height: 2px;
  background: var(--baby-yellow);
}

.start-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(244, 243, 238, 0.55);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.start-panel-top i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--baby-yellow);
  box-shadow: 0 0 14px rgba(235, 255, 145, 0.65);
}

.contact-start-panel h2 {
  max-width: 360px;
  margin: 42px 0 24px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-start-panel ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid rgba(244, 243, 238, 0.1);
}

.contact-start-panel li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(244, 243, 238, 0.1);
  color: rgba(244, 243, 238, 0.78);
  font-size: 13px;
}

.contact-start-panel li span {
  color: var(--baby-blue);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
}

.contact-start-panel > a {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  border-radius: 3px;
  background: var(--baby-yellow);
  color: #11121d;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.contact-start-panel > a:hover {
  transform: translateY(-3px);
  background: var(--baby-blue);
}

@media (max-width: 860px) {
  .contact-hero {
    min-height: auto;
  }

  .contact-hero-inner {
    width: min(680px, calc(100% - 40px));
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
    padding: 136px 0 78px;
  }

  .contact-hero h1 {
    max-width: 660px;
    font-size: clamp(54px, 11vw, 82px);
  }

  .contact-start-panel {
    width: min(100%, 560px);
  }
}

@media (max-width: 520px) {
  .contact-hero-inner {
    width: calc(100% - 32px);
    gap: 42px;
    padding: 116px 0 62px;
  }

  .contact-hero h1 {
    font-size: clamp(46px, 14vw, 64px);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }

  .contact-title-block > p:last-child {
    margin-top: 24px;
    font-size: 15px;
  }

  .contact-start-panel {
    padding: 23px 20px 20px;
    box-shadow: 7px 8px 0 rgba(117, 81, 232, 0.11);
  }

  .contact-start-panel h2 {
    margin-top: 34px;
  }
}

/* Capabilities — service console redesign */
.capabilities {
  position: relative;
  isolation: isolate;
  color: #f4f3ee;
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 0 50%;
  z-index: -2;
  width: 100vw;
  margin-left: -50vw;
  background:
    linear-gradient(rgba(158, 216, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 216, 255, 0.055) 1px, transparent 1px),
    #10101b;
  background-size: 64px 64px;
}

.capabilities::after {
  content: "01";
  position: absolute;
  top: clamp(70px, 8vw, 118px);
  right: -2vw;
  z-index: -1;
  color: rgba(158, 216, 255, 0.045);
  font-family: "Manrope", sans-serif;
  font-size: clamp(180px, 24vw, 360px);
  font-weight: 800;
  line-height: 0.7;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.capabilities .section-heading {
  margin-bottom: clamp(66px, 8vw, 110px);
}

.capabilities .section-label {
  color: rgba(244, 243, 238, 0.56);
}

.capabilities .section-label span {
  color: var(--baby-yellow);
}

.capabilities .section-heading h2 {
  max-width: 930px;
  color: #f4f3ee;
}

.capabilities .section-heading h2 em {
  color: var(--baby-blue);
}

.capabilities .section-heading > div > p {
  color: rgba(244, 243, 238, 0.58);
}

.capabilities .capability-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(500px, 1.2fr);
  grid-template-rows: repeat(3, minmax(205px, auto));
  gap: 12px;
}

.capabilities .capability-card {
  min-height: 0;
  border: 1px solid rgba(158, 216, 255, 0.14);
  border-radius: 2px;
  background: rgba(20, 20, 34, 0.88);
  color: #f4f3ee;
  box-shadow: none;
}

.capabilities .capability-card:not(.capability-featured) {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  column-gap: 30px;
  align-items: center;
  padding: 30px 34px;
}

.capabilities .capability-card:nth-child(2),
.capabilities .capability-card:nth-child(3),
.capabilities .capability-card:nth-child(4) {
  grid-column: 2;
}

.capabilities .capability-card:nth-child(2) {
  grid-row: 1;
}

.capabilities .capability-card:nth-child(3) {
  grid-row: 2;
}

.capabilities .capability-card:nth-child(4) {
  grid-row: 3;
}

.capabilities .capability-card:not(.capability-featured) .pixel-icon {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--baby-blue);
}

.capabilities .capability-card:not(.capability-featured) > div:not(.pixel-icon) {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  padding-right: 48px;
}

.capabilities .capability-card:not(.capability-featured) > a {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  margin-top: 18px;
  color: rgba(244, 243, 238, 0.72);
}

.capabilities .capability-card:not(.capability-featured) > a span {
  color: var(--baby-yellow);
}

.capabilities .capability-card:not(.capability-featured) h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2vw, 31px);
}

.capabilities .capability-card:not(.capability-featured) p {
  max-width: 600px;
  color: rgba(244, 243, 238, 0.53);
  font-size: 13px;
  line-height: 1.55;
}

.capabilities .capability-card .card-number {
  top: 24px;
  right: 28px;
  color: rgba(244, 243, 238, 0.35);
}

.capabilities .capability-featured {
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: 640px;
  padding: clamp(32px, 4vw, 54px);
  border: 0;
  border-radius: 18px 2px 2px 18px;
  background:
    linear-gradient(rgba(16, 16, 27, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 27, 0.08) 1px, transparent 1px),
    var(--baby-blue);
  background-size: 34px 34px;
  color: #11111d;
}

.capabilities .capability-featured::after {
  content: "";
  width: 96px;
  height: 96px;
  position: absolute;
  right: -32px;
  bottom: -32px;
  border: 18px solid var(--baby-yellow);
  transform: rotate(12deg);
}

.capabilities .capability-featured .card-number,
.capabilities .capability-featured p {
  color: rgba(17, 17, 29, 0.62);
}

.capabilities .capability-featured .pixel-icon {
  color: #11111d;
}

.capabilities .capability-featured h3 {
  max-width: 460px;
  font-size: clamp(34px, 3.3vw, 50px);
}

.capabilities .capability-featured ul {
  color: rgba(17, 17, 29, 0.75);
}

.capabilities .capability-featured li::before {
  color: var(--rich-purple);
}

.capabilities .capability-featured > a span {
  color: var(--rich-purple);
}

.capabilities .capability-card:hover {
  border-color: rgba(158, 216, 255, 0.42);
  box-shadow: none;
  transform: translateX(8px);
}

.capabilities .capability-featured:hover {
  transform: translateY(-7px);
}

@media (max-width: 1020px) {
  .capabilities .capability-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .capabilities .capability-featured,
  .capabilities .capability-card:nth-child(2),
  .capabilities .capability-card:nth-child(3),
  .capabilities .capability-card:nth-child(4) {
    grid-column: 1;
    grid-row: auto;
  }

  .capabilities .capability-featured {
    min-height: 540px;
    border-radius: 16px 16px 2px 2px;
  }
}

@media (max-width: 680px) {
  .capabilities::after {
    display: none;
  }

  .capabilities .section-heading {
    margin-bottom: 50px;
  }

  .capabilities .capability-card:not(.capability-featured) {
    min-height: 330px;
    display: flex;
    padding: 26px;
  }

  .capabilities .capability-card:not(.capability-featured) > div:not(.pixel-icon) {
    padding-right: 0;
  }

  .capabilities .capability-card:not(.capability-featured) > a {
    margin-top: 22px;
  }

  .capabilities .capability-card:hover,
  .capabilities .capability-featured:hover {
    transform: translateY(-5px);
  }
}

/* Dark developer hero theme */
.site-header {
  background: #070810;
  color: #f5f3ec;
}

.hero-art {
  background:
    radial-gradient(circle at 78% 23%, rgba(105, 79, 218, .31), transparent 25%),
    radial-gradient(circle at 58% 68%, rgba(85, 176, 238, .18), transparent 27%),
    linear-gradient(125deg, #05060b, #0b0d18 55%, #11162a);
}

.hero-paper-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(159, 216, 255, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(159, 216, 255, .065) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 72% 45%, black, transparent 67%);
}

.hero-color-wash {
  background: linear-gradient(145deg, rgba(91, 170, 255, .36), rgba(128, 80, 238, .42));
  opacity: .42;
  filter: blur(105px);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(3, 4, 8, .14), transparent 30%, rgba(3, 4, 8, .3)),
    linear-gradient(90deg, rgba(5, 6, 11, .76), transparent 66%);
}

.hero-kicker {
  color: #9896a8;
}

.hero-kicker span {
  background: #caff4c;
}

.hero-kicker b {
  background: var(--rich-purple);
  color: white;
}

.hero-copy h1,
.hero-line,
.hero-copy h1 .hero-line-accent {
  color: #f6f3ea;
}

.hero-copy h1 .hero-line-accent::after {
  height: 16px;
  bottom: 2px;
  background: #caff4c;
  opacity: .9;
}

.hero-asterisk {
  color: var(--baby-blue);
}

.hero-copy > p {
  color: #aaa8b8;
}

.hero-primary {
  background: #caff4c;
  color: #11130e;
  box-shadow: 0 14px 38px rgba(202, 255, 76, .13);
}

.hero-primary:hover {
  box-shadow: 0 18px 44px rgba(202, 255, 76, .22);
}

.hero-secondary {
  border-color: #5f5d6b;
  color: #d6d3df;
}

.developer-system::before {
  color: #747384;
}

.system-connectors {
  fill: #090a12;
  stroke: #757386;
}

.system-card {
  border-color: rgba(187, 205, 255, .16);
  background: rgba(15, 16, 28, .9);
  color: #f4f1ea;
  box-shadow: 10px 12px 0 rgba(119, 91, 219, .12);
  backdrop-filter: blur(18px);
}

.system-card:hover {
  border-color: rgba(202, 255, 76, .45);
  box-shadow: 15px 18px 0 rgba(119, 91, 219, .18);
}

.code-module {
  background: rgba(5, 7, 13, .97);
}

.metric-module {
  border-top-color: #caff4c;
  background: rgba(21, 22, 36, .94);
}

.metric-ring {
  background: conic-gradient(#caff4c 0 98%, #343444 98%);
}

.metric-ring::before {
  background: #151624;
}

.metric-module small,
.cro-module small {
  color: #888697;
}

.metric-module p {
  color: #8f8c9d;
}

.wp-module {
  border-left-color: var(--baby-blue);
  background:
    linear-gradient(145deg, rgba(117, 87, 232, .2), transparent),
    rgba(15, 16, 28, .94);
}

.wp-module > span {
  color: #9d9aab;
}

.pixel-wp {
  background: var(--baby-blue);
  color: #111522;
}

.shop-module {
  border-color: #caff4c;
  background: #caff4c;
  color: #17200f;
}

.cro-module {
  border-bottom-color: var(--soft-purple);
  background:
    linear-gradient(145deg, rgba(158, 216, 255, .09), transparent),
    rgba(15, 16, 28, .94);
}

.cro-module strong {
  color: var(--baby-blue);
}

.system-badge {
  border-color: rgba(255,255,255,.14);
}

.badge-clean {
  background: var(--baby-yellow);
  color: #19171f;
}

.badge-scale {
  background: var(--rich-purple);
}

.system-star {
  color: #caff4c;
}

.hero-meta {
  color: #7f7d8c;
  border-color: rgba(218, 224, 255, .18);
}

.hero-meta a {
  color: #efecf4;
}

.hero-scroll {
  color: #777584;
}

.hero-scroll span {
  background: rgba(255,255,255,.16);
}

.site-header::after {
  background: linear-gradient(180deg, #caff4c, var(--baby-blue), var(--rich-purple));
  box-shadow: -8px 0 30px rgba(126, 96, 230, .18);
}

/* Interactive orbit hero */
.hero-layout {
  grid-template-columns: minmax(500px, 1fr) minmax(530px, .95fr);
}

.hero-copy h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(55px, 5.6vw, 91px);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.075em;
}

.hero-copy h1 .hero-line-accent {
  color: var(--baby-blue);
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 800;
}

.hero-copy h1 .hero-line-accent::after {
  display: none;
}

.orbit-system {
  height: 560px;
  position: relative;
  transform:
    translate3d(
      calc(var(--pointer-x) * -13px),
      calc(var(--pointer-y) * -10px),
      0
    );
  transition: transform 450ms ease-out;
}

.orbit-grid {
  position: absolute;
  inset: 3%;
  background:
    linear-gradient(rgba(158, 216, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 216, 255, .055) 1px, transparent 1px);
  background-size: 28px 28px;
  border: 1px solid rgba(158, 216, 255, .08);
  border-radius: 50%;
  mask-image: radial-gradient(circle, black 30%, transparent 72%);
}

.orbit-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(158, 216, 255, .17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 50%;
  top: -4px;
  border-radius: 50%;
  background: #caff4c;
  box-shadow: 0 0 15px rgba(202, 255, 76, .8);
}

.orbit-ring-one {
  width: 480px;
  height: 480px;
  animation: orbit-spin 28s linear infinite;
}

.orbit-ring-two {
  width: 350px;
  height: 350px;
  border-style: dashed;
  animation: orbit-spin-reverse 23s linear infinite;
}

.orbit-ring-two::before {
  background: var(--baby-blue);
  box-shadow: 0 0 15px rgba(158, 216, 255, .8);
}

.orbit-ring-three {
  width: 225px;
  height: 225px;
  opacity: .7;
  animation: orbit-spin 17s linear infinite;
}

.orbit-ring-three::before {
  background: var(--soft-purple);
  box-shadow: 0 0 15px rgba(167, 139, 250, .8);
}

.orbit-core {
  width: 172px;
  height: 172px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(202, 255, 76, .36);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(158, 216, 255, .14), transparent 35%),
    #0d0f19;
  box-shadow:
    0 0 0 12px rgba(202, 255, 76, .025),
    0 0 65px rgba(118, 87, 232, .25);
  transform: translate(-50%, -50%);
}

.orbit-core img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.orbit-core > span {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.orbit-core > small {
  margin-top: 3px;
  color: #716f80;
  font-size: 6px;
  letter-spacing: .12em;
}

.core-status {
  margin-top: 11px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #92909e;
  font-family: monospace;
  font-size: 6px;
}

.core-status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #76e0b5;
  box-shadow: 0 0 0 4px rgba(118, 224, 181, .08);
  animation: signal-pulse 2s ease-out infinite;
}

.orbit-node {
  min-width: 126px;
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(194, 205, 255, .17);
  border-radius: 3px;
  background: rgba(10, 12, 21, .9);
  box-shadow: 8px 9px 0 rgba(92, 69, 173, .12);
  backdrop-filter: blur(13px);
  transition: transform 220ms ease, border-color 220ms ease;
  animation: node-float 5s ease-in-out infinite;
}

.orbit-node:hover {
  z-index: 15;
  border-color: #caff4c;
  transform: translateY(-7px) scale(1.04);
}

.orbit-node p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.orbit-node strong {
  color: #f3f0e8;
  font-size: 9px;
}

.orbit-node small {
  color: #747282;
  font-size: 6px;
  letter-spacing: .08em;
}

.node-pixel,
.node-code,
.node-chart {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 27px;
  background: var(--rich-purple);
  color: white;
  font-family: monospace;
  font-size: 12px;
  font-weight: 800;
}

.node-wordpress { left: 0; top: 12%; }
.node-shopify { right: 0; top: 17%; animation-delay: -1s; }
.node-plugins { left: 4%; bottom: 17%; animation-delay: -2s; }
.node-cms { right: 3%; bottom: 14%; animation-delay: -3s; }
.node-cro { right: -3%; top: 48%; animation-delay: -4s; }

.node-bag {
  position: relative;
  background: #caff4c;
}

.node-bag::before {
  content: "";
  width: 13px;
  height: 11px;
  position: absolute;
  left: 7px;
  bottom: 5px;
  background: #15170e;
}

.node-bag::after {
  content: "";
  width: 8px;
  height: 6px;
  position: absolute;
  left: 8px;
  top: 5px;
  border: 2px solid #15170e;
  border-bottom: 0;
}

.node-code {
  background: var(--baby-blue);
  color: #151927;
  font-size: 9px;
}

.node-grid {
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 5px;
  background: var(--soft-purple);
}

.node-grid i {
  width: 7px;
  height: 7px;
  background: #161321;
}

.node-chart {
  display: flex;
  align-items: end;
  gap: 2px;
  padding: 5px;
  background: var(--baby-yellow);
}

.node-chart i {
  width: 4px;
  background: #17161e;
}

.node-chart i:nth-child(1) { height: 7px; }
.node-chart i:nth-child(2) { height: 12px; }
.node-chart i:nth-child(3) { height: 17px; }

.orbit-terminal {
  width: 210px;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 8;
  overflow: hidden;
  border: 1px solid rgba(194, 205, 255, .15);
  border-radius: 3px;
  background: #070910;
  box-shadow: 10px 11px 0 rgba(88, 67, 168, .12);
  transform: translateX(-50%) rotate(-2deg);
}

.orbit-terminal > div {
  height: 26px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 9px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.orbit-terminal > div i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #615f6e;
}

.orbit-terminal > div i:first-child { background: #ff837b; }
.orbit-terminal > div i:nth-child(2) { background: var(--baby-yellow); }
.orbit-terminal > div i:nth-child(3) { background: #76e0b5; }

.orbit-terminal > div span {
  margin-left: auto;
  color: #666473;
  font-family: monospace;
  font-size: 6px;
}

.orbit-terminal code {
  display: block;
  padding: 12px;
  color: #aaa8b6;
  font-family: monospace;
  font-size: 8px;
}

.orbit-terminal code b { color: #76e0b5; }
.orbit-terminal code em { color: var(--baby-blue); font-style: normal; }

.orbit-note {
  position: absolute;
  z-index: 9;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .08em;
}

.note-clean {
  left: 5%;
  top: 43%;
  background: #caff4c;
  color: #13150e;
  transform: rotate(-8deg);
}

.note-fast {
  right: 17%;
  top: 4%;
  background: var(--rich-purple);
  color: white;
  transform: rotate(5deg);
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes orbit-spin-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes node-float {
  50% { margin-top: -7px; }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .orbit-system {
    width: min(650px, 100%);
    margin: 25px auto 0;
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    font-size: clamp(41px, 11.6vw, 55px);
  }

  .orbit-system {
    width: 600px;
    height: 500px;
    left: 50%;
    margin: 25px 0 -45px;
    transform: translateX(-50%) scale(.65);
    transform-origin: top center;
  }

  .hero-copy h1 .hero-line-accent {
    width: auto;
  }
}

/* Tile × Codapress inspired code-fabric hero */
.code-fabric-canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .82;
  mask-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, .7),
    black 18%,
    black 88%,
    rgba(0, 0, 0, .65)
  );
}

.hero-paper-grid {
  opacity: .42;
}

.hero-layout {
  grid-template-columns: minmax(590px, 1.05fr) minmax(440px, .75fr);
}

.hero-copy h1 {
  font-size: clamp(52px, 5.25vw, 86px);
  line-height: .9;
}

.hero-copy h1 .hero-line-accent {
  width: max-content;
  color: #f6f3ea;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.065em;
}

.hero-copy h1 .hero-line-accent::after {
  display: block;
  height: 5px;
  right: 0;
  bottom: -3px;
  background: var(--baby-blue);
  opacity: 1;
}

.canvas-stage {
  height: 550px;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(158, 216, 255, .12);
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  clip-path: polygon(8% 0, 100% 0, 100% 92%, 92% 100%, 0 100%, 0 8%);
}

.canvas-stage::before,
.canvas-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.canvas-stage::before {
  width: 110px;
  height: 110px;
  right: 34px;
  top: 35px;
  border-top: 2px solid #caff4c;
  border-right: 2px solid #caff4c;
}

.canvas-stage::after {
  width: 78px;
  height: 78px;
  left: 31px;
  bottom: 32px;
  border-bottom: 2px solid var(--baby-blue);
  border-left: 2px solid var(--baby-blue);
}

.stage-index {
  position: absolute;
  left: 22px;
  top: 19px;
  color: #777587;
  font-family: monospace;
  font-size: 7px;
  letter-spacing: .12em;
}

.stage-axis {
  position: absolute;
  color: #6f6d7d;
  font-family: monospace;
  font-size: 6px;
  letter-spacing: .11em;
}

.axis-x {
  right: 24px;
  bottom: 17px;
}

.axis-y {
  left: 14px;
  top: 50%;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left top;
}

.stage-crosshair {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20%;
  top: 37%;
  animation: crosshair-pulse 2.4s ease-in-out infinite;
}

.stage-crosshair i {
  position: absolute;
  background: #caff4c;
}

.stage-crosshair i:first-child {
  width: 25px;
  height: 1px;
  top: 12px;
}

.stage-crosshair i:last-child {
  width: 1px;
  height: 25px;
  left: 12px;
}

.stage-console {
  width: 238px;
  position: absolute;
  left: 9%;
  top: 20%;
  overflow: hidden;
  border: 1px solid rgba(158, 216, 255, .2);
  background: rgba(6, 8, 14, .82);
  box-shadow: 12px 14px 0 rgba(118, 87, 232, .14);
  backdrop-filter: blur(12px);
  transform: rotate(-2deg);
  transition: transform 250ms ease;
}

.stage-console:hover {
  transform: translateY(-7px) rotate(0);
}

.stage-console > div {
  height: 29px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stage-console > div i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #625f6f;
}

.stage-console > div i:first-child { background: #ff837b; }
.stage-console > div i:nth-child(2) { background: var(--baby-yellow); }
.stage-console > div i:nth-child(3) { background: #76e0b5; }

.stage-console > div span {
  margin-left: auto;
  color: #666474;
  font-family: monospace;
  font-size: 6px;
}

.stage-console code {
  display: block;
  padding: 15px;
  color: #918f9f;
  font-family: monospace;
  font-size: 8px;
  line-height: 1.8;
}

.stage-console code b { color: var(--baby-blue); }
.stage-console code em { color: #caff4c; font-style: normal; }

.stage-stamp {
  width: 175px;
  height: 175px;
  position: absolute;
  right: 8%;
  bottom: 13%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(202, 255, 76, .45);
  border-radius: 50%;
  background: rgba(9, 11, 19, .74);
  box-shadow: 0 0 55px rgba(118, 87, 232, .18);
  text-align: center;
  animation: stamp-float 5s ease-in-out infinite;
}

.stage-stamp::before,
.stage-stamp::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(158, 216, 255, .22);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

.stage-stamp::before { inset: -16px; }
.stage-stamp::after { inset: 16px; animation-direction: reverse; }

.stage-stamp strong {
  margin-bottom: -56px;
  color: var(--baby-blue);
  font-family: "Manrope", sans-serif;
  font-size: 55px;
  letter-spacing: -.08em;
}

.stage-stamp span {
  margin-top: 44px;
  color: #8f8c9d;
  font-family: monospace;
  font-size: 6px;
  line-height: 1.5;
  letter-spacing: .12em;
}

.stage-hint {
  position: absolute;
  left: 10%;
  bottom: 13%;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777586;
  font-family: monospace;
  font-size: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.stage-hint span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #caff4c;
  box-shadow: 0 0 0 5px rgba(202,255,76,.08);
}

@keyframes crosshair-pulse {
  50% { opacity: .35; transform: scale(.8) rotate(45deg); }
}

@keyframes stamp-float {
  50% { transform: translateY(-9px) rotate(2deg); }
}

@media (max-width: 1080px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .canvas-stage {
    width: min(720px, 100%);
    margin: 30px auto 0;
  }
}

@media (max-width: 620px) {
  .hero-copy h1 {
    font-size: clamp(39px, 10.8vw, 52px);
  }

  .hero-copy h1 .hero-line-accent {
    width: auto;
  }

  .canvas-stage {
    height: 410px;
    margin-top: 34px;
  }

  .stage-console {
    width: 205px;
    left: 5%;
  }

  .stage-stamp {
    width: 130px;
    height: 130px;
    right: 5%;
  }

  .stage-stamp strong {
    margin-bottom: -43px;
    font-size: 40px;
  }

  .stage-stamp span {
    margin-top: 34px;
  }
}

/* Centered statement hero */
.site-header::after {
  display: none;
}

.site-header,
.hero-content {
  min-height: 100svh;
}

.hero-content {
  width: min(1440px, calc(100% - 56px));
  justify-content: center;
  padding: 135px 0 110px;
}

.hero-kicker {
  width: max-content;
  max-width: 100%;
  margin: 0 auto 34px;
  padding: 7px 10px 7px 8px;
  border: 1px solid rgba(158, 216, 255, .18);
  border-radius: 999px;
  background: rgba(12, 14, 25, .66);
  color: #a5a2b2;
  backdrop-filter: blur(13px);
}

.hero-kicker > span {
  display: none;
}

.hero-kicker b {
  margin-right: 2px;
  background: var(--baby-blue);
  color: #10141f;
}

.hero-layout {
  display: block;
}

.hero-layout .hero-copy {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.hero-copy h1 {
  font-size: clamp(91px, 11vw, 180px);
  line-height: .79;
  letter-spacing: -.095em;
}

.hero-line,
.hero-copy h1 .hero-line-accent {
  width: auto;
  color: var(--baby-blue);
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 800;
  background:
    repeating-linear-gradient(
      118deg,
      var(--baby-blue) 0 3px,
      #8071e8 3px 6px,
      #caff4c 6px 7px,
      var(--baby-blue) 7px 10px
    );
  background-size: 16px 16px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 34px rgba(92, 115, 232, .16));
  animation:
    headline-rise 900ms cubic-bezier(.22,1,.36,1) forwards,
    headline-pattern 10s linear infinite;
}

.hero-copy h1 .hero-line-accent {
  padding-bottom: .12em;
}

.hero-copy h1 .hero-line-accent::after {
  display: none;
}

.hero-asterisk {
  right: 5%;
  top: -8%;
  color: #caff4c;
  -webkit-text-fill-color: #caff4c;
  filter: none;
}

.hero-copy > p {
  max-width: 610px;
  margin: 48px auto 0;
  color: #aaa8b8;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
}

.hero-copy > p::before {
  content: "WE DON'T SHIP FORGETTABLE";
  margin-bottom: 13px;
  display: block;
  color: #caff4c;
  font-family: monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .17em;
}

.hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.hero-primary {
  background: var(--baby-blue);
  color: #10131e;
}

.hero-secondary {
  padding: 14px 20px;
  border: 1px solid #686675;
  border-radius: 999px;
  color: #e7e4ed;
}

.canvas-stage {
  display: none;
}

.hero-meta {
  position: absolute;
  right: 0;
  bottom: 27px;
  left: 0;
  margin: 0;
}

.hero-scroll {
  display: none;
}

@keyframes headline-pattern {
  to { background-position: 160px 0; }
}

@media (max-width: 820px) {
  .site-header,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 130px 0 105px;
  }

  .hero-copy h1 {
    font-size: clamp(72px, 17vw, 120px);
    line-height: .82;
  }

  .hero-kicker {
    margin-bottom: 36px;
    font-size: 7px;
  }
}

@media (max-width: 520px) {
  .hero-kicker {
    gap: 5px;
    white-space: nowrap;
  }

  .hero-kicker b {
    padding: 6px 8px;
    font-size: 6px;
  }

  .hero-copy h1 {
    font-size: clamp(59px, 18.2vw, 84px);
  }

  .hero-copy > p {
    margin-top: 35px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: row;
    gap: 9px;
  }

  .hero-actions a {
    padding: 12px 13px;
    font-size: 8px;
  }

  .hero-meta > span {
    max-width: 130px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.signal-strip {
  --lens-x: 50%;
  --lens-y: 50%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #d9d8e2;
  background: var(--baby-yellow);
}

.signal-lens {
  width: 72px;
  height: 72px;
  position: absolute;
  left: var(--lens-x);
  top: var(--lens-y);
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 22, 37, .72);
  border-radius: 50%;
  background: rgba(255, 247, 207, .2);
  box-shadow:
    inset 0 0 0 4px rgba(255,255,255,.2),
    0 12px 30px rgba(45, 37, 82, .12);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.75);
  transition: opacity 160ms ease, transform 180ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
  backdrop-filter: brightness(1.08) saturate(1.1);
}

.signal-lens::before,
.signal-lens::after {
  content: "";
  position: absolute;
  background: rgba(23, 22, 37, .42);
}

.signal-lens::before {
  width: 12px;
  height: 1px;
}

.signal-lens::after {
  width: 1px;
  height: 12px;
}

.signal-lens > span {
  display: none;
}

.signal-strip.is-lensing .signal-lens {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.signal-track {
  width: max-content;
  min-height: 92px;
  display: flex;
  align-items: center;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.signal-group {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 11px;
  flex-shrink: 0;
}

.signal-group span {
  color: #171625;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform-origin: center;
  transition: transform 140ms ease, color 140ms ease;
  will-change: transform;
}

.signal-group i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  display: block;
  background: var(--rich-purple);
}

.home-section {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: clamp(92px, 11vw, 160px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 8vw, 140px);
  align-items: start;
  margin-bottom: clamp(52px, 7vw, 90px);
}

.section-label {
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #6f6c82;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--rich-purple);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.58);
}

.section-label.light span {
  color: var(--baby-yellow);
}

.section-heading h2,
.work-intro h2,
.proof-copy h2,
.stack-layout > h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5.2vw, 78px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading h2 em,
.work-intro h2 em,
.proof-copy h2 em,
.stack-layout > h2 em {
  color: var(--rich-purple);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-heading > div > p {
  max-width: 590px;
  margin: 26px 0 0;
  color: #6d6a7c;
  font-size: 16px;
  line-height: 1.65;
}

.capability-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
}

.capability-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid #dfdee8;
  border-radius: 4px;
  background: #fff;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.capability-card:nth-child(4) {
  grid-column: 2 / 4;
  min-height: 330px;
}

.capability-card:hover {
  z-index: 2;
  border-color: #b9b5ce;
  box-shadow: 0 25px 60px rgba(42, 36, 88, 0.1);
  transform: translateY(-7px);
}

.capability-featured {
  grid-row: span 2;
  min-height: 772px;
  background:
    radial-gradient(circle at 90% 8%, rgba(158, 216, 255, 0.42), transparent 35%),
    linear-gradient(145deg, #171629, #252044);
  color: white;
}

.capability-card .card-number {
  position: absolute;
  top: 29px;
  right: 28px;
  color: #8d899d;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.capability-card h3 {
  margin: 0 0 15px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(25px, 2.2vw, 34px);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.capability-card p {
  margin: 0;
  color: #7a7688;
  font-size: 14px;
  line-height: 1.65;
}

.capability-featured p {
  color: #bbb8ca;
}

.capability-card ul {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: #d3d0df;
  font-size: 12px;
}

.capability-card li::before {
  content: "■";
  margin-right: 10px;
  color: var(--baby-blue);
  font-size: 7px;
}

.capability-card > a {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.capability-card > a span {
  color: var(--rich-purple);
}

.capability-featured > a span {
  color: var(--baby-yellow);
}

.pixel-icon {
  width: 66px;
  height: 66px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--rich-purple);
}

.capability-featured .pixel-icon {
  width: 115px;
  height: 115px;
  color: var(--baby-blue);
}

.pixel-window span {
  position: absolute;
  background: currentColor;
}

.pixel-window span:nth-child(1) { width: 74%; height: 12%; top: 18%; left: 8%; }
.pixel-window span:nth-child(2) { width: 11%; height: 57%; top: 18%; left: 8%; }
.pixel-window span:nth-child(3) { width: 56%; height: 45%; top: 30%; left: 19%; border: 6px solid currentColor; background: transparent; }
.pixel-window span:nth-child(4) { width: 12%; height: 12%; top: 18%; right: 8%; background: var(--baby-yellow); }

.pixel-w span,
.pixel-bag span,
.pixel-chart span {
  position: absolute;
  display: block;
  background: currentColor;
}

.pixel-w span:nth-child(1) { width: 9px; height: 38px; left: 8px; top: 12px; }
.pixel-w span:nth-child(2) { width: 9px; height: 27px; left: 20px; top: 23px; }
.pixel-w span:nth-child(3) { width: 9px; height: 17px; left: 32px; top: 33px; }
.pixel-w span:nth-child(4) { width: 9px; height: 27px; left: 44px; top: 23px; }
.pixel-w span:nth-child(5) { width: 9px; height: 38px; right: 1px; top: 12px; }

.pixel-bag span:nth-child(1) { width: 42px; height: 37px; left: 12px; top: 22px; }
.pixel-bag span:nth-child(2) { width: 26px; height: 17px; left: 20px; top: 10px; border: 7px solid currentColor; background: transparent; }
.pixel-bag span:nth-child(3) { width: 7px; height: 7px; left: 22px; top: 31px; background: white; }
.pixel-bag span:nth-child(4) { width: 7px; height: 7px; right: 22px; top: 31px; background: white; }

.pixel-chart span:nth-child(1) { width: 9px; height: 18px; left: 9px; bottom: 8px; }
.pixel-chart span:nth-child(2) { width: 9px; height: 29px; left: 23px; bottom: 8px; }
.pixel-chart span:nth-child(3) { width: 9px; height: 41px; left: 37px; bottom: 8px; }
.pixel-chart span:nth-child(4) { width: 9px; height: 53px; left: 51px; bottom: 8px; background: var(--baby-blue); }

.work-section {
  padding: clamp(95px, 11vw, 160px) 0;
  overflow: hidden;
  background: #10101b;
  color: white;
}

.work-intro,
.project-list {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.work-intro {
  margin-bottom: 70px;
}

.work-intro h2 {
  max-width: 900px;
  margin-top: 42px;
}

.work-intro h2 em {
  color: var(--baby-yellow);
}

.project-list {
  display: grid;
  gap: 28px;
}

.project-card {
  min-height: 720px;
  overflow: hidden;
  padding: clamp(24px, 3.5vw, 52px);
  border-radius: 6px;
}

.project-violet {
  background:
    radial-gradient(circle at 75% 30%, rgba(201, 184, 255, 0.74), transparent 30%),
    linear-gradient(145deg, #6447d9, #9b7ef1);
}

.project-blue {
  background:
    radial-gradient(circle at 22% 20%, rgba(211, 239, 255, 0.72), transparent 24%),
    linear-gradient(145deg, #5eabd9, #84c8ee);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.project-meta > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.project-meta span,
.project-meta p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.project-meta p {
  margin: 7px 0 0;
}

.project-visual {
  height: 570px;
  position: relative;
  display: grid;
  place-items: end center;
}

.mock-window {
  width: min(850px, 77%);
  height: 490px;
  overflow: hidden;
  border: 8px solid #181720;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
  background: #f8f5ee;
  box-shadow: 0 35px 80px rgba(38, 19, 74, 0.3);
  transform: perspective(1000px) rotateX(2deg);
}

.mock-browser {
  height: 35px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  background: #24232d;
}

.mock-browser i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6d6a78;
}

.mock-browser span {
  margin-left: auto;
  margin-right: auto;
  color: #8c8995;
  font-size: 7px;
}

.store-mock {
  height: calc(100% - 35px);
  position: relative;
  overflow: hidden;
  padding: 62px 54px;
  background:
    radial-gradient(circle at 75% 45%, #e5b765 0 4%, transparent 4.5%),
    radial-gradient(circle at 78% 48%, #15141b 0 20%, transparent 20.5%),
    linear-gradient(120deg, #f4ecdc 55%, #d9cbb5);
  color: #19181e;
}

.mock-kicker {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.store-mock strong {
  margin-top: 15px;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.store-mock button {
  margin-top: 30px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  background: #17161d;
  color: white;
  font-size: 8px;
}

.project-stat {
  position: absolute;
  right: 0;
  bottom: 35px;
  width: 170px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: 4px;
  background: var(--baby-yellow);
  color: #171625;
  box-shadow: 0 25px 50px rgba(29, 25, 48, 0.18);
}

.project-stat strong {
  font-family: "Manrope", sans-serif;
  font-size: 43px;
  letter-spacing: -0.06em;
}

.project-stat span {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.atlas-window {
  border-color: #dbe9f0;
}

.atlas-mock {
  height: calc(100% - 35px);
  display: grid;
  grid-template-columns: 64px 1fr;
  background: #f1f6f8;
  color: #171922;
}

.atlas-sidebar {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  border-right: 1px solid #dce5e9;
}

.atlas-sidebar b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #1c73a9;
  color: white;
}

.atlas-sidebar i {
  width: 13px;
  height: 13px;
  background: #bdcbd2;
}

.atlas-content {
  padding: 50px;
}

.atlas-content small {
  color: #78909c;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.atlas-content strong {
  margin-top: 13px;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 45px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.atlas-cards {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr;
  gap: 12px;
}

.atlas-cards span {
  height: 140px;
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(255,255,255,.2)),
    #c3d9e5;
  box-shadow: 0 10px 30px rgba(57, 100, 121, 0.1);
}

.proof-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.proof-copy h2 {
  margin-top: 42px;
}

.proof-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 28px 0;
  color: #706d7c;
  font-size: 16px;
  line-height: 1.72;
}

.text-link {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #191825;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.text-link svg {
  width: 17px;
  fill: none;
  stroke: var(--rich-purple);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-board {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 5px;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #171629;
  background-size: 34px 34px;
  color: white;
}

.metric-top,
.metric-foot {
  display: flex;
  justify-content: space-between;
  color: #8f8b9e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.metric-top div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.metric-top i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77e6ba;
  box-shadow: 0 0 0 5px rgba(119, 230, 186, .08);
}

.metric-main {
  margin-top: 80px;
}

.metric-main p,
.metric-main span {
  margin: 0;
  color: #a7a3b4;
  font-size: 11px;
}

.metric-main strong {
  margin: 9px 0;
  display: block;
  color: var(--baby-yellow);
  font-family: "Manrope", sans-serif;
  font-size: clamp(62px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.075em;
}

.pixel-chart-large {
  height: 190px;
  margin-top: 54px;
  display: flex;
  align-items: end;
  gap: 9px;
  border-bottom: 1px solid #4a465b;
}

.pixel-chart-large span {
  width: 12.5%;
  height: var(--h);
  background: linear-gradient(180deg, var(--baby-blue), var(--rich-purple));
}

.metric-foot {
  margin-top: 22px;
  gap: 15px;
}

.metric-foot p {
  margin: 0;
}

.metric-foot span {
  margin-right: 5px;
  color: var(--baby-blue);
}

.process-section {
  background: var(--rich-purple);
  color: white;
}

.process-heading h2 em {
  color: var(--baby-yellow);
}

.process-heading > div > p {
  color: #d3cbe9;
}

.process-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list li {
  min-height: 360px;
  position: relative;
  padding: 25px;
  border-top: 1px solid rgba(255,255,255,.25);
  border-right: 1px solid rgba(255,255,255,.17);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list > li > span {
  color: rgba(255,255,255,.56);
  font-size: 9px;
}

.pixel-step {
  margin: 58px 0 35px;
  color: var(--baby-yellow);
  font-family: monospace;
  font-size: 42px;
}

.process-list h3 {
  margin: 0 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.process-list p {
  margin: 0;
  color: #d4cce9;
  font-size: 13px;
  line-height: 1.65;
}

.stack-section > .section-label {
  margin-bottom: 55px;
}

.stack-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d9d7e1;
  border-left: 1px solid #d9d7e1;
}

.stack-grid span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid #d9d7e1;
  border-bottom: 1px solid #d9d7e1;
  color: #444151;
  font-size: 13px;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.stack-grid span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  background: var(--soft-purple);
}

.stack-grid span:hover {
  background: #181729;
  color: white;
}

.pre-footer-cta {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 80px 32px;
  background:
    radial-gradient(circle at 50% 50%, rgba(167,139,250,.38), transparent 35%),
    linear-gradient(135deg, #8dd4ff, #9a7cf1);
  text-align: center;
}

.pre-footer-cta > div:not(.cta-pixels) {
  position: relative;
  z-index: 2;
}

.pre-footer-cta p {
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pre-footer-cta h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(58px, 8.5vw, 136px);
  line-height: 0.83;
  letter-spacing: -0.085em;
}

.pre-footer-cta h2 span {
  color: var(--baby-yellow);
}

.pre-footer-cta a {
  width: max-content;
  margin: 45px auto 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px 15px 22px;
  border-radius: 999px;
  background: #141321;
  color: white;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pre-footer-cta svg {
  width: 17px;
  fill: none;
  stroke: var(--baby-yellow);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-pixels {
  position: absolute;
  inset: 0;
}

.cta-pixels span {
  width: 9px;
  height: 9px;
  position: absolute;
  background: rgba(255,255,255,.48);
}

.cta-pixels span:nth-child(1) { left: 8%; top: 18%; }
.cta-pixels span:nth-child(2) { left: 14%; top: 24%; }
.cta-pixels span:nth-child(3) { left: 11%; bottom: 21%; }
.cta-pixels span:nth-child(4) { right: 9%; top: 17%; }
.cta-pixels span:nth-child(5) { right: 15%; top: 28%; }
.cta-pixels span:nth-child(6) { right: 11%; bottom: 19%; }
.cta-pixels span:nth-child(7) { left: 25%; top: 10%; background: var(--baby-yellow); }
.cta-pixels span:nth-child(8) { right: 27%; bottom: 12%; background: var(--baby-yellow); }
.cta-pixels span:nth-child(9) { left: 19%; bottom: 8%; }

@media (max-width: 960px) {
  .home-section,
  .work-intro,
  .project-list {
    width: calc(100% - 40px);
  }

  .section-heading,
  .proof-section,
  .stack-layout {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-featured {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 540px;
  }

  .capability-card:nth-child(4) {
    grid-column: auto;
    min-height: 430px;
  }

  .proof-section,
  .stack-layout {
    gap: 60px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .process-list li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 650px) {
  .home-section {
    width: calc(100% - 32px);
    padding: 82px 0;
  }

  .section-heading {
    gap: 35px;
  }

  .section-heading h2,
  .work-intro h2,
  .proof-copy h2,
  .stack-layout > h2 {
    font-size: clamp(40px, 12vw, 57px);
  }

  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-featured,
  .capability-card:nth-child(4) {
    grid-column: auto;
    min-height: 470px;
  }

  .work-intro,
  .project-list {
    width: calc(100% - 28px);
  }

  .project-card {
    min-height: 580px;
    padding: 19px;
  }

  .project-meta {
    display: block;
  }

  .project-meta p {
    margin: 12px 0 0;
  }

  .project-visual {
    height: 440px;
  }

  .mock-window {
    width: 95%;
    height: 360px;
  }

  .store-mock {
    padding: 42px 28px;
  }

  .atlas-content {
    padding: 35px 24px;
  }

  .atlas-content strong {
    font-size: 31px;
  }

  .atlas-cards {
    grid-template-columns: 1fr 1fr;
  }

  .atlas-cards span:last-child {
    display: none;
  }

  .project-stat {
    width: 128px;
    height: 128px;
    bottom: 8px;
  }

  .project-stat strong {
    font-size: 32px;
  }

  .metric-board {
    min-height: 540px;
    padding: 21px;
  }

  .process-list {
    grid-template-columns: 1fr;
  }

  .process-list li,
  .process-list li:nth-child(2) {
    min-height: 300px;
    border-right: 0;
  }

  .pixel-step {
    margin: 40px 0 25px;
  }

  .stack-grid {
    grid-template-columns: 1fr;
  }

  .pre-footer-cta {
    min-height: 580px;
  }
}

.site-footer {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--footer-bg);
  color: var(--footer-text);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

.footer-glow {
  width: 420px;
  height: 420px;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(115px);
  opacity: 0.12;
  pointer-events: none;
}

.footer-glow-left {
  left: -220px;
  top: 120px;
  background: var(--baby-blue);
}

.footer-glow-right {
  right: -210px;
  top: -100px;
  background: var(--soft-purple);
}

.footer-container {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.footer-main {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.45fr 0.72fr 1fr 1.32fr;
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
  padding: 100px 0 76px;
}

.brand-lockup {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.brand-lockup img {
  width: 58px;
  height: 58px;
  filter: drop-shadow(0 10px 22px rgba(118, 87, 232, 0.22));
}

.brand-lockup > span {
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: clamp(27px, 2.1vw, 34px);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.brand-lockup > span span {
  color: var(--baby-blue);
}

.footer-brand > p {
  max-width: 360px;
  margin: 29px 0 24px;
  color: var(--footer-muted);
  font-size: 15px;
  line-height: 1.75;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--footer-line);
  border-radius: 13px;
  color: #d7d5e8;
  transition: 180ms ease;
}

.social-links a:hover {
  border-color: rgba(158, 216, 255, 0.5);
  background:
    linear-gradient(145deg, rgba(158, 216, 255, 0.13), rgba(167, 139, 250, 0.1));
  color: var(--baby-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(81, 87, 182, 0.18);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  stroke: none;
}

.footer-column h2,
.footer-contact > h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
}

.footer-column h2 {
  color: var(--baby-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 25px 0 0;
  padding: 0;
  display: grid;
  gap: 15px;
  list-style: none;
}

.footer-column a {
  width: max-content;
  position: relative;
  color: #c1bfd0;
  text-decoration: none;
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-column a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -4px;
  background: linear-gradient(90deg, var(--baby-blue), var(--soft-purple));
  transition: width 180ms ease;
}

.footer-column a:hover {
  color: white;
  transform: translateX(3px);
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-contact {
  padding: 27px 28px 28px;
  border: 1px solid var(--footer-line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(158, 216, 255, 0.06), rgba(167, 139, 250, 0.08)),
    var(--footer-panel);
}

.availability {
  margin: 0 0 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #bdbacd;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #77e6ba;
  box-shadow: 0 0 0 5px rgba(119, 230, 186, 0.1);
}

.footer-contact > h2 {
  max-width: 290px;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.contact-email {
  width: max-content;
  margin: 16px 0 24px;
  display: block;
  color: var(--baby-blue);
  font-size: 13px;
  text-decoration: none;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 13px 12px 17px;
  border-radius: 999px;
  background: linear-gradient(100deg, var(--sky-blue), var(--rich-purple));
  color: white;
  box-shadow: 0 12px 26px rgba(118, 87, 232, 0.2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.footer-cta span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.footer-cta span svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(118, 87, 232, 0.3);
}

.footer-cta:hover span {
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(5deg);
}

.footer-bottom {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--footer-line);
  color: #77758c;
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  text-decoration: none;
  transition: color 180ms ease;
}

.footer-bottom a:hover {
  color: var(--baby-blue);
}

.back-to-top {
  justify-self: end;
}

.back-to-top span {
  margin-left: 6px;
  color: var(--baby-blue);
}

@media (max-width: 1050px) {
  .footer-main {
    grid-template-columns: 1.4fr 0.75fr 1fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 32px;
  }

  .footer-contact .availability,
  .footer-contact h2 {
    grid-column: 1;
  }

  .contact-email {
    grid-column: 1;
    margin-bottom: 0;
  }

  .footer-cta {
    min-width: 220px;
    grid-column: 2;
    grid-row: 1 / 4;
  }
}

@media (max-width: 720px) {
  .footer-container {
    width: min(100% - 38px, 540px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 48px 28px;
    padding: 66px 0 52px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-contact {
    display: block;
  }

  .footer-contact .availability,
  .footer-contact h2,
  .contact-email,
  .footer-cta {
    display: flex;
  }

  .contact-email {
    margin-bottom: 22px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding: 23px 0;
  }

  .footer-bottom div {
    display: none;
  }
}

@media (max-width: 430px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }

  .services-column {
    padding-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Contact page */
.contact-page {
  background: #090a12;
  color: #f4f1e9;
}

.contact-main {
  overflow: hidden;
}

.contact-hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(circle at 80% 25%, rgba(118, 87, 232, .35), transparent 26%),
    radial-gradient(circle at 62% 64%, rgba(105, 189, 255, .16), transparent 28%),
    #080911;
}

.contact-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(158, 216, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(158, 216, 255, .055) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.contact-orbit {
  width: 520px;
  height: 520px;
  position: absolute;
  right: -80px;
  top: 90px;
  border: 1px solid rgba(158, 216, 255, .18);
  border-radius: 50%;
  animation: orbit-spin 26s linear infinite;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  border: inherit;
  border-radius: inherit;
}

.contact-orbit::before { inset: 65px; }
.contact-orbit::after { inset: 140px; border-style: dashed; }

.contact-orbit i {
  width: 8px;
  height: 8px;
  position: absolute;
  border-radius: 50%;
  background: var(--baby-blue);
  box-shadow: 0 0 18px rgba(158, 216, 255, .8);
}

.contact-orbit i:first-child { left: 50%; top: -4px; }
.contact-orbit i:nth-child(2) { right: 30px; bottom: 110px; background: #caff4c; }
.contact-orbit i:nth-child(3) { left: 80px; bottom: 22px; background: var(--soft-purple); }

.contact-hero-inner {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 170px 0 46px;
}

.contact-eyebrow {
  margin: 0 0 34px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9c99aa;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-eyebrow span {
  width: 34px;
  height: 1px;
  background: #caff4c;
}

.contact-hero h1 {
  max-width: 1120px;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(76px, 9.2vw, 148px);
  font-weight: 800;
  line-height: .8;
  letter-spacing: -.09em;
}

.contact-hero h1 em {
  color: var(--baby-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.contact-intro-row {
  margin-top: 55px;
  padding-top: 25px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid rgba(217, 225, 255, .18);
}

.contact-intro-row > p {
  max-width: 540px;
  margin: 0;
  color: #aaa7b7;
  font-size: 16px;
  line-height: 1.65;
}

.contact-intro-row > a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #eeeaf4;
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-intro-row svg {
  width: 17px;
  fill: none;
  stroke: #caff4c;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: contact-arrow 1.8s ease-in-out infinite;
}

.contact-content {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
  gap: clamp(60px, 9vw, 140px);
  padding: 120px 0 140px;
}

.contact-section-label {
  margin-bottom: 45px;
  display: flex;
  gap: 9px;
  color: #8e8b9b;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-section-label span {
  color: var(--baby-blue);
}

.project-form {
  display: grid;
  gap: 38px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.project-form label {
  display: grid;
  gap: 12px;
}

.project-form label > span,
.project-form legend {
  color: #aaa7b6;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
}

.project-form input,
.project-form select,
.project-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #343341;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: #f1eef5;
  font: inherit;
  font-size: 15px;
  transition: border-color 180ms ease, background 180ms ease;
}

.project-form input,
.project-form select {
  height: 54px;
}

.project-form textarea {
  min-height: 165px;
  padding: 16px 0;
  resize: vertical;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus {
  border-color: var(--baby-blue);
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: #555361;
}

.project-form select {
  color-scheme: dark;
}

.project-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.project-form legend {
  margin-bottom: 17px;
}

.service-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.service-options label {
  display: block;
}

.service-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.service-options label span {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #353442;
  border-radius: 999px;
  color: #8f8c9c;
  font-size: 10px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-options label span:hover {
  border-color: #767286;
  color: white;
}

.service-options input:checked + span {
  border-color: #caff4c;
  background: #caff4c;
  color: #161811;
}

.form-submit {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px 15px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--baby-blue);
  color: #10131e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-submit svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-note {
  max-width: 480px;
  margin: -20px 0 0;
  color: #5f5c6b;
  font-size: 9px;
  line-height: 1.6;
}

.contact-aside {
  position: relative;
}

.availability-card {
  padding: 27px;
  border: 1px solid #302f3e;
  background:
    radial-gradient(circle at 92% 5%, rgba(118, 87, 232, .22), transparent 34%),
    #11121d;
}

.availability-card > p {
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #9693a3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.availability-card > p i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #76e0b5;
  box-shadow: 0 0 0 5px rgba(118,224,181,.08);
}

.availability-card h2 {
  margin: 0 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.05em;
}

.availability-card > a {
  width: max-content;
  display: block;
  color: var(--baby-blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.availability-card > span {
  margin-top: 11px;
  display: block;
  color: #605e6d;
  font-size: 8px;
}

.contact-facts {
  margin-top: 16px;
  border-top: 1px solid #2d2c39;
}

.contact-facts > div {
  padding: 21px 4px;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
  border-bottom: 1px solid #2d2c39;
}

.contact-facts span {
  color: #615f6e;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
}

.contact-facts strong {
  color: #c7c3ce;
  font-size: 10px;
  font-weight: 600;
}

.contact-pixel-art {
  width: 170px;
  height: 170px;
  margin: 60px auto 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  transform: rotate(6deg);
}

.contact-pixel-art span {
  background: rgba(158, 216, 255, .12);
}

.contact-pixel-art span:nth-child(2),
.contact-pixel-art span:nth-child(7) {
  background: rgba(202,255,76,.28);
}

.contact-pixel-art span:nth-child(4),
.contact-pixel-art span:nth-child(5) {
  background: rgba(167,139,250,.24);
}

.contact-pixel-art strong {
  position: absolute;
  left: 50%;
  top: 50%;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  transform: translate(-50%, -50%) rotate(-6deg);
}

.contact-footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 20px max(32px, calc((100% - 1320px) / 2));
  border-top: 1px solid #292834;
  background: #070810;
  color: #747180;
  font-size: 9px;
}

.contact-footer .brand-lockup img {
  width: 35px;
  height: 35px;
}

.contact-footer .brand-lockup > span {
  font-size: 18px;
}

.contact-footer p {
  margin: 0;
}

.contact-footer > div {
  justify-self: end;
  display: flex;
  gap: 20px;
}

.contact-footer > div a {
  text-decoration: none;
}

@keyframes contact-arrow {
  50% { transform: translateY(5px); }
}

@media (max-width: 900px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    max-width: 560px;
  }
}

@media (max-width: 620px) {
  .contact-hero {
    min-height: 690px;
  }

  .contact-hero-inner,
  .contact-content {
    width: calc(100% - 32px);
  }

  .contact-hero h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .contact-intro-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-orbit {
    right: -300px;
  }

  .contact-content {
    padding: 85px 0 100px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .contact-footer > p {
    display: none;
  }
}

/* Final contact hero overrides: supersede the original orbit layout. */
.contact-page {
  overflow-x: hidden;
}

.contact-page .contact-hero {
  width: 100%;
  min-width: 0;
  min-height: 680px;
  align-items: center;
}

.contact-page .contact-grid-bg {
  opacity: 0.55;
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, transparent 2%, #000 38%, #000);
}

.contact-page .contact-hero-inner {
  width: min(1240px, calc(100% - 64px));
  min-width: 0;
  padding: 152px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.58fr);
  align-items: center;
  gap: clamp(56px, 8vw, 126px);
}

.contact-page .contact-title-block {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.contact-page .contact-hero h1 {
  width: auto;
  max-width: 790px;
  margin: 0;
  font-size: clamp(58px, 6.4vw, 98px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  white-space: normal;
}

.contact-page .contact-title-block > p:last-child {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(244, 243, 238, 0.67);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
}

.contact-page .contact-start-panel {
  position: relative;
  z-index: 1;
  min-width: 0;
}

@media (max-width: 860px) {
  .contact-page .contact-hero {
    min-height: auto;
  }

  .contact-page .contact-hero-inner {
    width: min(680px, calc(100% - 40px));
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
    padding: 136px 0 78px;
  }

  .contact-page .contact-hero h1 {
    max-width: 660px;
    font-size: clamp(54px, 11vw, 82px);
  }

  .contact-page .contact-start-panel {
    width: min(100%, 560px);
  }
}

@media (max-width: 520px) {
  .contact-page .contact-hero-inner {
    width: calc(100% - 32px);
    gap: 42px;
    padding: 116px 0 62px;
  }

  .contact-page .contact-hero h1 {
    font-size: clamp(46px, 14vw, 64px);
    line-height: 0.92;
    letter-spacing: -0.055em;
  }
}

/* Capability card brand gradients + travelling border light */
.capabilities .capability-card {
  isolation: isolate;
  transform: none;
}

.capabilities .capability-card:nth-child(2) {
  background:
    radial-gradient(circle at 12% 18%, rgba(158, 216, 255, 0.16), transparent 34%),
    linear-gradient(120deg, rgba(117, 87, 232, 0.12), rgba(20, 20, 34, 0.96) 58%);
}

.capabilities .capability-card:nth-child(3) {
  background:
    radial-gradient(circle at 88% 20%, rgba(235, 255, 145, 0.11), transparent 32%),
    linear-gradient(135deg, rgba(158, 216, 255, 0.1), rgba(20, 20, 34, 0.96) 62%);
}

.capabilities .capability-card:nth-child(4) {
  background:
    radial-gradient(circle at 16% 82%, rgba(117, 87, 232, 0.18), transparent 36%),
    linear-gradient(115deg, rgba(158, 216, 255, 0.08), rgba(20, 20, 34, 0.96) 60%);
}

.capabilities .capability-featured {
  background:
    linear-gradient(rgba(16, 16, 27, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 16, 27, 0.075) 1px, transparent 1px),
    radial-gradient(circle at 82% 14%, rgba(235, 255, 145, 0.72), transparent 27%),
    linear-gradient(145deg, #a9ddff 8%, #b9c9ff 58%, #b9a9f4 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.capabilities .capability-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  padding: 1.5px;
  border-radius: inherit;
  background: conic-gradient(
    from var(--border-light-angle, 0deg),
    transparent 0deg 285deg,
    rgba(158, 216, 255, 0.18) 310deg,
    var(--baby-yellow) 336deg,
    #ffffff 348deg,
    var(--baby-blue) 358deg,
    transparent 360deg
  );
  opacity: 0;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.capabilities .capability-featured::before {
  background: conic-gradient(
    from var(--border-light-angle, 0deg),
    transparent 0deg 282deg,
    rgba(255, 54, 78, 0.12) 304deg,
    #ff3652 329deg,
    #ffffff 344deg,
    #ff183d 356deg,
    transparent 360deg
  );
  filter: drop-shadow(0 0 7px rgba(255, 35, 67, 0.92));
}

.capabilities .capability-card:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.capabilities .capability-card:hover::before {
  opacity: 1;
  animation: capability-border-light 1.7s linear infinite;
}

@property --border-light-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes capability-border-light {
  to {
    --border-light-angle: 360deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capabilities .capability-card:hover::before {
    animation: none;
    --border-light-angle: 325deg;
  }
}

/* Capabilities section light background */
.capabilities {
  color: #171625;
}

.capabilities::before {
  background:
    linear-gradient(rgba(117, 87, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 87, 232, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: 64px 64px;
}

.capabilities::after {
  color: rgba(117, 87, 232, 0.045);
}

.capabilities .section-label {
  color: #6f6c82;
}

.capabilities .section-label span {
  color: var(--rich-purple);
}

.capabilities .section-heading h2 {
  color: #171625;
}

.capabilities .section-heading h2 em {
  color: var(--rich-purple);
}

.capabilities .section-heading > div > p {
  color: #6d6a7c;
}
