:root {
  color-scheme: dark;
  --bg: #08131d;
  --panel: rgba(13, 25, 39, 0.92);
  --panel-2: rgba(17, 32, 48, 0.96);
  --line: rgba(142, 175, 205, 0.14);
  --ink: #f2f7fb;
  --muted: rgba(242, 247, 251, 0.7);
  --accent: #ff7b4d;
  --success: #4bd097;
  --warn: #f1b84f;
  --danger: #ff6b6b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 24px;
  font-family: "Outfit", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 123, 77, 0.12), transparent 22%),
    linear-gradient(180deg, #09121b 0%, #050b11 100%);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.topbar,
.board,
.login-card {
  width: min(1440px, 100%);
  margin-inline: auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.topbar h1,
.login-card h1,
.lane-head h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.topbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.status-chip,
button,
select {
  border-radius: 999px;
  font: inherit;
}

.status-chip {
  display: inline-flex;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

button,
select {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  padding: 10px 14px;
}

.board {
  display: grid;
  gap: 18px;
}

.lane {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 16px;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
}

.lane-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.lane-head span {
  color: var(--muted);
}

.lane-body {
  display: grid;
  gap: 12px;
}

.order-card {
  padding: 16px;
  border-radius: 18px;
  background: var(--panel-2);
  border: 1px solid var(--line);
}

.order-card header,
.meta-row,
.actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.order-card header {
  margin-bottom: 12px;
}

.order-card strong {
  font-size: 1.06rem;
}

.meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.94rem;
}

.items {
  margin: 12px 0;
  padding-left: 18px;
  color: var(--muted);
}

.items li + li {
  margin-top: 6px;
}

.actions {
  margin-top: 14px;
  flex-wrap: wrap;
}

.actions button[data-action="accept"] {
  background: rgba(75, 208, 151, 0.16);
}

.actions button[data-action="reject"] {
  background: rgba(255, 107, 107, 0.14);
}

.actions button[data-action="complete"] {
  background: rgba(255, 123, 77, 0.16);
}

.login-shell {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 9, 15, 0.72);
  backdrop-filter: blur(12px);
  z-index: 20;
}

.login-card {
  max-width: 420px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(10, 19, 30, 0.96);
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.field input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font: inherit;
}

.hidden {
  display: none !important;
}

.empty {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed var(--line);
  color: var(--muted);
  text-align: center;
}

@media (min-width: 1040px) {
  .board {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
}

