/* Ergänzt /auth/static/style.css — Variablen (--bg/--fg/--muted/--accent) kommen von dort */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at center, rgba(15,17,21,0.15) 0%, rgba(15,17,21,0.70) 70%, rgba(15,17,21,0.92) 100%),
    url("/img/flo-bg-desktop.jpg") center/cover no-repeat fixed;
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: rgba(15, 17, 21, 0.55);
  backdrop-filter: blur(8px);
}
.app-header > div:first-child { flex: 1; }
.logo-text {
  flex: 1;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
}
.user { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
button.ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  transition: color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
button.ghost:hover { color: var(--fg); border-color: rgba(255,255,255,0.4); }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 5px #22c55e99; flex-shrink: 0; }

.grid-wrap { flex: 1; max-width: 1700px; width: 100%; margin: 0 auto; padding: 48px 28px 32px; }
.hello { font-size: 40px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 6px; text-align: center; }
.hello span { color: var(--accent); }
.sub { color: var(--muted); font-size: 15px; margin: 0 0 36px; text-align: center; }

.grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }

.agent {
  position: relative;
  aspect-ratio: 3 / 4.8;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center 40%;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s, box-shadow 0.2s;
}
.agent.active:hover { transform: translateY(-5px); box-shadow: 0 16px 30px rgba(0,0,0,0.45); }
.agent.soon { opacity: 0.85; cursor: default; }
.agent-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,0.85) 100%); }
.agent-info { position: relative; z-index: 2; padding: 16px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; margin-bottom: 8px; }
.agent.soon .dot, .dot.soon-dot { background: transparent; border: 2px solid var(--muted); box-shadow: none; }
.badge { display: inline-block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.title { font-size: 19px; font-weight: 700; }
.role { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; }

footer { text-align: center; padding: 18px; font-size: 12px; color: var(--muted); background: rgba(15, 17, 21, 0.45); }
footer a { color: var(--muted); text-decoration: none; margin: 0 6px; }
footer a:hover { color: var(--fg); }

@media (max-width: 1100px) { .grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px)  { .grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } .hello { font-size: 26px; } .logo-text { font-size: 11px; } .app-header { padding: 10px 16px; } .grid-wrap { padding: 24px 14px; } }
@media (max-width: 460px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
