@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/Figtree-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/Figtree-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/Figtree-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/Figtree-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "Figtree";
  src: url("./assets/fonts/Figtree-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}

:root {
  --bg: #090114;
  --bg-deep: #05000d;
  --panel: rgba(21, 9, 36, 0.78);
  --panel-soft: rgba(34, 14, 58, 0.82);
  --panel-solid: #12071f;
  --line: rgba(193, 122, 255, 0.2);
  --line-strong: rgba(222, 156, 255, 0.36);
  --text: #f8f0ff;
  --muted: #b8afcf;
  --soft: #7d739b;
  --accent: #cd63ff;
  --accent-2: #8d54ff;
  --white: #ffffff;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Figtree", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(182, 82, 255, 0.18), transparent 24%),
    radial-gradient(circle at 90% 20%, rgba(232, 101, 255, 0.14), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 38%, var(--bg-deep) 100%);
}

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

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

.page {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

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

.page::before {
  opacity: 0.56;
  background-image:
    linear-gradient(rgba(175, 103, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(175, 103, 255, 0.06) 1px, transparent 1px);
  background-size: 120px 120px;
  background-position: 0 0, 0 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.25));
  animation: gridDrift 28s linear infinite;
}

.page::after {
  background:
    linear-gradient(16deg, transparent 48%, rgba(195, 119, 255, 0.11) 49%, transparent 50%),
    linear-gradient(-18deg, transparent 48%, rgba(117, 86, 255, 0.08) 49%, transparent 50%),
    radial-gradient(circle at 9% 13%, rgba(255, 255, 255, 0.96), transparent 0.38rem),
    radial-gradient(circle at 81% 18%, rgba(214, 100, 255, 1), transparent 0.34rem),
    radial-gradient(circle at 27% 52%, rgba(255, 255, 255, 0.85), transparent 0.28rem),
    radial-gradient(circle at 78% 75%, rgba(214, 100, 255, 0.98), transparent 0.44rem),
    radial-gradient(circle at 46% 94%, rgba(214, 100, 255, 0.92), transparent 0.36rem);
  background-size: 290px 240px, 260px 240px, auto, auto, auto, auto, auto;
  background-position: 0 0, 0 0, 9% 13%, 81% 18%, 27% 52%, 78% 75%, 46% 94%;
  animation: cosmosDrift 36s ease-in-out infinite alternate;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 32px;
}

.hero {
  padding: 34px 0 22px;
  text-align: center;
  position: relative;
  animation: riseIn 900ms ease-out both;
}

.hero__logo {
  width: min(236px, 58vw);
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 24px rgba(205, 99, 255, 0.16));
  animation: fadeSlideUp 820ms ease-out 160ms both, floatLogo 7s ease-in-out 1s infinite;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -26px;
  width: min(520px, 72vw);
  height: 220px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(170, 92, 255, 0.2) 0%, rgba(170, 92, 255, 0.06) 38%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 600;
  animation: fadeSlideUp 700ms ease-out 80ms both;
}

.hero h1 {
  width: min(820px, 100%);
  margin: 0 auto;
  font-size: clamp(3.2rem, 6.8vw, 6rem);
  line-height: 0.91;
  letter-spacing: -0.06em;
  text-wrap: balance;
  max-width: 10.5ch;
}

.hero p {
  width: min(690px, 100%);
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
  animation: fadeSlideUp 850ms ease-out 260ms both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  animation: fadeSlideUp 850ms ease-out 360ms both;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: #180d26;
  font-size: 0.83rem;
  font-weight: 600;
  box-shadow: 0 10px 34px rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.pill::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), transparent 28%),
    linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 18px rgba(205, 99, 255, 0.62);
}

.pill--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(205, 99, 255, 0.12);
}

.section {
  padding-top: 52px;
}

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(205, 99, 255, 0.76);
  animation: dotPulse 3.6s ease-in-out infinite;
}

.trusted-note {
  margin: 0;
  text-align: center;
  color: var(--soft);
  font-size: 0.72rem;
}

.customers {
  position: relative;
  overflow: hidden;
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 5, 23, 0.44);
  box-shadow: var(--shadow);
}

.customers::before,
.customers::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  pointer-events: none;
  z-index: 1;
}

.customers::before {
  left: 0;
  background: linear-gradient(90deg, rgba(13, 5, 23, 0.88), transparent);
}

.customers::after {
  right: 0;
  background: linear-gradient(270deg, rgba(13, 5, 23, 0.88), transparent);
}

.customers__track {
  --logo-loop-distance: 0px;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  will-change: transform;
  animation: customerDrift 36s linear infinite;
}

.customer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 168px;
  padding: 14px;
  min-height: 76px;
  text-align: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.customer-logo:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.customer-logo img {
  width: min(116px, 100%);
  max-height: 34px;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  filter: brightness(0) saturate(100%) invert(100%);
}

.customer-logo img.customer-logo__image--invert {
  filter: grayscale(100%) contrast(1.12) brightness(0) invert(100%);
}

.panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 76px rgba(0, 0, 0, 0.36);
  border-color: var(--line-strong);
}

.about-panel {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    radial-gradient(circle at 12% 18%, rgba(205, 99, 255, 0.14), transparent 22%),
    radial-gradient(circle at 88% 24%, rgba(141, 84, 255, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(21, 9, 36, 0.94), rgba(14, 6, 25, 0.94));
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 49%, rgba(213, 122, 255, 0.08) 50%, transparent 51%),
    linear-gradient(-24deg, transparent 49%, rgba(120, 88, 255, 0.08) 50%, transparent 51%);
  background-size: 240px 220px;
  opacity: 0.55;
  pointer-events: none;
}

.about-panel > * {
  position: relative;
}

.about-panel__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 30px;
}

.company-copy {
  padding: 0;
}

.company-copy__eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.company-copy h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.15rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.company-copy p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.company-copy strong {
  color: var(--white);
}

.about-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.about-stat,
.about-note {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.about-stat:hover,
.about-note:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.about-stat__label {
  margin: 0 0 10px;
  color: var(--soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.about-stat__value {
  margin: 0;
  font-size: 2.45rem;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-stat__text,
.about-note p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.about-note h3 {
  margin: 0;
  font-size: 1rem;
}

.company-highlights {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  margin-top: 24px;
}

.belief-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, #dd6eff 0%, #9a5cff 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.belief-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -34px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(6px);
}

.belief-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(154, 92, 255, 0.2);
}

.belief-card h3 {
  margin: 0 0 12px;
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.belief-card p {
  margin: 0;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.86);
}

.belief-card blockquote {
  margin: 0;
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.7;
  font-weight: 500;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

.belief-card blockquote::before {
  content: open-quote;
  display: block;
  margin-bottom: 6px;
  font-size: 3.6rem;
  line-height: 0.5;
  color: rgba(255, 255, 255, 0.5);
}

.value-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(17, 8, 29, 0.72);
}

.value-panel h3 {
  margin: 0 0 10px;
  font-size: 2rem;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.value-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

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

.value-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  transition: transform 200ms ease;
}

.value-list article:hover {
  transform: translateX(4px);
}

.value-list__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.value-list__icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  opacity: 0.94;
  filter: none;
}

.value-list h4 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.value-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.services-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.service-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background:
    radial-gradient(circle at 16% 18%, rgba(205, 99, 255, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(25, 11, 42, 0.92), rgba(16, 8, 28, 0.92));
  text-align: center;
}

.service-overview p {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.98rem;
}

.service-overview blockquote {
  margin: 0;
  max-width: 32ch;
  color: rgba(248, 240, 255, 0.88);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 500;
  quotes: "\201C" "\201D" "\2018" "\2019";
}

.service-overview blockquote::before {
  content: open-quote;
  display: block;
  margin-bottom: 8px;
  font-size: 3.5rem;
  line-height: 0.5;
  color: rgba(205, 99, 255, 0.5);
}

.service-list {
  display: grid;
  gap: 16px;
  counter-reset: service;
}

.service-card {
  position: relative;
  padding: 22px 24px 22px 72px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 8, 29, 0.82), rgba(13, 7, 23, 0.9));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card::before {
  counter-increment: service;
  content: "0" counter(service);
  position: absolute;
  left: 22px;
  top: 22px;
  color: var(--soft);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

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

.why {
  position: relative;
}

.why__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why__lead {
  width: min(760px, 100%);
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.why-card-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  position: relative;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(23, 11, 39, 0.95), rgba(12, 7, 22, 0.94));
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: auto -34px -42px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(205, 99, 255, 0.1);
  filter: blur(4px);
}

.why-card h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

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

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(227, 114, 255, 0.22), rgba(122, 88, 255, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.why-card:hover .icon-badge {
  transform: translateY(-2px) scale(1.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(205, 99, 255, 0.16);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-banner {
  overflow: hidden;
  border-radius: 26px;
}

.cta-banner__visual {
  position: relative;
  min-height: 250px;
  background:
    linear-gradient(90deg, rgba(12, 8, 23, 0.86), rgba(12, 8, 23, 0.26)),
    linear-gradient(135deg, rgba(119, 84, 255, 0.34), rgba(255, 255, 255, 0.04));
}

.cta-banner__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 24%, rgba(211, 101, 255, 0.35), transparent 16%),
    radial-gradient(circle at 86% 72%, rgba(255, 255, 255, 0.09), transparent 16%);
}

.cta-banner__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.08) 35%, transparent 50%);
  transform: translateX(-120%);
  animation: sheen 9s linear infinite;
}

.cta-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 28px;
  min-height: 250px;
  padding: 38px 34px;
}

.cta-banner h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.footer {
  display: grid;
  grid-template-columns: 0.9fr 2.1fr;
  gap: 32px;
  padding: 44px 0 16px;
}

.footer__brand img {
  width: 84px;
}

.footer__company {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  max-width: 320px;
}

.footer__company strong {
  font-size: 1.08rem;
  font-weight: 600;
}

.footer__company p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.footer h3 {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer__bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.84rem;
}

main > .section,
.company-highlights,
.why-card,
.service-card,
.value-panel,
.belief-card,
.about-stat,
.about-note {
  animation: fadeSlideUp 820ms ease-out both;
}

main > .section:nth-of-type(2) {
  animation-delay: 120ms;
}

main > .section:nth-of-type(3) {
  animation-delay: 180ms;
}

main > .section:nth-of-type(4) {
  animation-delay: 240ms;
}

main > .section:nth-of-type(5) {
  animation-delay: 300ms;
}

.service-card:nth-child(1),
.why-card:nth-child(1),
.value-list article:nth-child(1) {
  animation-delay: 80ms;
}

.service-card:nth-child(2),
.why-card:nth-child(2),
.value-list article:nth-child(2) {
  animation-delay: 140ms;
}

.service-card:nth-child(3),
.value-list article:nth-child(3) {
  animation-delay: 200ms;
}

.service-card:nth-child(4),
.value-list article:nth-child(4) {
  animation-delay: 260ms;
}

.service-card:nth-child(5) {
  animation-delay: 320ms;
}

@keyframes floatLogo {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes gridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 0 48px, 48px 0;
  }
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(140%);
  }
}

@keyframes customerDrift {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--logo-loop-distance)));
  }
}

@keyframes cosmosDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    background-position: 0 0, 0 0, 9% 13%, 81% 18%, 27% 52%, 78% 75%, 46% 94%;
    opacity: 0.92;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate3d(-10px, 8px, 0) scale(1.03);
    background-position: -18px 10px, 16px -12px, 11% 14%, 79% 19%, 29% 50%, 76% 77%, 47% 92%;
    opacity: 0.96;
  }
}

@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 18px rgba(205, 99, 255, 0.76);
  }
  50% {
    transform: scale(1.18);
    box-shadow: 0 0 24px rgba(205, 99, 255, 0.92);
  }
}

@media (max-width: 920px) {
  .about-panel__grid,
  .company-highlights,
  .services-grid,
  .why-grid,
  .why-card-group,
  .footer,
  .footer__cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 24px), 1120px);
    padding-top: 14px;
  }

  .hero {
    padding-top: 26px;
  }

  .customers {
    padding: 14px;
  }

  .customer-logo {
    flex-basis: 142px;
  }

  .about-panel,
  .company-copy,
  .service-overview,
  .why-card,
  .cta-banner__content {
    padding: 22px;
  }

  .service-card {
    padding-left: 24px;
  }

  .service-card::before,
  .service-card::after {
    position: static;
    display: block;
  }

  .service-card::before {
    margin-bottom: 10px;
  }

  .service-card::after {
    margin-bottom: 12px;
  }

  .footer__bottom {
    display: grid;
    justify-content: start;
  }
}

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