:root {
  color-scheme: light;
  --ink: #141114;
  --deep: #211321;
  --paper: #fff7fb;
  --surface: #ffffff;
  --soft: #f7ecff;
  --line: rgba(20, 17, 20, 0.13);
  --muted: #665b66;
  --malachite: #31ec56;
  --razz: #ef036c;
  --helio: #ee72f8;
  --lime-soft: #c9ffd2;
  --pink-soft: #ffd8e9;
  --shadow: 0 24px 70px rgba(20, 17, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 247, 251, 0.94);
  color: var(--ink);
  box-shadow: 0 14px 42px rgba(20, 17, 20, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  background: var(--malachite);
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--malachite);
  color: var(--ink);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  padding: 132px clamp(20px, 5vw, 64px) 44px;
  overflow: hidden;
  background: var(--deep);
  color: #fff;
}

.hero-video,
.hero-shade,
.kinetic-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  filter: saturate(1.18) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(20, 17, 20, 0.88), rgba(20, 17, 20, 0.58) 48%, rgba(20, 17, 20, 0.22)),
    linear-gradient(0deg, rgba(239, 3, 108, 0.4), transparent 38%, rgba(49, 236, 86, 0.18));
}

.kinetic-lines {
  opacity: 0.72;
  background-image:
    radial-gradient(circle at 78% 18%, rgba(238, 114, 248, 0.34), transparent 24%),
    radial-gradient(circle at 12% 72%, rgba(49, 236, 86, 0.24), transparent 28%),
    linear-gradient(120deg, transparent 0 43%, rgba(49, 236, 86, 0.65) 43% 44%, transparent 44% 100%),
    linear-gradient(120deg, transparent 0 60%, rgba(238, 114, 248, 0.58) 60% 61%, transparent 61% 100%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 310px 310px, 420px 420px, 58px 58px, 58px 58px;
  animation: drift-lines 18s linear infinite;
  mix-blend-mode: screen;
}

.kinetic-lines::before,
.kinetic-lines::after {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.kinetic-lines::before {
  right: 8%;
  bottom: 12%;
  width: 300px;
  height: 300px;
  box-shadow:
    inset 0 0 0 26px rgba(49, 236, 86, 0.08),
    0 0 80px rgba(238, 114, 248, 0.2);
}

.kinetic-lines::after {
  left: 50%;
  top: 18%;
  width: 160px;
  height: 160px;
  border-color: rgba(49, 236, 86, 0.28);
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 980px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--razz);
  font-weight: 950;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--malachite);
  color: var(--ink);
}

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

h1 {
  width: min(980px, 100%);
  margin-bottom: 20px;
  font-size: 4.7rem;
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 12px 28px rgba(20, 17, 20, 0.18);
}

.button.primary {
  background: var(--malachite);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.full {
  width: 100%;
}

.hero-panel {
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  width: min(100%, 670px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(20, 17, 20, 0.68);
  backdrop-filter: blur(16px);
}

.hero-panel div {
  padding: 18px;
}

.panel-label {
  display: block;
  margin-bottom: 5px;
  color: var(--helio);
  font-weight: 900;
  font-size: 0.78rem;
}

.capability-carousel {
  position: relative;
  overflow: hidden;
  border-block: 2px solid var(--ink);
  padding: 26px 0 30px;
  background:
    radial-gradient(circle at 8% 18%, rgba(49, 236, 86, 0.28), transparent 22%),
    radial-gradient(circle at 86% 74%, rgba(239, 3, 108, 0.28), transparent 24%),
    linear-gradient(135deg, #171117, #2a1431);
  color: #fff;
}

.capability-carousel::before,
.capability-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 14vw);
  pointer-events: none;
  content: "";
}

.capability-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #171117, transparent);
}

.capability-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #171117, transparent);
}

.carousel-head {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 64px) 18px;
}

.carousel-head span {
  color: var(--malachite);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.carousel-head strong {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  text-align: right;
}

.carousel-viewport {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.capability-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: capability-marquee 46s linear infinite;
}

.capability-carousel:hover .capability-track {
  animation-play-state: paused;
}

.capability-set {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
  padding-left: 18px;
}

.capability-card {
  position: relative;
  display: grid;
  width: 310px;
  min-height: 340px;
  grid-template-rows: 186px auto auto auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 10px 10px 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.capability-card::after {
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  pointer-events: none;
  content: "";
}

.capability-card > span {
  display: inline-grid;
  width: 42px;
  height: 34px;
  place-items: center;
  margin: 14px 4px 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: var(--malachite);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 950;
}

.capability-card h3 {
  margin: 12px 4px 8px;
  color: #fff;
}

.capability-card p {
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.capability-visual {
  position: relative;
  min-height: 186px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: #141114;
}

.capability-visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(20, 17, 20, 0.34) 100%),
    radial-gradient(circle at 74% 18%, rgba(255, 255, 255, 0.18), transparent 24%);
  content: "";
  z-index: 1;
}

.capability-visual img {
  width: 100%;
  height: 100%;
  min-height: 186px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.capability-card:hover .capability-visual img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.07);
}

.mini-grid {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(49, 236, 86, 0.24);
  border-radius: 22px;
  transform: rotate(-8deg);
}

.mini-poly {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  transform: rotate(-16deg);
}

.poly-a {
  left: 28px;
  top: 30px;
  width: 132px;
  height: 72px;
  background: rgba(49, 236, 86, 0.13);
}

.poly-b {
  right: 28px;
  bottom: 24px;
  width: 118px;
  height: 64px;
  background: rgba(238, 114, 248, 0.12);
}

.mini-pin,
.control-point {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--razz);
  box-shadow: 0 0 0 9px rgba(239, 3, 108, 0.2);
}

.pin-one {
  left: 38%;
  top: 36%;
}

.pin-two {
  right: 21%;
  bottom: 22%;
  background: var(--malachite);
  box-shadow: 0 0 0 9px rgba(49, 236, 86, 0.2);
}

.visual-remote {
  background:
    linear-gradient(135deg, rgba(238, 114, 248, 0.16), rgba(49, 236, 86, 0.12)),
    #161116;
}

.raster-cell {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 6px;
  background: rgba(49, 236, 86, 0.34);
  box-shadow: 0 0 26px rgba(49, 236, 86, 0.22);
}

.cell-a {
  left: 28px;
  top: 28px;
}

.cell-b {
  left: 82px;
  top: 76px;
  background: rgba(239, 3, 108, 0.38);
}

.cell-c {
  right: 46px;
  top: 38px;
  background: rgba(238, 114, 248, 0.38);
}

.satellite-pass {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 58px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #fff, var(--malachite), transparent);
  transform: rotate(-18deg);
}

.spectral-bar {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--razz), var(--helio), var(--malachite));
}

.visual-drone {
  background:
    radial-gradient(circle at 60% 34%, rgba(49, 236, 86, 0.22), transparent 26%),
    #141114;
}

.drone-body {
  position: absolute;
  left: 50%;
  top: 34%;
  width: 64px;
  height: 28px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--ink);
  transform: translate(-50%, -50%);
}

.drone-body::before,
.drone-body::after {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 2px;
  background: #fff;
  content: "";
}

.drone-body::before {
  right: 100%;
  transform: translateY(-50%);
}

.drone-body::after {
  left: 100%;
  transform: translateY(-50%);
}

.drone-orbit {
  position: absolute;
  left: 50%;
  top: 42%;
  width: 170px;
  height: 82px;
  border: 2px dashed rgba(238, 114, 248, 0.74);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.flight-shadow,
.terrain-slice {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 34px;
  border-radius: 999px;
}

.flight-shadow {
  background: rgba(49, 236, 86, 0.18);
  filter: blur(2px);
}

.terrain-slice {
  border-top: 3px solid var(--malachite);
  transform: rotate(-4deg);
}

.visual-geoai {
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 3, 108, 0.28), transparent 36%),
    #181018;
}

.ai-core,
.ai-node {
  position: absolute;
  border-radius: 50%;
}

.ai-core {
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border: 2px solid #fff;
  background: var(--razz);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 38px rgba(239, 3, 108, 0.48);
}

.ai-node {
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  background: var(--malachite);
}

.node-one {
  left: 25%;
  top: 30%;
}

.node-two {
  right: 24%;
  top: 28%;
  background: var(--helio);
}

.node-three {
  left: 48%;
  bottom: 18%;
}

.ai-link {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  transform-origin: left center;
}

.ai-link-a {
  left: 31%;
  top: 38%;
  width: 78px;
  transform: rotate(24deg);
}

.ai-link-b {
  right: 30%;
  top: 39%;
  width: 82px;
  transform: rotate(154deg);
}

.visual-topo {
  background:
    radial-gradient(circle at 40% 52%, rgba(49, 236, 86, 0.18), transparent 38%),
    #151116;
}

.contour {
  position: absolute;
  border: 2px solid rgba(49, 236, 86, 0.72);
  border-radius: 50%;
}

.c-one {
  left: 42px;
  top: 26px;
  width: 150px;
  height: 86px;
  transform: rotate(-12deg);
}

.c-two {
  left: 66px;
  top: 42px;
  width: 104px;
  height: 58px;
  transform: rotate(-12deg);
}

.c-three {
  right: 42px;
  bottom: 28px;
  width: 110px;
  height: 62px;
  border-color: rgba(238, 114, 248, 0.72);
  transform: rotate(16deg);
}

.cp-a {
  left: 42%;
  top: 52%;
}

.cp-b {
  right: 22%;
  bottom: 28%;
  background: var(--helio);
  box-shadow: 0 0 0 9px rgba(238, 114, 248, 0.2);
}

.visual-radar {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 28%, transparent 28%),
    #141114;
}

.radar-ground {
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  height: 3px;
  background: rgba(255, 255, 255, 0.56);
}

.radar-wave {
  position: absolute;
  left: 50%;
  width: 142px;
  height: 58px;
  border: 3px solid transparent;
  border-bottom-color: var(--malachite);
  border-radius: 50%;
  transform: translateX(-50%);
}

.rw-a {
  top: 54px;
}

.rw-b {
  top: 84px;
  width: 202px;
  border-bottom-color: var(--helio);
}

.radar-object {
  position: absolute;
  width: 46px;
  height: 16px;
  border: 2px solid var(--razz);
  border-radius: 999px;
  background: rgba(239, 3, 108, 0.26);
}

.ro-a {
  left: 26%;
  bottom: 24px;
}

.ro-b {
  right: 22%;
  bottom: 48px;
  border-color: var(--malachite);
  background: rgba(49, 236, 86, 0.24);
}

.section {
  padding: 92px clamp(20px, 5vw, 64px);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p,
.database-copy p,
.service-card p,
.research-card p,
.news-item p,
.contact-copy p {
  color: var(--muted);
}

.services-section {
  background:
    linear-gradient(180deg, #fff7fb 0%, #f8fff8 100%);
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 28px;
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--ink);
}

.service-card::before {
  position: absolute;
  inset: 12px 12px auto auto;
  width: 56px;
  height: 8px;
  border-radius: 999px;
  background: var(--helio);
  content: "";
}

.service-card::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(20, 17, 20, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(49, 236, 86, 0.7) 0 12%, transparent 13%),
    conic-gradient(from 120deg, rgba(239, 3, 108, 0.68), rgba(238, 114, 248, 0.72), rgba(49, 236, 86, 0.72), rgba(239, 3, 108, 0.68));
  content: "";
  opacity: 0.76;
}

.training-card {
  grid-column: span 6;
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(420px, 1.1fr);
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 251, 0.94)),
    radial-gradient(circle at 18% 18%, rgba(49, 236, 86, 0.2), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(238, 114, 248, 0.24), transparent 34%);
}

.lift-card {
  grid-column: span 3;
  background: var(--lime-soft);
}

.consult-card {
  grid-column: span 3;
  background: var(--pink-soft);
}

.card-index {
  display: inline-grid;
  width: 52px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--malachite);
  font-weight: 950;
}

.course-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
}

.course-stats span {
  display: grid;
  min-height: 78px;
  align-content: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 12px;
  background: rgba(49, 236, 86, 0.18);
  font-weight: 850;
}

.course-stats strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.card-graphic {
  position: relative;
  min-height: 210px;
  margin-bottom: 24px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink);
}

.terrain-graphic {
  background:
    linear-gradient(140deg, rgba(49, 236, 86, 0.22), transparent 44%),
    linear-gradient(180deg, #19171c, #2b1830);
}

.terrain-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  transform: perspective(360px) rotateX(58deg) rotateZ(-16deg) translateY(18px);
  transform-origin: center bottom;
}

.flight-line {
  position: absolute;
  left: 12%;
  top: 26%;
  width: 74%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--malachite), var(--helio), transparent);
  transform: rotate(-11deg);
}

.drone-mark {
  position: absolute;
  top: 22px;
  right: 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 950;
}

.terrain-point,
.model-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--malachite);
  box-shadow: 0 0 0 10px rgba(49, 236, 86, 0.16);
}

.point-a {
  left: 18%;
  bottom: 32%;
}

.point-b {
  left: 52%;
  bottom: 48%;
  background: var(--helio);
  box-shadow: 0 0 0 10px rgba(238, 114, 248, 0.16);
}

.point-c {
  right: 19%;
  bottom: 26%;
  background: var(--razz);
  box-shadow: 0 0 0 10px rgba(239, 3, 108, 0.16);
}

.intelligence-graphic {
  background:
    radial-gradient(circle at center, rgba(238, 114, 248, 0.34), transparent 34%),
    linear-gradient(180deg, #1b131d, #281331);
}

.model-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--razz);
  color: #fff;
  font-weight: 950;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 42px rgba(239, 3, 108, 0.45);
}

.model-a {
  left: 18%;
  top: 26%;
}

.model-b {
  right: 18%;
  top: 30%;
  background: var(--helio);
  box-shadow: 0 0 0 10px rgba(238, 114, 248, 0.16);
}

.model-c {
  left: 46%;
  bottom: 14%;
  background: var(--malachite);
}

.model-link {
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  transform-origin: left center;
}

.link-a {
  left: 24%;
  top: 35%;
  width: 110px;
  transform: rotate(18deg);
}

.link-b {
  right: 25%;
  top: 39%;
  width: 120px;
  transform: rotate(160deg);
}

.link-c {
  left: 50%;
  top: 60%;
  width: 90px;
  transform: rotate(90deg);
}

.video-lab {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(220px, 0.7fr);
  gap: 16px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  aspect-ratio: 16 / 9;
}

.player-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lesson-list {
  display: grid;
  max-height: 390px;
  gap: 8px;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.lesson {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
  text-align: left;
}

.lesson span {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.84rem;
}

.lesson.is-active,
.lesson:hover,
.lesson:focus-visible {
  background: var(--razz);
  color: #fff;
  outline: none;
}

.lesson.is-active span,
.lesson:hover span,
.lesson:focus-visible span {
  color: #fff;
}

.text-link,
.research-card a,
.news-item a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--razz);
  font-weight: 950;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  padding: 10px 12px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  font-weight: 800;
}

.georadar-spotlight {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.85fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.42), transparent 18%),
    linear-gradient(135deg, rgba(49, 236, 86, 0.94), rgba(238, 114, 248, 0.78)),
    #fff;
  box-shadow: 8px 8px 0 var(--razz);
}

.georadar-copy h3 {
  font-size: 1.65rem;
}

.georadar-copy p {
  max-width: 680px;
  color: var(--ink);
}

.georadar-visual {
  position: relative;
  min-height: 190px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 18%, transparent 18%),
    linear-gradient(180deg, rgba(20, 17, 20, 0.94), rgba(20, 17, 20, 0.8)),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255, 255, 255, 0.1) 24px 26px);
}

.ground-label,
.depth-label {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ground-label {
  top: 12px;
  left: 12px;
}

.depth-label {
  right: 12px;
  bottom: 12px;
}

.strata {
  position: absolute;
  left: -8%;
  width: 116%;
  height: 42px;
  border-top: 2px solid rgba(255, 255, 255, 0.16);
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg);
}

.strata-a {
  top: 68px;
  background: rgba(49, 236, 86, 0.08);
}

.strata-b {
  top: 126px;
  background: rgba(238, 114, 248, 0.1);
}

.scan-line {
  position: absolute;
  inset: 16px auto 16px 50%;
  width: 4px;
  border-radius: 999px;
  background: var(--malachite);
  box-shadow: 0 0 24px var(--malachite);
  animation: scan-sweep 2.6s ease-in-out infinite;
}

.scan-wave {
  position: absolute;
  left: 50%;
  width: 170px;
  height: 70px;
  border: 3px solid transparent;
  border-bottom-color: var(--helio);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0.85;
  filter: drop-shadow(0 0 14px rgba(238, 114, 248, 0.35));
}

.wave-a {
  top: 52px;
}

.wave-b {
  top: 94px;
  width: 230px;
  border-bottom-color: var(--razz);
}

.scan-target {
  position: absolute;
  width: 42px;
  height: 18px;
  border: 2px solid var(--malachite);
  border-radius: 999px;
  background: rgba(49, 236, 86, 0.28);
}

.target-a {
  left: 18%;
  bottom: 38px;
}

.target-b {
  right: 16%;
  bottom: 72px;
  border-color: var(--helio);
  background: rgba(238, 114, 248, 0.28);
}

.database-section {
  background: var(--deep);
  color: #fff;
}

.database-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

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

.data-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.data-actions span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.data-visual {
  position: relative;
  min-height: 480px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 34%, rgba(239, 3, 108, 0.2), transparent 22%),
    radial-gradient(circle at 22% 72%, rgba(49, 236, 86, 0.2), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 44px 44px;
}

.geo-layer-stack {
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.layer-shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 28px;
  transform: rotate(-13deg) skew(-4deg);
}

.layer-one {
  left: 18%;
  top: 18%;
  width: 48%;
  height: 36%;
  background: rgba(49, 236, 86, 0.12);
  box-shadow: 0 0 32px rgba(49, 236, 86, 0.16);
}

.layer-two {
  right: 12%;
  top: 31%;
  width: 48%;
  height: 36%;
  background: rgba(238, 114, 248, 0.12);
  box-shadow: 0 0 32px rgba(238, 114, 248, 0.16);
}

.layer-three {
  left: 26%;
  bottom: 12%;
  width: 48%;
  height: 30%;
  background: rgba(239, 3, 108, 0.12);
  box-shadow: 0 0 32px rgba(239, 3, 108, 0.16);
}

.layer-label {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(20, 17, 20, 0.68);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.label-one {
  left: 19%;
  top: 15%;
}

.label-two {
  right: 18%;
  top: 29%;
}

.label-three {
  left: 28%;
  bottom: 10%;
}

.data-node {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 118px;
  min-height: 58px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 950;
  box-shadow: 6px 6px 0 var(--malachite);
}

.data-node.main {
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--razz);
  color: #fff;
  box-shadow: 8px 8px 0 var(--helio);
}

.node-a {
  top: 12%;
  left: 12%;
}

.node-b {
  top: 15%;
  right: 11%;
}

.node-c {
  bottom: 18%;
  left: 16%;
}

.node-d {
  right: 10%;
  bottom: 18%;
}

.node-e {
  left: 42%;
  bottom: 8%;
}

.data-route {
  position: absolute;
  z-index: 1;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--malachite), var(--helio), transparent);
  transform-origin: left center;
  animation: route-pulse 1.8s ease-in-out infinite;
}

.data-console {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  min-width: 142px;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(20, 17, 20, 0.76);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.data-console span,
.data-console small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.data-console strong {
  color: var(--malachite);
  font-size: 2.1rem;
  line-height: 1;
}

.route-1 {
  top: 31%;
  left: 27%;
  width: 220px;
  transform: rotate(24deg);
}

.route-2 {
  top: 29%;
  right: 27%;
  width: 190px;
  transform: rotate(150deg);
}

.route-3 {
  left: 31%;
  bottom: 32%;
  width: 200px;
  transform: rotate(-24deg);
}

.route-4 {
  right: 27%;
  bottom: 34%;
  width: 170px;
  transform: rotate(205deg);
}

.research-section {
  background: #fff;
}

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

.research-card {
  position: relative;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 142px 24px 24px;
  overflow: hidden;
  background: var(--paper);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.research-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 112px;
  background:
    radial-gradient(circle at 18% 38%, var(--malachite) 0 8px, transparent 9px),
    radial-gradient(circle at 56% 42%, var(--helio) 0 10px, transparent 11px),
    radial-gradient(circle at 80% 30%, var(--razz) 0 7px, transparent 8px),
    linear-gradient(135deg, rgba(49, 236, 86, 0.2), rgba(238, 114, 248, 0.24)),
    linear-gradient(90deg, rgba(20, 17, 20, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(20, 17, 20, 0.12) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 28px 28px, 28px 28px;
  content: "";
}

.research-card::after {
  position: absolute;
  top: 28px;
  left: 26px;
  width: 64px;
  height: 64px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 16%, transparent 17%),
    conic-gradient(var(--malachite), var(--helio), var(--razz), var(--malachite));
  content: "";
  box-shadow: 5px 5px 0 var(--ink);
}

.research-card:nth-child(2n)::before {
  background:
    linear-gradient(135deg, rgba(239, 3, 108, 0.2), rgba(49, 236, 86, 0.22)),
    repeating-linear-gradient(120deg, transparent 0 18px, rgba(20, 17, 20, 0.13) 18px 20px);
}

.research-card:nth-child(3n)::before {
  background:
    radial-gradient(circle at 70% 48%, rgba(255, 255, 255, 0.62) 0 18px, transparent 19px),
    linear-gradient(135deg, rgba(238, 114, 248, 0.26), rgba(49, 236, 86, 0.22)),
    repeating-linear-gradient(0deg, transparent 0 17px, rgba(20, 17, 20, 0.1) 17px 19px);
}

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

.research-card:hover {
  border-color: var(--razz);
  transform: translateY(-4px);
  box-shadow: 0 16px 42px rgba(239, 3, 108, 0.16);
}

.research-card span,
.news-item time {
  display: inline-flex;
  margin-bottom: 14px;
  border-radius: 8px;
  padding: 8px 10px;
  background: var(--malachite);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

.news-section {
  background: #fbf2ff;
}

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

.news-item {
  position: relative;
  grid-column: span 2;
  min-height: 310px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 130px 24px 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 6px 6px 0 var(--helio);
}

.news-item::before {
  position: absolute;
  inset: 0 0 auto;
  height: 100px;
  background:
    radial-gradient(circle at 20% 45%, var(--razz) 0 12px, transparent 13px),
    radial-gradient(circle at 72% 38%, var(--malachite) 0 10px, transparent 11px),
    linear-gradient(135deg, rgba(238, 114, 248, 0.72), rgba(49, 236, 86, 0.72));
  content: "";
}

.news-item::after {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 76px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 45%, var(--ink) 46% 49%, transparent 50%),
    radial-gradient(circle at 24% 72%, var(--malachite) 0 5px, transparent 6px),
    radial-gradient(circle at 52% 48%, var(--razz) 0 5px, transparent 6px),
    radial-gradient(circle at 78% 28%, var(--ink) 0 5px, transparent 6px),
    #fff;
  content: "";
  box-shadow: 4px 4px 0 var(--ink);
}

.news-item:nth-child(2n)::before {
  background:
    radial-gradient(circle at 22% 40%, var(--malachite) 0 12px, transparent 13px),
    radial-gradient(circle at 74% 44%, var(--helio) 0 12px, transparent 13px),
    repeating-linear-gradient(90deg, rgba(20, 17, 20, 0.18) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, rgba(49, 236, 86, 0.72), rgba(239, 3, 108, 0.64));
}

.news-item:nth-child(3n)::before {
  background:
    radial-gradient(circle at 28% 42%, var(--helio) 0 12px, transparent 13px),
    radial-gradient(circle at 72% 38%, var(--razz) 0 10px, transparent 11px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.28) 0 2px, transparent 2px 20px),
    linear-gradient(135deg, rgba(238, 114, 248, 0.78), rgba(49, 236, 86, 0.62));
}

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

.news-item:nth-child(2n) {
  box-shadow: 6px 6px 0 var(--malachite);
}

.news-item:nth-child(3n) {
  box-shadow: 6px 6px 0 var(--razz);
}

.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 6vw, 72px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.52), transparent 18%),
    radial-gradient(circle at 92% 82%, rgba(239, 3, 108, 0.34), transparent 22%),
    linear-gradient(135deg, var(--malachite), #b9ff54);
}

.contact-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(20, 17, 20, 0.13) 44% 45%, transparent 45% 100%),
    linear-gradient(90deg, rgba(20, 17, 20, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(20, 17, 20, 0.08) 1px, transparent 1px);
  background-size: 260px 260px, 52px 52px, 52px 52px;
  content: "";
  opacity: 0.7;
}

.contact-copy {
  position: relative;
  z-index: 1;
  align-self: center;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  align-self: start;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 8px 8px 0 var(--ink);
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.chat-form textarea:focus {
  outline: 4px solid rgba(239, 3, 108, 0.22);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink);
  font-weight: 900;
}

.form-status.error {
  color: var(--razz);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer span:first-child {
  color: #fff;
  font-weight: 950;
}

.footer-tagline {
  margin-left: auto;
  text-align: right;
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: grid;
  gap: 12px;
  width: auto;
  max-width: calc(100vw - 40px);
}

.chat-launch {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  justify-self: start;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 8px;
  background: var(--razz);
  color: #fff;
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
  text-align: center;
}

.chat-launch span,
.chat-head span {
  display: block;
  font-size: 0.68rem;
  opacity: 0.82;
}

.chat-launch strong {
  display: block;
  font-size: 1.1rem;
}

.chat-panel {
  width: min(360px, calc(100vw - 40px));
  border: 2px solid var(--ink);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.chat-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--ink);
  color: #fff;
}

.chat-head button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}

.chat-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.chat-body p {
  margin-bottom: 4px;
  color: var(--muted);
}

.chat-chip {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 10px;
  background: var(--soft);
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.chat-chip:hover,
.chat-chip:focus-visible {
  background: var(--malachite);
  outline: none;
}

.chat-form {
  display: grid;
  gap: 10px;
}

.chat-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 8px;
  padding: 12px;
  resize: vertical;
}

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

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

@keyframes drift-lines {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 260px 260px, -360px 360px;
  }
}

@keyframes capability-marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes route-pulse {
  0%,
  100% {
    opacity: 0.35;
  }

  50% {
    opacity: 1;
  }
}

@keyframes scan-sweep {
  0%,
  100% {
    transform: translateX(-110px);
  }

  50% {
    transform: translateX(110px);
  }
}

@media (max-width: 1100px) {
  h1 {
    font-size: 3.9rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .section-heading.split,
  .database-grid,
  .georadar-spotlight,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .training-card,
  .video-lab {
    grid-template-columns: 1fr;
  }

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

  .news-item {
    grid-column: span 3;
  }

  .capability-card {
    width: 292px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding: 12px 18px;
  }

  .capability-carousel {
    padding: 22px 0 24px;
  }

  .carousel-head {
    align-items: start;
    padding: 0 18px 16px;
  }

  .carousel-head strong {
    text-align: left;
  }

  .capability-track {
    gap: 12px;
    animation-duration: 38s;
  }

  .capability-set {
    gap: 12px;
    padding-left: 12px;
  }

  .capability-card {
    width: 266px;
    min-height: 286px;
    padding: 12px;
  }

  .capability-visual {
    min-height: 132px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 1px);
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    padding: 8px;
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .hero {
    min-height: auto;
    padding: 104px 18px 34px;
  }

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

  h1 {
    width: min(100%, 20.5rem);
    max-width: 100%;
    font-size: clamp(2.08rem, 10.2vw, 2.42rem);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-copy {
    width: min(100%, 21rem);
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .data-actions span {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 44px;
  }

  .section {
    padding: 58px 18px;
  }

  .service-card,
  .lift-card,
  .consult-card,
  .georadar-spotlight {
    grid-column: span 6;
    padding: 22px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .research-grid,
  .news-board {
    grid-template-columns: 1fr;
  }

  .news-item {
    grid-column: auto;
  }

  .data-visual {
    min-height: 420px;
  }

  .data-node {
    min-width: 96px;
    min-height: 52px;
    font-size: 0.86rem;
  }

  .route-1,
  .route-2,
  .route-3,
  .route-4 {
    width: 120px;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: calc(100vw - 28px);
  }

  .chat-panel {
    width: min(340px, calc(100vw - 28px));
  }

  .chat-launch {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    padding: 8px;
    text-align: center;
  }

  .chat-launch strong {
    font-size: 1rem;
  }

  .footer-tagline {
    width: 100%;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .capability-track {
    animation: none;
  }
}
