/*
 * файл: landing-core.css
 * назначение: базовые стили landing
 */

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

html {
  background: #020714;
}

body {
  overflow-x: hidden;
  font-family: arial, sans-serif;
  color: #eaf6ff;
  background: #020714;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.seo-h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.landing {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: #020714;
}

.landing-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
}

.landing-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("/assets/landing/home/backgrounds/landing_space_1920.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.landing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 36%, rgba(36, 142, 255, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(2, 7, 20, 0.9), rgba(2, 7, 20, 0.18), rgba(2, 7, 20, 0.46));
}

.landing-content {
  position: relative;
  z-index: 20;
  width: 100vw;
  height: 100%;
  padding: 24px 0 24px 54px;
}

.landing-header {
  width: 390px;
}

.landing-logo {
  width: 390px;
  height: auto;
}

.landing-tagline {
  width: 390px;
  margin-top: -2px;
  color: #9ccfff;
  font-size: 13px;
  letter-spacing: 3px;
  text-align: center;
  text-shadow: 0 0 12px rgba(68, 184, 255, 0.6);
}