:root {
  --bg: #ffffff;
  --bg-soft: #f5f9fd;
  --ink: #0b1724;
  --muted: #536274;
  --line: #dbe7f2;
  --blue: #0879ff;
  --blue-deep: #045bd6;
  --green: #35c759;
  --dark: #07131f;
  --shadow: 0 24px 70px rgba(7, 35, 64, 0.12);
  --mx: 50vw;
  --my: 40vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.74), #ffffff 24rem),
    #ffffff;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    34rem 34rem at var(--mx) var(--my),
    rgba(8, 121, 255, 0.09),
    transparent 62%
  );
  opacity: 0.8;
  transition: opacity 240ms ease;
}

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

.motion-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.58;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(10rem, 1fr) auto minmax(10rem, 1fr);
  align-items: center;
  gap: 2rem;
  width: 100%;
  min-height: 5.2rem;
  padding: 0 6.6vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 242, 0.86);
  box-shadow: 0 10px 30px rgba(20, 46, 74, 0.06);
  backdrop-filter: blur(18px);
}

main,
.footer {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.7rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 2rem;
  height: 2rem;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  bottom: 0.05rem;
  width: 0.46rem;
  height: 1.95rem;
  border-radius: 0.16rem;
  transform-origin: bottom;
}

.brand-mark::before {
  left: 0.42rem;
  background: linear-gradient(180deg, #0a7dff, #075fd7);
  transform: skewX(-28deg);
}

.brand-mark::after {
  right: 0.42rem;
  height: 1.42rem;
  background: linear-gradient(180deg, #35c759, #159c45);
  transform: skewX(28deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3.2rem);
  font-size: 0.96rem;
  font-weight: 700;
}

.nav a {
  color: #132335;
  transition: color 180ms ease;
}

.nav a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border-radius: 0.35rem;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.header-cta {
  justify-self: end;
  padding: 0 1.65rem;
  color: #ffffff;
  background: linear-gradient(180deg, #0b84ff, #076ee8);
  box-shadow: 0 12px 26px rgba(8, 121, 255, 0.22);
}

.button {
  width: max-content;
  padding: 0 2rem;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.header-cta:focus-visible,
.nav a:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(8, 121, 255, 0.28);
  outline-offset: 4px;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #0b84ff, #076ee8);
  box-shadow: 0 16px 32px rgba(8, 121, 255, 0.25);
}

.button-secondary {
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(8, 121, 255, 0.48);
}

.button-secondary:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 28px rgba(8, 121, 255, 0.1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(19rem, 0.86fr) minmax(26rem, 1.14fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  min-height: min(46rem, calc(88vh - 5.2rem));
  padding: clamp(4rem, 7vw, 7rem) 6.6vw clamp(4rem, 7vw, 6.4rem);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(8, 121, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 121, 255, 0.07) 1px, transparent 1px);
  background-position: top right;
  background-size: 4.6rem 4.6rem;
  mask-image: linear-gradient(130deg, transparent 0 24%, #000 44%, transparent 78%);
}

.hero::after {
  position: absolute;
  right: -14rem;
  top: 9rem;
  z-index: -1;
  width: 38rem;
  height: 38rem;
  content: "";
  background: radial-gradient(circle, rgba(8, 121, 255, 0.14), transparent 64%);
}

.hero-copy {
  max-width: 43rem;
}

.hero h1 {
  max-width: 40rem;
  margin: 0;
  font-size: clamp(3.3rem, 6vw, 5.65rem);
  font-weight: 850;
  line-height: 0.99;
  letter-spacing: 0;
}

.motion-ready .hero-copy,
.motion-ready .hero-visual,
.motion-ready .section-heading,
.motion-ready .service-item,
.motion-ready .step,
.motion-ready .trust-media,
.motion-ready .trust-copy,
.motion-ready .contact-copy,
.motion-ready .contact-points {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.service-item:nth-child(2),
.step:nth-child(2),
.proof-grid div:nth-child(2) {
  transition-delay: 90ms;
}

.service-item:nth-child(3),
.step:nth-child(3),
.proof-grid div:nth-child(3) {
  transition-delay: 160ms;
}

.service-item:nth-child(4),
.proof-grid div:nth-child(4) {
  transition-delay: 230ms;
}

.hero p {
  max-width: 35.5rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.35rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30rem;
}

.hero-visual img {
  width: min(58vw, 52rem);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(10, 76, 132, 0.14));
  animation: heroFloat 7s ease-in-out infinite;
  transform-origin: 50% 62%;
}

.section {
  padding: clamp(4.5rem, 8vw, 7.2rem) 6.6vw;
}

.section-heading {
  max-width: 54rem;
  margin: 0 auto clamp(3rem, 5vw, 4rem);
  text-align: center;
}

.section-heading h2,
.trust-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.25rem);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading h2::after,
.contact h2::after {
  display: block;
  width: 3.2rem;
  height: 0.18rem;
  margin: 1rem auto 0;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.section-heading p,
.trust-copy > p,
.contact-copy > p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 78rem;
  margin: 0 auto;
}

.service-item {
  position: relative;
  min-height: 18.5rem;
  padding: 0 2.25rem 0 0;
  border-right: 1px solid var(--line);
}

.service-item::after {
  position: absolute;
  top: -0.5rem;
  right: 0;
  bottom: 1.2rem;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(8, 121, 255, 0.52), transparent);
  opacity: 0;
  transform: translateY(-30%);
  transition:
    opacity 260ms ease,
    transform 620ms ease;
}

.service-item:hover::after {
  opacity: 1;
  transform: translateY(30%);
}

.service-item + .service-item {
  padding-left: 2.25rem;
}

.service-item:last-child {
  border-right: 0;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 3.8rem;
  height: 3.8rem;
  color: var(--blue);
  margin-bottom: 1.6rem;
}

.service-icon svg {
  width: 3.7rem;
  height: 3.7rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-item:hover .service-icon svg {
  animation: iconPulse 900ms ease;
}

.service-icon-green {
  color: var(--green);
}

.service-item h3,
.step h3 {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 850;
  line-height: 1.25;
}

.service-item p,
.step p {
  margin: 1.05rem 0 0;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.72;
}

.approach {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(8, 121, 255, 0.05)),
    var(--bg-soft);
  overflow: hidden;
}

.approach::after {
  position: absolute;
  right: 3vw;
  top: 4rem;
  width: 26rem;
  height: 26rem;
  content: "";
  background-image:
    radial-gradient(circle, rgba(8, 121, 255, 0.18) 1.5px, transparent 2px),
    radial-gradient(circle, rgba(53, 199, 89, 0.18) 1.5px, transparent 2px);
  background-position:
    0 0,
    2rem 2rem;
  background-size: 4rem 4rem;
  mask-image: radial-gradient(circle, #000 10%, transparent 67%);
}

.timeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 75rem;
  margin: 0 auto;
  gap: clamp(2rem, 5vw, 6rem);
}

.timeline::before {
  position: absolute;
  top: 2.25rem;
  right: 13%;
  left: 13%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, #aebfd0 12%, #aebfd0 88%, transparent);
}

.step {
  position: relative;
  text-align: center;
}

.step span {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 2.2rem;
  color: var(--blue);
  background: var(--bg-soft);
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  font-size: 1.08rem;
  font-weight: 850;
}

.step:nth-child(2) span {
  color: #20a44b;
  border-color: var(--green);
}

.trust {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
  max-width: 86rem;
  margin: 0 auto;
}

.trust-media {
  min-height: 24rem;
  padding: 1.2rem;
  background:
    radial-gradient(circle at 25% 12%, rgba(8, 121, 255, 0.24), transparent 34%),
    linear-gradient(135deg, #081827, #0d2944);
  box-shadow: var(--shadow);
  border-radius: 0.5rem;
}

.operations-panel {
  position: relative;
  height: 100%;
  min-height: 21.5rem;
  overflow: hidden;
  border: 1px solid rgba(80, 164, 255, 0.32);
  border-radius: 0.4rem;
  background:
    radial-gradient(circle at 24% 28%, rgba(53, 199, 89, 0.16), transparent 24%),
    linear-gradient(rgba(77, 170, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 170, 255, 0.1) 1px, transparent 1px),
    #081827;
  background-size:
    auto,
    2.2rem 2.2rem,
    2.2rem 2.2rem,
    auto;
}

.operations-panel::before {
  position: absolute;
  inset: -30% -20%;
  content: "";
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(92, 190, 255, 0.14) 48%,
    rgba(53, 199, 89, 0.16) 51%,
    transparent 60%
  );
  animation: panelScan 5.8s linear infinite;
}

.ops-head {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.55rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(80, 164, 255, 0.22);
  background: rgba(2, 13, 25, 0.46);
}

.ops-head span {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 50%;
  background: #2f8fff;
  box-shadow: 0 0 16px rgba(47, 143, 255, 0.55);
}

.ops-head span:nth-child(2) {
  background: #35c759;
  box-shadow: 0 0 16px rgba(53, 199, 89, 0.48);
}

.ops-head span:nth-child(3) {
  background: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

.ops-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1rem;
  min-height: 18.5rem;
  padding: 1.2rem;
}

.signal-map {
  position: relative;
  grid-row: span 2;
  min-height: 17rem;
  border: 1px solid rgba(80, 164, 255, 0.22);
  border-radius: 0.35rem;
  background:
    radial-gradient(circle at 50% 50%, rgba(8, 121, 255, 0.18), transparent 26%),
    rgba(3, 17, 31, 0.36);
}

.signal-map::before,
.signal-map::after {
  position: absolute;
  inset: 18%;
  content: "";
  border: 1px solid rgba(80, 164, 255, 0.2);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}

.signal-map::after {
  inset: 30%;
  border-color: rgba(53, 199, 89, 0.22);
  animation-duration: 8s;
  animation-direction: reverse;
}

.node,
.beam {
  position: absolute;
  display: block;
}

.node {
  width: 0.84rem;
  height: 0.84rem;
  border-radius: 50%;
  background: #38d86b;
  box-shadow: 0 0 0 0.38rem rgba(53, 199, 89, 0.11), 0 0 26px rgba(53, 199, 89, 0.72);
  animation: nodePulse 2.8s ease-in-out infinite;
}

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

.node-b {
  top: 46%;
  right: 20%;
  animation-delay: 500ms;
}

.node-c {
  bottom: 22%;
  left: 42%;
  background: #2f8fff;
  box-shadow: 0 0 0 0.38rem rgba(47, 143, 255, 0.12), 0 0 26px rgba(47, 143, 255, 0.76);
  animation-delay: 1000ms;
}

.node-d {
  right: 36%;
  bottom: 42%;
  width: 1.15rem;
  height: 1.15rem;
  background: #ffffff;
  box-shadow: 0 0 38px rgba(92, 190, 255, 0.9);
  animation-delay: 1400ms;
}

.beam {
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, transparent, rgba(92, 190, 255, 0.9), transparent);
  animation: beamFlow 2.7s ease-in-out infinite;
}

.beam-a {
  top: 28%;
  left: 30%;
  width: 42%;
  transform: rotate(18deg);
}

.beam-b {
  top: 51%;
  left: 43%;
  width: 32%;
  transform: rotate(-23deg);
  animation-delay: 540ms;
}

.beam-c {
  bottom: 30%;
  left: 36%;
  width: 44%;
  transform: rotate(12deg);
  animation-delay: 1080ms;
}

.telemetry-stack {
  display: grid;
  align-content: start;
  gap: 0.92rem;
}

.telemetry-stack span {
  position: relative;
  height: 0.72rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(80, 164, 255, 0.12);
}

.telemetry-stack span::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, #0879ff, #54d774);
  animation: telemetry 3.4s ease-in-out infinite;
}

.pulse-grid {
  display: grid;
  grid-column: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-self: end;
}

.pulse-grid span {
  min-height: 3.05rem;
  border: 1px solid rgba(80, 164, 255, 0.24);
  border-radius: 0.35rem;
  background:
    linear-gradient(180deg, rgba(11, 132, 255, 0.2), rgba(4, 91, 214, 0.04)),
    rgba(3, 17, 31, 0.42);
  animation: tileGlow 4.5s ease-in-out infinite;
}

.pulse-grid span:nth-child(2n) {
  animation-delay: 700ms;
}

.pulse-grid span:nth-child(3n) {
  animation-delay: 1300ms;
}

.trust-copy {
  max-width: 47rem;
}

.trust-copy h2 {
  max-width: 38rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2.2rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.proof-grid div {
  min-height: 8.4rem;
  padding: 1.45rem 1.6rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.proof-grid div:hover {
  background: rgba(245, 249, 253, 0.72);
  box-shadow: 0 18px 42px rgba(7, 35, 64, 0.08);
  transform: translateY(-2px);
}

.proof-grid strong {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
}

.proof-grid div:nth-child(even) strong {
  color: var(--green);
}

.proof-grid span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(18rem, 0.88fr) minmax(20rem, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(4.3rem, 7vw, 6.6rem) 6.6vw;
  color: #ffffff;
  background:
    radial-gradient(circle at 80% 38%, rgba(8, 121, 255, 0.22), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(53, 199, 89, 0.18), transparent 26%),
    #07131f;
  overflow: hidden;
}

.contact::after {
  position: absolute;
  inset: 0 0 0 42%;
  content: "";
  background-image:
    linear-gradient(115deg, transparent 0 24%, rgba(8, 121, 255, 0.23) 24.2%, transparent 24.6%),
    linear-gradient(155deg, transparent 0 32%, rgba(53, 199, 89, 0.22) 32.2%, transparent 32.5%),
    radial-gradient(circle, rgba(8, 121, 255, 0.55) 1.8px, transparent 2px);
  background-size:
    15rem 12rem,
    16rem 12rem,
    4rem 4rem;
  opacity: 0.8;
}

.contact-copy,
.contact-points {
  position: relative;
  z-index: 1;
}

.contact h2::after {
  margin-left: 0;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-list a {
  width: max-content;
  transition: color 180ms ease;
}

.contact-list a:hover {
  color: #69b6ff;
}

.contact-points {
  display: grid;
  gap: 1.35rem;
  padding-left: clamp(1.8rem, 4vw, 4rem);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-points p {
  position: relative;
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 650;
  line-height: 1.65;
}

.contact-points p::before {
  position: absolute;
  left: -2.1rem;
  top: 0.25rem;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0.38rem rgba(53, 199, 89, 0.12);
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -14px, 0) rotate(0.4deg);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.08);
  }
}

@keyframes panelScan {
  from {
    transform: translateX(-30%) translateY(-10%);
  }
  to {
    transform: translateX(30%) translateY(10%);
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes nodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.78;
  }
  50% {
    transform: scale(1.28);
    opacity: 1;
  }
}

@keyframes beamFlow {
  0%,
  100% {
    opacity: 0.18;
    filter: blur(0);
  }
  50% {
    opacity: 1;
    filter: blur(0.4px);
  }
}

@keyframes telemetry {
  0%,
  100% {
    transform: translateX(-8%);
  }
  50% {
    transform: translateX(4%);
  }
}

@keyframes tileGlow {
  0%,
  100% {
    border-color: rgba(80, 164, 255, 0.2);
    box-shadow: none;
  }
  50% {
    border-color: rgba(53, 199, 89, 0.38);
    box-shadow: 0 0 22px rgba(53, 199, 89, 0.12) inset;
  }
}

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

  .motion-canvas {
    display: none;
  }
}

.footer {
  padding: 1.1rem 6.6vw 1.4rem;
  color: rgba(255, 255, 255, 0.64);
  background: #07131f;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

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

  .hero-copy {
    max-width: 47rem;
  }

  .hero-visual {
    min-height: auto;
    justify-content: flex-start;
  }

  .hero-visual img {
    width: min(100%, 47rem);
  }

  .service-grid,
  .timeline,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid {
    gap: 2rem 0;
  }

  .service-item,
  .service-item + .service-item {
    min-height: 0;
    padding: 0 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .timeline::before {
    display: none;
  }

  .contact-points {
    padding-left: 2rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 4.5rem;
    padding: 0 1.15rem;
  }

  .brand {
    font-size: 1.05rem;
  }

  .brand-mark {
    width: 1.65rem;
    height: 1.65rem;
  }

  .header-cta {
    min-height: 2.55rem;
    padding: 0 0.95rem;
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .contact {
    padding-right: 1.15rem;
    padding-left: 1.15rem;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 3.5rem);
  }

  .hero p {
    margin-top: 1.4rem;
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    gap: 0.8rem;
  }

  .hero-visual img {
    width: 116%;
    max-width: none;
    margin-left: -9%;
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2::after {
    margin-left: 0;
  }

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

  .trust-media {
    min-height: 18rem;
  }

  .operations-panel {
    min-height: 15rem;
  }

  .ops-body {
    grid-template-columns: 1fr;
  }

  .signal-map {
    grid-row: auto;
    min-height: 12rem;
  }

  .pulse-grid {
    grid-column: auto;
  }

  .contact-list a {
    overflow-wrap: anywhere;
  }
}
