/* iPhone 14 Pro Max & iPhone 15 Pro Max — 430 × 932 CSS px */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #1a0000;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 430px;
  height: 932px;
  max-height: 100vh;
  flex-shrink: 0;
  padding: 0 13px;
  overflow: hidden;
  background: url('../img/bg-main.jpg') no-repeat center top;
  background-size: 100% 100%;
}

.landing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

/* Hero banner — 702×1020 asset */
.hero-banner {
  flex-shrink: 0;
  width: 404px;
  line-height: 0;
}

.hero-banner img {
  display: block;
  max-width: 350px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* CTA section — 698×176 button asset */
.cta-section {
  flex-shrink: 0;
  width: 394px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-button {
  position: relative;
  display: block;
  width: 394px;
  height: 99px;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.12s ease;
}

.cta-button:active {
  transform: scale(0.95);
}

.cta-button:active .cta-button__bg {
  filter: brightness(0.88);
}

.cta-button__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  pointer-events: none;
  transition: filter 0.12s ease;
}

.cta-button__label {
  position: absolute;
  top: 30px;
  left: 40px;
  right: 56px;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Social proof */
.social-proof {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  position: relative;
  top: -16px;
}

.social-proof__highlight {
  color: #ff3b30;
  font-weight: 700;
}
