:root {
  --bg-1: #140602;
  --bg-2: #752d16;
  --bg-3: #ea8f23;
  --headline: #ffffff;
  --headline-shadow: rgba(0, 0, 0, 0.35);
  --outline: #ff7f2d;
  --hero-aspect: 1872 / 1056;
  --badge-top: 87.88%;
  --badge-height: 8.24%;
  --badge-width: 15.28%;
  --badge-apple-left: 33.6%;
  --badge-google-left: 51.39%;
}

* {
  box-sizing: border-box;
}

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

body {
  color: var(--headline);
  font-family: "Bebas Neue", "Segoe UI", Tahoma, sans-serif;
  overflow: hidden;
  background:
    radial-gradient(1200px 650px at 50% 58%, rgba(255, 183, 87, 0.2), transparent 64%),
    radial-gradient(900px 450px at 50% 0%, rgba(255, 214, 158, 0.2), transparent 52%),
    linear-gradient(130deg, var(--bg-1) 0%, var(--bg-2) 45%, var(--bg-3) 100%);
}

.landing-page {
  min-height: 100svh;
  width: 100%;
  display: block;
}

.hero-wrap {
  position: relative;
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: min(100vw, calc(100svh * 1872 / 1056));
  height: min(100svh, calc(100vw * 1056 / 1872));
  aspect-ratio: var(--hero-aspect);
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.store-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.store-badge {
  position: absolute;
  top: var(--badge-top);
  width: var(--badge-width);
  height: var(--badge-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}

.store-badge--apple {
  left: var(--badge-apple-left);
}

.store-badge--google {
  left: var(--badge-google-left);
}

.store-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(3px) saturate(0.8);
}

.store-badge__ribbon {
  position: relative;
  z-index: 1;
  min-width: 118%;
  padding: 0.34em 0.55em;
  text-align: center;
  color: #fff;
  font-family: "Bebas Neue", "Segoe UI", Tahoma, sans-serif;
  font-size: clamp(0.58rem, 1.05vw, 0.88rem);
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-7deg);
  background: linear-gradient(118deg, #8f3214 0%, #ff7f2d 52%, #ffb347 100%);
  box-shadow:
    0 3px 12px rgba(117, 45, 22, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(117, 45, 22, 0.35);
  text-shadow: 0 1px 0 rgba(117, 45, 22, 0.35);
}

@media (max-width: 640px) {
  .store-badge__ribbon {
    font-size: clamp(0.5rem, 2.6vw, 0.68rem);
    letter-spacing: 0.16em;
    min-width: 122%;
    padding: 0.3em 0.45em;
  }
}
