@font-face {
  font-family: "OrbitronLocal";
  src: url("../fonts/orbitron-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "OrbitronLocal";
  src: url("../fonts/orbitron-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SpaceGroteskLocal";
  src: url("../fonts/space-grotesk-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "SpaceGroteskLocal";
  src: url("../fonts/space-grotesk-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #05040a;
  --bg-soft: rgba(11, 12, 26, 0.76);
  --surface: rgba(11, 14, 32, 0.72);
  --surface-strong: rgba(18, 22, 44, 0.92);
  --line: rgba(143, 115, 255, 0.25);
  --text: #eef2ff;
  --text-soft: #b5c0ff;
  --text-muted: #8f9bcc;
  --violet: #9f64ff;
  --violet-strong: #ca56ff;
  --blue: #0fd7ff;
  --blue-soft: #5ab8ff;
  --pink: #ff51c8;
  --shadow: 0 20px 90px rgba(8, 11, 30, 0.7);
  --glow: 0 0 40px rgba(15, 215, 255, 0.18), 0 0 80px rgba(159, 100, 255, 0.14);
  --radius: 1.4rem;
  --radius-lg: 2rem;
  --container: min(1200px, calc(100vw - 2rem));
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(159, 100, 255, 0.16), transparent 34%),
    radial-gradient(circle at left center, rgba(15, 215, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #040308 0%, #05040a 50%, #05040a 100%);
  color: var(--text);
  font-family: "SpaceGroteskLocal", "Trebuchet MS", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.24;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 81, 200, 0.12), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(15, 215, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 88%, rgba(159, 100, 255, 0.14), transparent 26%);
  filter: blur(24px);
}

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

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

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "OrbitronLocal", "Verdana", sans-serif;
  letter-spacing: 0.02em;
  line-height: 1.08;
  color: var(--text);
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5.4rem);
}

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

h3 {
  font-size: clamp(1.18rem, 1.9vw, 1.5rem);
}

ul {
  margin: 0;
  padding: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 200;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 120;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue), var(--violet), var(--pink));
  box-shadow: 0 0 18px rgba(15, 215, 255, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(18px);
  background: rgba(5, 4, 10, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(15, 215, 255, 0.18), rgba(159, 100, 255, 0.22));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--glow);
  color: var(--blue);
}

.brand__mark svg {
  width: 1.3rem;
  height: 1.3rem;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.brand__copy strong {
  font-family: "OrbitronLocal", "Verdana", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand__copy small {
  max-width: 19rem;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.site-header__menus {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.main-nav a,
.lang-switcher a {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.92rem;
  transition: color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.main-nav a:hover,
.main-nav a.is-active,
.lang-switcher a:hover,
.lang-switcher a.is-active {
  color: var(--text);
  background: rgba(143, 115, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(143, 115, 255, 0.18), 0 0 18px rgba(15, 215, 255, 0.08);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.32rem;
  width: 2.9rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  padding: 5.8rem 0 3.4rem;
}

.hero--inner {
  padding-top: 4.8rem;
}

.hero--narrow .hero__content {
  max-width: 56rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero__grid--inner {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero__content .lead {
  max-width: 50rem;
  font-size: 1.05rem;
}

.hero__visual {
  position: relative;
  min-height: 23rem;
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
}

.hero__visual-overlay {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 1.2rem;
  background: linear-gradient(160deg, rgba(5, 4, 10, 0.74), rgba(6, 8, 20, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button--small {
  min-height: 2.5rem;
  padding: 0.65rem 1rem;
  font-size: 0.92rem;
}

.button--primary {
  background: linear-gradient(135deg, rgba(15, 215, 255, 0.2), rgba(159, 100, 255, 0.3));
  border-color: rgba(15, 215, 255, 0.28);
  box-shadow: 0 0 28px rgba(15, 215, 255, 0.14);
}

.button--primary:hover {
  box-shadow: 0 0 36px rgba(159, 100, 255, 0.22);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.eyebrow,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 215, 255, 0.08);
  border: 1px solid rgba(15, 215, 255, 0.15);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--blue);
}

.chip {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  aspect-ratio: 1;
  border-radius: 0.95rem;
  background: linear-gradient(155deg, rgba(15, 215, 255, 0.13), rgba(159, 100, 255, 0.18));
  color: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 24px rgba(15, 215, 255, 0.08);
}

.icon-wrap--small {
  width: 1.8rem;
  border-radius: 0.7rem;
}

.icon-wrap svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.glow-panel,
.glow-card,
 .metric-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.glow-panel,
 .metric-card {
  border-radius: var(--radius-lg);
}

.glow-card {
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.glow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 215, 255, 0.18);
  box-shadow: 0 18px 52px rgba(6, 10, 28, 0.78), 0 0 42px rgba(159, 100, 255, 0.13);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.metric-card {
  padding: 1rem 1.05rem;
}

.metric-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "OrbitronLocal", "Verdana", sans-serif;
  color: var(--text);
}

.metric-card span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.section {
  padding: 2.2rem 0 4rem;
}

.section--muted {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.8rem;
  max-width: 48rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.cards-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-grid--services .service-card {
  height: 100%;
}

.process-card,
.fact-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fact-card small {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.fact-card strong {
  font-size: 1.05rem;
  line-height: 1.5;
}

.service-card {
  overflow: hidden;
  padding: 0;
}

.service-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card:hover .service-card__image img {
  transform: scale(1.05);
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem;
}

.service-card__body p {
  color: var(--text-muted);
}

.service-card__body h3 a:hover {
  color: var(--blue);
}

.text-link {
  width: fit-content;
  color: var(--blue);
  font-weight: 500;
}

.text-link:hover {
  color: var(--violet-strong);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.4rem;
  padding: 1.5rem;
  margin-top: 1.4rem;
  align-items: center;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.triptych {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.list-clean {
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.list-clean li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  box-shadow: 0 0 16px rgba(15, 215, 255, 0.44);
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline__item {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.timeline__dot {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  margin-top: 1rem;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 0 22px rgba(15, 215, 255, 0.55);
}

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

.splide__arrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.splide__arrow svg {
  fill: var(--text);
}

.splide__pagination__page {
  background: rgba(255, 255, 255, 0.2);
}

.splide__pagination__page.is-active {
  background: var(--blue);
  transform: scale(1.2);
}

.site-footer {
  padding: 3rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 3, 7, 0.84);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.4rem;
}

.site-footer__grid h2 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.site-footer__bottom {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: grid;
  gap: 0.7rem;
  list-style: none;
}

.footer-links a {
  color: var(--text-soft);
}

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

.brand--footer {
  margin-bottom: 1rem;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1080px) {
  .hero__grid,
  .hero__grid--inner,
  .cta-panel,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .cards-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .triptych,
  .cards-grid,
  .cards-grid--two,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-header__menus {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1.5rem;
    background: rgba(8, 10, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }

  body.nav-open .site-header__menus {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav,
  .lang-switcher {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 4.8rem;
  }

  .cards-grid,
  .cards-grid--two,
  .cards-grid--four,
  .policy-grid,
  .triptych,
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(100vw - 1.25rem, 1200px);
  }

  .site-header__inner {
    min-height: 4.6rem;
  }

  .brand__copy small {
    display: none;
  }

  .hero__visual img,
  .hero__visual {
    min-height: 18rem;
  }

}
