:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #030506;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --line: rgba(255, 255, 255, 0.17);
  --text: #f6f7f2;
  --muted: rgba(246, 247, 242, 0.68);
  --soft: rgba(246, 247, 242, 0.42);
  --pearl: #eef4ef;
  --cyan: #a7f0ff;
  --mint: #bdf9df;
  --champagne: #f8edca;
  --pointer-x: 50vw;
  --pointer-y: 45vh;
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 14% 12%, rgba(174, 232, 243, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 24%, rgba(248, 237, 202, 0.1), transparent 25rem),
    linear-gradient(180deg, #030506 0%, #060909 46%, #020303 100%);
  color: var(--text);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
}

.cursor-light {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  pointer-events: none;
  opacity: 0.28;
  transform: translate(calc(var(--pointer-x) - 50%), calc(var(--pointer-y) - 50%));
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), rgba(167, 240, 255, 0.06) 34%, transparent 68%);
  filter: blur(12px);
  transition: transform 140ms ease-out;
}

.ambient {
  position: fixed;
  z-index: -2;
  width: 48rem;
  height: 48rem;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.ambient-one {
  top: -16rem;
  left: -14rem;
  background: #bfe8f3;
}

.ambient-two {
  right: -18rem;
  bottom: 4rem;
  background: #fff0c6;
}

.topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 68px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(6, 8, 9, 0.58);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(145%);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}

.brand span,
.principle div {
  display: grid;
  gap: 2px;
}

.brand strong {
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  transition: color 220ms ease, background 220ms ease;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}

.nav-cta {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.85rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 220ms ease, background 220ms ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding: clamp(7rem, 12vw, 11rem) clamp(1.2rem, 5vw, 5.5rem) clamp(2rem, 5vw, 4rem);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  opacity: 0.82;
  filter: saturate(0.75) contrast(1.05) brightness(0.86);
  transform: scale(1.035);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 44% 42%, transparent 0 18rem, rgba(3, 5, 6, 0.2) 38rem),
    linear-gradient(90deg, rgba(2, 3, 4, 0.98) 0%, rgba(2, 3, 4, 0.52) 36%, rgba(2, 3, 4, 0.56) 68%, rgba(2, 3, 4, 0.94) 100%),
    linear-gradient(180deg, rgba(3, 5, 6, 0.45), rgba(3, 5, 6, 0.84) 78%, #030506 100%);
}

.signal-tracers {
  position: absolute;
  inset: -2% 0 0 0;
  width: 100%;
  height: 104%;
  mix-blend-mode: screen;
  opacity: 0.88;
}

.trace {
  fill: none;
  stroke: url("#pearlStroke");
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.82;
  filter: url("#tracerGlow");
}

.trace-dotted {
  stroke-dasharray: 2 11;
  animation: tracerDash 8s linear infinite;
}

.trace-soft {
  stroke-width: 1.1;
  stroke-dasharray: 180 720;
  animation: tracerFlow 8.5s ease-in-out infinite;
}

.trace-bright {
  stroke-width: 2.2;
  stroke-dasharray: 220 780;
  animation: tracerFlow 6.5s ease-in-out infinite;
}

.trace-minor {
  opacity: 0.42;
  stroke-width: 1;
  stroke-dasharray: 72 420;
  animation: tracerFlow 5s linear infinite;
}

.trace-delay-1 {
  animation-delay: -1.2s;
}

.trace-delay-2 {
  animation-delay: -2.8s;
}

.trace-delay-3 {
  animation-delay: -4.1s;
}

.moving-pulse {
  fill: url("#pulseDot");
  opacity: 0.9;
}

.pulse-a {
  animation: dotBreath 1.7s ease-in-out infinite;
}

.pulse-b,
.pulse-c,
.pulse-d {
  animation: dotBreath 1.25s ease-in-out infinite;
}

.hero-content {
  width: min(760px, 100%);
  padding-bottom: clamp(4rem, 8vh, 8rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: rgba(246, 247, 242, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pearl-title,
.section-heading h2,
.approach-copy h2,
.contact-copy h2 {
  margin: 0;
  color: transparent;
  letter-spacing: 0;
  background:
    linear-gradient(112deg, #ffffff 0%, #dce6e4 20%, #ffffff 33%, #a8b6b7 48%, #fff7dc 64%, #f7fbfb 82%, #9ba7a9 100%);
  background-size: 260% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.18));
  animation: pearlShift 8s ease-in-out infinite;
}

.pearl-title {
  max-width: 940px;
  font-size: clamp(3.7rem, 12vw, 9.5rem);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-subtitle {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(246, 247, 242, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.7;
  text-shadow: 0 16px 50px rgba(0, 0, 0, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-button {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(211, 226, 226, 0.88) 34%, rgba(255, 244, 210, 0.98));
  color: #071012;
  font-weight: 800;
  box-shadow:
    0 0 34px rgba(255, 255, 255, 0.22),
    0 18px 60px rgba(167, 240, 255, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 45px rgba(255, 255, 255, 0.3),
    0 24px 80px rgba(167, 240, 255, 0.22);
}

.ghost-button {
  min-height: 54px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.ghost-button:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.glass-panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.14), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(24px) saturate(136%);
}

.hero-card {
  position: absolute;
  right: clamp(1.2rem, 5vw, 5rem);
  bottom: clamp(1.4rem, 5vw, 4rem);
  width: min(390px, calc(100% - 2.4rem));
  padding: 18px;
  border-radius: 26px;
  animation: floatPanel 7s ease-in-out infinite;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-line span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d9fff3;
  box-shadow: 0 0 18px #bdf9df;
  animation: ping 1.5s ease-in-out infinite;
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 16px;
}

.hero-card-grid div {
  min-height: 76px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-card-grid strong {
  display: block;
  font-size: 1.12rem;
  letter-spacing: 0.06em;
}

.hero-card-grid small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.principles-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: -22px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(24px);
}

.principle {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 112px;
  padding: 22px;
  background: rgba(6, 9, 10, 0.68);
}

.principle svg {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.84);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.22));
}

.principle strong {
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principle span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(240px, 0.48fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2,
.approach-copy h2,
.contact-copy h2 {
  max-width: 850px;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 850;
  line-height: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  grid-column: span 2;
  min-height: 310px;
  padding: 28px;
  border-radius: 28px;
  overflow: hidden;
  animation: cardReveal 700ms ease both;
  animation-delay: var(--delay);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.048)),
    radial-gradient(circle at 50% 0%, rgba(167, 240, 255, 0.13), transparent 46%);
  transform: translateY(-7px);
}

.service-card svg {
  color: #f9fbf5;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.24));
}

.service-card h3 {
  margin: 72px 0 14px;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.card-glow {
  position: absolute;
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.18), transparent 18rem);
  transition: opacity 240ms ease;
}

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

.approach-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 5vw, 4rem);
  align-items: center;
}

.approach-visual {
  border-radius: 30px;
  padding: 18px;
  overflow: hidden;
}

.scan-frame {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  background: #030506;
}

.scan-frame img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  filter: contrast(1.05) saturate(0.72);
  transform: scale(1.06);
}

.scan-frame::before,
.scan-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.scan-frame::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 74%);
}

.scan-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.09);
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #fff, #a7f0ff, transparent);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  animation: scanMove 4.2s ease-in-out infinite;
}

.telemetry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.telemetry div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.telemetry svg {
  flex: 0 0 auto;
  color: #fff;
}

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

.workflow {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.workflow-item > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.workflow-item h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.workflow-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.68fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.contact-copy p:last-child {
  max-width: 660px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  border-radius: 30px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  outline: none;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.contact-form input {
  height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(167, 240, 255, 0.06);
}

.contact-form .primary-button {
  width: 100%;
  margin-top: 4px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.035) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.075) translate3d(-1.2%, 0.8%, 0);
  }
}

@keyframes tracerDash {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -260;
  }
}

@keyframes tracerFlow {
  0% {
    stroke-dashoffset: 840;
    opacity: 0.1;
  }
  28%,
  72% {
    opacity: 0.86;
  }
  100% {
    stroke-dashoffset: -840;
    opacity: 0.16;
  }
}

@keyframes dotBreath {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.35);
  }
}

@keyframes pearlShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes floatPanel {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes ping {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.65;
  }
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scanMove {
  0%,
  100% {
    transform: translateY(26px);
    opacity: 0.24;
  }
  50% {
    transform: translateY(390px);
    opacity: 0.92;
  }
}

@media (max-width: 980px) {
  .topbar {
    top: 12px;
    border-radius: 20px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 960px;
    align-items: start;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 0;
  }

  .hero-card {
    right: 1rem;
    bottom: 2rem;
    left: 1rem;
    width: auto;
  }

  .principles-strip,
  .approach-section,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .principles-strip {
    margin-top: 0;
  }

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

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: auto;
    min-height: 260px;
  }
}

@media (max-width: 680px) {
  .topbar {
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 8px 9px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 0.76rem;
  }

  .brand small {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  .nav-cta span {
    display: none;
  }

  .hero {
    min-height: 880px;
    padding-inline: 1rem;
  }

  .hero-media img {
    object-position: 46% center;
    opacity: 0.72;
  }

  .pearl-title {
    font-size: clamp(3.2rem, 18vw, 5.6rem);
  }

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

  .principles-strip {
    width: calc(100% - 20px);
    border-radius: 22px;
  }

  .principle {
    min-height: 98px;
    padding: 18px;
  }

  .section {
    width: calc(100% - 20px);
  }

  .section-heading h2,
  .approach-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 12vw, 3.35rem);
  }

  .service-card,
  .contact-form,
  .approach-visual {
    border-radius: 22px;
  }

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

  .scan-frame,
  .scan-frame img {
    min-height: 330px;
  }

  .workflow-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .workflow-item > span {
    width: 40px;
    height: 40px;
  }
}

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