/* TechMeetups - light, airy, Crunch-inspired. Tokens first, components below. */

:root {
  --bg: #ffffff;
  --fg: #101014;
  --muted: #6b7280;
  --accent: #6650e6;
  --accent-soft: #efeaff;
  --cta: #16a34a;
  --line: #ececf0;
  --card-bg: #ffffff;
  --shadow: 0 8px 30px rgba(16, 16, 20, 0.06);
  --shadow-hover: 0 12px 40px rgba(16, 16, 20, 0.12);
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --badge-luma: #b13bd6;
  --badge-meetup: #d63b3b;
  --badge-eventbrite: #d6701f;
  --badge-goout: #1f8ad6;
  --badge-archive: #6b7280;
  --badge-watchlist: #0d9488;
}

* { box-sizing: border-box; }

html { overflow-x: hidden; }  /* guard against decorative-glow overflow on narrow screens */

body {
  margin: 0 auto;
  max-width: 1080px;
  padding: 1rem 1.2rem 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); }

/* --- top bar --- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
}
.brand { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; color: var(--fg); }
.brand-mark {
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; font-size: 1rem;
}
.brand-name { font-weight: 700; letter-spacing: -0.01em; }

.auth-btn {
  background: var(--card-bg); color: var(--fg);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 1rem; cursor: pointer; font-size: 0.85rem; font-weight: 600;
  font-family: inherit;
}
.auth-btn:hover { border-color: var(--accent); color: var(--accent); }
#user-info { display: inline-flex; align-items: center; gap: 0.6rem; }

/* --- hero --- */
.hero {
  position: relative;
  text-align: center;
  padding: 3.5rem 0 2.2rem;
  overflow: hidden;  /* clip the decorative glows so they don't widen the page on mobile */
}
.glow {
  position: absolute; border-radius: 50%; filter: blur(70px);
  background: radial-gradient(circle, #c9bdff66, transparent 70%);
  pointer-events: none; z-index: -1;
}
.glow-left { width: 380px; height: 380px; left: -160px; top: -60px; }
.glow-right { width: 420px; height: 420px; right: -180px; top: 60px; background: radial-gradient(circle, #ffd9ec55, transparent 70%); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 999px; padding: 0.3rem 0.9rem;
  font-size: 0.78rem; font-weight: 600;
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cta); }

.hero h1 {
  margin: 1.1rem auto 0;
  font-size: clamp(2.3rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  max-width: 18ch;
}
.hero h1 .accent { color: var(--accent); }

.hero .tagline {
  margin: 1.1rem auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 46ch;
}

.search-row {
  display: flex; gap: 0.4rem; align-items: center;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  padding: 0.45rem;
  max-width: 460px;
  margin: 1.8rem auto 0;
}
.search-row input {
  flex: 1; border: none; outline: none; background: none;
  font-size: 1rem; padding: 0.45rem 0.7rem; color: var(--fg);
  font-family: inherit; min-width: 0;
}
.search-row .search-btn {
  background: var(--accent); color: #fff; border: none;
  border-radius: var(--r-sm); padding: 0.55rem 1.3rem;
  font-weight: 600; font-size: 0.95rem; cursor: pointer; font-family: inherit;
}

.stats-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.9rem; align-items: center;
  margin-top: 1.3rem;
  color: var(--muted); font-size: 0.85rem;
}
.stats-row .stat { display: inline-flex; align-items: center; gap: 0.4rem; }
.stats-row .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cta); }
.stats-row .sep { width: 1px; height: 14px; background: var(--line); }
.stats-row strong { color: var(--fg); font-weight: 700; }

/* --- banner --- */
.banner {
  background: #fff7ed; border: 1px solid #fdba74; color: #9a3412;
  border-radius: var(--r-sm); padding: 0.5rem 0.9rem; margin: 0 0 1rem;
  font-size: 0.9rem;
}
.hidden { display: none !important; }

/* --- filters --- */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center;
  margin: 0.6rem 0 1.6rem;
  justify-content: center;
}
.presets { display: inline-flex; flex-wrap: wrap; gap: 0.4rem; }
.presets button, #city {
  background: var(--card-bg); color: var(--fg);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.38rem 1rem; cursor: pointer; font-size: 0.88rem; font-weight: 500;
  font-family: inherit;
}
.presets button:hover { border-color: var(--accent); color: var(--accent); }
.presets button.active { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* --- event timeline (lu.ma-style: date rail left, cards right) --- */
#events { padding-bottom: 1rem; max-width: 880px; margin: 0 auto; }

.day-group {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
}
.day-label { padding: 0.2rem 0 0; }
.day-label .date { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; }
.day-label .weekday { color: var(--muted); font-size: 0.85rem; }
.day-label .today-tag { color: var(--accent); font-weight: 700; }

.day-events {
  position: relative;
  border-left: 2px dashed var(--line);
  padding: 0 0 2rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.day-events::before {
  content: "";
  position: absolute; left: -6px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); opacity: 0.7;
}

@media (max-width: 640px) {
  .day-group { grid-template-columns: 1fr; }
  .day-label { display: flex; gap: 0.5rem; align-items: baseline; margin-bottom: 0.5rem; }
  .day-events { border-left: none; padding-left: 0; }
  .day-events::before { display: none; }
}

.card {
  display: flex; flex-direction: row; justify-content: space-between; gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-2px); }

.card-body { flex: 1; min-width: 0; }
.card-body .time { margin: 0; color: var(--muted); font-size: 0.85rem; font-weight: 600; }
.card-body .title { margin: 0.15rem 0 0; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.015em; line-height: 1.3; }
.card-body .by { margin: 0.3rem 0 0; color: var(--muted); font-size: 0.85rem; }
.card-body .where { margin: 0.1rem 0 0; color: var(--muted); font-size: 0.85rem; }
.card-pills { display: flex; gap: 0.4rem; align-items: center; margin-top: 0.55rem; }
.src-pill {
  display: inline-block; border-radius: 6px; padding: 0.08rem 0.5rem;
  font-size: 0.7rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.src-pill.luma { background: var(--badge-luma); }
.src-pill.meetup { background: var(--badge-meetup); }
.src-pill.eventbrite { background: var(--badge-eventbrite); }
.src-pill.goout { background: var(--badge-goout); }
.src-pill.archive { background: var(--badge-archive); }
.src-pill.watchlist { background: var(--badge-watchlist); }
.city-pill {
  display: inline-block; border-radius: 6px; padding: 0.08rem 0.5rem;
  font-size: 0.7rem; font-weight: 600;
  background: var(--accent-soft); color: var(--accent);
}

.card-thumb {
  position: relative;
  width: 96px; height: 96px; flex-shrink: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), #fdeef7);
}
.card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-thumb .initial {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 2rem; font-weight: 800; color: var(--accent); opacity: 0.45;
}
@media (max-width: 640px) { .card-thumb { width: 72px; height: 72px; } }

.star-btn {
  background: none; border: none; color: #d6a93b; font-size: 1.25rem;
  cursor: pointer; padding: 0 0.2rem; line-height: 1; font-family: inherit;
}
.star-btn:hover { transform: scale(1.2); }

.badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; border-radius: 4px; padding: 0.05rem 0.4rem;
  margin-right: 0.4rem; color: #fff;
}
.badge.luma { background: var(--badge-luma); }
.badge.meetup { background: var(--badge-meetup); }
.badge.eventbrite { background: var(--badge-eventbrite); }
.badge.goout { background: var(--badge-goout); }
.badge.archive { background: var(--badge-archive); }
.badge.watchlist { background: var(--badge-watchlist); }

.muted { color: var(--muted); }

/* --- dark CTA band --- */
.band {
  position: relative;
  background: #101014;
  color: #f4f4f6;
  border-radius: var(--r-lg);
  padding: 2.6rem 2.2rem;
  margin: 3rem 0 2rem;
  overflow: hidden;
}
.band::after {
  content: ""; position: absolute; right: -120px; bottom: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, #6650e688, transparent 70%);
  filter: blur(30px);
}
.band h2 {
  margin: 0; font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800; letter-spacing: -0.03em;
}
.band p { color: #a1a1ad; max-width: 46ch; position: relative; z-index: 1; }
.band-form {
  display: flex; gap: 0.4rem; align-items: center;
  background: #1c1c22; border: 1px solid #2c2c34;
  border-radius: var(--r-md); padding: 0.4rem;
  max-width: 420px; position: relative; z-index: 1;
}
.band-form input {
  flex: 1; border: none; outline: none; background: none;
  color: #f4f4f6; font-size: 0.98rem; padding: 0.45rem 0.7rem;
  font-family: inherit; min-width: 0;
}
.band-form button {
  background: var(--cta); color: #fff; border: none;
  border-radius: var(--r-sm); padding: 0.5rem 1.2rem;
  font-weight: 600; cursor: pointer; font-family: inherit;
}
.band .cta-link {
  display: inline-block; background: var(--cta); color: #fff;
  border-radius: 999px; padding: 0.5rem 1.4rem;
  font-weight: 600; text-decoration: none; position: relative; z-index: 1;
}

/* --- footer --- */
footer {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem; color: var(--muted);
}

/* --- moje akce --- */
.me-header { display: flex; align-items: center; gap: 1rem; padding: 1.6rem 0 0.8rem; }
.me-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-weight: 800; font-size: 1.4rem;
}
.me-title { margin: 0; font-size: 1.6rem; font-weight: 800; letter-spacing: -0.02em; }
.me-header .auth-btn { margin-left: auto; }
.section-h {
  margin: 1.8rem 0 0.8rem; font-size: 0.78rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  border-bottom: 1px solid var(--line); padding-bottom: 0.5rem;
}
.me-list { display: flex; flex-direction: column; gap: 0.7rem; }
.org-cover { width: 64px; height: 64px; border-radius: var(--r-md); object-fit: cover; }
#cal-box code { word-break: break-all; font-size: 0.8rem; }

/* --- sign-in page (luma-style centered card) --- */
.signin-wrap {
  position: relative;
  display: grid; place-items: center;
  min-height: 70vh;
  padding: 2rem 0;
}
.signin-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-hover);
  padding: 2rem;
  width: min(360px, 92vw);
}
.signin-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent-soft);
  display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 0.9rem;
}
.signin-card h2 { margin: 0 0 0.3rem; letter-spacing: -0.02em; }
.signin-card .muted { margin-top: 0; font-size: 0.92rem; }
.field-label { display: block; font-size: 0.8rem; font-weight: 600; margin: 1rem 0 0.3rem; }
.signin-card input[type="email"] {
  display: block; width: 100%; box-sizing: border-box;
  background: #fafafa; border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 0.6rem 0.8rem;
  font-size: 1rem; font-family: inherit; color: var(--fg);
}
.primary-btn {
  display: block; width: 100%; margin-top: 0.8rem;
  background: var(--accent); color: #fff; border: none;
  border-radius: var(--r-sm); padding: 0.65rem;
  font-weight: 700; font-size: 0.98rem; cursor: pointer; font-family: inherit;
}
.primary-btn:hover { filter: brightness(1.08); }
.circle-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--card-bg);
  cursor: pointer; margin-bottom: 0.8rem; font-family: inherit;
}
.code-boxes { display: flex; gap: 0.4rem; margin: 1.1rem 0 0.9rem; }
.code-boxes input {
  width: 100%; max-width: 46px; height: 56px; text-align: center;
  font-size: 1.4rem; font-weight: 700; font-family: inherit;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  background: #fafafa; color: var(--fg);
  padding: 0; min-width: 0;
}
.code-boxes input:focus { outline: 2px solid var(--accent); border-color: var(--accent); }
.code-actions { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }
.ghost-btn {
  background: var(--card-bg); border: 1px solid var(--line); border-radius: 999px;
  padding: 0.35rem 0.9rem; cursor: pointer; font-size: 0.82rem;
  color: var(--fg); font-family: inherit;
}
.ghost-btn:disabled { color: var(--muted); cursor: default; }

/* --- sign-in dialog --- */
#signin-dialog {
  background: var(--bg); color: var(--fg); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.6rem; max-width: 330px;
  box-shadow: var(--shadow-hover);
}
#signin-dialog::backdrop { background: #10101466; backdrop-filter: blur(2px); }
#signin-dialog h3 { margin-top: 0; letter-spacing: -0.02em; }
#signin-dialog input {
  display: block; width: 100%; margin: 0.8rem 0; box-sizing: border-box;
  background: #fafafa; color: var(--fg); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 0.55rem 0.8rem; font-size: 1rem; font-family: inherit;
}
#signin-dialog button {
  background: var(--cta); color: #fff; border: none; border-radius: 999px;
  padding: 0.45rem 1.3rem; cursor: pointer; font-weight: 600; font-family: inherit;
}
#code-input { letter-spacing: 0.5em; text-align: center; font-size: 1.4rem !important; }
.form-error { color: #dc2626; font-size: 0.85rem; }

/* --- event detail page (luma-style two columns) --- */
.back-link { font-size: 0.9rem; text-decoration: none; font-weight: 600; }
.event-cols {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.2rem;
  padding: 1.4rem 0 2rem;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .event-cols { grid-template-columns: 1fr; gap: 1.2rem; }
  .event-side { display: flex; gap: 1rem; align-items: flex-start; }
  .side-cover { width: 120px; flex-shrink: 0; }
}

.side-cover {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent-soft), #fdeef7);
  box-shadow: var(--shadow);
}
.side-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.side-cover .initial {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 4rem; font-weight: 800; color: var(--accent); opacity: 0.45;
}
.side-section { margin-top: 1.1rem; border-top: 1px solid var(--line); padding-top: 0.8rem; }
.side-label {
  margin: 0 0 0.4rem; font-size: 0.72rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em;
}
.side-org {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--fg); text-decoration: none; font-weight: 600;
}
.side-org:hover { color: var(--accent); }
.me-avatar.small { width: 30px; height: 30px; font-size: 0.9rem; }

.event-main h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
}
.info-row { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.9rem; }
.icon-box {
  width: 46px; height: 46px; flex-shrink: 0;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--muted);
  background: var(--card-bg);
}
.cal-box { display: flex; flex-direction: column; align-items: stretch; overflow: hidden; padding: 0; }
.cal-month {
  font-size: 0.55rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: #f4f4f6; color: var(--muted); text-align: center; padding: 2px 0;
}
.cal-day { font-size: 1.1rem; font-weight: 800; color: var(--fg); text-align: center; flex: 1; display: grid; place-items: center; }
.info-strong { margin: 0; font-weight: 700; }
.info-muted { margin: 0; color: var(--muted); font-size: 0.88rem; }

.register-box {
  display: flex; align-items: center; gap: 0.9rem; flex-wrap: wrap;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fafafa;
  padding: 0.9rem 1.1rem;
  margin: 1.3rem 0 0.4rem;
}
.register-note { margin: 0; color: var(--muted); font-size: 0.88rem; flex: 1 1 100%; }
.cta {
  display: inline-block; background: var(--cta); color: #fff;
  border-radius: 999px; padding: 0.6rem 1.5rem;
  text-decoration: none; font-weight: 700;
}
.cta:hover { filter: brightness(1.07); }
.cta.ghost { background: var(--card-bg); color: var(--fg); border: 1px solid var(--line); }
.cta.ghost:hover { border-color: var(--accent); color: var(--accent); filter: none; }

.description { max-width: 65ch; }
.description p { white-space: pre-line; color: #3a3a42; }
.map-embed {
  width: 100%; height: 280px; border: 1px solid var(--line);
  border-radius: var(--r-md); margin-top: 0.7rem;
}

/* --- admin --- */
.admin-tools { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.inline-form { display: flex; gap: 0.4rem; }
.inline-form input[type="url"], .inline-form input[type="search"] {
  background: var(--card-bg); color: var(--fg); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.35rem 0.9rem; min-width: 260px; font-family: inherit;
}
.inline-form button, .actions button {
  border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.9rem;
  cursor: pointer; font-weight: 600; background: var(--card-bg); color: var(--fg); font-family: inherit;
}
.admin-card { flex-direction: row; justify-content: space-between; align-items: center; padding: 0.8rem 1rem; }
.admin-card .grow { flex: 1; }
.admin-card .title { margin: 0; font-weight: 700; }
.admin-card .title a { color: inherit; text-decoration: none; }
.admin-card .meta { margin: 0.2rem 0 0; color: var(--muted); font-size: 0.85rem; }
.actions { display: flex; gap: 0.4rem; flex-shrink: 0; }
.actions .approve { background: var(--cta); border-color: var(--cta); color: #fff; }
.actions .reject { background: #dc2626; border-color: #dc2626; color: #fff; }
table.health { border-collapse: collapse; margin-bottom: 2rem; }
table.health th, table.health td { padding: 0.3rem 0.8rem; text-align: left; border-bottom: 1px solid var(--line); }
.active-sort { border-color: var(--accent) !important; color: var(--accent) !important; background: var(--accent-soft) !important; }
.pagination { display: flex; gap: 1rem; align-items: center; margin: 1.5rem 0; }

/* admin shell + redesign */
.admin-wrap { max-width: 900px; margin: 0 auto; }
.admin-nav { display: flex; flex-wrap: wrap; gap: 0.9rem; font-size: 0.88rem; }
.admin-nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.admin-nav a:hover { color: var(--accent); }
.btn {
  display: inline-block; background: var(--card-bg); color: var(--fg);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.9rem;
  cursor: pointer; font-weight: 600; font-size: 0.82rem; text-decoration: none; font-family: inherit;
}
.btn:hover { border-color: var(--accent); color: var(--accent); }
.admin-card { gap: 0.9rem; align-items: center; }
.admin-card .grow { flex: 1; min-width: 0; }
.card-thumb.sm { width: 56px; height: 56px; }
.meta.dim { opacity: 0.8; }
tr.dim { opacity: 0.5; }
table.health.wide { width: 100%; }
.edited-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent); border-radius: 4px; padding: 0.05rem 0.4rem; margin-left: 0.4rem;
}

/* admin edit form */
.edit-wrap { max-width: 640px; }
.edit-form { display: flex; flex-direction: column; gap: 0.9rem; }
.edit-form label { display: flex; flex-direction: column; gap: 0.3rem; font-weight: 600; font-size: 0.85rem; color: var(--muted); }
.edit-form input, .edit-form textarea, .edit-form select {
  background: #fafafa; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 0.5rem 0.7rem; font-size: 0.95rem; font-family: inherit; color: var(--fg); font-weight: 400;
}
.edit-form .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.edit-actions { display: flex; gap: 0.8rem; align-items: center; margin-top: 0.5rem; }

/* 404 */
.notfound { position: relative; text-align: center; padding: 5rem 1rem; }
.nf-code { font-size: 5rem; font-weight: 800; color: var(--accent); margin: 0; letter-spacing: -0.04em; }
.notfound h1 { margin: 0.2rem 0 0.6rem; font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }

/* cookie consent banner */
.consent-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 50;
  max-width: 720px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; justify-content: space-between;
  background: #101014; color: #f4f4f6;
  border-radius: var(--r-md); padding: 0.9rem 1.1rem; box-shadow: var(--shadow-hover);
  font-size: 0.88rem;
}
.consent-banner a { color: #c9bdff; }
.consent-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.consent-banner .btn { background: transparent; color: #f4f4f6; border-color: #ffffff44; }
.consent-banner .primary-btn { width: auto; margin: 0; padding: 0.4rem 1rem; }

/* prose pages (privacy) */
.prose { max-width: 640px; margin: 1.5rem auto; }
.prose h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -0.03em; }
.prose h2 { font-size: 1.1rem; margin-top: 1.6rem; }
.prose li { margin: 0.3rem 0; }
