/**
 * /get-app — 배너 QR 앱 설치 분기 (own shell)
 */
@font-face {
  font-family: Pretendard;
  src: url('/fonts/Pretendard/PretendardVariable.woff2') format('woff2-variations');
  font-weight: 45 920;
  font-display: swap;
}

.ga-body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--wh-bg-stay, #F5F5F5);
  color: var(--wh-tx, #1A1A1A);
  font-family: var(--wh-ff, Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif);
  -webkit-font-smoothing: antialiased;
}

.ga-shell {
  box-sizing: border-box;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px calc(32px + env(safe-area-inset-bottom, 0px));
}

.ga-card {
  width: 100%;
  max-width: 420px;
  background: var(--wh-card, #fff);
  border-radius: var(--wh-radius-md, 20px);
  box-shadow: var(--wh-shadow-listing);
  padding: 36px 28px 32px;
  text-align: center;
}

.ga-icon {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: var(--wh-radius-sm, 16px);
}

.ga-title {
  margin: 0 0 10px;
  font-family: var(--wh-ff-display, "SUIT Variable", SUIT, Pretendard, sans-serif);
  font-size: var(--wh-text-section, 1.375rem);
  font-weight: 800;
  line-height: var(--wh-lh-tight, 1.14);
  letter-spacing: var(--wh-tracking-title, -0.03em);
  color: var(--wh-tx, #1A1A1A);
  word-break: keep-all;
}

.ga-sub {
  margin: 0 0 28px;
  font-size: var(--wh-text-sm, 0.875rem);
  line-height: var(--wh-lh-body, 1.5);
  letter-spacing: var(--wh-tracking-body, -0.02em);
  color: var(--wh-tx2, #4A4A4A);
  word-break: keep-all;
}

.ga-stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ga-store,
.ga-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  min-height: var(--wh-touch-cta, 48px);
  padding: 0 20px;
  border-radius: var(--wh-radius-btn, 18px);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.2px;
  text-decoration: none;
  color: var(--wh-tx, #1A1A1A);
  background: var(--wh-surface, #EEEEEE);
}

.ga-store img {
  display: block;
  width: 20px;
  height: 20px;
}

.ga-cta {
  background: var(--wh-brand, #681DC7);
  color: #fff;
}

.ga-store:focus-visible,
.ga-cta:focus-visible,
.ga-web:focus-visible {
  outline: 2px solid var(--wh-focus-ring, #681DC7);
  outline-offset: 2px;
}

.ga-store:hover,
.ga-cta:hover,
.ga-web:hover {
  text-decoration: none;
}

.ga-web {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--wh-touch-min, 44px);
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wh-tx3, #6B6B6B);
  text-decoration: none;
}

.wh-pressable:active {
  transform: scale(var(--wh-scale-press, 0.96));
}

@media (hover: hover) and (pointer: fine) {
  .ga-store.wh-pressable:hover,
  .ga-cta.wh-pressable:hover {
    transform: none;
    box-shadow: var(--wh-shadow-listing-hover);
  }

  .ga-cta.wh-pressable:hover {
    background: var(--wh-brand-hover, #5416A3);
  }
}

@media (min-width: 1024px) {
  .ga-shell {
    padding: 48px 40px;
  }

  .ga-card {
    max-width: 560px;
    padding: 48px 40px 40px;
    border-radius: var(--wh-radius-lg, 24px);
  }

  .ga-title {
    font-size: var(--wh-text-hero, 2rem);
  }

  .ga-sub {
    font-size: var(--wh-text-base, 1rem);
    margin-bottom: 32px;
  }

  .ga-stores {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wh-pressable:active {
    transform: none;
  }
}
