.platform-loading {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  background: #f7f5f0;
  color: #222;
  font-family: Montserrat, system-ui, sans-serif;
}

.platform-loading::after {
  content: "Bezpiecznie pobieramy Twój zakres danych…";
  width: min(360px, calc(100vw - 48px));
  padding-top: 54px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: radial-gradient(circle at 50% 15px, #f26a2e 0 8px, transparent 9px);
}

body.platform-ready .platform-loading,
body.platform-failed .platform-loading { display: none; }

.platform-message {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f7f5f0;
  font-family: Montserrat, system-ui, sans-serif;
}

.platform-message > div {
  width: min(560px, 100%);
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid #ddd8cf;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(34, 34, 34, .12);
}

.platform-message h1 { margin: 28px 0 12px; font-size: clamp(28px, 5vw, 44px); }
.platform-message p { margin: 0 0 28px; line-height: 1.65; color: #5c5a56; }
.platform-message a { color: #222; font-weight: 700; }
.platform-button { display: inline-flex; padding: 14px 18px; border-radius: 12px; background: #222; color: #fff !important; text-decoration: none; }
