/* Growlify Business Studio — Dashboard-Prototyp
   Helle Fläche, weiße Karten, dunkle Typo, warmer Gradient für CTAs.
   Token-Quelle: growlify-studio-shell/src/tokens.mjs + TOKENS.md,
   Schatten-/Card-Muster aus business-brain/server/render.mjs (--sh, .card). */

:root {
  --bg: #f8f8f4;
  --bg-elevated: #ffffff;
  --glass: #ffffff;
  --glass-border: rgba(24, 34, 27, 0.09);
  --glass-border-strong: rgba(24, 34, 27, 0.18);
  --cream: #18221b;
  --cream-dim: #3c463e;
  --cream-faint: #6c756d;
  --brand: #13e489;
  --brand-hover: #0fcb78;
  --brand-soft: #d4f7df;
  --accent-1: #23b2cf;
  --accent-1-soft: #cdeef6;
  --accent-gradient: linear-gradient(90deg, #13e489 0%, #1bc6b2 50%, #23b2cf 100%);
  --accent-gradient-soft: linear-gradient(135deg, #e0f4e6 0%, #d9eef4 100%);
  --ok: #088450;
  --ok-bg: #d4f7df;
  --warn: #c8801f;
  --warn-bg: #ffe7bd;
  --stall: rgba(24, 34, 27, 0.35);
  --shadow: 0 1px 3px rgba(24, 34, 27, 0.05), 0 10px 30px rgba(24, 34, 27, 0.04);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ---- Suite-Shell-Chrome (Runde 6): Kopfleiste + Seitennavigation, 1:1 aus
   growlify-studio-shell/src/chrome.mjs (gsc-Klassen) übernommen und auf die
   Prototyp-Tokens gemappt (--bg/--bg-elevated/--cream* statt gsc-eigener Hex-Werte). */

.gsc-top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.gsc-top::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.75;
}

.gsc-top-in {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 18px;
}

.gsc-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--glass-border);
  background: #f2f2ec;
  cursor: pointer;
  color: var(--cream);
  padding: 0;
}

.gsc-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.gsc-tag {
  font-size: 10.5px;
  color: var(--cream-dim);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 1px 8px;
}

/* ---- Layout: Seitenleiste + Inhalt ---- */

.gsc-shell {
  display: flex;
  align-items: stretch;
}

.gsc-side {
  width: 212px;
  flex: none;
  border-right: 1px solid var(--glass-border);
  padding: 18px 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 47px;
  align-self: flex-start;
  height: calc(100vh - 47px);
  overflow-y: auto;
  background: var(--bg);
}

.gsc-studio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 8px 14px;
}

.gsc-studio-ic {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--accent-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.gsc-studio-name {
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--cream);
}

.gsc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gsc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream-dim);
  text-decoration: none;
  cursor: default;
}

.gsc-item svg {
  opacity: 0.8;
  flex: none;
}

a.gsc-item:hover {
  background: #f2f2ec;
  text-decoration: none;
  color: var(--cream);
}

.gsc-item.on {
  color: var(--ok);
  background: var(--brand-soft);
  box-shadow: inset 0 0 0 1px rgba(19, 228, 137, 0.3);
  font-weight: 650;
}

.gsc-item.on svg {
  opacity: 1;
}

.gsc-main {
  flex: 1;
  min-width: 0;
}

.gsc-backdrop {
  display: none;
}

/* ---- Mobil: Drawer ---- */

@media (max-width: 980px) {
  .gsc-burger {
    display: inline-flex;
  }

  .gsc-side {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 80;
    background: var(--bg);
    box-shadow: 0 0 40px rgba(24, 34, 27, 0.18);
    transform: translateX(-105%);
    transition: transform 0.22s ease;
    width: 250px;
    padding-top: 16px;
  }

  .gsc-side.open {
    transform: translateX(0);
  }

  .gsc-backdrop.open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(24, 34, 27, 0.32);
    z-index: 70;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gsc-side {
    transition: none;
  }
}

.wordmark-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.wordmark-svg {
  display: block;
}

.avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 650;
  color: #18221b;
  background: var(--accent-gradient);
  flex: none;
}

/* Section scaffolding */

.section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--cream-faint);
  text-transform: uppercase;
}

.section-title {
  font-size: 20px;
  font-weight: 620;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: -8px 0 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Glass card */

.card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-dim);
  text-decoration: none;
}

/* Status row: three value rings */

.status-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.status-tile {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.status-tile.is-empty {
  border-style: dashed;
  border-color: var(--glass-border-strong);
}

.ring {
  flex: none;
}

.status-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.status-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-faint);
  font-weight: 650;
}

.status-value {
  font-size: 22px;
  font-weight: 650;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.status-delta {
  font-size: 12px;
  color: var(--ok);
}

.status-note {
  font-size: 12px;
  color: var(--cream-dim);
  margin-top: 2px;
}

.status-hint {
  font-size: 13px;
  color: var(--cream-faint);
  font-style: normal;
}

/* Bereichs-Kacheln (LAGE) */

.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tile {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  box-shadow: var(--shadow);
}

.tile.is-light {
  border-style: dashed;
  border-color: var(--glass-border-strong);
}

.tile.is-engpass {
  border-color: rgba(240, 160, 47, 0.5);
}

.tile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.tile-head-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 650;
  color: #18221b;
  background: var(--accent-gradient);
  flex: none;
}

.tile-avatar-empty {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px dashed var(--glass-border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--cream-faint);
  flex: none;
}

.tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f2f2ec;
  color: var(--cream-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.tile-icon svg {
  display: block;
}

.tile-name {
  font-size: 15px;
  font-weight: 620;
  color: var(--cream);
}

.tile-role {
  font-size: 12px;
  color: var(--cream-faint);
  display: block;
  font-weight: 400;
  margin-top: 1px;
}

.tile-score {
  font-size: 22px;
  font-weight: 650;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.tile-score-trend {
  font-size: 13px;
  color: var(--ok);
}

.tile-score-trend.flat {
  color: var(--warn);
}

.tile-metric {
  font-size: 13px;
  color: var(--cream-dim);
}

.tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 2px;
}

.sparkline {
  flex: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 620;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f2f2ec;
  color: var(--cream-dim);
  border: 1px solid var(--glass-border);
  white-space: nowrap;
}

.pill-ok {
  color: var(--ok);
  border-color: rgba(19, 228, 137, 0.3);
  background: var(--ok-bg);
}

.pill-warn {
  color: var(--warn);
  border-color: rgba(239, 159, 39, 0.35);
  background: var(--warn-bg);
}

.pill-accent {
  color: #0f6276;
  border-color: rgba(35, 178, 207, 0.35);
  background: var(--accent-1-soft);
}

.tag-engpass {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--warn);
  text-transform: uppercase;
}

.tile-hint {
  font-size: 12px;
  color: var(--cream-faint);
  margin-top: -2px;
}

.grid-hint {
  font-size: 12.5px;
  color: var(--cream-faint);
}

/* Growly insight card */

.insight-card {
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(15, 203, 120, 0.35);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.insight-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--ok);
  text-transform: uppercase;
}

.insight-text {
  font-size: 14.5px;
  color: var(--cream);
  line-height: 1.55;
}

.insight-foot {
  margin-top: 4px;
}

/* Departments: Zitat-Karten (Onboarding-Begründungen) */

.quote-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-card {
  font-size: 13px;
  color: var(--cream-dim);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  line-height: 1.5;
}

.quote-card strong {
  color: var(--cream);
}

/* CTA / Gradient pill */

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 650;
  color: #18221b;
  background: var(--accent-gradient);
  cursor: default;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--glass-border-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-dim);
  background: transparent;
  cursor: default;
}

/* RICHTUNG / roadmap */

.goal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.goal-text {
  font-size: 15.5px;
  color: var(--cream);
}

.goal-text strong {
  font-weight: 650;
}

.path-bar {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.path-step {
  flex: 1;
  height: 8px;
  border-radius: 999px;
  background: #eceee8;
  overflow: hidden;
  position: relative;
}

.path-step.is-done {
  background: var(--accent-gradient);
}

.path-step-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 999px;
}

.stage-detail {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stage-title {
  font-size: 14.5px;
  font-weight: 620;
  color: var(--cream);
}

.stage-note {
  font-size: 13px;
  color: var(--cream-dim);
}

/* Roadmap-Detail: Etappen-Liste */

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

.stage-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow);
}

.stage-card.is-done {
  opacity: 0.85;
}

.stage-card.is-active {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--glass), var(--glass)) padding-box,
    var(--accent-gradient) border-box;
}

.stage-card.is-planned {
  color: var(--cream-faint);
}

.stage-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stage-card-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ok-bg);
  color: var(--ok);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.stage-card-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px dashed var(--glass-border-strong);
  color: var(--cream-faint);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 650;
}

.stage-card-num.is-active-num {
  border-style: solid;
  border-color: var(--brand);
  color: var(--cream);
  background: var(--brand-soft);
}

.stage-card-title {
  font-size: 14.5px;
  font-weight: 620;
  color: var(--cream);
  flex: 1;
}

.stage-card-status {
  font-size: 11px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--cream-faint);
  text-transform: uppercase;
}

.stage-card-status.is-ok {
  color: var(--ok);
}

.stage-card-result {
  font-size: 13px;
  color: var(--cream-dim);
  margin: 8px 0 0 32px;
}

.stage-card-body {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.milestone-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.milestone-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.milestone-label {
  font-size: 13px;
  color: var(--cream-dim);
  width: 150px;
  flex: none;
}

.milestone-bar {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #eceee8;
  overflow: hidden;
}

.milestone-bar-fill {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 999px;
}

.milestone-value {
  font-size: 12.5px;
  font-weight: 620;
  color: var(--cream);
  width: 90px;
  flex: none;
  text-align: right;
}

.milestone-value.is-ok {
  color: var(--ok);
}

/* HEUTE / Tages-Loop */

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

@media (max-width: 560px) {
  .week-strip {
    gap: 4px;
  }
  .week-day {
    font-size: 9px;
    border-radius: 8px;
  }
}

.week-day {
  aspect-ratio: 1;
  min-width: 0;
  border-radius: var(--radius-sm);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  color: var(--cream-faint);
}

.week-day.is-today {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--cream);
  font-weight: 650;
}

.week-day.is-future {
  opacity: 0.55;
}

.week-check {
  font-size: 12px;
  color: var(--ok);
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.task-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  border-bottom: 1px solid var(--glass-border);
}

.task-row:last-child {
  border-bottom: none;
}

.task-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--glass-border-strong);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.task-check.is-done {
  background: var(--ok);
  border-color: var(--ok);
  color: #ffffff;
}

.task-window {
  font-size: 10.5px;
  letter-spacing: 0.06em;
  font-weight: 650;
  color: var(--cream-faint);
  text-transform: uppercase;
  width: 76px;
  flex: none;
}

.task-title {
  font-size: 13.5px;
  color: var(--cream);
  flex: 1;
}

.task-tag {
  font-size: 11px;
  color: var(--ok);
  font-weight: 620;
}

.reached-block {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.reached-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--cream-faint);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.chip-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chip {
  font-size: 12.5px;
  color: var(--cream-dim);
  background: var(--ok-bg);
  border: 1px solid rgba(19, 228, 137, 0.28);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.evening-hint {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--cream-faint);
}

/* WARTET AUF DICH */

.waiting-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.waiting-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waiting-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.waiting-title {
  font-size: 14px;
  font-weight: 620;
  color: var(--cream);
}

.waiting-preview {
  height: 84px;
  border-radius: var(--radius-sm);
  background: var(--accent-gradient-soft);
  border: 1px solid var(--glass-border);
}

.waiting-text {
  font-size: 13px;
  color: var(--cream-dim);
}

.waiting-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* DEIN TEAM */

.team-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-members {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-member-name {
  font-size: 13px;
  font-weight: 620;
  color: var(--cream);
  display: block;
}

.team-member-role {
  font-size: 11.5px;
  color: var(--cream-faint);
}

.team-hire-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.team-hire-text {
  font-size: 13.5px;
  color: var(--cream-dim);
  max-width: 460px;
}

.team-hire-text strong {
  color: var(--cream);
  font-weight: 620;
}

/* Onboarding-Kopf (Zustand 1) */

.welcome-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.welcome-title {
  font-size: 24px;
  font-weight: 650;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0;
}

.welcome-sub {
  font-size: 14px;
  color: var(--cream-dim);
  margin: 0;
}

.done-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.done-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--cream-dim);
}

.done-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ok);
  color: #ffffff;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* Vorschau-Karten (Demnächst für dich) */

.preview-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.preview-card {
  background: var(--glass);
  border: 1px dashed var(--glass-border-strong);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-title {
  font-size: 14px;
  font-weight: 620;
  color: var(--cream-dim);
}

.preview-unlock {
  font-size: 12.5px;
  color: var(--cream-faint);
}

/* Growly-Orb (Runde 7: ersetzt Chat-Teaser-Bubble, statisch unten rechts, alle Seiten) */

.growly-orb {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18221b;
  text-decoration: none;
  cursor: default;
  animation: growly-orb-pulse 2.6s ease-in-out infinite;
}

@keyframes growly-orb-pulse {
  0%, 100% { box-shadow: var(--shadow), 0 0 0 0 rgba(19, 228, 137, 0.35); }
  50% { box-shadow: var(--shadow), 0 0 0 10px rgba(19, 228, 137, 0); }
}

.growly-orb-label {
  position: absolute;
  right: 66px;
  bottom: 16px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 620;
  color: var(--cream);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(4px);
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.growly-orb:hover .growly-orb-label,
.growly-orb:focus-visible .growly-orb-label {
  opacity: 1;
  transform: translateX(0);
}

/* Modus switcher (index.html) */

.switcher {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.switcher-inner {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.switcher-title {
  font-size: 26px;
  font-weight: 650;
  color: var(--cream);
  margin: 0;
}

.switcher-sub {
  font-size: 14px;
  color: var(--cream-dim);
  margin: 0;
}

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

.switcher-link {
  display: block;
  text-decoration: none;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: left;
  transition: none;
  box-shadow: var(--shadow);
}

.switcher-link-title {
  font-size: 16px;
  font-weight: 650;
  color: var(--cream);
  margin: 0 0 4px;
}

.switcher-link-sub {
  font-size: 13px;
  color: var(--cream-dim);
  margin: 0;
}

/* Responsive: Grid ab ~900px */

@media (min-width: 900px) {
  .page {
    padding: 40px 32px 100px;
  }

  .status-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .tile-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .waiting-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
