/* APPLICATION MANAGEMENT PAGE */
.app-hero {
  min-height: 100vh;
  padding: 140px 0 90px;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .86fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.app-hero-copy {
  position: relative;
  z-index: 2;
}

.app-hero-copy h1 {
  max-width: 9ch;
}

.app-hero-copy p {
  max-width: 620px;
}

.app-command-center {
  position: relative;
  min-height: 560px;
  isolation: isolate;
  display: grid;
  place-items: center;
}

.app-command-center::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(200,50,28,.23), transparent 31%),
    radial-gradient(circle at 54% 46%, rgba(191,154,82,.11), transparent 45%);
  filter: blur(2px);
}

.app-command-center::after {
  content: "";
  position: absolute;
  inset: 18% 10%;
  z-index: -3;
  background:
    linear-gradient(90deg, transparent 0 17%, rgba(245,240,235,.06) 17% 17.2%, transparent 17.2% 100%),
    linear-gradient(0deg, transparent 0 30%, rgba(245,240,235,.045) 30% 30.2%, transparent 30.2% 100%);
  opacity: .8;
  mask-image: radial-gradient(circle at center, black 34%, transparent 76%);
}

.orbit {
  position: absolute;
  inset: 50%;
  width: var(--size);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(245,240,235,.09);
  transform: translate(-50%, -50%) rotate(var(--angle));
}

.orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red2);
  box-shadow: 0 0 18px rgba(232,71,46,.75);
}

.orbit-one {
  --size: min(470px, 82vw);
  --angle: 18deg;
  border-color: rgba(200,50,28,.22);
  animation: orbitDrift 14s linear infinite;
}

.orbit-two {
  --size: min(350px, 70vw);
  --angle: -23deg;
  border-style: dashed;
  animation: orbitDrift 18s linear infinite reverse;
}

.orbit-three {
  --size: min(245px, 58vw);
  --angle: 52deg;
  border-color: rgba(191,154,82,.16);
  animation: orbitDrift 12s linear infinite;
}

@keyframes orbitDrift {
  to { transform: translate(-50%, -50%) rotate(calc(var(--angle) + 360deg)); }
}

.command-trace {
  position: absolute;
  left: 9%;
  right: 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,50,28,.42), rgba(191,154,82,.18), transparent);
  opacity: .85;
}

.trace-one {
  top: 32%;
  transform: rotate(-8deg);
}

.trace-two {
  bottom: 28%;
  transform: rotate(7deg);
}

.app-core {
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 168px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 38%, rgba(245,240,235,.11), transparent 36%),
    radial-gradient(circle at center, rgba(200,50,28,.32), rgba(10,9,8,.88) 66%);
  box-shadow:
    0 0 0 1px rgba(200,50,28,.22),
    0 0 70px rgba(200,50,28,.30),
    inset 0 0 32px rgba(0,0,0,.65);
}

.app-core::before,
.app-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.app-core::before {
  inset: -18px;
  border: 1px solid rgba(200,50,28,.24);
  animation: corePulse 2.8s ease-in-out infinite;
}

.app-core::after {
  inset: 19px;
  border: 1px solid rgba(191,154,82,.2);
}

@keyframes corePulse {
  0%, 100% { transform: scale(.96); opacity: .5; }
  50% { transform: scale(1.08); opacity: 1; }
}

.app-core img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(200,50,28,.32));
}

.app-core span {
  position: absolute;
  bottom: -42px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-node {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 40% 32%, rgba(255,255,255,.12), transparent 28%),
    rgba(8,7,6,.66);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow: 0 18px 45px rgba(0,0,0,.45);
  backdrop-filter: blur(16px);
  text-align: center;
}

.signal-node::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(200,50,28,.18);
}

.signal-node strong {
  display: block;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.32rem;
  font-weight: 500;
  line-height: 1;
}

.signal-node span {
  display: block;
  margin-top: .3rem;
  color: var(--muted);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.uptime-node {
  top: 9%;
  right: 16%;
}

.security-node {
  right: 4%;
  bottom: 21%;
}

.support-node {
  left: 7%;
  bottom: 20%;
}

.cloud-node {
  top: 24%;
  left: 1%;
}

.command-console {
  position: absolute;
  left: 18%;
  bottom: 6%;
  z-index: 3;
  display: grid;
  gap: .42rem;
  width: min(260px, 70%);
  padding-left: 1.15rem;
  color: rgba(245,240,235,.5);
  font-size: .7rem;
  letter-spacing: .08em;
}

.command-console span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--red), transparent);
}

.command-console code {
  font-family: var(--font-b);
}

.app-split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.app-copy-panel {
  position: relative;
  padding: clamp(1.6rem, 3vw, 2.8rem) 0 clamp(1.4rem, 3vw, 2.4rem) clamp(1.6rem, 4vw, 3rem);
}

.app-copy-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: .4rem;
  bottom: .4rem;
  width: 1px;
  background: linear-gradient(var(--red), rgba(191,154,82,.2), transparent);
}

.app-copy-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.app-copy-panel p + p {
  margin-top: 1.1rem;
}

.outcome-strip {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
  margin-top: 2rem;
}

.outcome-strip div {
  min-width: 120px;
}

.outcome-strip strong {
  display: block;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 2.3rem;
  font-weight: 400;
  line-height: 1;
}

.outcome-strip span {
  display: block;
  margin-top: .35rem;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-head {
  max-width: 840px;
  margin-bottom: 3.2rem;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head.centered .section-label {
  justify-content: center;
}

.section-lede {
  max-width: 620px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section.language-section {
  background:
    radial-gradient(ellipse 60% 70% at 70% 18%, rgba(200,50,28,.06), transparent 65%),
    var(--bg2);
  overflow: hidden;
}

.tech-constellation {
  position: relative;
  min-height: 660px;
  isolation: isolate;
}

.tech-constellation::before,
.tech-constellation::after {
  content: "";
  position: absolute;
  inset: 10% 8%;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(245,240,235,.055);
  transform: rotate(-11deg);
}

.tech-constellation::after {
  inset: 19% 18%;
  border-color: rgba(200,50,28,.12);
  transform: rotate(18deg);
}

.constellation-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 230px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  padding: 2rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 35%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle, rgba(200,50,28,.17), rgba(10,9,8,.88) 68%);
  border: 1px solid rgba(200,50,28,.22);
  text-align: center;
}

.constellation-core::before {
  content: "";
  position: absolute;
  inset: 24%;
  z-index: 0;
  background: url("/assets/images/site-logo.webp") center / contain no-repeat;
  opacity: .08;
  filter: grayscale(1) brightness(1.7);
}

.constellation-core span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--red2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.constellation-core strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: .65rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.1;
}

.tech-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .85rem;
  width: min(255px, 28vw);
  min-height: 92px;
  color: var(--white);
}

.tech-node::before {
  content: "";
  position: absolute;
  left: 29px;
  top: 50%;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,50,28,.34), transparent);
  transform-origin: left;
  opacity: .65;
}

.tech-node img {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
}

.tech-node h3 {
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tech-node p {
  margin-top: .38rem;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 300;
  line-height: 1.5;
}

.tech-node:nth-of-type(1) { left: 8%; top: 6%; }
.tech-node:nth-of-type(2) { left: 38%; top: 2%; }
.tech-node:nth-of-type(3) { right: 5%; top: 10%; }
.tech-node:nth-of-type(4) { left: 0; top: 34%; }
.tech-node:nth-of-type(5) { right: 0; top: 35%; }
.tech-node:nth-of-type(6) { left: 10%; bottom: 12%; }
.tech-node:nth-of-type(7) { left: 38%; bottom: 4%; }
.tech-node:nth-of-type(8) { right: 8%; bottom: 15%; }
.tech-node:nth-of-type(9) { left: 22%; top: 70%; }
.tech-node:nth-of-type(10) { right: 26%; top: 70%; }
.tech-node:nth-of-type(11) { right: 28%; top: 21%; }

.js-node:hover img { border-color: #F7DF1E; box-shadow: 0 0 18px rgba(247,223,30,.34); }
.python-node:hover img { border-color: #3776AB; box-shadow: 0 0 18px rgba(55,118,171,.38); }
.java-node:hover img { border-color: #E76F00; box-shadow: 0 0 18px rgba(231,111,0,.36); }
.swift-node:hover img { border-color: #FA7343; box-shadow: 0 0 18px rgba(250,115,67,.36); }
.kotlin-node:hover img { border-color: #7F52FF; box-shadow: 0 0 18px rgba(127,82,255,.36); }
.ruby-node:hover img { border-color: #CC342D; box-shadow: 0 0 18px rgba(204,52,45,.36); }
.php-node:hover img { border-color: #777BB4; box-shadow: 0 0 18px rgba(119,123,180,.36); }
.csharp-node:hover img { border-color: #9B4F96; box-shadow: 0 0 18px rgba(155,79,150,.36); }
.html-node:hover img { border-color: #E34F26; box-shadow: 0 0 18px rgba(227,79,38,.36); }
.sql-node:hover img { border-color: #F29111; box-shadow: 0 0 18px rgba(242,145,17,.36); }
.ts-node:hover img { border-color: #3178C6; box-shadow: 0 0 18px rgba(49,120,198,.36); }

.language-carousel-controls {
  display: none;
}

.language-arrow,
.language-count {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font: inherit;
  cursor: none;
  transition: border-color .2s, color .2s, background .2s;
}

.language-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.05rem;
}

.language-count {
  min-width: 84px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.language-arrow:hover,
.language-count {
  border-color: rgba(200,50,28,.48);
  background: rgba(200,50,28,.16);
  color: var(--white);
}

.language-peek {
  display: none;
}

.section.development-section {
  background:
    radial-gradient(ellipse 60% 75% at 50% 44%, rgba(200,50,28,.08), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.service-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.service-selector-list {
  display: grid;
  gap: 1.1rem;
}

.service-selector {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
  width: 100%;
  padding: .35rem 0 1.25rem;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: none;
}

.service-selector::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--red2);
  box-shadow: 0 0 18px rgba(232,71,46,.45);
  transition: width .28s;
}

.service-selector:hover::before,
.service-selector.is-active::before {
  width: min(440px, 100%);
}

.service-selector-number {
  color: transparent;
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: .85;
  -webkit-text-stroke: 1px rgba(200,50,28,.28);
  transition: -webkit-text-stroke-color .25s;
}

.service-selector.is-active .service-selector-number,
.service-selector:hover .service-selector-number {
  -webkit-text-stroke-color: rgba(232,71,46,.72);
}

.service-selector-text strong {
  display: block;
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
  font-weight: 500;
  line-height: 1.05;
}

.service-selector-text span {
  display: block;
  max-width: 620px;
  margin-top: .7rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.7;
}

.service-preview {
  position: relative;
  min-height: 500px;
  transform: translateY(clamp(-0.8rem, -0.8vw, -0.8rem));
}

.service-preview::before {
  display: none;
}

.service-preview-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity .35s, visibility .35s, transform .35s;
}

.service-preview-panel.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.service-preview-image {
  position: relative;
  width: min(400px, 100%);
  aspect-ratio: 1;
  margin-inline: auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(8,7,6,.76);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
}

.service-preview-image::after {
  display: none;
}

.service-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.04);
}

.service-preview-panel > span {
  display: block;
  margin-top: 1.8rem;
  color: var(--red2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.service-preview-panel h3 {
  margin-top: .55rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.3vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.service-preview-panel p {
  max-width: 460px;
  margin-top: .9rem;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.75;
}

.service-preview-panel a {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.2rem;
  color: var(--red2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: uppercase;
}

.section.why-section {
  background:
    radial-gradient(ellipse 56% 70% at 8% 55%, rgba(200,50,28,.08), transparent 70%),
    var(--bg2);
}

.ops-pipeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.3rem, 3vw, 2.4rem);
}

.ops-pipeline::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 43px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200,50,28,.55), rgba(191,154,82,.18), transparent);
}

.pipeline-step {
  position: relative;
  padding-top: 5.5rem;
}

.pipeline-step::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(200,50,28,.55);
  background: var(--bg2);
  box-shadow: inset 0 0 0 7px var(--bg2), inset 0 0 0 10px var(--red2);
}

.pipeline-kicker {
  color: var(--red2);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pipeline-step h3 {
  margin-top: .85rem;
  color: var(--white);
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 500;
}

.pipeline-step p {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.78;
}

.section.app-newsletter {
  overflow: hidden;
  background: var(--bg);
}

.newsletter-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.newsletter-shell::before {
  content: "";
  position: absolute;
  inset: 0 5%;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(200,50,28,.16);
  transform: rotate(-8deg);
}

.newsletter-shell::after {
  content: "";
  position: absolute;
  inset: 12% 0;
  z-index: -2;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,50,28,.15), transparent 32%),
    radial-gradient(circle at 86% 48%, rgba(191,154,82,.10), transparent 28%);
  filter: blur(8px);
}

.newsletter-copy h2 {
  max-width: 760px;
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 1;
}

.newsletter-copy p {
  max-width: 560px;
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.newsletter-form {
  position: relative;
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.newsletter-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(var(--red), rgba(191,154,82,.25), transparent);
}

.newsletter-form label {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.newsletter-input-row {
  display: flex;
  gap: .85rem;
  margin-top: 1rem;
}

.newsletter-input-row input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  color: var(--white);
  font: inherit;
  padding: .95rem 1rem;
  outline: none;
}

.newsletter-input-row input:focus {
  border-color: rgba(200,50,28,.55);
  box-shadow: 0 0 0 3px rgba(200,50,28,.12);
}

.app-final-cta {
  position: relative;
  z-index: 5;
  padding: 6rem 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(200,50,28,.11), transparent 65%),
    var(--bg2);
}

.app-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.app-final-inner h2 {
  color: var(--white);
  font-family: var(--font-d);
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1;
}

.app-final-inner p {
  max-width: 560px;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 1180px) {
  .app-hero-grid,
  .app-split,
  .newsletter-shell {
    grid-template-columns: 1fr;
  }

  .app-command-center {
    min-height: 500px;
  }

  .ops-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ops-pipeline::before {
    display: none;
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-preview {
    min-height: 560px;
    transform: none;
  }

  .service-preview-panel {
    text-align: center;
  }

  .service-preview-panel p,
  .service-preview-panel a {
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .tech-constellation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    min-height: auto;
  }

  .tech-constellation::before,
  .tech-constellation::after,
  .constellation-core {
    display: none;
  }

  .tech-node,
  .tech-node:nth-of-type(n) {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    padding: 1rem 0;
  }

  .tech-node::before {
    width: 54px;
  }

  .service-preview-image {
    width: min(380px, 82vw);
  }
}

@media (max-width: 1020px) {
  .tech-constellation {
    display: block;
    min-height: 420px;
    padding: .5rem 0 4.2rem;
  }

  .tech-constellation::before,
  .tech-constellation::after,
  .constellation-core {
    display: none;
  }

  .tech-node,
  .tech-node:nth-of-type(n) {
    position: absolute;
    top: .2rem;
    left: 50%;
    width: min(560px, calc(100% - 230px));
    min-height: 285px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: .8rem;
    padding: .5rem 0 1rem;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(-50% + 28px));
    transition: opacity .35s, visibility .35s, transform .35s;
  }

  .tech-node.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .tech-node:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .tech-node::before {
    display: none;
  }

  .tech-node img {
    width: 118px;
    height: 118px;
    margin-inline: auto;
  }

  .tech-node div {
    width: 100%;
  }

  .tech-node h3 {
    margin-top: .55rem;
    font-size: 1.08rem;
  }

  .tech-node p {
    max-width: 430px;
    margin-inline: auto;
    font-size: .92rem;
    line-height: 1.65;
  }

  .language-peek {
    position: absolute;
    top: 132px;
    z-index: 3;
    display: grid;
    justify-items: center;
    gap: .45rem;
    width: 96px;
    opacity: .5;
    transform: scale(.9);
    pointer-events: none;
  }

  .language-peek-prev {
    left: 0;
  }

  .language-peek-next {
    right: 0;
  }

  .language-peek img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.035);
  }

  .language-peek span {
    color: var(--muted);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
  }

  .language-carousel-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: .2rem;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
  }

  .language-arrow,
  .language-count,
  .service-selector {
    cursor: pointer;
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-preview {
    display: none;
  }
}

@media (max-width: 760px) {
  .app-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .app-hero-copy h1 {
    max-width: 8ch;
  }

  .app-command-center {
    min-height: 430px;
  }

  .signal-node {
    width: 92px;
  }

  .signal-node strong {
    font-size: 1.02rem;
  }

  .signal-node span {
    font-size: .52rem;
  }

  .command-console {
    display: none;
  }

  .tech-constellation {
    display: block;
    min-height: 400px;
    padding: .5rem 0 4.2rem;
  }

  .tech-node,
  .tech-node:nth-of-type(n) {
    position: absolute;
    top: .2rem;
    left: 50%;
    width: min(430px, calc(100% - 160px));
    min-height: 270px;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    padding: 1rem 0;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(calc(-50% + 28px));
    transition: opacity .35s, visibility .35s, transform .35s;
  }

  .tech-node:not(.is-active) {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .tech-node.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%);
  }

  .tech-node::before {
    display: none;
  }

  .tech-node img {
    width: 104px;
    height: 104px;
    margin-inline: auto;
  }

  .tech-node h3 {
    margin-top: .45rem;
    font-size: 1.08rem;
  }

  .tech-node p {
    max-width: 430px;
    margin-inline: auto;
    font-size: .92rem;
    line-height: 1.65;
  }

  .language-peek {
    top: 126px;
    width: 72px;
    opacity: .48;
  }

  .language-peek-prev {
    left: 0;
  }

  .language-peek-next {
    right: 0;
  }

  .language-peek img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    padding: 7px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.035);
  }

  .language-peek span {
    color: var(--muted);
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-align: center;
    text-transform: uppercase;
  }

  .ops-pipeline,
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-selector {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .newsletter-input-row {
    flex-direction: column;
  }

  .app-final-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .app-command-center {
    min-height: 390px;
  }

  .app-core {
    width: 138px;
  }

  .app-core img {
    width: 68px;
    height: 68px;
  }

  .uptime-node {
    top: 7%;
    right: 4%;
  }

  .security-node {
    right: 0;
    bottom: 15%;
  }

  .support-node {
    left: 0;
    bottom: 13%;
  }

  .cloud-node {
    left: 0;
    top: 19%;
  }

  .signal-node {
    width: 78px;
  }

  .signal-node::before {
    inset: -5px;
  }

  .signal-node strong {
    font-size: .9rem;
  }

  .signal-node span {
    display: none;
  }

  .outcome-strip div {
    min-width: 95px;
  }

  .outcome-strip strong {
    font-size: 1.9rem;
  }

  .tech-node,
  .tech-node:nth-of-type(n) {
    width: min(360px, calc(100% - 128px));
    min-height: 260px;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }

  .language-peek {
    top: 120px;
    width: 58px;
    opacity: .42;
  }

  .language-peek img {
    width: 34px;
    height: 34px;
    padding: 5px;
  }

  .language-peek span {
    font-size: .5rem;
  }

  .service-selector {
    grid-template-columns: 1fr;
    gap: .45rem;
  }

  .service-selector-number {
    font-size: 2.6rem;
  }

  .service-preview-panel h3 {
    font-size: 2rem;
  }
}
