/* Общий фон с комбинированным градиентом */
html {
  font-size: 14px; /* 1rem = 16px */
}
body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #fff;
  height: 100vh;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(1, 149, 255, 0.2) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(1, 149, 255, 0.2) 0%, transparent 70%), #0195ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Контейнер, делим экран на 2 части */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 120rem; /* 1920px */
  width: 100%;
  padding: 0 1.875rem 0 8.875rem; /* 30px 142px */
  box-sizing: border-box;
}

/* Левая колонка */
.left {
}

.logo {
  width: 29.125rem; /* 466px */
  max-width: 100%;
  height: auto;
  margin-bottom: 2.625rem; /* 42px */
}

.headline {
  font-size: 2.375rem; /* 38px */
  font-weight: 700;
  margin: 0 0 0.5rem; /* 8px */
}

.subheadline {
  font-size: 1.5rem; /* 24px */
  font-weight: 400;
  margin: 0 0 2.625rem; /* 42px */
  line-height: 1.4;
}

.store-buttons {
  display: flex;
  gap: 1.5625rem; /* 25px */
}

.store-buttons img {
  width: 15.1875rem; /* 243px */
  height: 5.0625rem; /* 81px */
  object-fit: contain;
  transition: transform 0.2s ease;
}

.store-buttons img:hover {
  transform: scale(1.05);
}

/* Правая колонка */
.right {
  display: flex;
  justify-content: center;
}

.screenshot {
  width: 62.25rem; /* 996px */
  max-width: 100%;
  height: auto;
}
@media (max-width: 1400px) {
  html {
    font-size: 12px; /* 1rem = 16px */
  }
  .container {
    padding: 0 1.875rem 0 4.875rem; /* 30px 142px */
  }
  .left {
    flex: auto;
  }
}
/* 📱 Мобильная версия */
@media (max-width: 1024px) {
  /* 1024px */
  .container {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem; /* 20px */
  }

  .left {
    max-width: 100%;
    margin-bottom: 1.875rem; /* 30px */
  }

  .right {
    max-width: 100%;
    justify-content: center;
  }

  .logo {
    width: 17.5rem; /* 280px */
    margin-bottom: 1.25rem; /* 20px */
  }

  .headline {
    font-size: 1.625rem; /* 26px */
    margin-bottom: 0.625rem; /* 10px */
  }

  .subheadline {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 1.25rem; /* 20px */
  }

  .store-buttons {
    justify-content: center;
  }

  .store-buttons img {
    width: 9.375rem; /* 150px */
    height: 3.125rem; /* 50px */
  }

  .screenshot {
    max-width: 90%;
    margin: 0 auto;
  }
}
