/* StanberryAppStoreLandingBundle — mirrors StanberryPaletteTokens + StanberryTypeStyle */

:root {
  --stanberry-canvas: rgb(252, 252, 250);
  --stanberry-card: #ffffff;
  --stanberry-accent-orange: rgb(245, 133, 46);
  --stanberry-accent-green: rgb(56, 158, 115);
  --stanberry-text-primary: rgb(31, 31, 36);
  --stanberry-text-secondary: rgb(115, 117, 122);
  --stanberry-hairline: rgba(0, 0, 0, 0.06);
  --stanberry-radius-lg: 20px;
  --stanberry-radius-md: 14px;
  --stanberry-shadow: 0 12px 40px rgba(31, 31, 36, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Rounded",
    "Segoe UI",
    system-ui,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--stanberry-text-primary);
  background: var(--stanberry-canvas);
}

.stanberryLandingShell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 20px 48px;
}

.stanberryLandingCard {
  width: 100%;
  max-width: 420px;
  background: var(--stanberry-card);
  border: 1px solid var(--stanberry-hairline);
  border-radius: var(--stanberry-radius-lg);
  box-shadow: var(--stanberry-shadow);
  padding: 32px 28px 28px;
}

.stanberryLandingBadgeRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stanberryLandingMark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    var(--stanberry-accent-orange) 0%,
    var(--stanberry-accent-green) 100%
  );
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.stanberryLandingTitle {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stanberryLandingLead {
  margin: 0 0 20px;
  font-size: 16px;
  color: var(--stanberry-text-secondary);
}

.stanberryLandingDivider {
  height: 1px;
  background: var(--stanberry-hairline);
  margin: 24px 0;
}

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

.stanberryLandingButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--stanberry-radius-md);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    opacity 0.15s ease;
}

.stanberryLandingButton:active {
  transform: scale(0.98);
}

.stanberryLandingButtonPrimary {
  background: var(--stanberry-accent-orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(245, 133, 46, 0.35);
}

.stanberryLandingButtonPrimary:hover {
  opacity: 0.95;
}

.stanberryLandingButtonSecondary {
  background: rgba(56, 158, 115, 0.12);
  color: var(--stanberry-accent-green);
  border: 1px solid rgba(56, 158, 115, 0.25);
}

.stanberryLandingButtonSecondary:hover {
  background: rgba(56, 158, 115, 0.18);
}

.stanberryLandingFooter {
  margin-top: 28px;
  text-align: center;
  font-size: 13px;
  color: var(--stanberry-text-secondary);
}

.stanberryLandingFooter a {
  color: var(--stanberry-accent-green);
  text-decoration: none;
}

.stanberryLandingFooter a:hover {
  text-decoration: underline;
}

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