:root {
  --page-bg: #f6f6f6;
  --page-bg-top: #fcfcfc;
  --page-bg-bottom: #efefef;
  --text-primary: #050505;
  --text-secondary: rgba(0, 0, 0, 0.4);
  --gold: #f3b700;
  --headline-font: "SF Pro Display", "SF Pro Text", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --accent-font: "Sriracha", "Brush Script MT", cursive;
}

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

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

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text-primary);
  font-family: var(--headline-font);
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(14px, 2.8vh, 24px) 18px;
}

.hero {
  width: min(100%, 414px);
  display: flex;
  justify-content: center;
}

.hero__body {
  width: min(100%, 319px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(28px, 4.2vh, 60px);
  padding: clamp(14px, 4vh, 84px) 0;
}

.hero__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vh, 16px);
}

.hero__logo {
  display: block;
  width: min(clamp(188px, 35vh, 260px), 100%);
  height: auto;
}

.hero__headline {
  text-align: center;
}

.hero__headline h1 {
  margin: 0 0 8px;
  font-size: clamp(2.95rem, 12vw, 4rem);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hero__headline p {
  margin: 0;
  font-size: clamp(1.6rem, 6.8vw, 2.25rem);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero__watch {
  margin-top: 2px;
}

.hero__proof {
  width: 100%;
  display: grid;
  grid-template-columns: clamp(36px, 10vw, 45px) 1fr clamp(36px, 10vw, 45px);
  align-items: center;
  gap: clamp(10px, 2vh, 16px);
}

.hero__laurel {
  display: block;
  width: 100%;
  height: auto;
}

.hero__laurel--right {
  transform: scaleX(-1);
}

.hero__choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.hero__choice-label {
  margin: 0;
  font-family: var(--accent-font);
  font-size: clamp(1.25rem, 2.8vh, 1.5rem);
  line-height: 1.5;
  font-weight: 400;
  color: #000;
}

.hero__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(4px, 1vw, 6px);
  font-size: clamp(24px, 3.6vh, 28px);
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero__rating {
  margin: 0;
  font-size: clamp(1rem, 2.4vh, 1.25rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: -0.03em;
}

.hero__download {
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  width: clamp(188px, 48vw, 210px);
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 200ms ease,
    filter 200ms ease;
}

.hero__download:hover,
.hero__download:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.08));
}

.hero__download:focus-visible {
  outline: 3px solid rgba(64, 161, 255, 0.45);
  outline-offset: 8px;
  border-radius: 18px;
}

.hero__download img {
  display: block;
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 360px) {
  .page {
    padding-inline: 14px;
  }

  .hero__proof {
    grid-template-columns: 36px 1fr 36px;
    gap: 10px;
  }

  .hero__laurel {
    width: 36px;
    height: auto;
  }

  .hero__choice-label {
    font-size: 1.35rem;
  }

  .hero__rating {
    font-size: 1.1rem;
  }
}

@media (max-height: 700px) {
  .hero__body {
    gap: 24px;
    padding-block: 12px;
  }

  .hero__headline h1 {
    margin-bottom: 6px;
  }

  .hero__headline p {
    line-height: 1.14;
  }

  .hero__download {
    width: 184px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__download {
    transition: none;
  }
}
