@font-face {
  font-family: "Tapas Sans";
  src: url("/website/assets/tapas-sans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tapas Sans";
  src: url("/website/assets/tapas-sans.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-top: #07101f;
  --bg-bottom: #02050d;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.06);
  --surface: rgba(255, 255, 255, 0.03);
  --text: #f5f8ff;
  --text-soft: #d9e3fb;
  --muted: #a7b3d0;
  --accent: #2490ea;
  --accent-bright: #67c0ff;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  --max-width: 1180px;
  --font-ui: "Inter", "Segoe UI", sans-serif;
  --font-brand: "Tapas Sans", "Inter", "Segoe UI", sans-serif;
}

@media (min-width: 1500px) {
  :root {
    --max-width: clamp(1320px, 84vw, 1540px);
  }

  .section__inner--narrow {
    width: min(100%, 1280px);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(103, 192, 255, 0.14), transparent 30%),
    radial-gradient(circle at 86% 14%, rgba(36, 144, 234, 0.12), transparent 24%),
    linear-gradient(180deg, var(--bg-top) 0%, #040917 48%, var(--bg-bottom) 100%);
  font-family: var(--font-ui);
  line-height: 1.6;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  display: block;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  opacity: 0.14;
}

img {
  display: block;
  max-width: 100%;
}

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

:focus-visible {
  outline: 2px solid rgba(103, 192, 255, 0.82);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

.mobile-disclosure__toggle {
  display: none;
}

.mobile-disclosure__content {
  display: contents;
}

.site-header {
  position: relative;
  top: auto;
  z-index: 30;
  width: 100%;
  padding: 0;
  background: rgba(5, 10, 24, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.hero__inner,
.section__inner {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.site-header__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  transition:
    background 0.24s ease,
    border-color 0.24s ease;
}

.site-header.is-scrolled .site-header__inner {
  background: transparent;
  border-color: transparent;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  overflow: visible;
}

.brand__logo {
  width: clamp(270px, 28vw, 390px);
  height: auto;
  max-height: 72px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: 0.9rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  padding: 0.28rem 0;
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header__cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  min-width: 2.5rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 0.86rem;
  background:
    linear-gradient(180deg, rgba(103, 192, 255, 0.08), rgba(103, 192, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

.menu-toggle__icon {
  display: grid;
  width: 1.02rem;
  gap: 0.22rem;
}

.menu-toggle__line {
  position: relative;
  display: block;
  height: 1.5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.95), rgba(217, 227, 251, 0.9));
  transition:
    transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    width 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.2rem;
  height: 0.2rem;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0.08rem rgba(103, 192, 255, 0.16);
  transform: translateY(-50%);
}

.menu-toggle__line--one::after,
.menu-toggle__line--three::after {
  right: -0.04rem;
}

.menu-toggle__line--two {
  width: 0.76rem;
  justify-self: end;
}

.menu-toggle__line--two::after {
  left: -0.04rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line--one {
  transform: translateY(0.44rem) rotate(42deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line--two {
  width: 0;
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line--three {
  transform: translateY(-0.44rem) rotate(-42deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__line::after {
  opacity: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.68rem 1.08rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #04121f;
  box-shadow: 0 10px 24px rgba(36, 144, 234, 0.24);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button--subtle {
  border-color: var(--line-soft);
  background: transparent;
  color: var(--muted);
}

.button--compact {
  min-height: 2.3rem;
  padding-inline: 0.95rem;
}

.header-link {
  color: var(--muted);
  font-family: var(--font-brand);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.4;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.hero {
  position: relative;
  padding: clamp(1.6rem, 4vw, 2.4rem) 1.25rem 0;
  overflow: clip;
}

.hero,
.section {
  scroll-margin-top: 7.5rem;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb,
.hero__beam,
.hero__grid {
  position: absolute;
}

.hero__orb {
  border-radius: 999px;
  filter: blur(18px);
}

.hero__orb--one {
  top: 8%;
  left: -4%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(103, 192, 255, 0.2), transparent 70%);
  animation: drift 18s ease-in-out infinite;
}

.hero__orb--two {
  right: -6%;
  top: 10%;
  width: 20rem;
  height: 20rem;
  background: radial-gradient(circle, rgba(36, 144, 234, 0.16), transparent 72%);
  animation: drift 22s ease-in-out infinite reverse;
}

.hero__grid {
  right: 4%;
  top: 4%;
  width: min(34vw, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.012),
    0 0 0 96px rgba(255, 255, 255, 0.008);
  opacity: 0.55;
}

.hero__beam {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  opacity: 0.28;
}

.hero__beam--one {
  top: 22%;
  left: 8%;
  width: 30%;
}

.hero__beam--two {
  right: 12%;
  bottom: 22%;
  width: 18%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.98fr);
  gap: 1rem 2.2rem;
  align-items: end;
  min-height: auto;
  padding: clamp(0.55rem, 1.4vw, 0.95rem) 0 clamp(2rem, 4vw, 2.75rem);
}

.hero__content {
  padding-top: 0;
  max-width: 34rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero h1,
.section-heading h1,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hero h1 {
  max-width: 12.4ch;
  font-size: clamp(2.05rem, 3.6vw, 3.05rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero__lede,
.section-copy,
.service-entry__body p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
  line-height: 1.68;
  letter-spacing: -0.01em;
}

.hero__lede {
  max-width: 27rem;
  margin: 0.95rem 0 0;
  font-size: clamp(0.95rem, 1.02vw, 0.99rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.hero__mark {
  display: grid;
  justify-items: end;
  gap: 0.85rem;
  align-self: center;
  width: 100%;
}

.hero__tablet {
  width: min(100%, 28.1rem);
}

.hero__tablet-shell {
  position: relative;
  padding: 0.64rem 0.68rem 0.8rem;
  border-radius: 1.82rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.92), rgba(3, 9, 21, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero__tablet-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16%, transparent 82%, rgba(103, 192, 255, 0.05));
}

.hero__tablet-camera {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  z-index: 2;
  width: 3.8rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(1, 5, 12, 0.92);
  transform: translateX(-50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero__tablet-screen {
  position: relative;
  overflow: hidden;
  min-height: 19.8rem;
  padding: 0.68rem;
  border-radius: 1.36rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.005)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.98), rgba(4, 10, 24, 0.96));
}

.hero__caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__tablet-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(103, 192, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16%, transparent 84%, rgba(103, 192, 255, 0.05));
  pointer-events: none;
}

.tablet-dashboard {
  display: grid;
  gap: 0.42rem;
  padding: 0;
}

.tablet-dashboard__bar,
.tablet-chart__header,
.tablet-network__header,
.tablet-feed {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.tablet-dashboard__bar {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tablet-dashboard__status {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 1.4;
}

.tablet-dashboard__status i {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: #67f5a9;
  box-shadow: 0 0 0 0 rgba(103, 245, 169, 0.42);
  animation: nodePulse 1.9s ease-in-out infinite;
}

.tablet-dashboard__label,
.tablet-chart__header small,
.tablet-network__header small {
  color: var(--muted);
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tablet-dashboard__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.32rem;
}

.tablet-metric,
.tablet-chart,
.tablet-network {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.tablet-metric {
  padding: 0.38rem;
}

.tablet-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tablet-metric strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.tablet-dashboard__visuals {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(88px, 0.9fr);
  gap: 0.32rem;
}

.tablet-chart,
.tablet-network {
  padding: 0.38rem;
}

.tablet-chart__header span,
.tablet-network__header span {
  font-size: 0.48rem;
  font-weight: 700;
  line-height: 1.4;
}

.tablet-chart svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.26rem;
}

.tablet-chart__area {
  fill: rgba(103, 192, 255, 0.12);
}

.tablet-chart__line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tablet-chart__line--primary {
  stroke: var(--accent-bright);
  stroke-width: 3;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  animation: traceLine 4.8s ease-in-out infinite;
}

.tablet-chart__line--secondary {
  stroke: rgba(103, 192, 255, 0.48);
  stroke-width: 2.2;
  stroke-dasharray: 320;
  stroke-dashoffset: 320;
  animation: traceLine 5.4s ease-in-out infinite 0.5s;
}

.tablet-network__map {
  position: relative;
  min-height: 4.5rem;
  margin-top: 0.28rem;
  border-radius: 8px;
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.08), transparent 62%),
    rgba(255, 255, 255, 0.02);
}

.tablet-link,
.tablet-node {
  position: absolute;
}

.tablet-link {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.14), rgba(103, 192, 255, 0.56), rgba(103, 192, 255, 0.14));
  transform-origin: left center;
}

.tablet-link--one {
  top: 48%;
  left: 22%;
  width: 28%;
  transform: rotate(-24deg);
}

.tablet-link--two {
  top: 41%;
  left: 42%;
  width: 24%;
  transform: rotate(18deg);
}

.tablet-link--three {
  top: 32%;
  left: 44%;
  width: 32%;
  transform: rotate(-32deg);
}

.tablet-link--four {
  top: 56%;
  left: 42%;
  width: 32%;
  transform: rotate(24deg);
}

.tablet-node {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(103, 192, 255, 0.32);
  animation: nodePulse 2.4s ease-in-out infinite;
}

.tablet-node--core {
  top: 44%;
  left: 40%;
  width: 0.52rem;
  height: 0.52rem;
  background: #67f5a9;
}

.tablet-node--one {
  top: 28%;
  left: 20%;
}

.tablet-node--two {
  top: 24%;
  left: 68%;
  animation-delay: 0.3s;
}

.tablet-node--three {
  top: 66%;
  left: 18%;
  animation-delay: 0.6s;
}

.tablet-node--four {
  top: 70%;
  left: 74%;
  animation-delay: 0.9s;
}

.tablet-dashboard__feeds {
  display: grid;
  gap: 0.26rem;
  padding-top: 0.12rem;
}

.tablet-feed {
  padding-top: 0.28rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.tablet-feed__label {
  color: var(--text-soft);
  font-size: 0.44rem;
  font-weight: 600;
  line-height: 1.4;
}

.tablet-feed__state {
  color: #67f5a9;
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(2.6rem, 5vw, 4.2rem) 1.25rem;
}

.section__inner--narrow {
  width: min(100%, 1120px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem 2.4rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.section-heading--stacked {
  display: block;
  text-align: center;
}

.section-heading--stacked h2,
.section-heading--stacked .section-copy {
  margin-inline: auto;
}

.section-heading--workflow {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.72rem;
  margin-bottom: 1.15rem;
}

.section-heading--workflow > div {
  display: grid;
  gap: 0.72rem;
  max-width: 42rem;
}

.section-heading--workflow h2 {
  max-width: 9.8ch;
}

.section-heading--workflow .section-copy {
  max-width: 32rem;
  font-size: 0.94rem;
  line-height: 1.6;
}

.section-heading h1,
.section-heading h2 {
  max-width: 11ch;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  line-height: 1.04;
  text-wrap: balance;
}

.section-copy {
  max-width: 34rem;
  margin: 0;
  font-size: clamp(0.96rem, 1.2vw, 1.02rem);
  line-height: 1.66;
}

.service-rail {
  border-top: 1px solid var(--line);
}

.service-entry {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem 2rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.service-entry__head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.service-entry__index {
  color: var(--accent-bright);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.service-entry__title-block {
  display: grid;
  gap: 0.35rem;
}

.service-entry__title-block h3 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.055em;
}

.service-entry__signals {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.service-entry__signals--mobile {
  display: none;
}

.service-entry__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.4rem;
}

.service-entry__body p {
  max-width: 34rem;
  margin: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.4;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.text-link::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: rotate(-45deg) translate(1px, -1px);
}

.service-entry__body .text-link {
  flex: 0 0 auto;
  margin-left: auto;
  text-align: right;
}

.section--technologies {
  padding-top: clamp(2.1rem, 4vw, 3.4rem);
}

.section--technology-page {
  padding-top: clamp(2.8rem, 5vw, 4.8rem);
}

.tech-page {
  display: grid;
  gap: clamp(2rem, 4vw, 3.3rem);
}

.tech-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.92fr);
  gap: 1.6rem 2.4rem;
  align-items: center;
}

.tech-page__intro h1,
.tech-gallery__heading h2,
.tech-stack__heading h2 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-brand);
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.tech-page__lede {
  max-width: 28rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.06rem);
  line-height: 1.62;
}

.tech-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.tech-page__mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 0.9rem;
  min-height: 24rem;
}

.tech-mosaic__feature,
.tech-mosaic__tile {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: space-between;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(103, 192, 255, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.tech-mosaic__feature::after,
.tech-mosaic__tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 20%, transparent 80%, rgba(255, 255, 255, 0.02));
}

.tech-mosaic__feature--network {
  grid-row: 1 / span 2;
}

.tech-mosaic__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
}

.tech-mosaic__copy span {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tech-mosaic__copy strong {
  max-width: 16rem;
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.tech-mosaic__feature img {
  width: 100%;
  height: 100%;
  min-height: 16.5rem;
  object-fit: cover;
  border-radius: 1.05rem;
}

.tech-mosaic__logo {
  position: relative;
  z-index: 1;
  max-width: 10.5rem;
}

.tech-mosaic__logo--starlink {
  filter: invert(1);
}

.tech-mosaic__tile--starlink {
  justify-items: start;
}

.tech-mosaic__tile--software {
  align-content: space-between;
}

.tech-mosaic__software {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.tech-mosaic__software img {
  width: auto;
  height: 1.65rem;
  max-width: 10rem;
  object-fit: contain;
}

.tech-gallery {
  display: grid;
  gap: 1.3rem;
}

.tech-gallery__heading {
  margin-bottom: 0;
}

.tech-gallery__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(2, minmax(0, 0.88fr));
  gap: 1rem;
  align-items: stretch;
}

.tech-tile {
  display: grid;
  gap: 0.85rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(103, 192, 255, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.tech-tile--wide {
  grid-row: 1 / span 2;
}

.tech-tile__media {
  overflow: hidden;
  border-radius: 1rem;
  min-height: 18.5rem;
}

.tech-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-tile__meta {
  display: grid;
  gap: 0.45rem;
}

.tech-tile__eyebrow {
  margin: 0;
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tech-tile__meta h3 {
  max-width: 16rem;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(0.98rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.tech-tile__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tile__chips span,
.tech-stack__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.tech-tile__visual {
  display: grid;
  place-items: center;
  min-height: 13rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(9, 17, 38, 0.98), rgba(5, 10, 23, 0.94));
}

.tech-tile__visual--logo {
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.08), transparent 46%),
    rgba(255, 255, 255, 0.02);
}

.tech-tile__visual--logo img {
  width: auto;
  height: 2rem;
  max-width: 11rem;
  object-fit: contain;
}

.tech-tile__signal-shell {
  position: relative;
  width: min(100%, 15rem);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1.35rem;
}

.tech-tile__signal-rings,
.tech-tile__signal-rings::before,
.tech-tile__signal-rings::after {
  position: absolute;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(103, 192, 255, 0.16);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  content: "";
}

.tech-tile__signal-rings {
  width: 7rem;
  height: 7rem;
}

.tech-tile__signal-rings::before {
  width: 11rem;
  height: 11rem;
}

.tech-tile__signal-rings::after {
  width: 15rem;
  height: 15rem;
}

.tech-tile__signal-shell img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62%, 10rem);
  transform: translate(-50%, -50%);
  filter: invert(1);
}

.tech-stack {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}

.tech-stack__heading {
  margin-bottom: 0;
}

.tech-stack__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.technology-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}

.technology-cta p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.tech-lines-page {
  display: grid;
  gap: clamp(1.55rem, 3vw, 2.35rem);
}

.tech-lines-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.98fr);
  grid-template-areas:
    "content visual"
    "actions visual";
  gap: 0.85rem 2rem;
  align-items: end;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line-soft);
}

.tech-lines-hero__content {
  grid-area: content;
}

.tech-lines-hero__content h1 {
  max-width: 10ch;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.72rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.tech-lines-hero__copy {
  max-width: 27rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.05vw, 0.98rem);
  line-height: 1.58;
}

.tech-lines-hero__visual {
  grid-area: visual;
  display: grid;
  justify-items: end;
  align-self: center;
  width: 100%;
}

.tech-lines-hero__device {
  position: relative;
  width: min(100%, 25.8rem);
  padding: 0.56rem 0.6rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.58rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.9), rgba(3, 9, 21, 0.78));
  box-shadow:
    0 22px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.tech-lines-hero__device-shell {
  position: relative;
  overflow: hidden;
  min-height: 18.2rem;
  padding: 0.58rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  border-radius: 1.12rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.005)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.98), rgba(4, 10, 24, 0.96));
}

.tech-lines-hero__device-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16%, transparent 82%, rgba(103, 192, 255, 0.05));
  z-index: 0;
}

.tech-lines-hero__device-camera {
  position: absolute;
  top: 0.38rem;
  left: 50%;
  z-index: 2;
  width: 3.6rem;
  height: 0.34rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(1, 5, 12, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tech-lines-hero__actions {
  grid-area: actions;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.62rem;
}

.tech-hero-art {
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 16.3rem;
  padding: 0.62rem;
  border: 1px solid rgba(103, 192, 255, 0.09);
  border-radius: 0.92rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(103, 192, 255, 0.1), transparent 28%),
    radial-gradient(circle at 78% 22%, rgba(103, 192, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(8, 18, 37, 0.98), rgba(4, 10, 24, 0.96));
}

.tech-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 92%);
}

.tech-hero-art__head,
.tech-hero-art__console,
.tech-hero-art__status,
.tech-hero-art__chip {
  position: relative;
  z-index: 1;
}

.tech-hero-art__codewall {
  position: absolute;
  inset: 1rem 0.92rem 3.6rem 0.82rem;
  z-index: 0;
  display: grid;
  align-content: start;
  gap: 0.3rem;
  pointer-events: none;
  opacity: 0.42;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.52rem;
  line-height: 1.34;
  letter-spacing: 0.01em;
  transform: translateY(0.08rem);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.72) 70%, transparent);
  font-variant-ligatures: none;
}

.tech-code-line {
  display: block;
  width: fit-content;
  white-space: nowrap;
}

.tech-hero-art__codewall .tech-code-line:nth-child(1) {
  margin-left: 0.8rem;
}

.tech-hero-art__codewall .tech-code-line:nth-child(2) {
  margin-left: 3.3rem;
  opacity: 0.74;
}

.tech-hero-art__codewall .tech-code-line:nth-child(3) {
  margin-left: 0.1rem;
  opacity: 0.56;
}

.tech-hero-art__codewall .tech-code-line:nth-child(4) {
  margin-left: 2.5rem;
}

.tech-hero-art__codewall .tech-code-line:nth-child(5) {
  margin-left: 1.35rem;
  opacity: 0.66;
}

.tech-code__object {
  color: rgba(156, 220, 254, 0.94);
}

.tech-code__property {
  color: rgba(79, 193, 255, 0.94);
}

.tech-code__method {
  color: rgba(220, 220, 170, 0.94);
}

.tech-code__operator {
  color: rgba(212, 212, 212, 0.86);
}

.tech-code__string {
  color: rgba(206, 145, 120, 0.94);
}

.tech-code__boolean {
  color: rgba(86, 156, 214, 0.94);
}

.tech-code__text {
  color: rgba(212, 212, 212, 0.9);
}

.tech-code__punctuation {
  color: rgba(129, 140, 170, 0.82);
}

.tech-hero-art__head {
  position: absolute;
  inset: 1.12rem 1.26rem 3.56rem 0.92rem;
}

.tech-hero-art__profile {
  width: 100%;
  height: 100%;
}

.tech-hero-art__profile-fill {
  fill: rgba(103, 192, 255, 0.06);
  stroke: rgba(103, 192, 255, 0.08);
  stroke-width: 1;
}

.tech-hero-art__profile-outline,
.tech-hero-art__profile-line {
  fill: none;
  stroke: rgba(103, 192, 255, 0.82);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-hero-art__profile-outline {
  stroke-width: 2.5;
}

.tech-hero-art__profile-line {
  stroke-width: 2;
  opacity: 0.72;
}

.tech-hero-art__gear,
.tech-hero-art__gear::before,
.tech-hero-art__gear::after {
  position: absolute;
  border-radius: 999px;
}

.tech-hero-art__gear {
  background:
    radial-gradient(circle at center, rgba(5, 10, 24, 0.98) 0 16%, transparent 17%),
    radial-gradient(circle at center, transparent 0 31%, rgba(103, 192, 255, 0.88) 31% 48%, transparent 49%),
    repeating-conic-gradient(from 0deg, rgba(103, 192, 255, 0.88) 0deg 14deg, transparent 14deg 45deg);
  filter: drop-shadow(0 0 18px rgba(103, 192, 255, 0.18));
}

.tech-hero-art__gear::before,
.tech-hero-art__gear::after {
  content: "";
  inset: 18%;
  border: 1px solid rgba(103, 192, 255, 0.22);
}

.tech-hero-art__gear--one {
  top: 27%;
  left: 35%;
  width: 5.25rem;
  height: 5.25rem;
  animation: gearSpin 18s linear infinite;
}

.tech-hero-art__gear--two {
  top: 44%;
  left: 49%;
  width: 3.6rem;
  height: 3.6rem;
  animation: gearSpinReverse 12s linear infinite;
}

.tech-hero-art__node {
  position: absolute;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(103, 192, 255, 0.3);
  animation: nodePulse 2.6s ease-in-out infinite;
}

.tech-hero-art__node--one {
  top: 22%;
  left: 25%;
}

.tech-hero-art__node--two {
  top: 33%;
  right: 19%;
  animation-delay: 0.4s;
}

.tech-hero-art__node--three {
  bottom: 20%;
  left: 37%;
  animation-delay: 0.9s;
}

.tech-hero-art__chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.62rem;
  padding: 0.3rem 0.5rem;
  border: 1px solid rgba(103, 192, 255, 0.16);
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.07);
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tech-hero-art__chip--code {
  top: 0.72rem;
  right: 0.72rem;
}

.tech-hero-art__chip--config {
  top: 0.72rem;
  left: 0.72rem;
}

.tech-hero-art__console {
  position: absolute;
  right: 0.72rem;
  bottom: 0.72rem;
  display: grid;
  gap: 0.28rem;
  width: min(42%, 168px);
  padding: 0.52rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.78rem;
  background: rgba(3, 8, 18, 0.88);
  backdrop-filter: blur(10px);
}

.tech-hero-art__console-bar {
  display: flex;
  gap: 0.28rem;
}

.tech-hero-art__console-bar i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.78);
}

.tech-hero-art__console .tech-code-line {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.tech-hero-art__status {
  position: absolute;
  left: 0.72rem;
  bottom: 0.84rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.tech-hero-art__status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.95);
  box-shadow: 0 0 0 0 rgba(103, 192, 255, 0.26);
  animation: nodePulse 2.4s ease-in-out infinite;
}

.tech-hero-art__status-copy {
  color: rgba(217, 227, 251, 0.78);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.tech-lines {
  display: grid;
  gap: 1.15rem;
}

.tech-line {
  display: grid;
  gap: 0.78rem;
}

.tech-line + .tech-line {
  padding-top: 1.05rem;
  border-top: 1px solid var(--line-soft);
}

.tech-line__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0.55rem 1.6rem;
  align-items: start;
}

.tech-line__heading h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.18rem, 1.8vw, 1.58rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.tech-line__heading .section-copy {
  max-width: 28rem;
  font-size: 0.9rem;
  line-height: 1.54;
}

.tech-line__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.tech-line__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.tech-line--network .tech-line__grid,
.tech-line--development .tech-line__grid {
  grid-template-columns: repeat(auto-fit, minmax(12.8rem, 1fr));
  gap: 0.9rem;
}

.tech-line--network .tech-line__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tech-line-card {
  display: grid;
  grid-template-rows: 1fr auto;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
  overflow: hidden;
}

.tech-line-card__shell {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.tech-line-card__media {
  display: grid;
  place-items: center;
  padding: 0.8rem;
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.06), transparent 40%),
    rgba(255, 255, 255, 0.015);
  min-height: 12rem;
}

.tech-line-card__media img {
  width: 100%;
  height: 100%;
  max-height: 10.4rem;
  object-fit: contain;
}

.tech-line-card__media--logo img {
  width: auto;
  max-width: 9.6rem;
  max-height: 2.5rem;
}

.tech-line-card__media--placeholder {
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.12), transparent 48%),
    linear-gradient(180deg, rgba(9, 17, 38, 0.98), rgba(5, 10, 23, 0.94));
}

.tech-line-card__media--placeholder span {
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.tech-line-card__body {
  display: grid;
  align-content: start;
  gap: 0.45rem;
  padding: 0.82rem 0.9rem 0.24rem;
  min-height: 6rem;
}

.tech-line-card__header {
  display: grid;
  gap: 0.38rem;
}

.tech-line-card__label {
  margin: 0;
  color: rgba(217, 227, 251, 0.7);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tech-line-card__header h3 {
  max-width: none;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(0.94rem, 1.2vw, 1.06rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.tech-line-card__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0 0.9rem 0.9rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-bright);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    color 0.2s ease;
}

.tech-line-card__trigger:hover,
.tech-line-card__trigger:focus-visible {
  transform: translateY(-1px);
  background: transparent;
}

.tech-line-card__trigger-text {
  font-family: var(--font-ui);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.tech-line-card__trigger-icon {
  position: relative;
  width: 0.72rem;
  height: 0.72rem;
}

.tech-line-card__trigger-icon::before,
.tech-line-card__trigger-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.72rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    transform 0.24s ease,
    opacity 0.2s ease;
}

.tech-line-card__trigger-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.tech-dialog {
  width: min(100% - 2rem, 880px);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.tech-dialog::backdrop {
  background: rgba(2, 5, 13, 0.74);
  backdrop-filter: blur(8px);
}

.tech-dialog__surface {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(103, 192, 255, 0.12), transparent 34%),
    rgba(5, 10, 24, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.tech-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.tech-dialog__close:hover,
.tech-dialog__close:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.tech-dialog__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(0, 1.08fr);
  min-height: min(72svh, 620px);
}

.tech-dialog__media {
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.02);
}

.tech-dialog__media img {
  width: 100%;
  height: 100%;
  max-height: 23rem;
  object-fit: contain;
}

.tech-dialog__media--logo img {
  width: auto;
  max-width: 14rem;
  max-height: 4rem;
}

.tech-dialog__media--placeholder {
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(9, 17, 38, 0.98), rgba(5, 10, 23, 0.94));
}

.tech-dialog__media--placeholder span {
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.tech-dialog__content {
  display: grid;
  align-content: start;
  gap: 0.72rem;
  padding: 1.35rem 1.35rem 1.45rem;
}

.tech-dialog__eyebrow,
.tech-dialog__label {
  margin: 0;
}

.tech-dialog__eyebrow {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.tech-dialog__label {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.42;
  text-transform: uppercase;
}

.tech-dialog__content h3 {
  max-width: 14rem;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.tech-dialog__details {
  display: grid;
  gap: 0.56rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tech-dialog__details li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.56;
}

.tech-dialog__details li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--accent-bright);
}

.portal-dialog {
  width: min(100% - 2rem, 980px);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.portal-dialog::backdrop {
  background: rgba(2, 5, 13, 0.78);
  backdrop-filter: blur(10px);
}

.portal-dialog__surface {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top left, rgba(103, 192, 255, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(7, 16, 31, 0.98), rgba(2, 6, 14, 0.96));
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.34);
}

.portal-dialog__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.1rem;
  padding: 0.45rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.portal-dialog__close:hover,
.portal-dialog__close:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.portal-dialog__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.92fr);
  min-height: min(72svh, 620px);
}

.portal-dialog__intro,
.portal-access {
  padding: 1.4rem 1.4rem 1.5rem;
}

.portal-dialog__intro {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.portal-dialog__intro h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.45rem, 2.3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.portal-dialog__copy {
  max-width: 29rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.portal-dialog__features {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-dialog__features li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.56;
}

.portal-dialog__features li::before {
  content: "";
  position: absolute;
  top: 0.62rem;
  left: 0;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--accent-bright);
}

.portal-access {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(4, 10, 24, 0.56);
}

.portal-access__header {
  display: grid;
  gap: 0.32rem;
}

.portal-access__eyebrow {
  margin: 0;
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.portal-access__header h3 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.portal-access__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.54;
}

.portal-access__field {
  display: grid;
  gap: 0.38rem;
}

.portal-access__field span {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.portal-access__field input {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(3, 8, 19, 0.86);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.portal-access__field input::placeholder {
  color: rgba(167, 179, 208, 0.72);
}

.portal-access__field input:focus {
  border-color: rgba(103, 192, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(103, 192, 255, 0.12);
  outline: none;
}

.portal-access__status {
  min-height: 1.45rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.portal-access__status.is-pending {
  color: var(--text-soft);
}

.portal-access__status.is-success {
  color: #87f0bb;
}

.portal-access__status.is-error {
  color: #ffb8b8;
}

.portal-access__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.portal-access__actions .button:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.why-shell {
  display: grid;
  gap: 1rem;
}

.why-proofline {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
}

.why-proofline__value {
  color: var(--text);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.05em;
}

.why-proofline__label {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.4rem;
}

.why-pillar {
  padding-top: 0.2rem;
  border-top: 1px solid var(--line-soft);
}

.why-pillar h3 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.why-pillar p {
  max-width: 22rem;
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.why-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.4rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
}

.why-footer p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 1.4rem 2.2rem;
  align-items: start;
}

.enquiry-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.enquiry-copy .section-copy {
  margin-top: 0.8rem;
  max-width: 29rem;
}

.enquiry-context {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line-soft);
}

.enquiry-context[hidden] {
  display: none;
}

.enquiry-context__label {
  color: var(--accent-bright);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.enquiry-context strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.enquiry-form {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.5rem;
}

.field span {
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.82rem 0.92rem;
  border: 1px solid var(--line);
  border-radius: 0.92rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  line-height: 1.5;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(167, 179, 208, 0.74);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(103, 192, 255, 0.4);
  box-shadow: 0 0 0 4px rgba(103, 192, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.field select {
  appearance: none;
  padding-right: 2.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color-scheme: dark;
}

.field select option,
.field select optgroup {
  background: #07101f;
  color: var(--text);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field--full {
  grid-column: 1 / -1;
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-form__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.enquiry-form__footer .button {
  flex: 0 0 auto;
}

.form-status {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.form-status.is-success {
  color: #8ad9aa;
}

.form-status.is-error {
  color: #ffb1b1;
}

.site-footer {
  width: 100%;
  padding: 0 0 1.4rem;
}

.site-footer__inner {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(640px, 1.1fr);
  gap: 1.2rem 2rem;
  padding: 1.25rem 1.25rem 0;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
}

.site-footer__top {
  display: grid;
  align-content: start;
  gap: 0.72rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand img {
  width: clamp(260px, 28vw, 400px);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__summary {
  max-width: 18rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.56;
}

.site-footer__links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-self: end;
  width: min(100%, 58rem);
  gap: 0.9rem 1.85rem;
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 0.28rem;
}

.footer-link-group h2 {
  margin: 0 0 0.18rem;
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.footer-link-group a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.38;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-link-group__meta {
  margin: 0;
  color: rgba(167, 179, 208, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.38;
}

.footer-link-group__meta--address {
  max-width: 13rem;
  font-weight: 500;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: var(--accent-bright);
  transform: translateX(2px);
}

.site-footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.4rem;
  padding-top: 0.78rem;
  border-top: 1px solid var(--line-soft);
  color: rgba(167, 179, 208, 0.76);
  font-size: 0.78rem;
  line-height: 1.5;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 16px, 0);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(103, 192, 255, 0.34);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(103, 192, 255, 0);
  }
}

@keyframes traceLine {
  0%,
  100% {
    stroke-dashoffset: 360;
  }

  25%,
  75% {
    stroke-dashoffset: 0;
  }
}

@keyframes gearSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes gearSpinReverse {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

@keyframes solarComingMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes solarComingSweep {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes skeletonSweep {
  0% {
    background-position: 200% 50%;
  }

  100% {
    background-position: -20% 50%;
  }
}

@keyframes skeletonPanelPulse {
  0%,
  100% {
    opacity: 0.82;
  }

  50% {
    opacity: 1;
  }
}

@keyframes skeletonTracePulse {
  0%,
  100% {
    opacity: 0.34;
    transform: translateY(0);
  }

  50% {
    opacity: 0.82;
    transform: translateY(-1px);
  }
}

.section--services-page {
  padding: 0.95rem 1.25rem 2rem;
}

.services-page {
  display: grid;
  gap: 1.7rem;
}

.services-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.98fr);
  gap: 0.9rem 1.8rem;
  align-items: end;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--line-soft);
}

.services-page__hero-copy h1,
.service-showcase__content h2,
.services-page__cta h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.services-page__hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(1.82rem, 3.3vw, 2.72rem);
  line-height: 1.03;
  text-wrap: balance;
}

.services-page__hero-text {
  max-width: 31rem;
  margin: 0.72rem 0 0;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.02vw, 0.98rem);
  line-height: 1.58;
}

.services-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.95rem;
}

.services-page__hero-visual {
  display: grid;
  justify-items: end;
  align-self: center;
  width: 100%;
}

.services-hero-device {
  position: relative;
  width: min(100%, 28.1rem);
  padding: 0.64rem 0.68rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.82rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.92), rgba(3, 9, 21, 0.8));
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-hero-device__shell {
  position: relative;
  overflow: hidden;
  min-height: 19.8rem;
  padding: 0.68rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  border-radius: 1.36rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.005)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.98), rgba(4, 10, 24, 0.96));
}

.services-hero-device__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16%, transparent 82%, rgba(103, 192, 255, 0.05));
}

.services-hero-device__camera {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  z-index: 2;
  width: 3.8rem;
  height: 0.34rem;
  border-radius: 999px;
  transform: translateX(-50%);
  background: rgba(1, 5, 12, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.services-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 18.1rem;
  padding: 0.68rem;
  border: 1px solid rgba(103, 192, 255, 0.09);
  border-radius: 1.04rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(103, 192, 255, 0.13), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(103, 192, 255, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(8, 18, 37, 0.98), rgba(4, 10, 24, 0.96));
}

.services-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 92%);
}

.services-hero-panel__topline,
.services-hero-panel__core,
.services-hero-node,
.services-hero-panel__workflow {
  position: relative;
  z-index: 1;
}

.services-hero-panel__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.48rem;
}

.services-hero-panel__badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(103, 192, 255, 0.16);
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.08);
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-hero-panel__badge--muted {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.services-hero-panel__trace {
  position: absolute;
  z-index: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0), rgba(103, 192, 255, 0.76), rgba(103, 192, 255, 0));
  opacity: 0.78;
}

.services-hero-panel__trace--one {
  top: 6.7rem;
  left: 6.6rem;
  width: 3.78rem;
  transform: rotate(18deg);
}

.services-hero-panel__trace--two {
  top: 6.76rem;
  right: 6.62rem;
  width: 3.72rem;
  transform: rotate(-18deg);
}

.services-hero-panel__trace--three {
  bottom: 6.28rem;
  left: 6.72rem;
  width: 3.62rem;
  transform: rotate(-18deg);
}

.services-hero-panel__trace--four {
  bottom: 6.24rem;
  right: 6.7rem;
  width: 3.62rem;
  transform: rotate(18deg);
}

.services-hero-panel__core {
  position: absolute;
  top: 5.2rem;
  left: 50%;
  width: 8.45rem;
  height: 8.45rem;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.services-hero-panel__core-ring {
  position: absolute;
  inset: 0;
  border-radius: 999px;
}

.services-hero-panel__core-ring--outer {
  border: 1px solid rgba(103, 192, 255, 0.18);
  background: radial-gradient(circle at center, rgba(103, 192, 255, 0.08), transparent 68%);
}

.services-hero-panel__core-ring--inner {
  inset: 16%;
  border: 1px solid rgba(103, 192, 255, 0.28);
  background: radial-gradient(circle at center, rgba(103, 192, 255, 0.12), transparent 74%);
  animation: drift 7s ease-in-out infinite;
}

.services-hero-panel__core-copy {
  position: relative;
  display: grid;
  gap: 0.15rem;
  text-align: center;
}

.services-hero-panel__core-copy span {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.32;
  text-transform: uppercase;
}

.services-hero-panel__core-copy strong {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.18;
}

.services-hero-node {
  position: absolute;
  display: grid;
  place-items: center;
  gap: 0.34rem;
  min-height: 4.7rem;
  padding: 0.56rem 0.46rem 0.54rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.08rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(103, 192, 255, 0.08), transparent 56%),
    linear-gradient(180deg, rgba(4, 10, 24, 0.64), rgba(4, 10, 24, 0.9));
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.services-hero-node::before {
  display: none;
}

.services-hero-node__icon {
  position: relative;
  display: block;
  width: 1.96rem;
  height: 1.96rem;
  border: 1px solid rgba(103, 192, 255, 0.16);
  border-radius: 0.78rem;
  background: linear-gradient(180deg, rgba(103, 192, 255, 0.12), rgba(103, 192, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.services-hero-node__icon::before,
.services-hero-node__icon::after {
  content: "";
  position: absolute;
}

.services-hero-node__icon--satellite::before {
  inset: 0.42rem;
  border: 1.5px solid rgba(103, 192, 255, 0.76);
  border-radius: 999px;
}

.services-hero-node__icon--satellite::after {
  top: 50%;
  left: 50%;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 999px;
  background: var(--accent-bright);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0.18rem rgba(103, 192, 255, 0.14);
}

.services-hero-node__icon--network::before {
  top: 0.98rem;
  left: 0.46rem;
  right: 0.46rem;
  height: 1.5px;
  background: rgba(103, 192, 255, 0.66);
}

.services-hero-node__icon--network::after {
  top: 0.44rem;
  left: 50%;
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 999px;
  background: var(--accent-bright);
  transform: translateX(-50%);
  box-shadow:
    -0.46rem 0.62rem 0 rgba(103, 192, 255, 0.92),
    0.46rem 0.62rem 0 rgba(103, 192, 255, 0.92);
}

.services-hero-node__icon--systems::before {
  top: 0.5rem;
  left: 0.5rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 0.08rem;
  background: var(--accent-bright);
  box-shadow:
    0.56rem 0 0 rgba(103, 192, 255, 0.92),
    0 0.56rem 0 rgba(103, 192, 255, 0.92),
    0.56rem 0.56rem 0 rgba(103, 192, 255, 0.92);
}

.services-hero-node__icon--systems::after {
  inset: 0.38rem;
  border: 1px solid rgba(103, 192, 255, 0.22);
  border-radius: 0.46rem;
}

.services-hero-node__icon--power::before {
  top: 0.46rem;
  left: 0.58rem;
  width: 0.66rem;
  height: 0.92rem;
  border: 1.5px solid rgba(103, 192, 255, 0.78);
  border-radius: 0.16rem;
}

.services-hero-node__icon--power::after {
  top: 0.76rem;
  left: 1.34rem;
  width: 0.16rem;
  height: 0.32rem;
  border-radius: 0.06rem;
  background: rgba(103, 192, 255, 0.82);
  box-shadow: -0.42rem 0 0 rgba(103, 192, 255, 0.24);
}

.services-hero-node strong {
  color: rgba(217, 227, 251, 0.86);
  font-family: var(--font-brand);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.24;
  text-transform: uppercase;
}

.services-hero-node--satellite {
  top: 4.3rem;
  left: 1.08rem;
  width: 5.15rem;
}

.services-hero-node--network {
  top: 4.34rem;
  right: 1.08rem;
  width: 5.3rem;
}

.services-hero-node--software {
  bottom: 3.66rem;
  left: 1.18rem;
  width: 5.1rem;
}

.services-hero-node--solar {
  right: 1.08rem;
  bottom: 3.66rem;
  width: 5.25rem;
}

.services-hero-panel__workflow {
  position: absolute;
  left: 0.68rem;
  right: 0.68rem;
  bottom: 0.68rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.34rem;
}

.services-hero-panel__workflow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.58rem;
  padding: 0.2rem 0.34rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-page__nav {
  position: relative;
  top: auto;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  padding: 0.54rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  background: rgba(5, 10, 24, 0.72);
  backdrop-filter: blur(12px);
}

.services-page__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.services-page__nav a:hover,
.services-page__nav a:focus-visible {
  border-color: rgba(103, 192, 255, 0.28);
  background: rgba(103, 192, 255, 0.08);
  color: var(--text);
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.9rem 1.6rem;
  align-items: start;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.service-showcase--reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.service-showcase--reverse .service-showcase__content {
  order: 2;
}

.service-showcase--reverse .service-showcase__visual {
  order: 1;
}

.service-showcase:first-of-type {
  padding-top: 0.25rem;
  border-top: 0;
}

.service-showcase__content h2 {
  max-width: 12ch;
  font-size: clamp(1.42rem, 2.35vw, 1.92rem);
  line-height: 1.05;
}

.service-showcase__summary {
  margin: 0.68rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.service-showcase__detail-toggle {
  position: relative;
  display: none;
  align-items: center;
  margin-top: 0.78rem;
  padding: 0 1rem 0 0;
  border: 0;
  background: transparent;
  color: var(--accent-bright);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
}

.js .service-showcase__detail-toggle {
  display: inline-flex;
}

.service-showcase__detail-toggle::before,
.service-showcase__detail-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.56rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
  transition:
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.22s ease;
}

.service-showcase__detail-toggle::after {
  transform: translateY(-50%) rotate(90deg);
}

.js .service-showcase.is-open .service-showcase__detail-toggle::after {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0);
}

.js .service-showcase__details {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-0.18rem);
  pointer-events: none;
  transition:
    grid-template-rows 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.34s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-showcase__details-inner {
  display: grid;
  padding-top: 0.76rem;
}

.js .service-showcase__details-inner {
  min-height: 0;
  overflow: hidden;
}

.js .service-showcase.is-open .service-showcase__details {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-showcase__details .service-showcase__description {
  margin-top: 0;
}

.service-showcase__description {
  max-width: 32rem;
  margin: 0.62rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.58;
}

.service-showcase__deliverables {
  display: grid;
  gap: 0.38rem;
  padding: 0;
  margin: 0.86rem 0 0;
  list-style: none;
}

.service-showcase__deliverables li {
  position: relative;
  padding-left: 0.84rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.48;
}

.service-showcase__deliverables li::before {
  content: "";
  position: absolute;
  top: 0.56rem;
  left: 0;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--accent-bright);
}

.service-showcase__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem 0.6rem;
  margin-top: 0.84rem;
}

.service-showcase__signals span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(217, 227, 251, 0.76);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-showcase__signals span:not(:last-child)::after {
  content: "";
  display: block;
  width: 0.22rem;
  height: 0.22rem;
  margin-left: 0.6rem;
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.42);
}

.service-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem 0.92rem;
  align-items: center;
  margin-top: 0.92rem;
}

.service-showcase__visual {
  display: grid;
}

.service-visual-satellite,
.service-visual-network,
.service-visual-development,
.service-visual-solar {
  position: relative;
  overflow: hidden;
  min-height: 23.6rem;
  padding: 0.82rem;
  border: 1px solid var(--line);
  border-radius: 1.28rem;
  background:
    radial-gradient(circle at 20% 18%, rgba(103, 192, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(7, 17, 34, 0.98), rgba(3, 9, 21, 0.96));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.service-media-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.96rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
}

.service-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media-card--lead {
  position: absolute;
  inset: 1rem 10rem 7rem 1rem;
}

.service-media-card--dashboard {
  position: absolute;
  right: 1rem;
  bottom: 4.4rem;
  width: 13.5rem;
  height: 10rem;
}

.service-satellite-strip,
.service-network-strip {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.service-satellite-strip span,
.service-network-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 1.86rem;
  padding: 0.3rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(4, 10, 24, 0.76);
  backdrop-filter: blur(10px);
  color: var(--text-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-visual-network::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    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: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.86), transparent 90%);
}

.service-media-card--network-lead {
  position: absolute;
  inset: 1rem 3.4rem 5.8rem 1rem;
  padding: 0.74rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    linear-gradient(180deg, rgba(8, 16, 31, 0.96), rgba(3, 7, 17, 0.98));
}

.service-media-card--network-lead::before {
  content: "";
  position: absolute;
  inset: 0.74rem;
  border-radius: 0.86rem;
  background:
    radial-gradient(circle at 50% 48%, rgba(103, 192, 255, 0.1), transparent 44%),
    linear-gradient(180deg, rgba(244, 247, 252, 0.98), rgba(232, 236, 244, 0.98));
}

.service-media-card--network-lead img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center 62%;
  transform: scale(1.08);
  filter: contrast(1.05) saturate(0.92);
}

.service-media-card--network-detail {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 4.2rem;
  width: 13rem;
  height: 8.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent),
    rgba(4, 10, 24, 0.92);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.34);
}

.service-media-card--network-detail::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 12, 28, 0) 42%, rgba(6, 12, 28, 0.26) 100%);
}

.service-media-card--network-detail img {
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(0.84) brightness(0.94);
}

.service-dev-browser {
  margin-right: 5rem;
  min-height: 18.8rem;
  padding: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.02rem;
  background:
    linear-gradient(180deg, rgba(12, 23, 44, 0.96), rgba(5, 11, 24, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.service-dev-browser__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.12rem 0.16rem 0.42rem;
}

.service-dev-browser__eyebrow span,
.service-dev-phone__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.5rem;
  padding: 0.22rem 0.46rem;
  border: 1px solid rgba(103, 192, 255, 0.14);
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.08);
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-dev-browser__eyebrow strong {
  color: rgba(233, 239, 251, 0.94);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-dev-browser__bar {
  display: flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.38rem 0.54rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.82rem;
  background: rgba(255, 255, 255, 0.03);
}

.service-dev-browser__bar i {
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.62);
}

.service-dev-browser__bar i + i {
  margin-left: 0.26rem;
}

.service-dev-browser__bar strong {
  margin-left: 0.28rem;
  color: rgba(216, 226, 246, 0.84);
  font-family: var(--font-brand);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.service-dev-browser__canvas {
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 0.7rem;
  margin-top: 0.48rem;
  padding: 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.98rem;
  background: linear-gradient(180deg, rgba(12, 22, 41, 0.92), rgba(6, 12, 25, 0.98));
}

.service-dev-browser__sidebar {
  display: grid;
  gap: 0.5rem;
  padding: 0.6rem 0.45rem;
  border-radius: 0.92rem;
  background: rgba(255, 255, 255, 0.03);
}

.service-dev-browser__sidebar span {
  height: 0.52rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(103, 192, 255, 0.12) 0%, rgba(168, 219, 255, 0.28) 48%, rgba(103, 192, 255, 0.12) 100%);
  background-size: 220% 100%;
  animation: skeletonSweep 1.55s linear infinite;
}

.service-dev-browser__content {
  display: grid;
  gap: 0.6rem;
}

.service-dev-browser__metric-row,
.service-dev-browser__panel-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.service-dev-browser__panel-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-dev-browser__metric-row span,
.service-dev-browser__panel-row span {
  min-height: 2.05rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.68rem;
  background:
    linear-gradient(90deg, rgba(103, 192, 255, 0.08) 0%, rgba(184, 226, 255, 0.24) 50%, rgba(103, 192, 255, 0.08) 100%),
    rgba(255, 255, 255, 0.03);
  background-size: 220% 100%;
  animation: skeletonSweep 1.7s linear infinite;
}

.service-dev-browser__chart {
  position: relative;
  overflow: hidden;
  min-height: 7.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 20% 25%, rgba(103, 192, 255, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.03);
  background-size: 20px 20px, 20px 20px, 220% 220%, auto;
  animation: skeletonSweep 2.4s linear infinite, skeletonPanelPulse 2.2s ease-in-out infinite;
}

.service-dev-browser__chart::before,
.service-dev-browser__chart::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  height: 2px;
  border-radius: 999px;
}

.service-dev-browser__chart::before {
  bottom: 1.25rem;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.2), rgba(103, 192, 255, 0.95));
  clip-path: polygon(0 90%, 14% 74%, 28% 78%, 43% 50%, 60% 55%, 76% 32%, 100% 0, 100% 100%, 0 100%);
  animation: skeletonTracePulse 2.1s ease-in-out infinite;
}

.service-dev-browser__chart::after {
  bottom: 2.4rem;
  opacity: 0.5;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.08), rgba(103, 192, 255, 0.58));
  clip-path: polygon(0 92%, 18% 80%, 36% 64%, 53% 68%, 71% 48%, 100% 30%, 100% 100%, 0 100%);
  animation: skeletonTracePulse 2.1s ease-in-out infinite 0.3s;
}

.service-dev-phone {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 7.1rem;
  height: 13.2rem;
  padding: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.7rem;
  background: rgba(4, 10, 24, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.service-dev-phone__notch {
  width: 2.3rem;
  height: 0.34rem;
  margin: 0 auto 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.service-dev-phone__label {
  margin-bottom: 0.42rem;
}

.service-dev-phone__screen {
  display: grid;
  gap: 0.5rem;
  padding: 0.6rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at top, rgba(103, 192, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.service-dev-phone__hero {
  min-height: 2rem;
  border-radius: 0.72rem;
  background:
    linear-gradient(90deg, rgba(103, 192, 255, 0.1) 0%, rgba(183, 226, 255, 0.26) 50%, rgba(103, 192, 255, 0.1) 100%),
    rgba(255, 255, 255, 0.04);
  background-size: 220% 100%;
  animation: skeletonSweep 1.7s linear infinite;
}

.service-dev-phone__item {
  min-height: 1.08rem;
  border-radius: 0.5rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, rgba(184, 226, 255, 0.22) 50%, rgba(255, 255, 255, 0.05) 100%);
  background-size: 220% 100%;
  animation: skeletonSweep 1.65s linear infinite;
}

.service-dev-phone__cta {
  min-height: 1.22rem;
  margin-top: 0.14rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 144, 234, 0.9), rgba(103, 192, 255, 0.9));
  background-size: 220% 100%;
  animation: skeletonSweep 1.9s linear infinite;
}

.service-dev-stack {
  position: absolute;
  left: 1rem;
  right: 9rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.service-dev-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(4, 10, 24, 0.82);
}

.service-dev-stack img {
  width: auto;
  height: 0.92rem;
  object-fit: contain;
}

.service-solar-board {
  position: relative;
  overflow: hidden;
  min-height: 24rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.18rem;
  background:
    radial-gradient(circle at top, rgba(103, 192, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 17, 34, 0.94), rgba(3, 9, 21, 0.98));
}

.service-solar-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 95%);
}

.service-solar-board__sun {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(103, 192, 255, 0.8), rgba(103, 192, 255, 0.08) 68%, transparent 72%);
}

.service-solar-board__coming {
  position: absolute;
  inset: 4.7rem 4.9rem 6rem 1.5rem;
  display: grid;
  align-content: center;
  gap: 0.9rem;
  border-radius: 1rem;
  overflow: hidden;
  pointer-events: none;
}

.service-solar-board__coming::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(103, 192, 255, 0.12) 48%, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  opacity: 0.5;
  animation: solarComingSweep 6s linear infinite;
}

.service-solar-board__coming-row {
  display: flex;
  gap: 1rem;
  width: max-content;
  min-width: max-content;
  animation: solarComingMarquee 11s linear infinite;
}

.service-solar-board__coming-row--secondary {
  margin-left: -2.4rem;
  animation-duration: 13s;
  animation-direction: reverse;
}

.service-solar-board__coming span {
  flex: none;
  color: rgba(211, 224, 248, 0.16);
  font-family: var(--font-brand);
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-solar-board__grid {
  position: absolute;
  left: 1rem;
  right: 8rem;
  bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.34rem;
  padding: 0.5rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  border-radius: 0.95rem;
  background: rgba(7, 17, 34, 0.52);
}

.service-solar-board__grid span {
  min-height: 2.2rem;
  border-radius: 0.4rem;
  background:
    linear-gradient(180deg, rgba(103, 192, 255, 0.1), transparent),
    rgba(255, 255, 255, 0.035);
}

.service-solar-board__battery {
  position: absolute;
  right: 1rem;
  bottom: 1.8rem;
  width: 4rem;
  height: 6.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.96rem;
  background:
    linear-gradient(180deg, rgba(103, 192, 255, 0.08), transparent),
    rgba(255, 255, 255, 0.03);
}

.service-solar-board__battery::before {
  content: "";
  position: absolute;
  top: 0.64rem;
  left: 0.68rem;
  right: 0.68rem;
  bottom: 0.82rem;
  border-radius: 0.7rem;
  background:
    linear-gradient(180deg, rgba(103, 192, 255, 0.14), transparent 26%),
    linear-gradient(0deg, rgba(103, 192, 255, 0.18), rgba(103, 192, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
}

.service-solar-board__router {
  position: absolute;
  right: 5.2rem;
  top: 2.1rem;
  width: 4.2rem;
  height: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.74rem;
  background: rgba(4, 10, 24, 0.88);
}

.service-solar-board__router::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 0.6rem;
  width: 2rem;
  height: 0.16rem;
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.65);
  box-shadow: 0 0.44rem 0 rgba(103, 192, 255, 0.42);
}

.service-solar-board__line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.16), rgba(103, 192, 255, 0.72));
  transform-origin: left center;
}

.service-solar-board__line--one {
  top: 8rem;
  left: 7.8rem;
  width: 4.7rem;
  transform: rotate(-18deg);
}

.service-solar-board__line--two {
  top: 11.7rem;
  left: 11.4rem;
  width: 5.2rem;
  transform: rotate(14deg);
}

.service-solar-board__line--three {
  top: 5.2rem;
  right: 5.3rem;
  width: 3.8rem;
  transform: rotate(8deg);
}

.service-solar-board__tag {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(103, 192, 255, 0.16);
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.08);
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-solar-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
  margin-top: 0.82rem;
}

.service-solar-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 1.88rem;
  padding: 0.32rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.services-page__workflow {
  display: grid;
  gap: 0.95rem;
  padding-top: 0.35rem;
}

.services-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem 1rem;
}

.services-workflow__head,
.services-workflow__title {
  display: grid;
}

.services-workflow__head {
  gap: 0.36rem;
}

.services-workflow__title {
  gap: 0.22rem;
}

.services-workflow__step {
  display: grid;
  gap: 0.36rem;
  padding: 0.8rem 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.services-workflow__index {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.services-workflow__step h3 {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.22;
}

.services-workflow__step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.services-page__signals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  padding-top: 0.25rem;
}

.services-signal {
  display: grid;
  gap: 0.22rem;
  padding: 0.7rem 0 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
}

.services-signal strong {
  color: var(--text);
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.services-signal p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.44;
}

.services-page__cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem 1.6rem;
  align-items: center;
  padding: 0.95rem 0 0;
  border-top: 1px solid var(--line-soft);
}

.services-page__cta h2 {
  max-width: 12ch;
  font-size: clamp(1.42rem, 2.5vw, 1.92rem);
  line-height: 1.05;
}

.services-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

@media (max-width: 1080px) {
  .service-entry {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

@media (max-width: 980px) {
  .hero__inner,
  .section-heading,
  .why-grid,
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .tech-lines-hero,
  .tech-line__heading,
  .tech-line-card__shell {
    grid-template-columns: 1fr;
  }

  .tech-lines-hero {
    grid-template-areas:
      "content"
      "visual"
      "actions";
  }

  .tech-line__grid {
    grid-template-columns: 1fr;
  }

  .portal-dialog__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .portal-access {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  .tech-lines-hero__actions {
    justify-content: flex-start;
  }

  .tech-lines-hero__visual {
    justify-items: start;
    max-width: min(100%, 26.5rem);
  }

  .tech-lines-hero__device {
    width: min(100%, 26.5rem);
    border-radius: 1.6rem;
  }

  .tech-lines-hero__device-shell {
    min-height: 18.4rem;
    padding: 0.62rem;
    border-radius: 1.22rem;
  }

  .tech-lines-hero__device-camera {
    top: 0.42rem;
    width: 3.7rem;
  }

  .tech-hero-art {
    min-height: 16.9rem;
  }

  .tech-hero-art__head {
    inset: 1rem 1.05rem 3.2rem 0.82rem;
  }

  .tech-hero-art__codewall {
    inset: 1.05rem 0.86rem 3.8rem 0.82rem;
    font-size: 0.5rem;
  }

  .tech-hero-art__console {
    width: min(44%, 170px);
  }

  .tech-page__hero,
  .tech-gallery__grid {
    grid-template-columns: 1fr;
  }

  .tech-page__mosaic {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding-bottom: 3rem;
  }

  .hero__mark {
    justify-items: start;
  }

  .hero__tablet {
    width: min(100%, 26.5rem);
  }

  .hero__tablet-shell {
    border-radius: 1.6rem;
  }

  .hero__tablet-screen {
    min-height: 18.4rem;
    padding: 0.62rem;
    border-radius: 1.22rem;
  }

  .hero__tablet-camera {
    top: 0.42rem;
    width: 3.7rem;
  }

  .hero__caption {
    justify-self: start;
  }

  .why-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.05rem;
  }

  .site-footer__links {
    justify-self: start;
    width: min(100%, 31rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem 0.9rem;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    margin-top: 0.1rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line-soft);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-header__cta {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .site-nav.is-open + .site-header__cta {
    display: flex;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: auto;
    padding-inline: 0;
  }

  .hero,
  .section {
    padding-inline: 1rem;
  }

  .site-footer {
    padding-bottom: 1.2rem;
  }

  .site-footer__inner {
    gap: 0.72rem;
    padding: 0.9rem 1rem 0;
  }

  .site-footer__top {
    gap: 0.5rem;
  }

  .site-footer__brand {
    gap: 0.62rem;
  }

  .site-footer__brand img {
    width: min(64vw, 252px);
    height: auto;
  }

  .site-footer__summary {
    max-width: 14.5rem;
    font-size: 0.69rem;
    line-height: 1.42;
  }

  .site-footer__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.64rem 0.95rem;
  }

  .footer-link-group {
    gap: 0.14rem;
    padding-top: 0;
    border-top: 0;
  }

  .footer-link-group h2 {
    margin-bottom: 0.06rem;
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .footer-link-group a {
    font-size: 0.69rem;
    line-height: 1.32;
  }

  .footer-link-group__meta {
    font-size: 0.69rem;
    line-height: 1.32;
  }

  .footer-link-group__meta--address {
    max-width: 9rem;
  }

  .site-footer__bottom {
    display: grid;
    gap: 0.18rem;
    padding-top: 0.54rem;
    font-size: 0.64rem;
  }

  .hero,
  .section {
    scroll-margin-top: 6.5rem;
  }

  .site-header__inner {
    padding: 0.62rem 1rem;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .brand {
    max-width: min(62vw, 250px);
  }

  .brand__logo {
    width: 100%;
    height: auto;
    max-height: 46px;
  }

  .menu-toggle {
    min-height: 2.16rem;
    min-width: 2.16rem;
    padding: 0.42rem;
    border-radius: 0.74rem;
  }

  .menu-toggle__icon {
    width: 0.92rem;
    gap: 0.2rem;
  }

  .menu-toggle__line--two {
    width: 0.68rem;
  }

  .site-nav {
    gap: 0.8rem;
    padding-top: 0.72rem;
  }

  .site-nav a {
    font-size: 0.72rem;
  }

  .site-header__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--line-soft);
  }

  .site-header__cta .button,
  .site-header__cta .header-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-header__cta .header-link {
    padding: 0.82rem 1rem;
    border: 1px solid var(--line-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
  }

  .hero {
    overflow: hidden;
  }

  .hero__inner {
    position: relative;
    min-height: auto;
    align-items: flex-start;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(7.1rem, 31vw, 8.8rem);
    gap: 0.5rem 0.68rem;
    padding-top: 0.68rem;
    padding-bottom: 1.08rem;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    grid-column: 1;
    grid-row: 1;
    max-width: none;
    padding-right: 0;
  }

  .hero__content::before {
    display: none;
  }

  .hero__content > * {
    position: relative;
    z-index: 1;
  }

  .hero__mark {
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
    justify-items: center;
    align-self: start;
    justify-self: end;
    width: 100%;
    margin: -0.24rem 0 0;
    opacity: 1;
    filter: none;
    pointer-events: auto;
  }

  .hero__tablet {
    width: 100%;
  }

  .hero__tablet-shell {
    padding: 0.42rem 0.44rem 0.52rem;
    border-radius: 1.12rem;
  }

  .hero__tablet-screen {
    min-height: 14.5rem;
    padding: 0.48rem;
    border-radius: 0.9rem;
  }

  .hero__tablet-camera {
    top: 0.32rem;
    width: 2.6rem;
    height: 0.26rem;
  }

  .hero__caption {
    display: none;
  }

  .hero h1 {
    max-width: 10.2ch;
    font-size: clamp(1.14rem, 4.7vw, 1.42rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .hero__lede {
    max-width: 14.6rem;
    margin-top: 0.5rem;
    font-size: 0.74rem;
    line-height: 1.48;
  }

  .hero__actions,
  .enquiry-form__footer {
    width: 100%;
  }

  .hero__actions {
    max-width: none;
    align-items: center;
    gap: 0.56rem;
    margin-top: 0.64rem;
  }

  .tablet-dashboard {
    gap: 0.28rem;
    padding: 0;
  }

  .tablet-dashboard__bar {
    padding-bottom: 0.28rem;
  }

  .tablet-dashboard__metrics {
    grid-template-columns: 1fr;
    gap: 0.26rem;
  }

  .tablet-dashboard__visuals {
    grid-template-columns: 1fr;
    gap: 0.26rem;
  }

  .tablet-metric,
  .tablet-chart,
  .tablet-network {
    padding: 0.28rem;
    border-radius: 9px;
  }

  .tablet-metric:nth-child(3),
  .tablet-network,
  .tablet-dashboard__feeds {
    display: none;
  }

  .tablet-network__map {
    min-height: 2.9rem;
    margin-top: 0.18rem;
  }

  .enquiry-form__footer .button {
    width: 100%;
  }

  .hero__actions .button {
    width: auto;
  }

  .hero__actions .button--primary {
    min-height: 2.08rem;
    padding: 0.48rem 0.72rem;
    border-radius: 12px;
    font-size: 0.66rem;
    letter-spacing: -0.02em;
    box-shadow: 0 8px 16px rgba(36, 144, 234, 0.2);
  }

  .hero__actions .button--ghost {
    width: auto;
    min-height: auto;
    gap: 0.32rem;
    padding: 0.12rem 0;
    border: 0;
    background: transparent;
    justify-content: flex-start;
    align-self: flex-start;
    color: var(--text-soft);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: none;
  }

  .hero__actions .button--ghost::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(-45deg);
    opacity: 0.8;
  }

  .service-entry__head {
    grid-template-columns: 1.8rem minmax(0, 1fr) 1.9rem;
    gap: 0.58rem;
    align-items: center;
  }

  .service-entry__body {
    display: grid;
    gap: 0.48rem;
    padding-left: 2.38rem;
  }

  .section--services {
    padding-top: 1.75rem;
    padding-bottom: 1.95rem;
  }

  .section--services .section-heading {
    gap: 0.48rem;
    margin-bottom: 0.95rem;
  }

  .section--services .eyebrow {
    margin-bottom: 0.42rem;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .section--services .section-heading h2 {
    max-width: none;
    font-size: clamp(1.06rem, 4.8vw, 1.34rem);
    line-height: 1.1;
  }

  .section--services .section-copy {
    max-width: 20rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .section-heading--workflow {
    gap: 0.42rem;
    margin-bottom: 0.82rem;
  }

  .section-heading--workflow > div {
    gap: 0.42rem;
    max-width: 17rem;
  }

  .section-heading--workflow h2 {
    max-width: 13.2ch;
    font-size: clamp(0.98rem, 4.4vw, 1.18rem);
    line-height: 1.08;
  }

  .section-heading--workflow .section-copy {
    max-width: 17rem;
    font-size: 0.72rem;
    line-height: 1.44;
  }

  .section--technologies {
    padding-top: 1.65rem;
    padding-bottom: 1.9rem;
  }

  .section--technologies .section-heading {
    gap: 0.48rem;
    margin-bottom: 0.9rem;
  }

  .tech-lines-page {
    gap: 1.6rem;
  }

  .tech-lines-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(7.1rem, 31vw, 8.8rem);
    grid-template-areas:
      "content visual"
      "actions visual";
    gap: 0.5rem 0.68rem;
    align-items: start;
    padding-bottom: 0.95rem;
  }

  .tech-lines-hero__content h1 {
    max-width: 10.3ch;
    font-size: clamp(1.06rem, 5.2vw, 1.28rem);
    line-height: 1.1;
  }

  .tech-lines-hero__copy {
    max-width: 12.8rem;
    margin-top: 0.48rem;
    font-size: 0.72rem;
    line-height: 1.46;
  }

  .tech-lines-hero__actions {
    grid-area: actions;
    align-self: start;
    max-width: 12.8rem;
    gap: 0.42rem;
    margin-top: 0.1rem;
  }

  .tech-lines-hero__actions .button {
    min-height: 1.96rem;
    padding-inline: 0.68rem;
    font-size: 0.62rem;
  }

  .tech-hero-art {
    padding: 0.42rem;
    border-radius: 0.78rem;
    min-height: 12.8rem;
  }

  .tech-lines-hero__visual {
    grid-area: visual;
    justify-items: start;
    align-self: start;
    width: 100%;
    max-width: none;
  }

  .tech-lines-hero__device {
    width: 100%;
    padding: 0.34rem 0.36rem 0.42rem;
    border-radius: 1rem;
  }

  .tech-lines-hero__device-shell {
    min-height: 13.8rem;
    padding: 0.42rem;
    border-radius: 0.82rem;
  }

  .tech-lines-hero__device-camera {
    top: 0.28rem;
    width: 2.2rem;
    height: 0.22rem;
  }

  .tech-hero-art__head {
    inset: 0.64rem 0.66rem 2.08rem 0.46rem;
  }

  .tech-hero-art__gear--one {
    width: 2.9rem;
    height: 2.9rem;
  }

  .tech-hero-art__gear--two {
    width: 2rem;
    height: 2rem;
  }

  .tech-hero-art__chip {
    display: none;
  }

  .tech-hero-art__codewall {
    inset: 0.62rem 0.46rem 2.46rem 0.42rem;
    gap: 0.14rem;
    opacity: 0.3;
    font-size: 0.28rem;
  }

  .tech-hero-art__console {
    right: 0.34rem;
    bottom: 0.34rem;
    width: min(56%, 92px);
    padding: 0.32rem;
    border-radius: 0.48rem;
  }

  .tech-hero-art__console .tech-code-line {
    font-size: 0.26rem;
    line-height: 1.34;
  }

  .tech-hero-art__console-bar {
    gap: 0.18rem;
  }

  .tech-hero-art__console-bar i {
    width: 0.24rem;
    height: 0.24rem;
  }

  .tech-hero-art__status {
    display: none;
  }

  .tech-hero-art__console .tech-code-line {
    font-size: 0.34rem;
  }

  .tech-hero-art__status {
    left: 0.48rem;
    bottom: 0.52rem;
    gap: 0.26rem;
  }

  .tech-hero-art__status-dot {
    width: 0.34rem;
    height: 0.34rem;
  }

  .tech-hero-art__status-copy {
    font-size: 0.34rem;
    letter-spacing: 0.1em;
  }

  .tech-lines {
    gap: 1.3rem;
  }

  .tech-line {
    gap: 0.8rem;
  }

  .tech-line__heading {
    gap: 0.5rem;
  }

  .tech-line__heading h2 {
    max-width: 12rem;
    font-size: 0.98rem;
    line-height: 1.14;
  }

  .tech-line__grid {
    gap: 0.75rem;
  }

  .tech-line-card {
    border-radius: 1.05rem;
  }

  .tech-line-card__shell {
    gap: 0;
  }

  .tech-line-card__media {
    min-height: 10.5rem;
    padding: 0.78rem;
  }

  .tech-line-card__media img {
    max-height: 9rem;
  }

  .tech-line-card__media--logo img {
    max-width: 9rem;
    max-height: 2rem;
  }

  .tech-line-card__media--placeholder span {
    font-size: 0.88rem;
  }

  .tech-line-card__body {
    gap: 0.72rem;
    padding: 0.82rem;
  }

  .tech-line-card__label {
    font-size: 0.54rem;
  }

  .tech-line-card__header h3 {
    max-width: 13rem;
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .tech-line-card__trigger {
    margin: 0 0.82rem 0.82rem;
    padding: 0.42rem 0.72rem;
  }

  .tech-line-card__trigger-text {
    font-size: 0.64rem;
  }

  .tech-dialog {
    width: min(100% - 1rem, 680px);
  }

  .tech-dialog__close {
    top: 0.8rem;
    right: 0.8rem;
    min-height: 1.9rem;
    padding: 0.38rem 0.68rem;
    font-size: 0.72rem;
  }

  .tech-dialog__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .tech-dialog__media {
    min-height: 12rem;
    padding: 1rem;
  }

  .tech-dialog__media img {
    max-height: 10.5rem;
  }

  .tech-dialog__media--logo img {
    max-width: 10rem;
    max-height: 2.5rem;
  }

  .tech-dialog__media--placeholder span {
    font-size: 0.9rem;
  }

  .tech-dialog__content {
    gap: 0.55rem;
    padding: 1rem 0.9rem 1rem;
  }

  .tech-dialog__eyebrow {
    font-size: 0.52rem;
  }

  .tech-dialog__label {
    font-size: 0.7rem;
  }

  .tech-dialog__content h3 {
    max-width: 12rem;
    font-size: 0.96rem;
    line-height: 1.12;
  }

  .tech-dialog__details li {
    font-size: 0.76rem;
    line-height: 1.48;
  }

  .tech-dialog__details li::before {
    top: 0.52rem;
    width: 0.28rem;
    height: 0.28rem;
  }

  .tech-page__hero {
    gap: 0.95rem;
  }

  .tech-page__intro h1,
  .tech-gallery__heading h2,
  .tech-stack__heading h2 {
    max-width: 12rem;
    font-size: clamp(1.04rem, 4.8vw, 1.34rem);
    line-height: 1.1;
  }

  .tech-page__lede {
    max-width: 20rem;
    margin-top: 0.52rem;
    font-size: 0.78rem;
    line-height: 1.52;
  }

  .tech-page__actions {
    gap: 0.58rem;
    margin-top: 0.78rem;
  }

  .tech-page__actions .button {
    min-height: 2.12rem;
    padding-inline: 0.82rem;
    font-size: 0.68rem;
  }

  .tech-page__mosaic {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .tech-mosaic__feature,
  .tech-mosaic__tile {
    padding: 0.82rem;
    border-radius: 1.15rem;
  }

  .tech-mosaic__feature--network {
    grid-row: auto;
  }

  .tech-mosaic__copy span {
    font-size: 0.54rem;
  }

  .tech-mosaic__copy strong {
    max-width: 14rem;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .tech-mosaic__feature img {
    min-height: 11rem;
    border-radius: 0.9rem;
  }

  .tech-mosaic__logo {
    max-width: 8.5rem;
  }

  .tech-mosaic__software {
    gap: 0.52rem;
  }

  .tech-mosaic__software img {
    height: 1.18rem;
  }

  .tech-gallery {
    gap: 0.9rem;
  }

  .tech-gallery__grid {
    gap: 0.75rem;
  }

  .tech-tile {
    gap: 0.7rem;
    padding: 0.78rem;
    border-radius: 1.1rem;
  }

  .tech-tile--wide {
    grid-row: auto;
  }

  .tech-tile__media {
    min-height: 11rem;
    border-radius: 0.92rem;
  }

  .tech-tile__meta {
    gap: 0.34rem;
  }

  .tech-tile__eyebrow {
    font-size: 0.54rem;
  }

  .tech-tile__meta h3 {
    max-width: 15rem;
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .tech-tile__visual {
    min-height: 11rem;
    border-radius: 0.92rem;
  }

  .tech-tile__visual--logo img {
    height: 1.5rem;
  }

  .tech-tile__signal-shell {
    width: 100%;
    min-height: 11rem;
  }

  .tech-tile__signal-rings {
    width: 4.5rem;
    height: 4.5rem;
  }

  .tech-tile__signal-rings::before {
    width: 8rem;
    height: 8rem;
  }

  .tech-tile__signal-rings::after {
    width: 11rem;
    height: 11rem;
  }

  .tech-tile__signal-shell img {
    width: min(60%, 8.8rem);
  }

  .tech-tile__chips span,
  .tech-stack__chips span {
    min-height: 1.8rem;
    padding: 0.36rem 0.6rem;
    font-size: 0.66rem;
  }

  .tech-stack {
    gap: 0.9rem;
    padding-top: 0.85rem;
  }

  .technology-cta {
    display: grid;
    gap: 0.8rem;
    padding-top: 0.9rem;
  }

  .technology-cta p {
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .service-rail {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .service-entry {
    gap: 0;
    padding: 0.88rem 0;
  }

  .service-entry.is-open {
    gap: 0.42rem;
  }

  .service-entry__index {
    padding-top: 0.15rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .service-entry__title-block {
    gap: 0.22rem;
  }

  .service-entry__title-block h3 {
    max-width: 18rem;
    font-size: 0.82rem;
    line-height: 1.22;
    letter-spacing: -0.035em;
  }

  .service-entry__signals {
    max-width: 18rem;
    color: rgba(217, 227, 251, 0.72);
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    line-height: 1.48;
  }

  .service-entry__signals--desktop {
    display: none;
  }

  .service-entry__signals--mobile {
    display: block;
  }

  .service-entry__body p {
    max-width: 20rem;
    color: rgba(167, 179, 208, 0.86);
    font-size: 0.74rem;
    line-height: 1.48;
  }

  .service-entry__body .text-link {
    justify-self: start;
    margin-left: 0;
    padding: 0.34rem 0.56rem;
    border: 1px solid rgba(103, 192, 255, 0.2);
    border-radius: 999px;
    background: rgba(103, 192, 255, 0.055);
    color: var(--accent-bright);
    font-size: 0.58rem;
    line-height: 1.2;
    text-align: left;
  }

  .service-entry__body .text-link::after {
    width: 0.42rem;
    height: 0.42rem;
    border-width: 1.5px;
  }

  .section--proof {
    padding-top: 1.85rem;
    padding-bottom: 2rem;
  }

  .section--proof .section-heading {
    gap: 0.52rem;
    margin-bottom: 0.9rem;
  }

  .section--proof .eyebrow {
    margin-bottom: 0.42rem;
    font-size: 0.58rem;
    letter-spacing: 0.18em;
  }

  .section--proof .section-heading h2 {
    max-width: 12.5rem;
    font-size: clamp(1.04rem, 4.8vw, 1.32rem);
    line-height: 1.1;
  }

  .section--proof .section-copy {
    max-width: 20rem;
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .why-shell {
    gap: 0.72rem;
  }

  .why-proofline {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.42rem;
    align-items: center;
    padding: 0.58rem 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .why-proofline__value {
    font-size: 1.34rem;
  }

  .why-proofline__label {
    max-width: 15rem;
    font-size: 0.74rem;
    line-height: 1.36;
  }

  .why-grid {
    gap: 0;
    border-top: 0;
  }

  .mobile-disclosure__toggle {
    position: relative;
    display: inline-grid;
    width: 1.78rem;
    height: 1.78rem;
    place-items: center;
    justify-self: end;
    border: 1px solid rgba(103, 192, 255, 0.2);
    border-radius: 999px;
    background: rgba(103, 192, 255, 0.045);
    color: var(--accent-bright);
    cursor: pointer;
  }

  .service-entry__head,
  .why-pillar__head {
    cursor: pointer;
  }

  .mobile-disclosure__toggle::before,
  .mobile-disclosure__toggle::after {
    content: "";
    position: absolute;
    width: 0.62rem;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition:
      transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.22s ease;
  }

  .mobile-disclosure__toggle::after {
    transform: rotate(90deg);
  }

  .mobile-disclosure.is-open .mobile-disclosure__toggle::after {
    opacity: 0;
    transform: rotate(90deg) scaleX(0);
  }

  .mobile-disclosure > .mobile-disclosure__panel {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transform: translateY(-0.18rem);
    transition:
      grid-template-rows 0.52s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.34s ease,
      transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }

  .mobile-disclosure > .mobile-disclosure__panel > .mobile-disclosure__content {
    display: grid;
    gap: 0.48rem;
    min-height: 0;
    overflow: hidden;
  }

  .service-entry.mobile-disclosure.is-open > .mobile-disclosure__panel {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .services-workflow__head {
    grid-template-columns: minmax(0, 1fr) 1.9rem;
    gap: 0.7rem;
    align-items: center;
  }

  .services-workflow__step.mobile-disclosure.is-open > .mobile-disclosure__panel {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .why-pillar__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.9rem;
    gap: 0.7rem;
    align-items: center;
  }

  .why-pillar.mobile-disclosure.is-open > .mobile-disclosure__panel {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .why-pillar {
    padding: 0.68rem 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .why-pillar h3 {
    font-size: 0.76rem;
    line-height: 1.24;
  }

  .why-pillar p {
    max-width: 21rem;
    margin-top: 0.34rem;
    color: rgba(167, 179, 208, 0.82);
    font-size: 0.78rem;
    line-height: 1.46;
  }

  .why-footer {
    gap: 0.5rem;
    padding-top: 0.68rem;
    border-top: 0;
  }

  .why-footer p {
    max-width: 20rem;
    font-size: 0.78rem;
    line-height: 1.48;
  }

  .why-footer .text-link {
    font-size: 0.7rem;
  }

  .enquiry-copy h2 {
    font-size: clamp(1.16rem, 5.2vw, 1.48rem);
    line-height: 1.08;
  }

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

@media (max-width: 440px) {
  .brand__logo {
    max-height: 38px;
  }

  .tech-lines-hero {
    grid-template-columns: minmax(0, 1fr) clamp(6.1rem, 30vw, 7.4rem);
    gap: 0.42rem 0.56rem;
  }

  .tech-lines-hero__copy {
    max-width: 12rem;
    font-size: 0.68rem;
  }

  .tech-lines-hero__actions {
    max-width: 12rem;
  }

  .tech-lines-hero__device-shell {
    min-height: 12.9rem;
  }

  .hero__content {
    max-width: none;
    padding-right: 0;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) clamp(6.1rem, 30vw, 7.4rem);
    gap: 0.42rem 0.56rem;
  }

  .hero__content::before {
    inset: -0.52rem 0.62rem -0.5rem -0.52rem;
  }

  .hero__mark {
    width: 100%;
    margin-top: -0.18rem;
    margin-left: 0;
  }

  .hero__tablet {
    width: 100%;
  }

  .hero__tablet-screen {
    min-height: 12.9rem;
  }

  .hero h1 {
    max-width: 10.2ch;
    font-size: clamp(1.06rem, 5.4vw, 1.28rem);
    line-height: 1.1;
  }

  .hero__lede {
    max-width: 12.8rem;
    font-size: 0.7rem;
  }

  .hero__actions {
    max-width: none;
  }

  .services-page__hero {
    grid-template-columns: minmax(0, 1fr) clamp(6.1rem, 30vw, 7.4rem);
    gap: 0.42rem 0.56rem;
  }

  .services-page__hero-text {
    max-width: 12rem;
    font-size: 0.68rem;
  }

  .services-hero-device__shell {
    min-height: 12.9rem;
  }

  .services-hero-panel {
    min-height: 12rem;
    padding: 0.36rem;
    gap: 0.22rem;
  }

  .services-hero-panel__badge {
    min-height: 0.98rem;
    padding: 0.1rem 0.22rem;
    font-size: 0.28rem;
  }

  .services-hero-panel__core {
    width: 3.18rem;
    height: 3.18rem;
  }

  .services-hero-panel__core-copy strong {
    font-size: 0.42rem;
  }

  .services-hero-node {
    min-height: 1.74rem;
    padding: 0.18rem 0.14rem 0.18rem;
  }

  .services-hero-node__icon {
    width: 1.34rem;
    height: 1.34rem;
    border-radius: 0.54rem;
  }

  .services-hero-node strong {
    font-size: 0.28rem;
  }

  .services-hero-panel__workflow span {
    min-height: 0.82rem;
    font-size: 0.22rem;
  }
}

@media (max-width: 980px) {
  .services-page__hero,
  .service-showcase,
  .service-showcase--reverse,
  .services-page__cta {
    grid-template-columns: 1fr;
  }

  .service-showcase--reverse .service-showcase__content,
  .service-showcase--reverse .service-showcase__visual {
    order: initial;
  }

  .services-page__hero-visual {
    justify-items: start;
    max-width: min(100%, 26.5rem);
  }

  .services-hero-device {
    width: min(100%, 26.5rem);
    border-radius: 1.6rem;
  }

  .services-hero-device__shell {
    min-height: 18.4rem;
    padding: 0.62rem;
    border-radius: 1.22rem;
  }

  .services-hero-device__camera {
    top: 0.42rem;
    width: 3.7rem;
  }

  .services-hero-panel {
    min-height: 16.7rem;
    padding: 0.6rem;
  }

  .services-hero-panel__core {
    top: 4.8rem;
    width: 7.7rem;
    height: 7.7rem;
  }

  .services-hero-node {
    gap: 0.28rem;
    min-height: 4.34rem;
    padding: 0.46rem 0.38rem 0.44rem;
    border-radius: 0.94rem;
  }

  .services-hero-node__icon {
    width: 1.78rem;
    height: 1.78rem;
  }

  .services-hero-node strong {
    font-size: 0.42rem;
  }

  .services-hero-node--satellite {
    width: 5.7rem;
  }

  .services-hero-node--network {
    width: 5.84rem;
  }

  .services-hero-node--software {
    width: 5.66rem;
  }

  .services-hero-node--solar {
    width: 5.8rem;
  }

  .services-hero-node--satellite {
    top: 4.18rem;
    left: 0.88rem;
  }

  .services-hero-node--network {
    top: 4.22rem;
    right: 0.88rem;
  }

  .services-hero-node--software {
    bottom: 3.42rem;
    left: 1.02rem;
  }

  .services-hero-node--solar {
    right: 0.9rem;
    bottom: 3.4rem;
  }

  .services-hero-panel__trace--one {
    top: 6.46rem;
    left: 6.34rem;
    width: 3.08rem;
  }

  .services-hero-panel__trace--two {
    top: 6.5rem;
    right: 6.3rem;
    width: 3.04rem;
  }

  .services-hero-panel__trace--three {
    bottom: 5.92rem;
    left: 6.4rem;
    width: 2.98rem;
  }

  .services-hero-panel__trace--four {
    right: 6.32rem;
    bottom: 5.9rem;
    width: 3rem;
  }

  .services-hero-panel__workflow span {
    min-height: 1.46rem;
    font-size: 0.44rem;
  }

  .services-page__nav {
    top: auto;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .services-page__nav::-webkit-scrollbar {
    display: none;
  }

  .services-workflow,
  .services-page__signals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-visual-satellite,
  .service-visual-network,
  .service-visual-development,
  .service-visual-solar {
    min-height: 22rem;
  }

  .service-media-card--lead {
    inset: 1rem 8rem 6rem 1rem;
  }

  .service-media-card--dashboard {
    width: 11rem;
    height: 8.4rem;
  }

  .service-media-card--network-lead {
    inset: 1rem 2.9rem 5.15rem 1rem;
  }

  .service-media-card--network-detail {
    right: 1rem;
    bottom: 3.62rem;
    width: 10.6rem;
    height: 7.1rem;
  }

  .service-media-card--network-lead img {
    object-position: center 64%;
    transform: scale(1.1);
  }

  .service-media-card--network-detail img {
    object-position: center 74%;
  }

  .service-dev-browser {
    margin-right: 4.2rem;
    min-height: 17.2rem;
  }

  .service-dev-browser__eyebrow {
    padding-bottom: 0.34rem;
  }

  .service-dev-browser__eyebrow span,
  .service-dev-phone__label {
    min-height: 1.34rem;
    padding: 0.18rem 0.38rem;
    font-size: 0.42rem;
  }

  .service-dev-browser__eyebrow strong {
    font-size: 0.68rem;
  }

  .service-dev-browser__bar {
    min-height: 1.85rem;
    padding: 0.34rem 0.48rem;
  }

  .service-dev-browser__bar strong {
    font-size: 0.54rem;
  }

  .service-dev-browser__canvas {
    grid-template-columns: 4rem 1fr;
    gap: 0.55rem;
    padding: 0.48rem;
  }

  .service-dev-stack {
    right: 8rem;
  }

  .service-solar-board__coming {
    inset: 4.1rem 4.4rem 5rem 1.2rem;
  }

  .service-solar-board__coming-row {
    gap: 0.82rem;
  }

  .service-solar-board__coming span {
    font-size: 1.08rem;
  }
}

@media (max-width: 760px) {
  .section--services-page {
    padding: 0.7rem 1rem 1.8rem;
  }

  .services-page {
    gap: 1.45rem;
  }

  .services-page__hero {
    grid-template-columns: minmax(0, 1fr) clamp(7.1rem, 31vw, 8.8rem);
    gap: 0.5rem 0.68rem;
    align-items: start;
    padding-bottom: 0.82rem;
  }

  .services-page__hero-copy {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 1;
  }

  .services-page__hero-copy h1 {
    max-width: 9.8ch;
    font-size: clamp(1.06rem, 5.2vw, 1.28rem);
    line-height: 1.1;
  }

  .services-page__hero-text {
    max-width: 12.8rem;
    margin-top: 0.48rem;
    font-size: 0.72rem;
    line-height: 1.46;
  }

  .services-page__hero-actions {
    gap: 0.42rem;
    margin-top: 0.68rem;
  }

  .services-page__hero-actions .button,
  .services-page__cta-actions .button {
    min-height: 1.96rem;
    padding-inline: 0.68rem;
    font-size: 0.62rem;
  }

  .services-page__hero-visual {
    grid-column: 2;
    grid-row: 1;
    justify-items: start;
    align-self: start;
    width: 100%;
    max-width: none;
  }

  .services-hero-device {
    width: 100%;
    padding: 0.34rem 0.36rem 0.42rem;
    border-radius: 1rem;
  }

  .services-hero-device__shell {
    min-height: 13.8rem;
    padding: 0.42rem;
    border-radius: 0.82rem;
  }

  .services-hero-device__camera {
    top: 0.28rem;
    width: 2.2rem;
    height: 0.22rem;
  }

  .services-hero-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "topline topline"
      "sat network"
      "core core"
      "systems solar"
      "workflow workflow";
    align-content: start;
    gap: 0.28rem;
    min-height: 12.8rem;
    padding: 0.42rem;
    border-radius: 0.74rem;
  }

  .services-hero-panel__topline {
    grid-area: topline;
    gap: 0.24rem;
    align-items: flex-start;
  }

  .services-hero-panel__badge {
    min-height: 1.06rem;
    padding: 0.12rem 0.28rem;
    font-size: 0.3rem;
  }

  .services-hero-panel__badge--muted {
    display: none;
  }

  .services-hero-panel__core {
    position: relative;
    grid-area: core;
    top: auto;
    left: auto;
    width: 3.72rem;
    height: 3.72rem;
    justify-self: center;
    transform: none;
  }

  .services-hero-panel__core-copy span {
    font-size: 0.26rem;
  }

  .services-hero-panel__core-copy strong {
    font-size: 0.5rem;
  }

  .services-hero-node {
    position: relative;
    justify-self: stretch;
    gap: 0.2rem;
    min-height: 1.92rem;
    padding: 0.22rem 0.18rem 0.24rem;
    border-radius: 0.48rem;
  }

  .services-hero-node__icon {
    width: 1.52rem;
    height: 1.52rem;
    border-radius: 0.62rem;
  }

  .services-hero-node strong {
    font-size: 0.32rem;
    letter-spacing: 0.08em;
  }

  .services-hero-node--satellite {
    grid-area: sat;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .services-hero-node--network {
    grid-area: network;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .services-hero-node--software {
    grid-area: systems;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .services-hero-node--solar {
    grid-area: solar;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .services-hero-panel__trace {
    display: none;
  }

  .services-hero-panel__trace--one {
    top: 4.34rem;
    left: 3.46rem;
    width: 1.52rem;
  }

  .services-hero-panel__trace--two {
    top: 4.36rem;
    right: 3.42rem;
    width: 1.5rem;
  }

  .services-hero-panel__trace--three {
    bottom: 3.48rem;
    left: 3.46rem;
    width: 1.5rem;
  }

  .services-hero-panel__trace--four {
    right: 3.42rem;
    bottom: 3.48rem;
    width: 1.5rem;
  }

  .services-hero-panel__workflow {
    position: relative;
    grid-area: workflow;
    right: auto;
    bottom: auto;
    left: auto;
    gap: 0.14rem;
  }

  .services-hero-panel__workflow span {
    min-height: 0.96rem;
    padding: 0.1rem 0.12rem;
    font-size: 0.24rem;
    letter-spacing: 0.06em;
  }

  .services-page__nav {
    top: auto;
    gap: 0.34rem;
    padding: 0.36rem;
    border-radius: 0.78rem;
  }

  .services-page__nav a {
    min-height: 1.76rem;
    padding: 0.24rem 0.5rem;
    font-size: 0.44rem;
    letter-spacing: 0.12em;
  }

  .service-showcase {
    gap: 0.72rem;
    padding-top: 0.76rem;
  }

  .portal-dialog {
    width: min(100% - 1rem, 980px);
  }

  .portal-dialog__surface {
    border-radius: 1.08rem;
  }

  .portal-dialog__close {
    top: 0.72rem;
    right: 0.72rem;
    min-height: 1.9rem;
    padding: 0.36rem 0.7rem;
    font-size: 0.72rem;
  }

  .portal-dialog__intro,
  .portal-access {
    padding: 1rem 0.92rem 1.02rem;
  }

  .portal-dialog__intro h2 {
    max-width: 11ch;
    font-size: clamp(1.08rem, 5vw, 1.34rem);
  }

  .portal-dialog__copy,
  .portal-dialog__features li,
  .portal-access__header p,
  .portal-access__status {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .portal-access__header h3 {
    font-size: 0.96rem;
  }

  .portal-access__field input {
    min-height: 2.7rem;
    padding: 0.68rem 0.8rem;
    border-radius: 0.86rem;
    font-size: 0.88rem;
  }

  .portal-access__actions {
    gap: 0.5rem;
  }

  .service-showcase__content h2,
  .services-page__cta h2 {
    max-width: 13.4ch;
    font-size: clamp(0.9rem, 4.2vw, 1.06rem);
    line-height: 1.08;
  }

  .service-showcase__summary {
    margin-top: 0.44rem;
    font-size: 0.72rem;
    line-height: 1.46;
  }

  .service-showcase__detail-toggle {
    margin-top: 0.56rem;
    padding-right: 0.82rem;
    font-size: 0.52rem;
    letter-spacing: 0.1em;
  }

  .service-showcase__detail-toggle::before,
  .service-showcase__detail-toggle::after {
    width: 0.48rem;
  }

  .service-showcase__details-inner {
    padding-top: 0.58rem;
  }

  .service-showcase__description {
    margin-top: 0.4rem;
    font-size: 0.69rem;
    line-height: 1.48;
  }

  .service-showcase__deliverables {
    gap: 0.28rem;
    margin-top: 0.62rem;
  }

  .service-showcase__deliverables li {
    padding-left: 0.66rem;
    font-size: 0.68rem;
    line-height: 1.46;
  }

  .service-showcase__signals {
    gap: 0.18rem 0.42rem;
    margin-top: 0.62rem;
  }

  .service-satellite-strip span,
  .service-network-strip span,
  .service-solar-notes span {
    min-height: 1.6rem;
    padding: 0.24rem 0.42rem;
    font-size: 0.46rem;
  }

  .service-showcase__signals span {
    font-size: 0.44rem;
    letter-spacing: 0.09em;
  }

  .service-showcase__signals span:not(:last-child)::after {
    width: 0.18rem;
    height: 0.18rem;
    margin-left: 0.42rem;
  }

  .service-showcase__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.38rem;
    margin-top: 0.66rem;
  }

  .service-visual-satellite,
  .service-visual-network,
  .service-visual-development,
  .service-visual-solar {
    min-height: 15rem;
    padding: 0.54rem;
    border-radius: 0.92rem;
  }

  .service-media-card,
  .service-dev-browser,
  .service-solar-board {
    border-radius: 0.82rem;
  }

  .service-media-card--lead {
    inset: 0.54rem 4.9rem 4.3rem 0.54rem;
  }

  .service-media-card--dashboard {
    right: 0.54rem;
    bottom: 2.92rem;
    width: 6.54rem;
    height: 4.92rem;
  }

  .service-satellite-strip,
  .service-network-strip {
    left: 0.54rem;
    right: 0.54rem;
    bottom: 0.54rem;
    gap: 0.22rem;
  }

  .service-media-card--network-lead {
    inset: 0.54rem 1.44rem 3.68rem 0.54rem;
    padding: 0.38rem;
  }

  .service-media-card--network-detail {
    right: 0.54rem;
    bottom: 2.32rem;
    width: 5.2rem;
    height: 3.82rem;
  }

  .service-media-card--network-lead img {
    object-position: center 66%;
    transform: scale(1.14);
  }

  .service-media-card--network-detail img {
    object-position: center 78%;
  }

  .service-dev-browser {
    margin-right: 3.24rem;
    min-height: 10.7rem;
    padding: 0.3rem;
  }

  .service-dev-browser__eyebrow {
    gap: 0.34rem;
    padding: 0.08rem 0.12rem 0.3rem;
  }

  .service-dev-browser__eyebrow span,
  .service-dev-phone__label {
    min-height: 1.08rem;
    padding: 0.14rem 0.28rem;
    font-size: 0.34rem;
    letter-spacing: 0.1em;
  }

  .service-dev-browser__eyebrow strong {
    font-size: 0.46rem;
  }

  .service-dev-browser__bar {
    min-height: 1.52rem;
    padding: 0.26rem 0.4rem;
    border-radius: 0.66rem;
  }

  .service-dev-browser__bar i {
    width: 0.24rem;
    height: 0.24rem;
  }

  .service-dev-browser__bar strong {
    margin-left: 0.18rem;
    font-size: 0.4rem;
  }

  .service-dev-browser__canvas {
    grid-template-columns: 2.16rem 1fr;
    gap: 0.28rem;
    margin-top: 0.3rem;
    padding: 0.28rem;
    border-radius: 0.68rem;
  }

  .service-dev-browser__sidebar {
    gap: 0.28rem;
    padding: 0.4rem 0.28rem;
    border-radius: 0.56rem;
  }

  .service-dev-browser__sidebar span {
    height: 0.28rem;
  }

  .service-dev-browser__content {
    gap: 0.34rem;
  }

  .service-dev-browser__metric-row,
  .service-dev-browser__panel-row {
    gap: 0.34rem;
  }

  .service-dev-browser__metric-row span,
  .service-dev-browser__panel-row span {
    min-height: 1.38rem;
    border-radius: 0.46rem;
  }

  .service-dev-browser__chart {
    min-height: 4rem;
    border-radius: 0.68rem;
    background-size: 14px 14px, 14px 14px, auto, auto;
  }

  .service-dev-phone {
    right: 0.54rem;
    bottom: 0.54rem;
    width: 4.46rem;
    height: 7.88rem;
    padding: 0.3rem;
    border-radius: 1.02rem;
  }

  .service-dev-phone__screen {
    padding: 0.34rem;
    gap: 0.26rem;
    border-radius: 0.7rem;
  }

  .service-dev-phone__label {
    margin-bottom: 0.28rem;
  }

  .service-dev-phone__hero {
    min-height: 1.36rem;
    border-radius: 0.46rem;
  }

  .service-dev-phone__item {
    min-height: 0.84rem;
    border-radius: 0.38rem;
  }

  .service-dev-phone__cta {
    min-height: 0.98rem;
  }

  .service-dev-stack {
    left: 0.54rem;
    right: 5.2rem;
    bottom: 0.54rem;
    gap: 0.26rem;
  }

  .service-dev-stack span {
    min-height: 1.48rem;
    padding: 0.2rem 0.34rem;
  }

  .service-dev-stack img {
    height: 0.54rem;
  }

  .service-solar-board {
    min-height: 13.9rem;
  }

  .service-solar-board__coming {
    inset: 3.6rem 3.6rem 4rem 0.72rem;
    border-radius: 0.74rem;
    gap: 0.46rem;
  }

  .service-solar-board__coming-row {
    gap: 0.52rem;
  }

  .service-solar-board__coming-row--secondary {
    margin-left: -1.2rem;
  }

  .service-solar-board__coming span {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .service-solar-board__sun {
    top: 0.74rem;
    right: 0.74rem;
    width: 2rem;
    height: 2rem;
  }

  .service-solar-board__grid {
    left: 0.7rem;
    right: 5rem;
    bottom: 1rem;
    gap: 0.22rem;
    padding: 0.28rem;
  }

  .service-solar-board__grid span {
    min-height: 1.36rem;
    border-radius: 0.28rem;
  }

  .service-solar-board__battery {
    right: 0.72rem;
    bottom: 1.02rem;
    width: 2.6rem;
    height: 4.4rem;
    border-radius: 0.72rem;
  }

  .service-solar-board__router {
    right: 3.8rem;
    top: 1.6rem;
    width: 2.8rem;
    height: 1.65rem;
    border-radius: 0.58rem;
  }

  .service-solar-board__router::before {
    top: 0.36rem;
    left: 0.44rem;
    width: 1.35rem;
    height: 0.14rem;
    box-shadow: 0 0.34rem 0 rgba(103, 192, 255, 0.42);
  }

  .service-solar-board__line--one {
    top: 4.9rem;
    left: 4.4rem;
    width: 2.6rem;
  }

  .service-solar-board__line--two {
    top: 7.5rem;
    left: 6.8rem;
    width: 2.8rem;
  }

  .service-solar-board__line--three {
    top: 3.1rem;
    right: 3.2rem;
    width: 2rem;
  }

  .service-solar-board__tag {
    left: 0.62rem;
    top: 0.62rem;
    min-height: 1.56rem;
    padding: 0.24rem 0.46rem;
    font-size: 0.46rem;
  }

  .services-workflow,
  .services-page__signals {
    gap: 0.52rem 0.72rem;
  }

  .services-workflow__step,
  .services-signal {
    padding-top: 0.58rem;
  }

  .services-workflow__title {
    gap: 0.14rem;
  }

  .services-workflow,
  .services-page__signals {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .services-workflow__step,
  .services-signal {
    padding: 0.58rem 0 0;
    border-radius: 0;
  }

  .services-workflow__step h3 {
    font-size: 0.82rem;
  }

  .services-workflow__step p,
  .services-signal p {
    font-size: 0.7rem;
    line-height: 1.44;
  }

  .services-workflow__step > .mobile-disclosure__panel > .mobile-disclosure__content {
    gap: 0.34rem;
  }

  .services-page__cta {
    gap: 0.52rem;
    padding-top: 0.7rem;
  }

  .services-page__cta-actions {
    gap: 0.42rem;
  }
}

.section--why-page {
  padding: clamp(1.6rem, 4vw, 2.4rem) 1.25rem clamp(2.8rem, 5vw, 4rem);
}

.why-page {
  display: grid;
  gap: 1rem;
}

.why-page__hero,
.why-page__systems,
.why-page__cta {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.98fr);
  gap: 1rem 2.2rem;
  align-items: end;
}

.why-page__hero {
  padding-bottom: 0.72rem;
  border-bottom: 1px solid var(--line);
}

.why-page__hero-copy {
  max-width: 34rem;
}

.why-page__hero-copy h1,
.why-page__systems-copy h2,
.why-page__cta h2 {
  margin: 0;
  font-family: var(--font-brand);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.why-page__hero-copy h1 {
  max-width: 10.4ch;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  line-height: 1;
  text-wrap: balance;
}

.why-page__hero-text {
  max-width: 23rem;
  margin: 0.68rem 0 0;
  color: var(--muted);
  font-size: clamp(0.86rem, 0.94vw, 0.92rem);
  line-height: 1.56;
  letter-spacing: -0.01em;
}

.why-page__hero-actions,
.why-page__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  margin-top: 0.76rem;
}

.why-page__hero-visual {
  display: grid;
  justify-items: end;
  width: 100%;
}

.why-page-device {
  width: min(100%, 26.4rem);
}

.why-page-device__shell {
  position: relative;
  padding: 0.58rem 0.62rem 0.72rem;
  border-radius: 1.56rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.92), rgba(3, 9, 21, 0.8));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.why-page-device__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 16%, transparent 82%, rgba(103, 192, 255, 0.05));
}

.why-page-device__camera {
  position: absolute;
  top: 0.42rem;
  left: 50%;
  z-index: 2;
  width: 3.3rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(1, 5, 12, 0.92);
  transform: translateX(-50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.why-visual {
  position: relative;
  overflow: hidden;
  min-height: 18.1rem;
  padding: 0.62rem;
  border-radius: 1.14rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.005)),
    linear-gradient(180deg, rgba(8, 18, 37, 0.98), rgba(4, 10, 24, 0.96));
}

.why-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(103, 192, 255, 0.12), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: auto, 20px 20px, 20px 20px;
  opacity: 0.82;
  pointer-events: none;
}

.why-visual__topline,
.why-visual__status {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.36rem;
}

.why-visual__topline {
  justify-content: space-between;
}

.why-visual__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.86rem;
  padding: 0.32rem 0.74rem;
  border: 1px solid rgba(103, 192, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-visual__badge--muted {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.08);
}

.why-visual__core,
.why-visual__ring,
.why-visual__beam,
.why-visual__node {
  position: absolute;
}

.why-visual__core {
  top: 4.9rem;
  left: 50%;
  z-index: 1;
  width: 7.1rem;
  height: 7.1rem;
  transform: translateX(-50%);
}

.why-visual__ring {
  border-radius: 50%;
  border: 1px solid rgba(103, 192, 255, 0.16);
}

.why-visual__ring--outer {
  inset: 0;
  box-shadow: 0 0 0 2rem rgba(103, 192, 255, 0.04);
}

.why-visual__ring--inner {
  inset: 1.18rem;
}

.why-visual__core-copy {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.18rem;
  text-align: center;
}

.why-visual__core-copy span,
.why-visual__status span {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.why-visual__core-copy strong {
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}

.why-visual__beam {
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.08), rgba(103, 192, 255, 0.56), rgba(103, 192, 255, 0.08));
}

.why-visual__beam--one {
  top: 7.6rem;
  left: 7rem;
  width: 3.4rem;
  transform: rotate(-18deg);
}

.why-visual__beam--two {
  top: 7.6rem;
  right: 7rem;
  width: 3.4rem;
  transform: rotate(18deg);
}

.why-visual__beam--three {
  left: 7rem;
  bottom: 5.45rem;
  width: 3.4rem;
  transform: rotate(24deg);
}

.why-visual__beam--four {
  right: 7rem;
  bottom: 5.45rem;
  width: 3.4rem;
  transform: rotate(-24deg);
}

.why-visual__node {
  z-index: 1;
  display: grid;
  gap: 0.26rem;
  justify-items: center;
  min-height: 3.9rem;
  padding: 0.38rem 0.3rem 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.88rem;
  background: rgba(6, 12, 27, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.why-visual__node strong {
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.why-visual__node-icon {
  position: relative;
  width: 1.66rem;
  height: 1.66rem;
  border-radius: 0.62rem;
  border: 1px solid rgba(103, 192, 255, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(103, 192, 255, 0.16), rgba(103, 192, 255, 0.02));
}

.why-visual__node-icon::before,
.why-visual__node-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.why-visual__node-icon--uplink::before {
  width: 0.66rem;
  height: 0.66rem;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
}

.why-visual__node-icon--uplink::after {
  width: 0.22rem;
  height: 0.22rem;
  border-radius: 50%;
  background: var(--accent-bright);
}

.why-visual__node-icon--network::before {
  width: 1rem;
  height: 0.12rem;
  background: var(--accent-bright);
  box-shadow: 0 -0.34rem 0 var(--accent-bright), 0 0.34rem 0 var(--accent-bright);
}

.why-visual__node-icon--network::after {
  width: 0.24rem;
  height: 0.24rem;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: -0.54rem -0.34rem 0 var(--accent-bright), 0.54rem 0.34rem 0 var(--accent-bright);
}

.why-visual__node-icon--field::before {
  width: 0.62rem;
  height: 0.84rem;
  border: 2px solid var(--accent-bright);
  border-radius: 0.28rem;
}

.why-visual__node-icon--field::after {
  width: 0.16rem;
  height: 0.16rem;
  border-radius: 50%;
  background: var(--accent-bright);
  top: calc(50% + 0.5rem);
}

.why-visual__node-icon--support::before {
  width: 0.92rem;
  height: 0.92rem;
  border: 2px solid var(--accent-bright);
  border-radius: 50%;
}

.why-visual__node-icon--support::after {
  width: 0.3rem;
  height: 0.7rem;
  border-radius: 999px;
  background: var(--accent-bright);
  transform: translate(-50%, -50%) rotate(24deg);
}

.why-visual__node--uplink {
  top: 4.18rem;
  left: 1rem;
  width: 4.85rem;
}

.why-visual__node--network {
  top: 4.18rem;
  right: 1rem;
  width: 4.9rem;
}

.why-visual__node--field {
  left: 1.08rem;
  bottom: 3.15rem;
  width: 4.86rem;
}

.why-visual__node--support {
  right: 1rem;
  bottom: 3.15rem;
  width: 4.9rem;
}

.why-visual__status {
  position: absolute;
  right: 0.68rem;
  bottom: 0.68rem;
  left: 0.68rem;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.12rem;
}

.why-visual__status span {
  justify-content: center;
  min-height: 1.32rem;
  padding: 0.18rem 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
  font-size: 0.38rem;
}

.why-page__proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.16rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.why-page__proof-card,
.why-page__systems-visual {
  border-radius: 1rem;
}

.why-page__proof-card {
  display: grid;
  gap: 0.2rem;
  min-height: auto;
  padding: 0.34rem 0;
}

.why-page__proof-card strong {
  color: var(--text);
  font-family: var(--font-brand);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.why-page__proof-card p,
.why-page__systems-copy .section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.54;
}

.why-page__positioning {
  display: grid;
  gap: 0.8rem;
}

.why-page__reason-index {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.why-page__reason-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line-soft);
}

.why-page__reason {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.why-page__reason-copy {
  display: grid;
  gap: 0.28rem;
  max-width: 34rem;
}

.why-page__reason-copy h3 {
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(0.92rem, 1.2vw, 1.04rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.08;
  text-wrap: balance;
}

.why-page__reason-copy p {
  margin: 0;
  max-width: 31rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.54;
}

.why-page__systems {
  padding-top: 0.1rem;
  align-items: stretch;
}

.why-page__systems-copy {
  display: grid;
  gap: 0.62rem;
  padding: 0;
}

.why-page__systems-copy h2 {
  max-width: 11.5ch;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.04;
  text-wrap: balance;
}

.why-page__systems-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
}

.why-page__systems-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 1.64rem;
  padding: 0.22rem 0.54rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.why-page__systems-visual {
  position: relative;
  overflow: hidden;
  min-height: 17.2rem;
  padding: 0.85rem;
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.why-page__systems-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 18%, rgba(103, 192, 255, 0.12), transparent 36%),
    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: auto, 22px 22px, 22px 22px;
  opacity: 0.8;
  pointer-events: none;
}

.why-systems-browser,
.why-systems-phone {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 13, 29, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.why-systems-browser {
  margin-right: 5.1rem;
  padding: 0.46rem;
  border-radius: 1.2rem;
}

.why-systems-browser__bar {
  display: flex;
  gap: 0.28rem;
  padding-bottom: 0.42rem;
}

.why-systems-browser__bar i {
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: rgba(103, 192, 255, 0.74);
}

.why-systems-browser__canvas {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.54rem;
  min-height: 12rem;
  padding: 0.46rem;
  border-radius: 0.92rem;
  background: rgba(255, 255, 255, 0.02);
}

.why-systems-browser__panel {
  min-height: 3.4rem;
  border-radius: 0.84rem;
  background:
    linear-gradient(180deg, rgba(103, 192, 255, 0.2), rgba(103, 192, 255, 0.06)),
    rgba(255, 255, 255, 0.03);
}

.why-systems-browser__panel--wide {
  grid-column: 1 / -1;
  min-height: 4.2rem;
}

.why-systems-browser__panel--chart {
  background:
    linear-gradient(180deg, rgba(103, 192, 255, 0.08), rgba(103, 192, 255, 0.04)),
    radial-gradient(circle at 22% 70%, rgba(103, 192, 255, 0.3), transparent 32%),
    rgba(255, 255, 255, 0.03);
}

.why-systems-phone {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 6.2rem;
  height: 11rem;
  padding: 0.42rem;
  border-radius: 1.3rem;
}

.why-systems-phone__notch {
  position: absolute;
  top: 0.54rem;
  left: 50%;
  width: 2rem;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(-50%);
}

.why-systems-phone__screen {
  display: grid;
  gap: 0.34rem;
  height: 100%;
  padding: 0.78rem 0.38rem 0.38rem;
  border-radius: 0.98rem;
  background: rgba(0, 0, 0, 0.18);
}

.why-systems-phone__hero,
.why-systems-phone__line,
.why-systems-phone__cta {
  display: block;
  border-radius: 0.58rem;
  background: rgba(103, 192, 255, 0.16);
}

.why-systems-phone__hero {
  min-height: 2rem;
}

.why-systems-phone__line {
  min-height: 0.92rem;
}

.why-systems-phone__cta {
  min-height: 1.12rem;
  margin-top: auto;
  background: linear-gradient(135deg, rgba(103, 192, 255, 0.82), rgba(36, 144, 234, 0.48));
}

.why-page__cta {
  padding-top: 0.7rem;
  border-top: 1px solid var(--line);
  align-items: center;
}

.why-page__cta h2 {
  max-width: 11.4ch;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  line-height: 1.04;
}

@media (max-width: 980px) {
  .why-page__hero,
  .why-page__systems,
  .why-page__cta {
    grid-template-columns: 1fr;
  }

  .why-page__hero-visual {
    justify-items: start;
    max-width: min(100%, 26.5rem);
  }

  .why-page-device {
    width: min(100%, 26.5rem);
  }

  .why-page-device__shell {
    padding: 0.62rem;
    border-radius: 1.6rem;
  }

  .why-visual {
    min-height: 18.4rem;
    padding: 0.62rem;
    border-radius: 1.22rem;
  }

  .why-visual__core {
    top: 4.9rem;
    width: 7.6rem;
    height: 7.6rem;
  }

  .why-visual__node {
    min-height: 4.2rem;
  }

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

  .why-page__reason {
    grid-template-columns: 2.6rem minmax(0, 1fr);
  }

  .why-page__systems-visual {
    min-height: 15.8rem;
  }
}

@media (max-width: 760px) {
  .section--why-page {
    padding: 0.7rem 1rem 1.8rem;
  }

  .why-page {
    gap: 1.1rem;
  }

  .why-page__hero {
    grid-template-columns: minmax(0, 1fr) clamp(7.1rem, 31vw, 8.8rem);
    gap: 0.5rem 0.68rem;
    align-items: start;
    padding-bottom: 0.82rem;
  }

  .why-page__hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .why-page__hero-copy h1 {
    max-width: 10.6ch;
    font-size: clamp(0.96rem, 4.6vw, 1.1rem);
    line-height: 1.1;
  }

  .why-page__hero-text {
    max-width: 12.8rem;
    margin-top: 0.42rem;
    font-size: 0.64rem;
    line-height: 1.42;
  }

  .why-page__hero-actions,
  .why-page__cta-actions {
    gap: 0.42rem;
    margin-top: 0.68rem;
  }

  .why-page__hero-actions .button,
  .why-page__cta-actions .button {
    min-height: 1.96rem;
    padding-inline: 0.68rem;
    font-size: 0.62rem;
  }

  .why-page__hero-visual {
    grid-column: 2;
    grid-row: 1;
    justify-items: start;
    align-self: start;
    width: 100%;
    max-width: none;
  }

  .why-page-device {
    width: 100%;
  }

  .why-page-device__shell {
    padding: 0.34rem 0.36rem 0.42rem;
    border-radius: 1rem;
  }

  .why-page-device__camera {
    top: 0.28rem;
    width: 2.2rem;
    height: 0.22rem;
  }

  .why-visual {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "topline topline"
      "uplink network"
      "core core"
      "field support"
      "status status";
    align-content: start;
    gap: 0.28rem;
    min-height: 12.8rem;
    padding: 0.42rem;
    border-radius: 0.74rem;
  }

  .why-visual__topline {
    grid-area: topline;
    gap: 0.24rem;
    align-items: flex-start;
  }

  .why-visual__badge {
    min-height: 1.06rem;
    padding: 0.12rem 0.28rem;
    font-size: 0.3rem;
  }

  .why-visual__badge--muted {
    display: none;
  }

  .why-visual__beam {
    display: none;
  }

  .why-visual__core {
    position: relative;
    grid-area: core;
    top: auto;
    left: auto;
    width: 3.72rem;
    height: 3.72rem;
    justify-self: center;
    transform: none;
  }

  .why-visual__core-copy span {
    font-size: 0.26rem;
  }

  .why-visual__core-copy strong {
    font-size: 0.5rem;
  }

  .why-visual__node {
    position: relative;
    justify-self: stretch;
    gap: 0.2rem;
    min-height: 1.92rem;
    padding: 0.22rem 0.18rem 0.24rem;
    border-radius: 0.48rem;
  }

  .why-visual__node strong {
    font-size: 0.32rem;
  }

  .why-visual__node-icon {
    width: 1.52rem;
    height: 1.52rem;
    border-radius: 0.62rem;
  }

  .why-visual__node--uplink,
  .why-visual__node--network,
  .why-visual__node--field,
  .why-visual__node--support {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .why-visual__node--uplink {
    grid-area: uplink;
  }

  .why-visual__node--network {
    grid-area: network;
  }

  .why-visual__node--field {
    grid-area: field;
  }

  .why-visual__node--support {
    grid-area: support;
  }

  .why-visual__status {
    position: relative;
    grid-area: status;
    right: auto;
    bottom: auto;
    left: auto;
    gap: 0.14rem;
  }

  .why-visual__status span {
    min-height: 0.96rem;
    padding: 0.1rem 0.12rem;
    font-size: 0.24rem;
  }

  .why-page__proof-grid,
  .why-page__reason-list {
    gap: 0;
  }

  .why-page__proof-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .why-page__proof-card,
  .why-page__systems-visual {
    border-radius: 0.92rem;
  }

  .why-page__proof-card {
    min-height: auto;
    padding: 0.54rem 0;
  }

  .why-page__proof-card strong {
    font-size: 1rem;
  }

  .why-page__proof-card p,
  .why-page__systems-copy .section-copy,
  .why-page__reason-copy p {
    font-size: 0.7rem;
    line-height: 1.42;
  }

  .why-page__reason-copy h3,
  .why-page__systems-copy h2,
  .why-page__cta h2 {
    max-width: 12.6ch;
    font-size: clamp(0.88rem, 4vw, 1rem);
    line-height: 1.08;
  }

  .why-page__reason {
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.52rem;
    padding: 0.7rem 0;
  }

  .why-page__systems {
    gap: 0.6rem;
  }

  .why-page__systems-visual {
    padding: 0.7rem;
  }

  .why-page__systems-signals {
    gap: 0.18rem 0.36rem;
  }

  .why-page__systems-signals span {
    min-height: 1.56rem;
    padding: 0.22rem 0.46rem;
    font-size: 0.46rem;
  }

  .why-page__systems-visual {
    min-height: 10.8rem;
  }

  .why-systems-browser {
    margin-right: 3.6rem;
    padding: 0.3rem;
    border-radius: 0.82rem;
  }

  .why-systems-browser__bar {
    padding-bottom: 0.26rem;
  }

  .why-systems-browser__bar i {
    width: 0.24rem;
    height: 0.24rem;
  }

  .why-systems-browser__canvas {
    gap: 0.28rem;
    min-height: 7rem;
    padding: 0.28rem;
    border-radius: 0.68rem;
  }

  .why-systems-browser__panel {
    min-height: 1.9rem;
    border-radius: 0.5rem;
  }

  .why-systems-browser__panel--wide {
    min-height: 2.5rem;
  }

  .why-systems-phone {
    right: 0.78rem;
    bottom: 0.78rem;
    width: 4.5rem;
    height: 8rem;
    padding: 0.28rem;
    border-radius: 1rem;
  }

  .why-systems-phone__notch {
    top: 0.42rem;
    width: 1.5rem;
    height: 0.18rem;
  }

  .why-systems-phone__screen {
    gap: 0.24rem;
    padding: 0.62rem 0.28rem 0.28rem;
    border-radius: 0.72rem;
  }

  .why-systems-phone__hero {
    min-height: 1.26rem;
  }

  .why-systems-phone__line {
    min-height: 0.62rem;
  }

  .why-systems-phone__cta {
    min-height: 0.88rem;
  }

  .why-page__cta {
    gap: 0.44rem;
    padding-top: 0.6rem;
  }
}

/* Final Why SSL cleanup: visual-led, low-copy presentation. */
.why-page {
  gap: 1rem;
}

.why-page__hero {
  padding-bottom: 0.75rem;
}

.why-page__hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(1.58rem, 2.55vw, 2rem);
  line-height: 1.02;
}

.why-page__hero-text {
  max-width: 21rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.48;
}

.why-page-device {
  width: min(100%, 24rem);
}

.why-page-device__shell {
  padding: 0.52rem 0.56rem 0.64rem;
  border-radius: 1.35rem;
}

.why-visual {
  display: block;
  min-height: 14.7rem;
  padding: 0.56rem;
  border-radius: 0.95rem;
}

.why-visual__stack,
.why-visual__focus,
.why-visual__footer {
  position: relative;
  z-index: 1;
}

.why-visual__stack {
  display: grid;
  gap: 0.38rem;
}

.why-visual__stack-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.45rem;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.32rem 0.46rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.78rem;
  background: rgba(6, 12, 27, 0.84);
}

.why-visual__stack-row span,
.why-visual__stack-row strong,
.why-visual__focus span,
.why-visual__footer strong {
  font-family: var(--font-brand);
  font-weight: 700;
  line-height: 1.2;
}

.why-visual__stack-row span,
.why-visual__focus span {
  color: var(--accent-bright);
  font-size: 0.38rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-visual__stack-row strong {
  color: var(--text);
  font-size: 0.48rem;
  letter-spacing: 0;
}

.why-visual__stack-row i {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.12), rgba(103, 192, 255, 0.62), rgba(103, 192, 255, 0.12));
}

.why-visual__focus {
  display: grid;
  gap: 0.22rem;
  margin-top: 0.58rem;
  padding: 0.6rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  border-radius: 0.82rem;
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.08), transparent 64%),
    rgba(255, 255, 255, 0.02);
}

.why-visual__focus strong {
  color: var(--text);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.why-visual__footer {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.58rem;
}

.why-visual__footer-dot {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: #67f5a9;
  box-shadow: 0 0 0 0 rgba(103, 245, 169, 0.34);
  animation: nodePulse 1.9s ease-in-out infinite;
}

.why-visual__footer strong {
  color: var(--text-soft);
  font-size: 0.42rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-page__proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.16rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.why-page__proof-item {
  display: grid;
  gap: 0.14rem;
  padding: 0.34rem 0;
}

.why-page__proof-item strong {
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.why-page__proof-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.section-heading--why-clean {
  margin-bottom: 0.85rem;
}

.section-heading--why-clean h2 {
  max-width: 10ch;
  font-size: clamp(1.28rem, 2.2vw, 1.7rem);
  line-height: 1.04;
}

.section-heading--why-clean .section-copy {
  max-width: 20rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

.why-model-map {
  position: relative;
  min-height: 18rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    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: 34px 34px;
  overflow: hidden;
}

.why-model-map__core,
.why-model-map__node,
.why-model-map__trace {
  position: absolute;
}

.why-model-map__core {
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  place-content: center;
  width: 8.4rem;
  height: 8.4rem;
  border: 1px solid rgba(103, 192, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(103, 192, 255, 0.16), transparent 62%),
    rgba(4, 10, 24, 0.8);
  transform: translate(-50%, -50%);
}

.why-model-map__core span,
.why-model-map__node strong {
  font-family: var(--font-brand);
  font-weight: 700;
  text-transform: uppercase;
}

.why-model-map__core span {
  color: var(--accent-bright);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.why-model-map__core strong {
  color: var(--text);
  font-size: 0.98rem;
  letter-spacing: 0;
  line-height: 1.05;
}

.why-model-map__node {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  min-height: 2.5rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(6, 12, 27, 0.88);
}

.why-model-map__node span {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--accent-bright);
}

.why-model-map__node strong {
  color: var(--text-soft);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}

.why-model-map__node--internet {
  left: 7%;
  top: 20%;
}

.why-model-map__node--network {
  right: 8%;
  top: 24%;
}

.why-model-map__node--power {
  left: 11%;
  bottom: 18%;
}

.why-model-map__node--support {
  right: 10%;
  bottom: 16%;
}

.why-model-map__trace {
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.08), rgba(103, 192, 255, 0.54), rgba(103, 192, 255, 0.08));
  transform-origin: left center;
}

.why-model-map__trace--one {
  left: 20%;
  top: 36%;
  width: 26%;
  transform: rotate(18deg);
}

.why-model-map__trace--two {
  right: 21%;
  top: 38%;
  width: 25%;
  transform: rotate(-16deg);
}

.why-model-map__trace--three {
  left: 24%;
  bottom: 34%;
  width: 23%;
  transform: rotate(-20deg);
}

.why-model-map__trace--four {
  right: 23%;
  bottom: 34%;
  width: 24%;
  transform: rotate(20deg);
}

.why-page__systems {
  gap: 0.9rem 1.6rem;
  padding-top: 0.1rem;
}

.why-page__systems-copy {
  gap: 0.5rem;
}

.why-page__systems-copy h2,
.why-page__cta h2 {
  max-width: 12ch;
  font-size: clamp(1.22rem, 2.1vw, 1.62rem);
  line-height: 1.04;
}

.why-page__systems-copy .section-copy {
  max-width: 24rem;
  font-size: 0.86rem;
  line-height: 1.42;
}

.why-page__systems-signals {
  gap: 0.24rem 0.4rem;
}

.why-page__systems-signals span {
  min-height: 1.44rem;
  padding: 0.18rem 0.44rem;
  font-size: 0.44rem;
  letter-spacing: 0.08em;
}

.why-page__systems-visual {
  min-height: 13.6rem;
  padding: 0.68rem;
}

.why-page__cta {
  gap: 0.7rem 1.4rem;
  padding-top: 0.62rem;
}

@media (max-width: 980px) {
  .why-page-device {
    width: min(100%, 23rem);
  }

  .why-visual {
    min-height: 13.5rem;
  }

  .why-model-map {
    min-height: 16rem;
  }

  .why-model-map__core {
    width: 7.4rem;
    height: 7.4rem;
  }

  .why-page__proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .why-page {
    gap: 0.9rem;
  }

  .why-page__hero {
    grid-template-columns: minmax(0, 1fr) clamp(6.4rem, 30vw, 7.7rem);
    padding-bottom: 0.7rem;
  }

  .why-page__hero-copy h1 {
    max-width: 10.2ch;
    font-size: clamp(0.92rem, 4.2vw, 1rem);
  }

  .why-page__hero-text {
    max-width: 12rem;
    margin-top: 0.36rem;
    font-size: 0.62rem;
    line-height: 1.36;
  }

  .why-page__hero-actions,
  .why-page__cta-actions {
    gap: 0.34rem;
    margin-top: 0.5rem;
  }

  .why-page__hero-actions .button,
  .why-page__cta-actions .button {
    min-height: 1.8rem;
    padding-inline: 0.58rem;
    font-size: 0.56rem;
  }

  .why-page-device__shell {
    padding: 0.3rem 0.32rem 0.38rem;
    border-radius: 0.9rem;
  }

  .why-page-device__camera {
    top: 0.25rem;
    width: 1.8rem;
    height: 0.18rem;
  }

  .why-visual {
    min-height: 9.8rem;
    padding: 0.34rem;
    border-radius: 0.68rem;
  }

  .why-visual__stack {
    gap: 0.2rem;
  }

  .why-visual__stack-row {
    min-height: 1.34rem;
    gap: 0.22rem;
    padding: 0.18rem 0.24rem;
    border-radius: 0.42rem;
  }

  .why-visual__stack-row span,
  .why-visual__focus span {
    font-size: 0.2rem;
  }

  .why-visual__stack-row strong {
    font-size: 0.28rem;
  }

  .why-visual__focus {
    gap: 0.12rem;
    margin-top: 0.3rem;
    padding: 0.3rem;
    border-radius: 0.48rem;
  }

  .why-visual__focus strong {
    font-size: 0.4rem;
  }

  .why-visual__footer {
    margin-top: 0.3rem;
    gap: 0.16rem;
  }

  .why-visual__footer-dot {
    width: 0.22rem;
    height: 0.22rem;
  }

  .why-visual__footer strong {
    font-size: 0.2rem;
  }

  .why-page__proof-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.28rem;
  }

  .why-page__proof-item {
    padding: 0.4rem 0;
  }

  .why-page__proof-item strong {
    font-size: 0.8rem;
  }

  .why-page__proof-item p {
    font-size: 0.52rem;
    line-height: 1.25;
  }

  .section-heading--why-clean {
    margin-bottom: 0.55rem;
  }

  .section-heading--why-clean h2,
  .why-page__systems-copy h2,
  .why-page__cta h2 {
    max-width: 12ch;
    font-size: clamp(0.84rem, 3.6vw, 0.94rem);
  }

  .section-heading--why-clean .section-copy,
  .why-page__systems-copy .section-copy {
    max-width: 16rem;
    font-size: 0.66rem;
    line-height: 1.36;
  }

  .why-model-map {
    min-height: 11.5rem;
    background-size: 22px 22px;
  }

  .why-model-map__core {
    width: 4.7rem;
    height: 4.7rem;
  }

  .why-model-map__core span {
    font-size: 0.32rem;
  }

  .why-model-map__core strong {
    font-size: 0.58rem;
  }

  .why-model-map__node {
    min-height: 1.6rem;
    gap: 0.22rem;
    padding: 0.18rem 0.38rem;
  }

  .why-model-map__node span {
    width: 0.28rem;
    height: 0.28rem;
  }

  .why-model-map__node strong {
    font-size: 0.34rem;
  }

  .why-model-map__node--internet {
    left: 2%;
    top: 18%;
  }

  .why-model-map__node--network {
    right: 2%;
    top: 20%;
  }

  .why-model-map__node--power {
    left: 4%;
    bottom: 16%;
  }

  .why-model-map__node--support {
    right: 3%;
    bottom: 14%;
  }

  .why-model-map__trace {
    opacity: 0.58;
  }

  .why-page__systems {
    gap: 0.54rem;
  }

  .why-page__systems-signals span {
    min-height: 1.32rem;
    padding: 0.16rem 0.34rem;
    font-size: 0.36rem;
  }

  .why-page__systems-visual {
    min-height: 9.6rem;
    padding: 0.58rem;
  }

  .why-page__cta {
    gap: 0.4rem;
    padding-top: 0.52rem;
  }
}

/* Dedicated Enquire page: short copy, clear intake, and the existing enquiry form. */
.section--enquire-page {
  padding-top: clamp(1.5rem, 3.8vw, 2.8rem);
}

.enquire-page {
  display: grid;
  gap: clamp(1.1rem, 2.8vw, 2rem);
}

.enquire-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.78fr);
  gap: 1rem 2.2rem;
  align-items: center;
  padding-bottom: clamp(1.1rem, 2.8vw, 1.8rem);
  border-bottom: 1px solid var(--line-soft);
}

.enquire-page__hero-copy h1 {
  max-width: 12.2ch;
  margin: 0;
  font-family: var(--font-brand);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.enquire-page__hero-text {
  max-width: 34rem;
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.2vw, 1.05rem);
  line-height: 1.64;
}

.enquire-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.enquire-page__visual {
  display: grid;
  justify-items: end;
}

.enquire-board {
  position: relative;
  overflow: hidden;
  width: min(100%, 25rem);
  min-height: 18rem;
  padding: 1rem;
  border: 1px solid rgba(103, 192, 255, 0.14);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 76% 20%, rgba(103, 192, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.006)),
    rgba(4, 10, 24, 0.82);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.enquire-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(103, 192, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 192, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.38;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
}

.enquire-board__top,
.enquire-board__path,
.enquire-board__cards,
.enquire-board__signal {
  position: relative;
  z-index: 1;
}

.enquire-board__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.1rem 0 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.enquire-board__top span {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.enquire-board__top strong {
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.enquire-board__path {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.enquire-board__path i {
  display: block;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(103, 192, 255, 0.12), rgba(103, 192, 255, 0.78));
}

.enquire-board__node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.28rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  font-family: var(--font-brand);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.enquire-board__node--active {
  border-color: rgba(103, 192, 255, 0.28);
  background: rgba(103, 192, 255, 0.1);
  color: var(--text);
}

.enquire-board__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.enquire-board__cards span {
  min-height: 3.1rem;
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.9rem;
  background:
    linear-gradient(135deg, rgba(103, 192, 255, 0.08), transparent),
    rgba(2, 6, 15, 0.72);
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.enquire-board__signal {
  display: flex;
  align-items: flex-end;
  gap: 0.38rem;
  width: fit-content;
  margin: 1.35rem 0 0 auto;
}

.enquire-board__signal span {
  width: 0.44rem;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0 rgba(103, 192, 255, 0.24);
  animation: nodePulse 2.4s ease-in-out infinite;
}

.enquire-board__signal span:nth-child(1) {
  height: 0.85rem;
}

.enquire-board__signal span:nth-child(2) {
  height: 1.35rem;
  animation-delay: 0.2s;
}

.enquire-board__signal span:nth-child(3) {
  height: 1.9rem;
  animation-delay: 0.4s;
}

.enquire-page__body {
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: 1rem 1.2rem;
  align-items: start;
}

.enquire-page__side,
.enquire-page__form-shell {
  border: 1px solid var(--line-soft);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.02);
}

.enquire-page__side {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.enquire-page__quick {
  display: grid;
  gap: 0.8rem;
}

.enquire-service-picks {
  display: grid;
  gap: 0.55rem;
}

.enquire-service-pick {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.86rem;
  background: rgba(255, 255, 255, 0.022);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.enquire-service-pick:hover,
.enquire-service-pick:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(103, 192, 255, 0.26);
  background: rgba(103, 192, 255, 0.06);
}

.enquire-service-pick span {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.3;
}

.enquire-service-pick strong {
  color: var(--text);
  font-family: var(--font-brand);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.enquire-page__note {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-soft);
}

.enquire-page__note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.58;
}

.enquire-contact-card {
  position: relative;
  display: grid;
  gap: 0.65rem;
  margin: 0;
  min-height: 16rem;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(103, 192, 255, 0.14);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 92% 10%, rgba(103, 192, 255, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(103, 192, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(2, 7, 17, 0.55);
  font-style: normal;
}

.enquire-contact-card::before {
  content: "";
  position: absolute;
  right: -2.4rem;
  bottom: -2.8rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  border-radius: 50%;
}

.enquire-contact-card__label,
.enquire-contact-card a,
.enquire-contact-card p {
  position: relative;
  z-index: 1;
}

.enquire-contact-card__label {
  color: var(--accent-bright);
  font-family: var(--font-brand);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.enquire-contact-card a,
.enquire-contact-card p {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  padding-top: 0.62rem;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.enquire-contact-card span:not(.enquire-contact-card__label) {
  color: rgba(167, 179, 208, 0.78);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.enquire-contact-card strong {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.44;
  overflow-wrap: anywhere;
}

.enquire-contact-card a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.enquire-contact-card a:hover,
.enquire-contact-card a:focus-visible {
  color: var(--accent-bright);
  transform: translateX(2px);
}

.enquire-page__form-shell {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.enquiry-form--page {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 980px) {
  .enquire-page__hero {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  }

  .enquire-page__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .enquire-service-picks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .section--enquire-page {
    padding-top: 0.95rem;
  }

  .enquire-page {
    gap: 0.82rem;
  }

  .enquire-page__hero {
    position: relative;
    grid-template-columns: minmax(0, 1fr) clamp(7.2rem, 34vw, 8.8rem);
    gap: 0.55rem;
    overflow: hidden;
    padding-bottom: 0.78rem;
  }

  .enquire-page__hero-copy {
    position: relative;
    z-index: 2;
  }

  .enquire-page__hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.08rem, 5.4vw, 1.34rem);
    line-height: 1.02;
  }

  .enquire-page__hero-text {
    max-width: 14.5rem;
    margin-top: 0.45rem;
    font-size: 0.68rem;
    line-height: 1.42;
  }

  .enquire-page__hero-actions {
    gap: 0.4rem;
    margin-top: 0.58rem;
  }

  .enquire-page__hero-actions .button {
    min-height: 1.9rem;
    padding-inline: 0.62rem;
    font-size: 0.58rem;
  }

  .enquire-board {
    width: 100%;
    min-height: 9.8rem;
    padding: 0.45rem;
    border-radius: 0.9rem;
    opacity: 0.72;
  }

  .enquire-board__top {
    padding-bottom: 0.35rem;
  }

  .enquire-board__top span,
  .enquire-board__top strong {
    font-size: 0.24rem;
  }

  .enquire-board__path {
    grid-template-columns: 1fr;
    gap: 0.24rem;
    margin-top: 0.5rem;
  }

  .enquire-board__path i {
    display: none;
  }

  .enquire-board__node {
    min-height: 1.25rem;
    padding: 0.16rem 0.28rem;
    font-size: 0.32rem;
  }

  .enquire-board__cards {
    grid-template-columns: 1fr;
    gap: 0.22rem;
    margin-top: 0.42rem;
  }

  .enquire-board__cards span {
    min-height: 1.34rem;
    padding: 0.24rem 0.3rem;
    border-radius: 0.42rem;
    font-size: 0.3rem;
  }

  .enquire-board__signal {
    gap: 0.14rem;
    margin-top: 0.48rem;
  }

  .enquire-board__signal span {
    width: 0.18rem;
  }

  .enquire-board__signal span:nth-child(1) {
    height: 0.44rem;
  }

  .enquire-board__signal span:nth-child(2) {
    height: 0.72rem;
  }

  .enquire-board__signal span:nth-child(3) {
    height: 0.98rem;
  }

  .enquire-page__side,
  .enquire-page__form-shell {
    border-radius: 0.9rem;
  }

  .enquire-page__side {
    gap: 0.62rem;
    padding: 0.7rem;
  }

  .enquire-service-picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.42rem;
  }

  .enquire-service-pick {
    grid-template-columns: 1.35rem minmax(0, 1fr);
    min-height: 2.55rem;
    gap: 0.42rem;
    padding: 0.46rem 0.5rem;
    border-radius: 0.68rem;
  }

  .enquire-service-pick span {
    font-size: 0.48rem;
  }

  .enquire-service-pick strong {
    font-size: 0.62rem;
  }

  .enquire-page__note {
    padding-top: 0.58rem;
  }

  .enquire-page__note p {
    font-size: 0.68rem;
    line-height: 1.42;
  }

  .enquire-contact-card {
    min-height: auto;
    gap: 0.48rem;
    padding: 0.7rem;
    border-radius: 0.78rem;
  }

  .enquire-contact-card__label {
    font-size: 0.5rem;
  }

  .enquire-contact-card a,
  .enquire-contact-card p {
    gap: 0.1rem;
    padding-top: 0.44rem;
  }

  .enquire-contact-card span:not(.enquire-contact-card__label) {
    font-size: 0.5rem;
  }

  .enquire-contact-card strong {
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .enquire-page__form-shell {
    gap: 0.72rem;
    padding: 0.72rem;
  }

  .enquire-page__form-shell .enquiry-copy h2 {
    max-width: 12ch;
    font-size: clamp(0.94rem, 4.2vw, 1.06rem);
  }

  .enquire-page__form-shell .enquiry-copy .section-copy {
    margin-top: 0.42rem;
    font-size: 0.68rem;
    line-height: 1.42;
  }
}

/* Front-end cleanup pass: lighter sections, shorter copy rhythm, and less document-like density. */
.section {
  padding-block: clamp(2.15rem, 4.2vw, 3.35rem);
}

.section-heading {
  gap: 0.8rem 2rem;
  margin-bottom: 1.05rem;
}

.section-copy,
.hero__lede,
.services-page__hero-text,
.tech-lines-hero__copy,
.why-page__hero-text,
.enquire-page__hero-text {
  color: rgba(167, 179, 208, 0.86);
  line-height: 1.52;
}

.service-entry {
  padding: 0.92rem 0;
}

.service-entry__body p {
  max-width: 29rem;
  font-size: 0.94rem;
  line-height: 1.55;
}

.why-shell,
.tech-lines,
.tech-lines-page,
.services-page,
.enquire-page {
  gap: clamp(0.85rem, 2vw, 1.45rem);
}

.why-proofline {
  padding-bottom: 0.65rem;
}

.why-grid {
  gap: 0.8rem 1rem;
}

.why-pillar p,
.why-footer p {
  font-size: 0.86rem;
  line-height: 1.55;
}

.service-showcase {
  padding-block: clamp(1.15rem, 3vw, 2.05rem);
}

.service-showcase__summary {
  max-width: 30rem;
}

.service-showcase__description,
.service-showcase__deliverables li {
  line-height: 1.5;
}

.services-page__workflow {
  padding-top: 0.3rem;
}

.services-workflow {
  gap: 0.75rem;
}

.services-workflow__step p {
  font-size: 0.86rem;
  line-height: 1.48;
}

.services-page__cta,
.technology-cta,
.why-page__cta {
  padding-block: 0.85rem 0;
}

.services-page__cta h2,
.why-page__cta h2 {
  max-width: 10ch;
}

.technology-cta p {
  max-width: 24rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.tech-line {
  gap: 0.62rem;
}

.tech-line + .tech-line {
  padding-top: 0.9rem;
}

.tech-line__heading {
  gap: 0.45rem 1.25rem;
}

.tech-line__heading .section-copy {
  max-width: 24rem;
  font-size: 0.84rem;
  line-height: 1.48;
}

.tech-line-card__label {
  font-size: 0.66rem;
  line-height: 1.32;
}

.site-footer__summary {
  max-width: 16rem;
  font-size: 0.78rem;
  line-height: 1.48;
}

@media (max-width: 760px) {
  .section {
    padding-block: 1.55rem;
  }

  .section-heading {
    gap: 0.44rem;
    margin-bottom: 0.75rem;
  }

  .section-copy,
  .hero__lede,
  .services-page__hero-text,
  .tech-lines-hero__copy,
  .why-page__hero-text,
  .enquire-page__hero-text {
    line-height: 1.4;
  }

  .service-showcase {
    padding-block: 0.92rem;
  }

  .services-page__cta,
  .technology-cta,
  .why-page__cta {
    padding-top: 0.58rem;
  }
}

@media (max-width: 1080px) and (min-width: 761px) {
  .tech-line--network .tech-line__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .tech-line__grid,
  .tech-line--network .tech-line__grid,
  .tech-line--development .tech-line__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .tech-line-card__media {
    min-height: 7.8rem;
    padding: 0.58rem;
  }

  .tech-line-card__media img {
    max-height: 6.3rem;
  }

  .tech-line-card__body {
    min-height: 4.8rem;
    padding: 0.62rem 0.62rem 0.12rem;
  }

  .tech-line-card__label {
    font-size: 0.48rem;
    line-height: 1.28;
  }

  .tech-line-card__header h3 {
    font-size: 0.68rem;
    line-height: 1.14;
  }

  .tech-line-card__trigger {
    margin: 0 0.62rem 0.68rem;
  }

  .tech-line-card__trigger-text {
    font-size: 0.56rem;
  }
}

.tech-line--solar .tech-line__grid--single {
  grid-template-columns: minmax(0, min(100%, 28rem));
  justify-content: start;
}

.tech-line--solar .tech-line-card {
  position: relative;
  overflow: hidden;
  min-height: 21rem;
  border-color: rgba(103, 192, 255, 0.12);
  background:
    radial-gradient(circle at 82% 16%, rgba(103, 192, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01)),
    rgba(4, 10, 24, 0.72);
}

.tech-line--solar .tech-line-card::after {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3.5rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(103, 192, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.tech-line--solar .tech-line-card__media--placeholder {
  position: relative;
  overflow: hidden;
  min-height: 12rem;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 213, 128, 0.22), transparent 14%),
    linear-gradient(rgba(103, 192, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 192, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(8, 18, 37, 0.98), rgba(4, 10, 24, 0.96));
  background-size: auto, 28px 28px, 28px 28px, auto;
}

.tech-line--solar .tech-line-card__media--placeholder::before {
  content: "";
  position: absolute;
  left: 2.4rem;
  bottom: 2.35rem;
  width: 11.2rem;
  height: 4.7rem;
  border: 1px solid rgba(103, 192, 255, 0.28);
  border-radius: 0.55rem;
  background:
    linear-gradient(90deg, transparent 32%, rgba(103, 192, 255, 0.2) 32% 34%, transparent 34% 66%, rgba(103, 192, 255, 0.2) 66% 68%, transparent 68%),
    linear-gradient(rgba(103, 192, 255, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, rgba(103, 192, 255, 0.22), rgba(36, 144, 234, 0.06));
  background-size: auto, 100% 1.15rem, auto;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-8deg);
}

.tech-line--solar .tech-line-card__media--placeholder::after {
  content: "";
  position: absolute;
  left: 7.6rem;
  bottom: 1.4rem;
  width: 3rem;
  height: 0.46rem;
  border-radius: 999px;
  background: rgba(103, 192, 255, 0.26);
  filter: blur(0.5px);
  transform: rotate(-8deg);
}

.tech-line--solar .tech-line-card__media--placeholder span {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(2, 7, 17, 0.66);
  color: var(--text-soft);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tech-line--solar .tech-line-card__body {
  min-height: auto;
  padding-top: 0.78rem;
}

.tech-line--solar .tech-line-card__header h3 {
  max-width: 18rem;
}

@media (max-width: 760px) {
  .tech-line--solar .tech-line__grid--single {
    grid-template-columns: minmax(0, 1fr);
  }

  .tech-line--solar .tech-line-card {
    min-height: 18rem;
  }

  .tech-line--solar .tech-line-card__media--placeholder {
    min-height: 10.4rem;
  }

  .tech-line--solar .tech-line-card__media--placeholder::before {
    left: 1.55rem;
    bottom: 2rem;
    width: 9.6rem;
    height: 4rem;
  }
}

@media (max-width: 360px) {
  .tech-line__grid,
  .tech-line--network .tech-line__grid,
  .tech-line--development .tech-line__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding-bottom: 0.75rem;
    background:
      radial-gradient(circle at 18% 0%, rgba(103, 192, 255, 0.08), transparent 34%),
      rgba(2, 5, 13, 0.55);
  }

  .site-footer__inner {
    display: grid;
    gap: 0.82rem;
    padding: 0.95rem 1rem 0;
  }

  .site-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    padding-bottom: 0.78rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .site-footer__brand img {
    width: min(72vw, 300px);
  }

  .site-footer__summary {
    max-width: 21rem;
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .site-footer__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
    width: 100%;
  }

  .footer-link-group {
    gap: 0.18rem;
    min-height: 100%;
    padding: 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 0.78rem;
    background: rgba(255, 255, 255, 0.018);
  }

  .footer-link-group h2 {
    margin: 0 0 0.1rem;
    color: var(--accent-bright);
    font-size: 0.48rem;
    letter-spacing: 0.15em;
  }

  .footer-link-group a,
  .footer-link-group__meta {
    font-size: 0.62rem;
    line-height: 1.34;
  }

  .footer-link-group__meta--address {
    max-width: none;
  }

  .site-footer__bottom {
    display: grid;
    gap: 0.18rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line-soft);
    font-size: 0.58rem;
    line-height: 1.38;
  }
}

/* Final typography pass: force a lighter, smaller headline scale after older page rules. */
.hero h1,
.section-heading h1,
.section-heading h2,
.services-page__hero-copy h1,
.tech-lines-hero__content h1,
.enquire-page__hero-copy h1,
.tech-page__intro h1,
.tech-gallery__heading h2,
.tech-stack__heading h2,
.tech-line__heading h2,
.services-page__cta h2,
.why-page__cta h2,
.technology-cta h2,
.enquiry-copy h2 {
  font-weight: 400 !important;
  letter-spacing: -0.018em !important;
  line-height: 1.18 !important;
}

.hero h1 {
  max-width: 14.5ch !important;
  font-size: clamp(1.45rem, 2.35vw, 2.08rem) !important;
}

.services-page__hero-copy h1,
.tech-lines-hero__content h1,
.enquire-page__hero-copy h1,
.tech-page__intro h1 {
  max-width: 14ch !important;
  font-size: clamp(1.45rem, 2.35vw, 2.08rem) !important;
}

.section-heading h1,
.section-heading h2,
.tech-line__heading h2,
.services-page__cta h2,
.why-page__cta h2,
.technology-cta h2,
.enquiry-copy h2 {
  max-width: 16ch !important;
  font-size: clamp(1.08rem, 1.8vw, 1.55rem) !important;
}

.service-entry__title-block h3,
.why-pillar h3,
.services-workflow__step h3,
.tech-line-card__header h3,
.service-detail__content h2,
.why-model-card h3,
.enquire-service-pick strong {
  font-weight: 400 !important;
  letter-spacing: -0.012em !important;
  line-height: 1.28 !important;
}

@media (max-width: 760px) {
  .hero h1,
  .services-page__hero-copy h1,
  .tech-lines-hero__content h1,
  .enquire-page__hero-copy h1,
  .tech-page__intro h1 {
    max-width: 15ch !important;
    font-size: clamp(1.08rem, 5.4vw, 1.48rem) !important;
    line-height: 1.22 !important;
    letter-spacing: -0.012em !important;
  }

  .section-heading h1,
  .section-heading h2,
  .tech-line__heading h2,
  .services-page__cta h2,
  .why-page__cta h2,
  .technology-cta h2,
  .enquiry-copy h2 {
    max-width: 17ch !important;
    font-size: clamp(0.92rem, 4vw, 1.12rem) !important;
    line-height: 1.24 !important;
    letter-spacing: -0.008em !important;
  }

  .service-entry__title-block h3,
  .why-pillar h3,
  .services-workflow__step h3,
  .tech-line-card__header h3,
  .service-detail__content h2,
  .why-model-card h3,
  .enquire-service-pick strong {
    font-size: clamp(0.72rem, 3.2vw, 0.88rem) !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
  }
}

/* Final hero alignment pass: keep desktop hero copy aligned with the top of the device/tablet. */
@media (min-width: 761px) {
  .hero__inner,
  .services-page__hero {
    align-items: start !important;
  }

  .hero__content,
  .hero__mark,
  .services-page__hero-copy,
  .services-page__hero-visual {
    align-self: start !important;
  }
}

/* Final footer pass: separate the pre-footer CTA from the actual footer surface. */
.why-footer {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 1rem 1.4rem !important;
  margin-top: 1.35rem !important;
  padding: 1.2rem 1.3rem !important;
  border: 1px solid rgba(103, 192, 255, 0.12) !important;
  border-radius: 1.25rem !important;
  background:
    linear-gradient(135deg, rgba(103, 192, 255, 0.08), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(5, 10, 22, 0.9) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 16px 42px rgba(0, 0, 0, 0.18) !important;
}

.why-footer__copy {
  display: grid;
  gap: 0.34rem;
}

.why-footer__eyebrow {
  margin: 0;
  color: var(--accent-bright);
  font-size: 0.66rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.why-footer h3 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-brand);
  font-size: clamp(0.96rem, 1.3vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.why-footer p {
  max-width: 31rem;
  margin: 0;
  color: rgba(167, 179, 208, 0.86);
  font-size: 0.92rem;
  line-height: 1.58;
}

.why-footer__action {
  display: grid;
  justify-items: end;
  gap: 0.42rem;
}

.why-footer__action .button {
  min-height: 2.5rem;
  padding-inline: 1rem;
  white-space: nowrap;
}

.why-footer__note {
  color: rgba(167, 179, 208, 0.66);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer {
  width: 100%;
  margin-top: clamp(1.8rem, 3vw, 2.8rem) !important;
  padding: clamp(1.35rem, 2.7vw, 1.9rem) 0 1.25rem !important;
  border-top: 1px solid rgba(103, 192, 255, 0.1) !important;
  background:
    linear-gradient(180deg, rgba(3, 7, 15, 0) 0%, rgba(3, 7, 15, 0.8) 14%, rgba(2, 5, 12, 0.96) 34%, rgba(1, 3, 9, 1) 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.site-footer__inner {
  padding: 0 1.25rem 0 !important;
  border-top: 0 !important;
  gap: 1.4rem 2rem !important;
}

@media (max-width: 760px) {
  .why-footer {
    grid-template-columns: 1fr !important;
    align-items: start !important;
    gap: 0.72rem !important;
    margin-top: 1rem !important;
    padding: 0.9rem 0.92rem !important;
  }

  .why-footer h3 {
    font-size: 0.82rem;
    line-height: 1.18;
  }

  .why-footer p {
    max-width: none;
    font-size: 0.74rem;
    line-height: 1.46;
  }

  .why-footer__action {
    justify-items: start;
  }

  .why-footer__action .button {
    min-height: 2rem;
    padding-inline: 0.72rem;
    font-size: 0.58rem;
  }

  .why-footer__note {
    font-size: 0.5rem;
  }

  .site-footer {
    margin-top: 1.2rem !important;
    padding: 0.95rem 0 0.78rem !important;
    background:
      linear-gradient(180deg, rgba(3, 7, 15, 0) 0%, rgba(3, 7, 15, 0.86) 12%, rgba(2, 4, 10, 0.98) 34%, rgba(1, 3, 8, 1) 100%) !important;
  }
}

/* Final visual separation pass: make the why-model panel read clearly against the page body. */
.why-model-map {
  border: 1px solid rgba(103, 192, 255, 0.12) !important;
  border-radius: 1.4rem !important;
  background:
    radial-gradient(circle at 50% 52%, rgba(103, 192, 255, 0.08), transparent 28%),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(12, 22, 42, 0.94), rgba(4, 10, 23, 0.98)) !important;
  background-size:
    auto,
    34px 34px,
    34px 34px,
    auto !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 18px 42px rgba(0, 0, 0, 0.18) !important;
}

@media (max-width: 760px) {
  .why-model-map {
    border-radius: 1rem !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.03),
      0 12px 28px rgba(0, 0, 0, 0.14) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
