:root {
  --app-club-bg: #2f190e;
  --app-club-bg-soft: #3f2314;
  --app-club-text: #ffffff;
  --app-club-phone-shell: #f4e7d6;
  --app-club-phone-panel: #e9d3b8;
  --app-club-phone-line: rgba(80, 35, 20, 0.12);
  --app-club-store-bg: #111111;
  --app-club-store-border: rgba(255, 255, 255, 0.28);
  --app-club-store-hover: #1d1d1d;
  --app-club-shadow: 0 22px 48px rgba(0, 0, 0, 0.26);
}

.app-download-club {
  position: relative;
  width: 100%;
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 4vw, 2.4rem);
  color: var(--app-club-text);
  background-color: var(--app-club-bg);
  background-image: radial-gradient(circle at 16% 22%, rgba(251, 185, 0, 0.08), transparent 35%),
    radial-gradient(circle at 84% 78%, rgba(255, 214, 153, 0.1), transparent 42%),
    linear-gradient(135deg, var(--app-club-bg) 0%, var(--app-club-bg-soft) 100%);
}

.app-download-club__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.2rem);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.app-download-club__mockup {
  display: grid;
  place-items: center;
  margin: 0;
}

.app-phone-mockup {
  width: min(100%, 19rem);
  padding: 0.85rem;
  border-radius: 2rem;
  background-color: var(--app-club-phone-shell);
  box-shadow: var(--app-club-shadow);
}

.app-phone-mockup__header {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  padding: 0.52rem 0.65rem;
}

.app-phone-mockup__header .material-symbols-outlined {
  font-size: 1.05rem;
  color: #502314;
}

.app-phone-mockup__header p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #502314;
}

.app-phone-mockup__body {
  padding: 0.55rem;
}

.app-phone-mockup__screen {
  margin: 0;
  padding: 0.72rem;
  border-radius: 1.35rem;
  background-color: var(--app-club-phone-panel);
}

.app-phone-mockup__screen img {
  display: block;
  width: min(100%, 15.5rem);
  height: auto;
  margin: 0 auto;
  border-radius: 1rem;
}

.app-phone-mockup__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  margin-top: 0.35rem;
  padding: 0.58rem 0.6rem 0.54rem;
  border-top: 1px solid var(--app-club-phone-line);
}

.app-phone-mockup__nav .material-symbols-outlined {
  font-size: 1.2rem;
  color: #6d402e;
}

.app-download-club__content {
  display: grid;
  gap: 1.35rem;
  width: min(100%, 600px);
}

.app-download-club__title {
  margin: 0;
  max-width: 19ch;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4.8vw, 3.25rem);
  font-weight: 400;
  line-height: 0.97;
  text-transform: uppercase;
  color: var(--app-club-text);
}

.app-download-club__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-button {
  display: inline-flex;
  gap: 0.62rem;
  align-items: center;
  min-height: 3.35rem;
  padding: 0.65rem 0.95rem;
  color: #ffffff;
  text-decoration: none;
  background-color: var(--app-club-store-bg);
  border: 1px solid var(--app-club-store-border);
  border-radius: 0.9rem;
  transition: background-color var(--transition-base), transform var(--transition-base),
    border-color var(--transition-base);
}

.store-button:hover,
.store-button:focus-visible {
  background-color: var(--app-club-store-hover);
  border-color: rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
}

.store-button__icon {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.store-button__copy {
  display: grid;
  line-height: 1.05;
}

.store-button__copy span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.store-button__copy strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

@media (min-width: 900px) {
  .app-download-club__container {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .app-download-club__content {
    justify-self: start;
  }
}

@media (max-width: 899px) {
  .app-download-club__content {
    justify-items: center;
    text-align: center;
  }

  .app-download-club__title {
    max-width: 24ch;
  }

  .app-download-club__actions {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .app-phone-mockup {
    width: min(100%, 17rem);
  }

  .store-button {
    width: min(100%, 16.5rem);
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-button {
    transition: none !important;
  }
}