:root {
  --landing-bg: #f3f3f5;
  --landing-text: #3b4050;
  --landing-muted: #7d8392;
  --landing-dark: #151927;
  --landing-card: #ececee;
  --landing-container: 1180px;
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

a,
a:hover,
a:active,
a:visited,
a:focus,
a:focus-visible {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.landing-page {
  background: var(--landing-bg);
}

.landing-container {
  width: 100%;
  max-width: var(--landing-container);
  margin: 0 auto;
  padding: 0 24px;
}

.landing-footer {
  text-align: center;
  padding: 28px 20px 40px;
  color: var(--landing-muted);
  font-size: 14px;
  line-height: 1;
}

/* Shared store buttons */

.landing-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.landing-store-button,
.landing-store-button:hover,
.landing-store-button:active,
.landing-store-button:visited,
.landing-store-button:focus,
.landing-store-button:focus-visible {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 56px;
  min-width: 190px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.12s ease;
}

  .landing-store-button:hover {
    transform: translateY(-1px);
  }

.landing-store-button__text,
.landing-store-button__text:hover,
.landing-store-button__text:active,
.landing-store-button__text:visited {
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 16px;
  color: inherit;
  text-decoration: none;
}

.landing-store-button--dark,
.landing-store-button--dark:hover,
.landing-store-button--dark:active,
.landing-store-button--dark:visited,
.landing-store-button--dark:focus,
.landing-store-button--dark:focus-visible {
  background: linear-gradient(180deg, #1c2132 0%, #141826 100%);
  color: #ffffff;
}

.landing-store-button--light,
.landing-store-button--light:hover,
.landing-store-button--light:active,
.landing-store-button--light:visited,
.landing-store-button--light:focus,
.landing-store-button--light:focus-visible {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #151927;
}

.landing-store-button__icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.landing-store-button__icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.landing-store-button__icon--light {
  filter: brightness(0) invert(1);
}

.landing-store-button__icon--dark {
  filter: brightness(0);
}

.landing-store-buttons--featured .landing-store-button,
.landing-store-buttons--featured .landing-store-button:hover,
.landing-store-buttons--featured .landing-store-button:active,
.landing-store-buttons--featured .landing-store-button:visited,
.landing-store-buttons--featured .landing-store-button:focus,
.landing-store-buttons--featured .landing-store-button:focus-visible {
  height: 64px;
  min-width: 320px;
  padding: 0 28px;
  gap: 14px;
}

.landing-store-buttons--featured .landing-store-button__text {
  font-size: 18px;
}

.landing-store-buttons--featured .landing-store-button__icons {
  gap: 10px;
}

.landing-store-buttons--featured .landing-store-button__icon {
  width: 26px;
  height: 26px;
}

/* Shared CTA */

.landing-cta {
  padding: 56px 0 20px;
}

.landing-cta__card,
.landing-cta__card:hover,
.landing-cta__card:active,
.landing-cta__card:visited,
.landing-cta__card:focus,
.landing-cta__card:focus-visible {
  display: block;
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(135deg, #171b2a 0%, #111523 100%);
  border-radius: 32px;
  padding: 54px 24px 52px;
  text-align: center;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

  .landing-cta__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(21, 25, 39, 0.12);
  }

.landing-cta__icon {
  width: 156px;
  height: 156px;
  margin: 0 auto 26px;
}

.landing-cta__title {
  margin: 0;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.landing-cta__text {
  margin: 16px auto 0;
  max-width: 620px;
  font-size: 20px;
  line-height: 1.42;
  color: rgba(255,255,255,0.74);
}

.landing-store-buttons--cta {
  margin-top: 30px;
  gap: 14px;
}

/* Mobile */

@media (max-width: 860px) {
  .landing-cta__title {
    font-size: 36px;
  }

  .landing-cta__text {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .landing-container {
    padding: 0 16px;
  }

  .landing-store-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .landing-store-button,
  .landing-store-button:hover,
  .landing-store-button:active,
  .landing-store-button:visited,
  .landing-store-button:focus,
  .landing-store-button:focus-visible {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }

  .landing-store-buttons--featured .landing-store-button,
  .landing-store-buttons--featured .landing-store-button:hover,
  .landing-store-buttons--featured .landing-store-button:active,
  .landing-store-buttons--featured .landing-store-button:visited,
  .landing-store-buttons--featured .landing-store-button:focus,
  .landing-store-buttons--featured .landing-store-button:focus-visible {
    height: 60px;
  }

  .landing-cta__card {
    padding: 40px 18px 36px;
  }

  .landing-cta__icon {
    width: 112px;
    height: 112px;
    margin-bottom: 22px;
  }

  .landing-cta__title {
    font-size: 30px;
  }

  .landing-cta__text {
    font-size: 16px;
  }
}
