:root {
  --bg: #050711;
  --bg-soft: #090d1c;
  --text: #f6f8ff;
  --muted: #aeb8d6;
  --line: rgba(175, 209, 255, 0.16);
  --glass: rgba(13, 20, 42, 0.68);
  --glass-strong: rgba(18, 29, 60, 0.76);
  --cyan: #3de8ff;
  --blue: #5f8cff;
  --purple: #a855f7;
  --violet: #6d5dfc;
  --green: #71f0c8;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(61, 232, 255, 0.18), transparent 32rem),
    radial-gradient(circle at 88% 12%, rgba(168, 85, 247, 0.16), transparent 34rem),
    linear-gradient(180deg, #050711 0%, #071024 48%, #050711 100%);
}

.grid-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 78%);
  opacity: 0.42;
}

.ambient {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.3;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

.ambient-one {
  top: 14%;
  left: -10rem;
  background: rgba(61, 232, 255, 0.36);
}

.ambient-two {
  right: -12rem;
  bottom: 12%;
  background: rgba(109, 93, 252, 0.42);
  animation-delay: -6s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px clamp(18px, 4vw, 54px);
  backdrop-filter: blur(18px);
  transition: background 200ms ease;
}

.site-header.scrolled {
  background: rgba(5, 7, 17, 0.48);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(5, 8, 18, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
}

.brand-logo {
  display: block;
  width: 118px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 0 20px rgba(61, 232, 255, 0.12));
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-menu a {
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 200ms ease, background 200ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.nav-cta,
.button.primary {
  color: #06101f;
  background: linear-gradient(135deg, #72f4ff, #72a1ff 48%, #c084fc);
  box-shadow: 0 16px 44px rgba(95, 140, 255, 0.28);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

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

.button.secondary:hover {
  border-color: rgba(61, 232, 255, 0.42);
  box-shadow: 0 14px 34px rgba(61, 232, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.section {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 112px clamp(18px, 4vw, 34px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: clamp(36px, 6vw, 84px);
  min-height: calc(100vh - 98px);
  padding-top: 46px;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(2.85rem, 4.8vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-subtitle,
.section-heading p:last-child,
.glass-panel p,
.contact-card p {
  color: var(--muted);
}

.hero-subtitle {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-points span,
.about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(175, 209, 255, 0.16);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 35%),
    rgba(9, 14, 31, 0.58);
  box-shadow: var(--shadow), inset 0 0 80px rgba(61, 232, 255, 0.07);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.38;
}

.workflow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.workflow-lines path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: dash 15s linear infinite;
}

.workflow-lines path:nth-child(1) {
  stroke: rgba(61, 232, 255, 0.68);
}

.workflow-lines path:nth-child(2) {
  stroke: rgba(95, 140, 255, 0.62);
  animation-duration: 18s;
}

.workflow-lines path:nth-child(3) {
  stroke: rgba(168, 85, 247, 0.58);
  animation-duration: 20s;
}

.workflow-lines path:nth-child(4) {
  stroke: rgba(113, 240, 200, 0.48);
  animation-duration: 17s;
}

.workflow-orbit {
  position: absolute;
  inset: 52px;
  border: 1px solid rgba(61, 232, 255, 0.16);
  border-radius: 999px;
  transform: rotate(-12deg);
  animation: breathe 5s ease-in-out infinite;
}

.workflow-card {
  position: absolute;
  z-index: 4;
  width: min(220px, 44%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(10, 18, 40, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25);
  animation: float 6s ease-in-out infinite;
}

.workflow-card strong,
.workflow-card small,
.workflow-card span {
  display: block;
}

.workflow-card strong {
  font-size: 1.42rem;
}

.workflow-card small {
  color: var(--muted);
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-intake {
  top: 86px;
  left: 56px;
}

.card-ai {
  top: 216px;
  right: 46px;
  animation-delay: -1.8s;
}

.card-action {
  left: 90px;
  bottom: 80px;
  animation-delay: -3.4s;
}

.pulse-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 154px;
  height: 154px;
  border: 1px solid rgba(61, 232, 255, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(61, 232, 255, 0.28), transparent 62%),
    rgba(12, 19, 42, 0.8);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 70px rgba(61, 232, 255, 0.28);
}

.pulse-core span {
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(61, 232, 255, 0.22);
  border-radius: inherit;
  animation: pulse 2.8s ease-out infinite;
}

.pulse-core strong {
  max-width: 88px;
  text-align: center;
  font-size: 1.15rem;
  line-height: 1.1;
}

.node {
  position: absolute;
  z-index: 5;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 24px var(--cyan);
}

.node-a {
  top: 118px;
  right: 130px;
}

.node-b {
  top: 300px;
  left: 106px;
  background: var(--purple);
  box-shadow: 0 0 24px var(--purple);
}

.node-c {
  right: 96px;
  bottom: 130px;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
}

.node-d {
  left: 50%;
  bottom: 74px;
  background: var(--blue);
  box-shadow: 0 0 24px var(--blue);
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.glass-panel,
.service-card,
.process-step,
.contact-card,
.why-item {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.glass-panel {
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
}

.glass-panel p {
  margin-bottom: 0;
  font-size: 1.08rem;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-section {
  padding-top: 56px;
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.capability {
  min-height: 270px;
  border-top: 1px solid var(--line);
  padding: 22px 16px 0 0;
}

.capability span {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.capability p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-card {
  position: relative;
  min-height: 246px;
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(61, 232, 255, 0.18), transparent 32%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61, 232, 255, 0.36);
  background: var(--glass-strong);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #06101f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
}

.service-card h3,
.service-card p {
  position: relative;
}

.service-card p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.signal-panel {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(61, 232, 255, 0.18), transparent 30%),
    rgba(8, 14, 30, 0.58);
  overflow: hidden;
}

.signal-ring,
.signal-ring::before,
.signal-ring::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(61, 232, 255, 0.18);
  border-radius: 50%;
}

.signal-ring {
  animation: spin 18s linear infinite;
}

.signal-ring::before,
.signal-ring::after {
  content: "";
  inset: 18%;
}

.signal-ring::after {
  inset: 35%;
  border-color: rgba(168, 85, 247, 0.26);
}

.signal-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
}

.signal-center span {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  color: #06101f;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
}

.signal-center strong {
  width: min(220px, 72%);
  font-size: 1.18rem;
  line-height: 1.25;
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  border-radius: 20px;
  padding: 18px 20px;
}

.why-item span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 22px rgba(61, 232, 255, 0.8);
}

.why-item p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 280px;
  border-radius: 26px;
  padding: 28px;
  overflow: hidden;
}

.process-step::after {
  content: "";
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(95, 140, 255, 0.16);
  filter: blur(8px);
}

.process-step span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 900;
}

.build-section {
  padding-top: 48px;
}

.build-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(26px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgba(61, 232, 255, 0.11), transparent 42%),
    rgba(9, 14, 31, 0.64);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.build-card h2 {
  margin-bottom: 0;
}

.build-list {
  display: grid;
  gap: 12px;
}

.build-list p {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 16px 16px 42px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
}

.build-list p::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(113, 240, 200, 0.7);
}

.contact-section {
  padding-bottom: 86px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.contact-info {
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.contact-intro {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.08rem;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #06101f;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: var(--text);
}

.info-item a,
.info-item span {
  color: var(--muted);
  transition: color 200ms ease;
}

.info-item a:hover {
  color: var(--cyan);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--glass);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(175, 209, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(61, 232, 255, 0.42);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(61, 232, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding: 14px;
  border: none;
  cursor: pointer;
}


.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px clamp(18px, 4vw, 34px) 46px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes drift {
  to {
    transform: translate3d(4rem, 2rem, 0) scale(1.08);
  }
}

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

@keyframes pulse {
  0% {
    opacity: 0.85;
    transform: scale(0.88);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes dash {
  to {
    stroke-dashoffset: -220;
  }
}

@keyframes breathe {
  50% {
    transform: rotate(-12deg) scale(1.04);
  }
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(5, 8, 18, 0.94);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .split-section,
  .why-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .services-grid,
  .process-grid,
  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .build-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px;
  }

  .navbar {
    border-radius: 18px;
  }

  .section {
    padding: 74px 18px;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.18rem, 9vw, 2.45rem);
    overflow-wrap: break-word;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-visual {
    min-height: 480px;
    border-radius: 26px;
  }

  .workflow-card {
    width: 188px;
    padding: 15px;
  }

  .card-intake {
    top: 64px;
    left: 20px;
  }

  .card-ai {
    top: 202px;
    right: 18px;
  }

  .card-action {
    left: 28px;
    bottom: 56px;
  }

  .pulse-core {
    width: 124px;
    height: 124px;
  }

  .services-grid,
  .process-grid,
  .capability-strip,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 104px;
    height: 40px;
  }

  .hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-points span {
    justify-content: center;
    text-align: center;
  }

  .capability {
    min-height: auto;
    padding-bottom: 22px;
  }

  .capability span {
    margin-bottom: 24px;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

  .signal-panel {
    min-height: 320px;
  }

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