/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #D4537E;
  --pink-dark: #993556;
  --pink-light: #FBEAF0;
  --pink-border: #F4C0D1;
  --purple: #534AB7;
  --purple-light: #EEEDFE;
  --teal: #0F6E56;
  --teal-light: #E1F5EE;
  --blue-light: #E6F1FB;
  --blue: #185FA5;
  --gray: #888780;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

html, body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  color: #1a1a1a;
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

/* ── Screens ── */
.screen { display: none; min-height: 100vh; }
.screen.active { display: block; }

/* ── Stripe Bar ── */
.stripe-bar {
  display: flex;
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.stripe-bar span:nth-child(1) { flex:1; background:#E24B4A; }
.stripe-bar span:nth-child(2) { flex:1; background:#EF9F27; }
.stripe-bar span:nth-child(3) { flex:1; background:#639922; }
.stripe-bar span:nth-child(4) { flex:1; background:#378ADD; }
.stripe-bar span:nth-child(5) { flex:1; background:#534AB7; }
.stripe-bar span:nth-child(6) { flex:1; background:#D4537E; }
/* Auto-fill stripe colors when no explicit spans */
.stripe-bar:not(:has(span)) {
  background: linear-gradient(to right,#E24B4A 0%,#E24B4A 16.6%,#EF9F27 16.6%,#EF9F27 33.2%,#639922 33.2%,#639922 49.8%,#378ADD 49.8%,#378ADD 66.4%,#534AB7 66.4%,#534AB7 83%,#D4537E 83%,#D4537E 100%);
}

/* ── Landing ── */
.landing-wrap {
  max-width: 460px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}
.landing-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 1.25rem;
}
.landing-badge {
  width: 72px; height: 72px;
  flex-shrink: 0;
}
.landing-badge img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.landing-badge-divider {
  width: 1px;
  height: 48px;
  background: #e5e5e5;
  flex-shrink: 0;
}
.landing-badge-wide {
  width: 110px; height: 72px;
  flex-shrink: 0;
}
a.landing-badge, a.landing-badge-wide {
  display: block;
  text-decoration: none;
  opacity: 1;
  transition: opacity 0.15s;
}
a.landing-badge:hover, a.landing-badge-wide:hover { opacity: 0.8; }
.landing-headline {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800; line-height: 1.1;
  margin-bottom: 0.3rem;
}
.landing-headline span { color: var(--pink); }
.landing-sub {
  font-size: 13px; color: #666;
  margin-bottom: 1rem;
}
.landing-body {
  font-size: 14px; line-height: 1.7; color: #444;
  margin-bottom: 1.25rem;
}
.landing-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 1.75rem;
}
.pill {
  font-size: 11px; padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #e0e0e0;
  background: #f7f7f7;
  color: #555;
}
.landing-actions {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 1.5rem;
}
.landing-admin-link {
  text-align: center;
  font-size: 12px;
}
.landing-admin-link a { color: #aaa; text-decoration: none; }
.landing-admin-link a:hover { color: var(--pink); }

/* ── Buttons ── */
.btn-primary {
  width: 100%;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--pink);
  border: none;
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { opacity: 0.88; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
  width: 100%;
  height: 42px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid #ddd;
  color: #666;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.btn-secondary:hover { border-color: var(--pink); color: var(--pink); }

/* ── Screen Wrapper ── */
.screen-wrap {
  max-width: 460px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 3rem;
}
.back-btn {
  background: none; border: none; cursor: pointer;
  font-size: 13px; color: #888;
  padding: 0; margin-bottom: 1.25rem;
  display: block;
}
.back-btn:hover { color: var(--pink); }
.screen-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px; font-weight: 800; line-height: 1.15;
  margin-bottom: 0.35rem;
}
.screen-title span { color: var(--pink); }
.screen-sub { font-size: 13px; color: #666; margin-bottom: 1.5rem; line-height: 1.6; }
.text-center { text-align: center; }

/* ── Forms ── */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 12px; font-weight: 500; color: #555;
  margin-bottom: 5px;
}
.optional { color: #aaa; font-weight: 400; }
.form-input {
  width: 100%; height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid #ddd;
  background: #fff;
  padding: 0 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; color: #1a1a1a; /* 16px prevents iOS Safari auto-zoom on focus */
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
}
.form-hint { font-size: 11px; color: #999; margin-top: 5px; line-height: 1.5; }
.form-error {
  font-size: 12px; color: #c0392b;
  background: #fdf0f0; border: 1px solid #f5c6c6;
  border-radius: var(--radius-sm); padding: 8px 12px;
  margin-bottom: 12px;
}
.form-success {
  font-size: 12px; color: var(--teal);
  background: var(--teal-light); border: 1px solid #9FE1CB;
  border-radius: var(--radius-sm); padding: 8px 12px;
  margin-bottom: 12px;
}
.hidden { display: none !important; }
.terms {
  font-size: 11px; color: #aaa; text-align: center;
  margin-top: 1rem; line-height: 1.6;
}
.terms a { color: var(--pink); text-decoration: none; }

/* ── Passport Card (success screen) ── */
.success-icon { font-size: 40px; margin-bottom: 1rem; }
.passport-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
  text-align: left;
}
.passport-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 0.6rem;
}
.passport-id {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; color: #999;
}
.passport-active-badge {
  font-size: 10px; background: var(--teal-light); color: var(--teal);
  padding: 2px 8px; border-radius: 20px; font-weight: 500;
}
.passport-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 800; margin-bottom: 2px;
}
.passport-meta { font-size: 11px; color: #999; }
.passport-footer {
  margin-top: 0.85rem; padding-top: 0.75rem;
  border-top: 1px solid #f0f0f0;
  display: flex; justify-content: space-between; align-items: center;
}
.passport-stops { font-size: 12px; color: #888; }
.passport-stops strong { color: #1a1a1a; }
.passport-cta { font-size: 11px; color: var(--pink); font-weight: 500; }

/* ── Passport View Screen ── */
.passport-header {
  background: var(--pink-light);
  border-bottom: 1px solid var(--pink-border);
  padding: 1.5rem 1.5rem 1.25rem;
}
.passport-header-inner { max-width: 460px; margin: 0 auto; }
.passport-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: 0.18em;
  color: var(--pink-dark); text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.passport-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px; font-weight: 800; line-height: 1.1;
  color: #72243E; margin-bottom: 0.2rem;
}
.passport-title span { color: var(--pink); }
.passport-subtitle { font-size: 12px; color: var(--pink-dark); margin-bottom: 1rem; }
.passport-owner-row {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-md); padding: 0.7rem 1rem;
}
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 800;
  color: var(--pink-dark); flex-shrink: 0;
}
.passport-owner-name { font-size: 14px; font-weight: 500; }
.passport-owner-id { font-size: 11px; color: #999; }
.passport-status { margin-left: auto; font-size: 11px; color: var(--teal); font-weight: 500; }

/* ── Progress Section ── */
.progress-section {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f0f0f0;
  max-width: 460px; margin: 0 auto;
}
.progress-label-row {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 0.5rem;
}
.progress-label-text { font-size: 13px; font-weight: 500; }
.progress-count {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--pink);
}
.progress-track {
  height: 6px; background: #f0f0f0;
  border-radius: 3px; overflow: hidden; margin-bottom: 0.85rem;
}
.progress-fill {
  height: 100%; background: var(--pink);
  border-radius: 3px; transition: width 0.4s ease;
}
.prize-drawing-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--pink-light);
  border: 1px solid var(--pink-border);
  margin-bottom: 0.85rem;
}
.prize-drawing-banner.unlocked {
  background: var(--teal-light);
  border-color: #9FE1CB;
}
.prize-drawing-icon { font-size: 18px; flex-shrink: 0; }
.prize-drawing-text {
  font-size: 13px; font-weight: 500; color: var(--pink-dark);
}
.prize-drawing-banner.unlocked .prize-drawing-text { color: #085041; }
.milestones { display: flex; gap: 8px; }
.milestone {
  flex: 1; padding: 0.5rem;
  border-radius: var(--radius-sm); border: 1px solid #eee;
  background: #fff; text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.milestone.unlocked {
  background: var(--pink-light); border-color: var(--pink-border);
}
.milestone-icon { font-size: 15px; line-height: 1; margin-bottom: 2px; }
.milestone-count {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; color: #999;
}
.milestone.unlocked .milestone-count { color: var(--pink-dark); }
.milestone-label { font-size: 10px; color: #aaa; line-height: 1.2; }
.milestone.unlocked .milestone-label { color: var(--pink-dark); }

/* ── Stops List ── */
.stops-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem 0.5rem;
  max-width: 460px; margin: 0 auto;
}
.stops-title {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.filter-row { display: flex; gap: 6px; }
.chip {
  font-size: 11px; padding: 3px 10px;
  border-radius: 20px; border: 1px solid #e0e0e0;
  background: #f7f7f7; cursor: pointer; color: #777;
}
.chip.active { background: var(--pink-light); border-color: var(--pink-border); color: var(--pink-dark); }
.stops-list {
  padding: 0.5rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 8px;
  max-width: 460px; margin: 0 auto;
}
.stop-card {
  display: flex; align-items: center; gap: 12px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid #eee; background: #fff;
  cursor: pointer; transition: border-color 0.15s;
}
.stop-card:hover { border-color: #ccc; }
.stop-card.visited { background: var(--pink-light); border-color: var(--pink-border); }
.stop-emoji {
  width: 36px; height: 36px; border-radius: 50%;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.stop-card.visited .stop-emoji { background: var(--pink-border); }
.stop-info { flex: 1; min-width: 0; }
.stop-name { font-size: 14px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stop-area { font-size: 11px; color: #999; margin-top: 1px; }
.stop-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.stop-type-tag {
  font-size: 10px; padding: 2px 8px; border-radius: 20px; font-weight: 500;
}
.tag-owned { background: var(--teal-light); color: var(--teal); }
.tag-allied { background: var(--blue-light); color: var(--blue); }
.check-btn {
  font-size: 11px; padding: 4px 10px;
  border-radius: 20px; border: 1px solid #ddd;
  background: transparent; cursor: pointer; color: #888;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.15s;
}
.stop-card.visited .check-btn {
  background: var(--pink); border-color: var(--pink); color: #fff; font-weight: 500;
}

/* ── Check-in Screen ── */
.checkin-biz-hero {
  background: var(--pink-light);
  border-bottom: 1px solid var(--pink-border);
  padding: 1.5rem;
}
.ci-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em;
  color: var(--pink-dark); text-transform: uppercase; margin-bottom: 0.4rem;
}
.ci-biz-name {
  font-family: 'Syne', sans-serif;
  font-size: 26px; font-weight: 800; color: #72243E; line-height: 1.1;
  margin-bottom: 0.2rem;
}
.ci-biz-area { font-size: 13px; color: var(--pink-dark); margin-bottom: 0.75rem; }
.ci-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ci-tag { font-size: 10px; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.ci-tag-owned { background: var(--teal-light); color: var(--teal); }
.ci-tag-stop { background: var(--purple-light); color: var(--purple); font-family: 'Syne', sans-serif; font-weight: 700; }
.checkin-body {
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: 14px;
  max-width: 460px; margin: 0 auto;
}
.ci-passport-row {
  display: flex; align-items: center; gap: 10px;
  padding: 0.85rem 1rem;
  background: #f7f7f7; border-radius: var(--radius-md); border: 1px solid #eee;
}
.ci-passport-name { font-size: 14px; font-weight: 500; }
.ci-passport-id { font-size: 11px; color: #999; }
.ci-not-you { font-size: 11px; color: var(--pink); cursor: pointer; font-weight: 500; }
.ci-progress-mini { display: flex; flex-direction: column; gap: 5px; }
.ci-progress-label-row {
  display: flex; justify-content: space-between;
  font-size: 12px; color: #888;
}
.ci-progress-label-row span:last-child { font-family: 'Syne', sans-serif; font-weight: 700; color: var(--pink); }
.ci-already {
  display: flex; align-items: center; gap: 8px;
  padding: 0.75rem 1rem;
  background: var(--teal-light); border-radius: var(--radius-sm); border: 1px solid #9FE1CB;
}
.ci-already-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.ci-already-text { font-size: 12px; color: #085041; }
.ci-pin-row { display: flex; flex-direction: column; gap: 5px; }
.ci-pin-row .form-input { letter-spacing: 0.2em; font-size: 18px; font-weight: 700; text-align: center; max-width: 160px; }
.ci-pin-error { font-size: 12px; color: #c0392b; margin-top: 4px; }
.ci-biz-about { font-size: 13px; color: #666; line-height: 1.6; padding-top: 4px; }
.checkin-success {
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 460px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.checkin-success.visible { display: flex; }
.ci-stamp-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--pink-light); border: 2px solid var(--pink-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; margin: 0 auto;
}
.ci-milestone-unlocked {
  display: flex; align-items: center; gap: 10px;
  background: var(--purple-light); border: 1px solid #AFA9EC;
  border-radius: var(--radius-md); padding: 0.85rem 1rem;
  text-align: left;
}
.ci-milestone-icon { font-size: 20px; }
.ci-milestone-title { font-size: 13px; color: #3C3489; font-weight: 500; }
.ci-milestone-sub { font-size: 11px; color: var(--purple); }
.ci-next-stop {
  display: flex; align-items: center; gap: 10px;
  background: #f7f7f7; border-radius: var(--radius-md); border: 1px solid #eee;
  padding: 0.85rem 1rem; text-align: left;
}
.ci-next-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--purple-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 800; color: var(--purple);
  flex-shrink: 0;
}
.ci-next-name { font-size: 13px; font-weight: 500; flex: 1; }
.ci-next-area { font-size: 11px; color: #999; }
.ci-next-arrow { font-size: 14px; color: var(--purple); font-weight: 500; }

/* ── Admin Dashboard ── */
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid #f0f0f0;
}
.admin-title { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 800; }
.admin-title span { color: var(--pink); }
.admin-live { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--teal); font-weight: 500; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #1D9E75;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.admin-stats {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px;
  padding: 1rem 1.25rem; border-bottom: 1px solid #f0f0f0;
}
.admin-stat { background: #f7f7f7; border-radius: var(--radius-sm); padding: 0.75rem; }
.admin-stat-val { font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800; line-height: 1; }
.admin-stat-val.pink { color: var(--pink); }
.admin-stat-val.purple { color: var(--purple); }
.admin-stat-val.teal { color: var(--teal); }
.admin-stat-lbl { font-size: 10px; color: #999; margin-top: 3px; }
.admin-section { padding: 0.85rem 1.25rem; border-bottom: 1px solid #f0f0f0; }
.admin-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: #999; margin-bottom: 0.6rem;
}
.admin-biz-row {
  display: flex; align-items: center; gap: 10px;
  padding: 0.45rem 0; border-bottom: 1px solid #f5f5f5;
}
.admin-biz-row:last-child { border-bottom: none; }
.admin-biz-rank { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 800; width: 18px; color: #ccc; flex-shrink: 0; }
.admin-biz-name { font-size: 12px; font-weight: 500; flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-biz-bar-wrap { width: 80px; flex-shrink: 0; }
.admin-biz-bar-track { height: 4px; background: #f0f0f0; border-radius: 2px; overflow: hidden; }
.admin-biz-bar-fill { height: 100%; background: var(--pink); border-radius: 2px; }
.admin-biz-count { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; width: 28px; text-align: right; flex-shrink: 0; }
.admin-prize-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0; border-bottom: 1px solid #f5f5f5;
}
.admin-prize-row:last-child { border-bottom: none; }
.admin-prize-label { display: flex; align-items: center; gap: 8px; font-size: 12px; }
.prize-tag { font-size: 10px; padding: 2px 8px; border-radius: 20px; font-weight: 500; }
.p-entry { background: var(--purple-light); color: #3C3489; }
.p-swag { background: var(--blue-light); color: var(--blue); }
.p-grand { background: var(--pink-light); color: var(--pink-dark); }
.admin-prize-val { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 800; }
.admin-feed-item {
  display: flex; align-items: center; gap: 9px;
  padding: 0.4rem 0; border-bottom: 1px solid #f5f5f5;
}
.admin-feed-item:last-child { border-bottom: none; }
.admin-feed-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
.admin-feed-text { font-size: 12px; flex: 1; }
.admin-feed-text strong { font-weight: 500; }
.admin-feed-time { font-size: 11px; color: #aaa; flex-shrink: 0; }
.admin-export-row {
  display: flex; gap: 8px; padding: 1rem 1.25rem;
}
.btn-export {
  flex: 1; height: 36px; border-radius: var(--radius-sm);
  border: 1px solid #ddd; background: transparent;
  font-family: 'DM Sans', sans-serif; font-size: 12px; color: #666; cursor: pointer;
}
.btn-export:hover { border-color: var(--pink); color: var(--pink); }
.btn-export-primary { background: var(--pink); border-color: var(--pink); color: #fff; font-weight: 500; }
.btn-export-primary:hover { opacity: 0.88; color: #fff; }

/* ── Toast ── */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: #1a1a1a; color: #fff;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500;
  white-space: nowrap;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 999; pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── Passport link copy box ── */
.passport-link-box {
  display: flex; align-items: center; justify-content: space-between;
  background: #f6f6f6; border: 1.5px dashed #ddd;
  border-radius: var(--radius-md);
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
  cursor: pointer; gap: 0.5rem;
}
.passport-link-box:hover { border-color: var(--pink); }
.passport-link-box span:first-child {
  font-size: 12px; color: #555; word-break: break-all;
  font-family: monospace;
}
.passport-link-copy {
  font-size: 12px; font-weight: 700;
  color: var(--pink); white-space: nowrap; flex-shrink: 0;
}

/* ── Map ── */
.map-section { padding: 0 1rem; }
.map-section .stops-title {
  padding: 1.25rem 0 0.5rem;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; color: #888;
}
#passport-map {
  height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #eee;
  z-index: 0;
}

/* ── Passport screen footer logo ── */
.passport-footer-logo {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}
.passport-footer-logo a {
  display: inline-block;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.passport-footer-logo a:hover { opacity: 1; }
.passport-footer-logo img {
  width: 160px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ── Landing sponsor footer ── */
.landing-sponsor-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}
.landing-sponsor-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 0.85rem;
  font-family: 'Syne', sans-serif;
}
.landing-sponsor-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.landing-sponsor-logo {
  display: block;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.landing-sponsor-logo:hover { opacity: 1; }
.landing-sponsor-logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
