:root {
  --red: #ff0f00;
  --black: #000000;
  --ink: #141414;
  --gray: #f3f4f6;
  --gray-strong: #d7dbe0;
  --white: #ffffff;
  --muted: #5f6670;
  --line: rgba(0, 0, 0, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--white);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Lato", Arial, sans-serif;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 15, 0, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f6f7f9 56%, #e9edf2 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(0, 0, 0, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(100deg, transparent, #000 22%, #000 82%, transparent);
  mask-image: linear-gradient(100deg, transparent, #000 22%, #000 82%, transparent);
  opacity: 0.42;
}

a {
  color: inherit;
}

.page-shell {
  display: grid;
  min-height: calc(100vh - 82px);
  place-items: center;
  padding: 42px 20px 28px;
}

.hero {
  width: min(1120px, 100%);
}

.hero__content {
  position: relative;
  max-width: 820px;
  padding: clamp(28px, 6vw, 72px) 0;
}

.hero__content::after {
  position: absolute;
  right: max(-280px, -18vw);
  bottom: 8%;
  width: min(430px, 42vw);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  opacity: 0.5;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 34px;
}

.brand img {
  display: block;
  width: min(220px, 62vw);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.14));
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 15, 0, 0.28);
  border-radius: 999px;
  color: var(--red);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  background: rgba(255, 15, 0, 0.07);
}

h1,
h2 {
  margin: 0;
  font-family: "Poppins", Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.98;
  font-weight: 800;
}

.lead {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.68;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button,
.store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 8px;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button--primary {
  padding: 0 28px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 14px 36px rgba(255, 15, 0, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  transform: translateY(-2px);
  background: var(--black);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.apps {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 880px;
  margin-top: 42px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.apps h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  line-height: 1.2;
}

.apps p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.store-link {
  gap: 10px;
  min-width: 202px;
  padding: 0 16px;
  color: var(--white);
  border: 1px solid var(--black);
  background: var(--black);
}

.store-link svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.store-link span {
  font-size: 0.9rem;
  white-space: nowrap;
}

.store-link:hover,
.store-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--red);
  background: var(--red);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  padding: 0 20px 22px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 700;
  text-decoration-color: rgba(255, 15, 0, 0.42);
  text-underline-offset: 4px;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

@media (max-width: 760px) {
  .page-shell {
    min-height: auto;
    padding-top: 28px;
  }

  .hero__content {
    padding-bottom: 22px;
  }

  .hero__content::after {
    display: none;
  }

  .brand {
    margin-bottom: 28px;
  }

  .actions,
  .button,
  .apps,
  .store-links,
  .store-link {
    width: 100%;
  }

  .button,
  .store-link {
    min-height: 58px;
  }

  .apps {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .store-links {
    justify-content: stretch;
  }

  .site-footer {
    justify-content: flex-start;
  }
}
