/* Skoolino brand — shared by app.skoolino.de/ (auth handler) and /connect (onboarding).
   Page-specific rules stay inline in each HTML file; this is the common design layer
   (palette, layout shell, Lino peek, card, logo, primary button, store badges). */

:root {
  --primary: #1C5A73;
  --primary-d: #164a5f;
  --secondary: #98D0E3;
  --ink: #1E293B;
  --muted: #64748b;
  --line: #e5e7eb;
  --bg1: #F4F7F9;
  --bg2: #dcecf3;
  --surface: #fff;
  --error: #e11d48;
  --success: #2AAA8A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(160deg, var(--bg1) 0%, var(--bg2) 100%);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 16px;
  -webkit-font-smoothing: antialiased;
}

.stage { position: relative; width: 100%; max-width: 440px; padding-top: 74px; }

.lino-peek {
  position: absolute;
  top: 0;
  left: 50%;
  width: 132px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 12px rgba(27, 58, 92, .18));
  transform: translate(-50%, 0);
  animation: linoPeek .7s cubic-bezier(.34, 1.56, .64, 1) .2s both;
}

@keyframes linoPeek {
  from { transform: translate(-50%, 100px); }
  to { transform: translate(-50%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .lino-peek { animation: none; }
}

.card {
  background: var(--surface);
  border-radius: 24px;
  padding: 34px 28px;
  width: 100%;
  text-align: center;
  box-shadow: 0 12px 44px rgba(28, 90, 115, .14);
  position: relative;
  z-index: 2;
}

.logo { width: 158px; height: auto; margin: 0 auto 20px; display: block; }

h1 { color: var(--primary); font-size: 23px; font-weight: 800; margin: 0 0 10px; line-height: 1.25; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  margin-bottom: 12px;
  transition: .15s;
  box-shadow: 0 6px 18px rgba(28, 90, 115, .30);
}
.btn:hover { background: var(--primary-d); }
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; }

.stores-label { font-size: 13px; color: var(--muted); font-weight: 600; margin: 18px 0 12px; }
.stores { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.stores a { display: inline-flex; align-items: center; }
.stores img { height: 48px; width: auto; display: block; }

.hidden { display: none !important; }
