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

:root {
  --red: #da4d4a;
  --red-deep: #d44946;
  --white: #ffffff;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

html,
body {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--red);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--red);
  padding-bottom: clamp(72px, 10vh, 140px);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__watermark {
  position: absolute;
  opacity: 0.55;
  user-select: none;
}

.hero__watermark--left {
  width: min(92vw, 920px);
  left: -28%;
  top: 8%;
  transform: rotate(-18deg);
}

.hero__watermark--right {
  width: min(80vw, 780px);
  right: -22%;
  bottom: -18%;
  transform: rotate(28deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: min(920px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
  padding-top: clamp(48px, 9vh, 96px);
  padding-bottom: clamp(48px, 7vh, 80px);
}

.hero__kicker {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

.hero__title {
  margin-top: 18px;
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.hero__subtitle {
  margin-top: 16px;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 400;
  line-height: 1.4;
}

.hero__stores {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.store-badge {
  display: inline-flex;
  height: 40px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-badge img {
  height: 100%;
  width: auto;
  display: block;
}

.store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.hero__devices {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}

.hero__phones {
  display: block;
  width: min(760px, 68vw);
  height: auto;
}

.hero__phones--mobile {
  display: none;
}

@media (max-width: 1279px) {
  .hero {
    padding-bottom: clamp(64px, 10vh, 120px);
  }

  .hero__content {
    width: min(560px, calc(100% - 40px));
    padding-top: clamp(36px, 7vh, 64px);
    padding-bottom: clamp(36px, 5vh, 56px);
  }

  .hero__kicker {
    font-size: 15px;
  }

  .hero__title {
    margin-top: 14px;
    font-size: clamp(28px, 8vw, 40px);
  }

  .hero__subtitle {
    font-size: clamp(15px, 4vw, 18px);
  }

  .hero__stores {
    margin-top: 22px;
    gap: 10px;
  }

  .store-badge {
    height: 36px;
  }

  .hero__phones--desktop {
    display: none;
  }

  .hero__phones--mobile {
    display: block;
    width: min(420px, 88%);
  }

  .hero__watermark--left {
    width: 140vw;
    left: -70%;
    top: -8%;
  }

  .hero__watermark--right {
    width: 110vw;
    right: -48%;
    bottom: -10%;
  }
}

@media (max-width: 480px) {
  .hero__stores {
    gap: 8px;
  }

  .store-badge {
    height: 34px;
  }
}
