:root {
  --primary: #075eb8;
  --primary-2: #0b82e6;
  --accent: #72dc18;
  --ink: #111827;
  --muted: #667085;
  --line: #e8edf5;
  --surface: #ffffff;
  --soft: #f7f9fd;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(114, 220, 24, 0.14), transparent 26rem),
    radial-gradient(circle at 82% 12%, rgba(11, 130, 230, 0.14), transparent 28rem),
    #fbf9fa;
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.lang-en {
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--primary);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #fff;
  animation: loaderOut 1.25s ease 0.65s forwards;
}

.page-loader img {
  width: 8rem;
  animation: loaderPulse 0.9s ease-in-out infinite alternate;
}

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes loaderOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loaderPulse {
  to {
    transform: scale(1.08) rotate(-2deg);
  }
}

@keyframes floatY {
  50% {
    transform: translateY(-14px);
  }
}

@keyframes glowSweep {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  100% {
    transform: translateX(220%) skewX(-18deg);
  }
}

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

@keyframes pulseRing {
  50% {
    transform: scale(1.08);
    opacity: 0.55;
  }
}

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