/* =========================================================
   #myBrightStar v2 — styles.css
   Warm dark palette. Single amber accent. Playfair Display
   for dimension headlines. Mobile-first at 375px.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;1,500&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --bg:            #16120d;
  --surface:       #1f1a13;
  --surface-2:     #2a231a;
  --surface-3:     #352c20;
  --border:        rgba(255,235,200,0.07);
  --border-soft:   rgba(255,235,200,0.04);
  --text:          #f0ece4;
  --text-muted:    #a89880;
  --text-faint:    #6b5d4e;
  --accent:        #c8861a;
  --accent-dim:    rgba(200,134,26,0.12);
  --accent-bright: #e09a2a;
  --gold:          #d4a947;
  --gold-dim:      rgba(212,169,71,0.10);
  --growth-tag-bg: rgba(168,152,128,0.12);
  --growth-tag-c:  #a89880;
  --radius:        16px;
  --radius-sm:     10px;
  --radius-xs:     6px;
  --shadow-card:   0 2px 16px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.3);
  --shadow-top:    0 6px 40px rgba(0,0,0,0.6);
  --font-serif:    'Playfair Display', Georgia, serif;
  --font-sans:     'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset + Base ──────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Shell ─────────────────────────────────────────────── */

.bs-shell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 0 16px 80px;
}

/* ── Header ────────────────────────────────────────────── */

.bs-header {
  width: 100%;
  max-width: 640px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

.bs-header-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.03em;
}

/* ── Main ──────────────────────────────────────────────── */

.bs-main {
  width: 100%;
  max-width: 640px;
}

/* ── Landing ───────────────────────────────────────────── */

.bs-landing {
  padding: 32px 0 24px;
}

.bs-landing-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 10px;
}

.bs-landing-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 8px;
}

.bs-landing-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}

.bs-landing-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.bs-landing-intro strong { color: var(--text); }

.bs-field {
  margin-bottom: 14px;
}

.bs-field-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.bs-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.18s;
  appearance: none;
}

.bs-input:focus { border-color: var(--accent); }
.bs-input::placeholder { color: var(--text-faint); }

.bs-age-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bs-age-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.bs-age-chip:hover { border-color: var(--accent); color: var(--accent); }
.bs-age-chip.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-bright);
}

.bs-start-btn {
  width: 100%;
  background: var(--accent);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 15px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.18s, opacity 0.18s;
  min-height: 52px;
}

.bs-start-btn:hover { background: var(--accent-bright); }

/* ── Progress ──────────────────────────────────────────── */

.bs-progress-bar {
  width: 100%;
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-bottom: 24px;
  overflow: hidden;
}

.bs-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.35s ease;
}

/* ── Assessment ────────────────────────────────────────── */

.bs-assessment { padding: 8px 0; }

.bs-q-counter {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.bs-question-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--text);
}

.bs-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bs-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  width: 100%;
  min-height: 44px;
}

.bs-option:hover:not(:disabled) {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.bs-option:disabled { opacity: 0.45; cursor: default; }

.bs-option.selected {
  border-color: var(--accent) !important;
  background: var(--accent-dim) !important;
  opacity: 1 !important;
}

.bs-option-letter {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 1px;
}

.bs-freetext-note {
  font-size: 0.83rem;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.bs-freetext-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 14px 16px;
  resize: vertical;
  outline: none;
  margin-bottom: 14px;
  transition: border-color 0.18s;
}

.bs-freetext-input:focus { border-color: var(--accent); }

/* ── Computing ─────────────────────────────────────────── */

.bs-computing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 72px 0;
  color: var(--text-muted);
  font-size: 0.93rem;
}

.bs-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--surface-2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Results ───────────────────────────────────────────── */

.bs-results { padding: 4px 0; }

/* Trust badge */
.bs-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  cursor: default;
  position: relative;
}

.bs-trust-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.bs-trust-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  z-index: 10;
  width: 280px;
}

.bs-trust-badge:hover .bs-trust-tooltip,
.bs-trust-badge.open .bs-trust-tooltip { display: block; }

/* Results header */
.bs-results-header {
  margin-bottom: 32px;
}

.bs-results-name {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.bs-results-name span {
  color: var(--text);
  font-weight: 500;
}

.bs-results-name .bs-age-band-tag {
  font-size: 0.72rem;
  color: var(--text-faint);
  margin-left: 8px;
}

/* ── Constellation (demoted, symbolic) ─────────────────── */

.bs-constellation-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.bs-constellation-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-faint);
  margin-bottom: 14px;
}

.bs-constellation-svg { display: block; }

/* ── Card Stack ────────────────────────────────────────── */

.bs-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.bs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px 22px 18px;
  transition: box-shadow 0.2s;
}

/* Natural advantage card — top */
.bs-card.top-card {
  background: linear-gradient(145deg, #22190f 0%, var(--surface) 60%);
  border-color: rgba(212,169,71,0.2);
}

/* Tag chips */
.bs-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  white-space: nowrap;
}

.bs-card-tag.gold {
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid rgba(212,169,71,0.2);
}

.bs-card-tag.growth {
  background: var(--growth-tag-bg);
  color: var(--growth-tag-c);
  border: 1px solid rgba(168,152,128,0.15);
}

.bs-card-tag.base {
  background: transparent;
  color: var(--text-faint);
  border: 1px solid var(--border);
}

/* Card header */
.bs-card-dim-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.bs-card-glyph {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.bs-card-dim-name {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  flex: 1;
}

/* Identity headline — Playfair */
.bs-card-headline {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 12px;
  text-wrap: pretty;
}

.bs-card.top-card .bs-card-headline {
  font-size: 1.22rem;
}

/* Age opener */
.bs-card-age-opener {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--accent);
  margin-bottom: 8px;
  font-style: italic;
}

/* Body */
.bs-card-body {
  font-size: 0.9rem;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-wrap: pretty;
}

/* 0.1 action */
.bs-action-wrap {
  margin-bottom: 14px;
}

.bs-action-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid rgba(200,134,26,0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--accent-bright);
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.15s;
  min-height: 44px;
  white-space: nowrap;
  overflow: hidden;
}

.bs-action-btn:hover { background: rgba(200,134,26,0.18); }

.bs-action-btn-chevron {
  margin-left: auto;
  font-size: 0.7rem;
  opacity: 0.6;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.bs-action-btn.open .bs-action-btn-chevron { transform: rotate(180deg); }

.bs-action-text {
  background: var(--surface-2);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.87rem;
  line-height: 1.68;
  color: var(--text);
  display: none;
  border: 1px solid rgba(200,134,26,0.1);
  border-top: none;
  margin-top: -4px;
}

.bs-action-text.open { display: block; }

/* Why this matters */
.bs-why-line {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-faint);
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
  margin-top: 4px;
}

.bs-why-line strong { color: var(--text-muted); }

/* Show the science */
.bs-science-details {
  border-top: 1px solid var(--border-soft);
  margin-top: 8px;
  padding-top: 8px;
}

.bs-science-summary {
  font-size: 0.75rem;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  padding: 4px 0;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bs-science-summary::-webkit-details-marker { display: none; }

.bs-science-body {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-faint);
  padding: 10px 12px;
  background: var(--surface-2);
  border-radius: var(--radius-xs);
  margin-top: 8px;
  font-style: italic;
}

.bs-science-footer {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-soft);
  font-style: normal;
}

/* ── Restart ───────────────────────────────────────────── */

.bs-restart-btn {
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-faint);
  border-radius: var(--radius-sm);
  padding: 13px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s;
  min-height: 44px;
  margin-top: 8px;
}

.bs-restart-btn:hover { border-color: var(--accent); color: var(--accent); }

/* ── Passport Section ──────────────────────────────────── */

.bs-passport-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  margin-bottom: 16px;
}

.bs-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.bs-section-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text-faint);
}

.bs-passport-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.bs-passport-canvas-wrap {
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.bs-passport-canvas {
  width: 100%;
  height: auto;
  display: block;
}

.bs-passport-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.bs-passport-btn {
  flex: 1;
  min-width: 120px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.83rem;
  padding: 11px 14px;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 44px;
}

.bs-passport-btn:hover { border-color: var(--accent); color: var(--accent); }

.bs-passport-btn.primary {
  background: var(--accent-dim);
  border-color: rgba(200,134,26,0.25);
  color: var(--accent-bright);
}

.bs-passport-btn.primary:hover { background: rgba(200,134,26,0.2); }

.bs-copied-msg {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 8px;
}

/* ── Journey Section ───────────────────────────────────── */

.bs-journey-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  margin-bottom: 16px;
}

.bs-journey-intro {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bs-journey-reassurance {
  font-size: 0.82rem;
  color: var(--text-faint);
  font-style: italic;
  margin-bottom: 18px;
}

/* Week chips */
.bs-week-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 20px;
  scrollbar-width: none;
}

.bs-week-chips::-webkit-scrollbar { display: none; }

.bs-week-chip {
  flex-shrink: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.15s;
  min-height: 44px;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.bs-week-chip:hover { border-color: var(--accent); color: var(--accent); }
.bs-week-chip.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-bright);
}

/* Week panels */
.bs-week-panel { display: none; }
.bs-week-panel.active { display: block; }

.bs-week-hero {
  margin-bottom: 18px;
}

.bs-week-theme {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}

.bs-week-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Day checklist */
.bs-day-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.bs-day-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bs-day-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: var(--surface-2);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  position: relative;
}

.bs-day-check:checked {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.bs-day-check:checked::after {
  content: '✓';
  color: var(--accent);
  font-size: 11px;
  position: absolute;
}

.bs-day-label {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-muted);
  flex: 1;
  cursor: pointer;
  text-wrap: pretty;
}

.bs-day-item.done .bs-day-label {
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-color: var(--text-faint);
}

/* Collapsed week */
.bs-week-collapsed {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bs-week-collapsed-info { flex: 1; }

.bs-week-collapsed-theme {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.bs-week-collapsed-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.bs-view-week-btn {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
  min-height: 44px;
}

.bs-view-week-btn:hover { border-color: var(--accent); color: var(--accent); }

/* Reflection textarea */
.bs-reflection-wrap {
  margin-top: 14px;
}

.bs-reflection-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.bs-reflection-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.87rem;
  line-height: 1.6;
  padding: 12px 14px;
  resize: none;
  outline: none;
  min-height: 80px;
  transition: border-color 0.18s;
}

.bs-reflection-input:focus { border-color: var(--accent); }

/* Week transition modal */
.bs-week-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.bs-week-modal-card {
  background: var(--surface);
  border: 1px solid rgba(200,134,26,0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-top);
}

.bs-week-modal-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 8px;
}

.bs-week-modal-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 10px;
}

.bs-week-modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.bs-week-modal-btn {
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 28px;
  cursor: pointer;
  min-height: 44px;
}

/* ── Age Insights ──────────────────────────────────────── */

.bs-age-insights {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 16px;
}

.bs-age-insights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bs-age-insight-item {
  font-size: 0.87rem;
  line-height: 1.68;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.bs-age-insight-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* ── Footer ────────────────────────────────────────────── */

.bs-footer {
  width: 100%;
  max-width: 640px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.bs-footer-link {
  font-size: 0.75rem;
  color: var(--text-faint);
  text-decoration: none;
  transition: color 0.18s;
}

.bs-footer-link:hover { color: var(--accent); }

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 480px) {
  .bs-landing-title { font-size: 1.8rem; }
  .bs-card { padding: 18px 16px 14px; }
  .bs-passport-section, .bs-journey-section { padding: 18px 16px 14px; }
  .bs-week-chips { gap: 6px; }
}
