/* Meet POC — visual language: blue #2E9BD6, clean cards (§8). */

:root {
  --blue: #2e9bd6;
  --blue-dark: #1f7db0;
  --blue-pale: #e8f4fb;
  --ink: #1c2530;
  --muted: #64748b;
  --bg: #f4f7fa;
  --card: #ffffff;
  --line: #e2e8f0;
  --green: #22a06b;
  --red: #d64545;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

.app {
  max-width: 480px;
  margin: 0 auto;
  padding: 16px 16px 48px;
}

header.topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 2px;
}
header.topbar .logo {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--blue);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700;
}
header.topbar h1 { font-size: 1.25rem; margin: 0; }
header.topbar .muted { margin-left: auto; }

h2 { font-size: 1.15rem; margin: 18px 0 10px; }
h3 { font-size: 1rem; margin: 14px 0 8px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin: 10px 0;
  box-shadow: 0 1px 2px rgba(28, 37, 48, 0.05);
}

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.center { text-align: center; }

label { display: block; font-size: 0.85rem; color: var(--muted); margin: 12px 0 4px; }
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 0;
  border-color: var(--blue);
}

.btn {
  display: inline-block;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); border-color: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-ghost { background: transparent; }
.btn-danger { color: var(--red); border-color: var(--red); }
.btn-block { display: block; width: 100%; margin: 8px 0; }
.btn-sm { padding: 8px 12px; font-size: 0.9rem; }
button:disabled { opacity: 0.5; cursor: default; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 8px 0; }
.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font: inherit;
  cursor: pointer;
}
.chip.selected { background: var(--blue); border-color: var(--blue); color: #fff; }

.tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0; }
.tag {
  background: var(--blue-pale);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.75rem;
}

.venue-card { padding: 0; overflow: hidden; }
.venue-photo {
  height: 130px;
  background: var(--blue-pale) center/cover no-repeat;
}
.venue-body { padding: 12px 16px 16px; display: grid; gap: 4px; }
.venue-head { display: flex; align-items: center; gap: 8px; justify-content: space-between; }
.badge-sponsored {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #92600a;
  background: #fdeeca;
  border-radius: 6px;
  padding: 2px 7px;
}

.steps { display: flex; gap: 6px; margin: 10px 0 4px; }
.steps span { flex: 1; height: 4px; border-radius: 2px; background: var(--line); }
.steps span.done { background: var(--blue); }

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
  position: relative;
  padding: 0 0 18px 26px;
  border-left: 2px solid var(--line);
  margin-left: 8px;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--line);
}
.timeline li.done { border-left-color: var(--blue); }
.timeline li.done::before { background: var(--blue); }
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }

.state-pill {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--blue-pale);
  color: var(--blue-dark);
}
.state-pill.good { background: #e5f6ee; color: var(--green); }
.state-pill.bad { background: #fbeaea; color: var(--red); }

.hero { text-align: center; padding: 26px 10px 10px; }
.hero .big { font-size: 2.4rem; }

.sms-preview {
  background: var(--blue-pale);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.95rem;
  white-space: pre-wrap;
  word-break: break-word;
}

.row { display: flex; gap: 8px; }
.row > * { flex: 1; }

.meet-list-item { display: flex; justify-content: space-between; align-items: center; gap: 8px; }

[hidden] { display: none !important; }

footer.foot { margin-top: 30px; text-align: center; }
