/* ── Marketing site reset & tokens ─────────────────────────────── */
.mkt-body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff7ed;
  color: #1e293b;
}
.mkt-body a { text-decoration: none; }

/* Override nav for marketing */
.nav {
  background: #fff7ed;
  border-bottom: 1px solid rgba(68,41,26,.12);
}
.nav-logo { font-family: 'Fraunces', serif; font-weight: 900; color: #44291a; font-size: 1.1rem; }
.nav-logo span { margin-right: .25rem; }

/* ── Shared section utilities ───────────────────────────────────── */
.mkt-section { padding: 88px 1.25rem; position: relative; }
.mkt-section-sm { padding: 64px 1.25rem; }
.mkt-inner { max-width: 1080px; margin: 0 auto; }
.mkt-inner-narrow { max-width: 720px; margin: 0 auto; }

.mkt-eyebrow {
  font-family: 'Kalam', cursive; font-size: 1.1rem; font-weight: 700;
  color: #f97316; display: block; margin-bottom: .5rem;
}
.mkt-h2 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem); color: #44291a; line-height: 1.1;
  letter-spacing: -.02em; margin-bottom: 1rem;
}
.mkt-h2-white { color: #fff; }
.mkt-lead {
  font-size: clamp(.95rem, 2vw, 1.15rem); color: #64748b; line-height: 1.7;
  max-width: 560px; margin-bottom: 2rem;
}
.mkt-lead-white { color: rgba(255,255,255,.8); }
.section-rule {
  width: 40px; height: 3px; background: #fed7aa;
  border-radius: 2px; margin: 0 auto 1.25rem;
}
.section-rule-left { margin-left: 0; }
.center { text-align: center; }
.center .mkt-lead { margin-left: auto; margin-right: auto; }

/* ── CTA buttons ────────────────────────────────────────────────── */
.btn-mkt {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #f97316; color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px;
  border: none; cursor: pointer;
  transition: background .15s, transform .1s;
  text-decoration: none;
}
.btn-mkt:hover { background: #ea6a0a; transform: translateY(-1px); color: #fff; text-decoration: none; }

.btn-mkt-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; color: #44291a;
  font-weight: 700; font-size: .95rem;
  padding: .8rem 1.75rem; border-radius: 50px;
  border: 1.5px solid #44291a; cursor: pointer;
  transition: background .15s;
  text-decoration: none;
}
.btn-mkt-ghost:hover { background: rgba(68,41,26,.06); text-decoration: none; color: #44291a; }

.btn-mkt-white {
  background: #fff; color: #f97316;
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 800; font-size: 1.05rem;
  padding: .9rem 2.25rem; border-radius: 50px;
  border: none; cursor: pointer;
  transition: opacity .15s;
  text-decoration: none;
}
.btn-mkt-white:hover { opacity: .9; text-decoration: none; color: #f97316; }

.btn-row { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; }

/* ── SECTION 1: Hero ────────────────────────────────────────────── */
.hero-section {
  background: #fff7ed;
  padding: 72px 1.25rem 80px;
  position: relative; overflow: hidden;
}
.hero-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
}
.hero-h1 {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  color: #44291a; line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 1.25rem;
}
.hero-h1 em { color: #f97316; font-style: italic; }
.hero-sub {
  font-size: 1.1rem; color: #64748b; line-height: 1.75;
  margin-bottom: 2rem; max-width: 460px;
}
.hero-trust {
  font-size: .8rem; color: #94a3b8; margin-top: .75rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
}
.hero-trust span::before { content: '✓ '; color: #f97316; }

/* Hero decoration: hand-drawn route */
.hero-bg-sketch {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none; opacity: .06;
}

/* Phone mockup in hero */
.phone-mockup {
  width: 280px; height: 560px; margin: 0 auto;
  background: #1e293b; border-radius: 36px;
  border: 8px solid #0f172a;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.08);
  overflow: hidden; position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 24px; background: #0f172a; border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-screen-carousel {
  width: 100%; height: 100%; position: relative;
}
.phone-screen {
  width: 100%; height: 100%; overflow: hidden;
  display: flex; flex-direction: column;
  background: #fff7ed;
  position: absolute; top: 0; left: 0;
  opacity: 0;
  animation: phoneCarousel 55s infinite;
}
/* 10 screens, 5.5s visible each = 55s total cycle */
.phone-screen:nth-child(1)  { animation-delay: 0s; }
.phone-screen:nth-child(2)  { animation-delay: 5.5s; }
.phone-screen:nth-child(3)  { animation-delay: 11s; }
.phone-screen:nth-child(4)  { animation-delay: 16.5s; }
.phone-screen:nth-child(5)  { animation-delay: 22s; }
.phone-screen:nth-child(6)  { animation-delay: 27.5s; }
.phone-screen:nth-child(7)  { animation-delay: 33s; }
.phone-screen:nth-child(8)  { animation-delay: 38.5s; }
.phone-screen:nth-child(9)  { animation-delay: 44s; }
.phone-screen:nth-child(10) { animation-delay: 49.5s; }

@keyframes phoneCarousel {
  0%    { opacity: 0; }
  1%    { opacity: 1; }
  9%    { opacity: 1; }
  10%   { opacity: 0; }
  100%  { opacity: 0; }
}

/* Step label at top of phone screens */
.phone-step-label {
  position: absolute; top: 6px; left: 14px; right: 14px;
  font-size: .42rem; font-weight: 700; color: rgba(255,255,255,.65);
  text-transform: uppercase; letter-spacing: .12em;
  z-index: 3; text-align: right;
}

.phone-header {
  background: #f97316; padding: 28px 14px 12px;
}
.phone-trip-name {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: .9rem; color: #fff; margin: 4px 0 2px;
}
.phone-trip-meta { font-size: .6rem; color: rgba(255,255,255,.8); }
.phone-body { padding: 10px; flex: 1; overflow: hidden; }
.phone-leg {
  background: #fff; border-radius: 8px; padding: 8px 10px;
  margin-bottom: 6px; border-left: 3px solid #f97316;
}
.phone-leg-title { font-size: .62rem; font-weight: 700; color: #44291a; }
.phone-leg-meta { font-size: .55rem; color: #64748b; margin-top: 2px; }
.phone-leg-pills { display: flex; gap: 3px; margin-top: 4px; }
.phone-pill {
  font-size: .48rem; background: #fff7ed; color: #f97316;
  border: 1px solid #fed7aa; border-radius: 20px; padding: 1px 5px;
  font-weight: 700;
}
.phone-pill-blue { background: #e0f2fe; color: #0ea5e9; border-color: #bae6fd; }
.phone-stay {
  background: #f0fdf4; border-radius: 8px; padding: 8px 10px;
  margin-bottom: 6px; border-left: 3px solid #22c55e;
}
.phone-stay-title { font-size: .62rem; font-weight: 700; color: #166534; }
.phone-stay-rooms { display: flex; gap: 3px; margin-top: 4px; flex-wrap: wrap; }
.phone-room-chip {
  font-size: .48rem; color: #fff;
  border-radius: 20px; padding: 1px 5px; font-weight: 700;
}

/* Phone screen: availability calendar */
.phone-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
  margin-top: 6px;
}
.phone-cal-day {
  font-size: .45rem; text-align: center; padding: 3px 0;
  border-radius: 4px; font-weight: 600; color: #64748b;
}
.phone-cal-header { font-size: .4rem; color: #94a3b8; font-weight: 700; text-transform: uppercase; }
.phone-cal-available { background: #dcfce7; color: #16a34a; }
.phone-cal-partial { background: #fef3c7; color: #b45309; }
.phone-cal-unavail { background: #fee2e2; color: #dc2626; }
.phone-cal-empty { visibility: hidden; }

/* Phone screen: map view */
.phone-map {
  flex: 1; background: #e8e0d4; position: relative; overflow: hidden;
  border-radius: 0 0 8px 8px;
}
.phone-map-route {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}
.phone-map-pin {
  position: absolute; font-size: .65rem; filter: drop-shadow(0 1px 2px rgba(0,0,0,.3));
}
.phone-map-label {
  position: absolute; font-size: .42rem; font-weight: 700; color: #44291a;
  background: rgba(255,255,255,.9); padding: 1px 4px; border-radius: 3px;
  white-space: nowrap;
}

/* Phone screen: voting */
.phone-vote-card {
  background: #fff; border-radius: 8px; padding: 8px 10px;
  margin-bottom: 6px; border: 1px solid #e2e8f0;
}
.phone-vote-title { font-size: .6rem; font-weight: 700; color: #44291a; }
.phone-vote-sub { font-size: .5rem; color: #64748b; margin-top: 1px; }
.phone-vote-bar {
  height: 4px; background: #f1f5f9; border-radius: 2px; margin-top: 5px; overflow: hidden;
}
.phone-vote-fill { height: 100%; border-radius: 2px; }
.phone-vote-pct { font-size: .42rem; color: #64748b; margin-top: 2px; text-align: right; font-weight: 600; }
.phone-vote-badge {
  display: inline-block; font-size: .42rem; font-weight: 700; padding: 1px 5px;
  border-radius: 20px; margin-top: 3px;
}

/* Phone screen: expense split */
.phone-expense-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid #f1f5f9;
}
.phone-expense-name { font-size: .55rem; font-weight: 600; color: #44291a; }
.phone-expense-amount { font-size: .55rem; font-weight: 700; }
.phone-expense-avatar {
  width: 16px; height: 16px; border-radius: 50%; display: inline-flex;
  align-items: center; justify-content: center; font-size: .4rem; font-weight: 700; color: #fff;
}

/* Progress dots under phone */
.phone-progress-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 16px;
}
.phone-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #d4c4b0;
  transition: background .3s;
}
.phone-dot.active { background: #f97316; width: 18px; border-radius: 3px; }

.phone-notif {
  position: absolute; bottom: 16px; left: 10px; right: 10px;
  background: #fff; border-radius: 10px; padding: 7px 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  display: flex; align-items: center; gap: 6px;
  font-size: .55rem; color: #44291a; font-weight: 600;
  z-index: 4;
  opacity: 0;
  animation: phoneCarousel 55s infinite;
}

/* Phone screen: banter/chat */
.phone-chat-msg {
  display: flex; gap: 5px; margin-bottom: 6px; align-items: flex-start;
}
.phone-chat-avatar {
  width: 18px; height: 18px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; font-size: .38rem;
  font-weight: 700; color: #fff; flex-shrink: 0; margin-top: 1px;
}
.phone-chat-bubble {
  background: #fff; border-radius: 0 8px 8px 8px; padding: 5px 8px;
  border: 1px solid #e2e8f0; flex: 1;
}
.phone-chat-name { font-size: .42rem; color: #94a3b8; margin-bottom: 1px; }
.phone-chat-text { font-size: .5rem; color: #44291a; line-height: 1.4; }
.phone-chat-suggestion {
  background: #fff7ed; border: 1px solid #fed7aa; border-radius: 6px;
  padding: 4px 8px; margin: 4px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 4px;
}
.phone-chat-sug-text { font-size: .45rem; color: #44291a; }
.phone-chat-sug-btn {
  background: #f97316; color: #fff; border: none; border-radius: 12px;
  padding: 2px 6px; font-size: .4rem; font-weight: 700;
}

.phone-wrapper { position: relative; display: flex; flex-direction: column; align-items: center; }
.phone-starburst {
  position: absolute; top: -12px; right: 20px;
  font-size: 1.8rem; color: #f97316; opacity: .7;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Phone screen: Gallery grid */
.phone-gallery-grid {
  display: grid; grid-template-columns: 2fr 1fr; gap: 3px;
}
.phone-gallery-lg {
  grid-row: span 2; border-radius: 6px; overflow: hidden; position: relative;
}
.phone-gallery-lg img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.phone-gallery-sm {
  border-radius: 4px; overflow: hidden; position: relative;
  aspect-ratio: 1.2;
}
.phone-gallery-sm img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.phone-gallery-more {
  display: flex; align-items: center; justify-content: center;
  background: #f1f5f9; font-size: .5rem; font-weight: 700;
  color: #64748b; border: 1px dashed #cbd5e1;
}
.phone-gallery-day-tag {
  position: absolute; bottom: 3px; left: 4px;
  font-size: .38rem; font-weight: 700; color: #fff;
  background: rgba(0,0,0,.4); padding: 1px 4px; border-radius: 3px;
}

/* Phone screen: Packing list */
.phone-pack-item {
  display: flex; align-items: center; gap: 5px; padding: 3px 0;
  font-size: .52rem; color: #44291a;
}
.phone-pack-check {
  width: 14px; height: 14px; border-radius: 3px;
  border: 1.5px solid #cbd5e1; display: flex; align-items: center;
  justify-content: center; font-size: .4rem; color: transparent;
  flex-shrink: 0;
}
.phone-pack-done .phone-pack-check {
  background: #dcfce7; border-color: #86efac; color: #16a34a;
}
.phone-pack-done .phone-pack-name {
  text-decoration: line-through; color: #94a3b8;
}
.phone-pack-name { flex: 1; }
.phone-pack-who {
  font-size: .4rem; color: #94a3b8;
}

/* ── SECTION 2: Stats bar ───────────────────────────────────────── */
.stats-bar {
  background: #0d9488; padding: 2.5rem 1.25rem;
}
.stats-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; text-align: center;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: repeat(2,1fr); } }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 2.5rem; color: #fff;
  letter-spacing: -.02em; font-variant-numeric: tabular-nums;
  line-height: 1;
}
.stat-label { font-size: .7rem; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: .1em; margin-top: .35rem; }

/* ── SECTION 3: How it works ────────────────────────────────────── */
.workflow-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3rem;
}
@media (max-width: 700px) { .workflow-grid { grid-template-columns: 1fr; } }
.workflow-card {
  background: #fff; border-radius: 20px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  position: relative; overflow: hidden;
}
.workflow-num {
  font-family: 'Fraunces', serif; font-weight: 900;
  font-size: 4.5rem; color: #f97316; opacity: .15;
  position: absolute; top: -8px; right: 16px; line-height: 1;
}
.workflow-icon { font-size: 2rem; margin-bottom: .75rem; }
.workflow-title {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1.2rem; color: #44291a; margin-bottom: .5rem;
}
.workflow-body { font-size: .88rem; color: #64748b; line-height: 1.7; margin-bottom: .75rem; }
.workflow-note {
  font-family: 'Kalam', cursive; font-size: 1.2rem;
  color: #f97316; font-weight: 700;
}
/* Mini mockup thumbnails inside workflow cards */
.mini-calendar {
  background: #f8fafc; border-radius: 8px; padding: 8px;
  margin: .75rem 0; border: 1px solid #e2e8f0;
}
.mini-cal-row { display: flex; gap: 3px; margin-bottom: 3px; }
.mini-cal-cell {
  flex: 1; height: 12px; border-radius: 2px; background: #e2e8f0;
}
.cal-green { background: #4ade80; }
.cal-red { background: #fca5a5; }
.cal-yellow { background: #fde68a; }

.mini-route {
  background: #f8fafc; border-radius: 8px; padding: 8px;
  margin: .75rem 0; border: 1px solid #e2e8f0;
}
.mini-route-label { font-size: .6rem; color: #94a3b8; margin-bottom: 4px; }
.mini-route-bar {
  height: 6px; background: linear-gradient(90deg, #f97316, #0d9488);
  border-radius: 3px; margin-bottom: 6px;
}
.mini-route-row { display: flex; justify-content: space-between; font-size: .58rem; color: #64748b; }

.mini-activity {
  background: #f8fafc; border-radius: 8px; padding: 8px;
  margin: .75rem 0; border: 1px solid #e2e8f0;
}
.mini-act-row {
  display: flex; align-items: center; gap: 6px; margin-bottom: 5px;
  font-size: .6rem; color: #44291a;
}
.mini-act-dot { width: 6px; height: 6px; border-radius: 50%; background: #f97316; flex-shrink: 0; }

/* ── SECTION 4: Archetypes ──────────────────────────────────────── */
.archetypes-section { background: #0f172a; }
.archetypes-grid {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2.5rem;
}
.archetype-card {
  background: #1e293b; border-radius: 16px; padding: 1.5rem 1.25rem;
  width: 180px; text-align: center; cursor: default;
  border: 1.5px solid transparent;
  transition: border-color .2s, transform .15s;
  flex-shrink: 0;
}
.archetype-card:hover { transform: translateY(-4px); }
.arch-road-warrior  { border-color: #ef4444; box-shadow: 0 0 20px rgba(239,68,68,.2); }
.arch-scenic-cruise { border-color: #0d9488; box-shadow: 0 0 20px rgba(13,148,136,.2); }
.arch-party-time    { border-color: #f97316; box-shadow: 0 0 20px rgba(249,115,22,.2); }
.arch-adventure     { border-color: #22c55e; box-shadow: 0 0 20px rgba(34,197,94,.2); }
.arch-mixed         { border-color: #8b5cf6; box-shadow: 0 0 20px rgba(139,92,246,.2); }
.archetype-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.archetype-name {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: .9rem; color: #fff; margin-bottom: .35rem;
}
.archetype-tag { font-size: .7rem; color: rgba(255,255,255,.5); line-height: 1.5; }
.arch-annotation {
  font-family: 'Kalam', cursive; font-size: 1.1rem;
  font-weight: 700; color: #f97316; margin-top: 2rem; text-align: center;
}

/* ── SECTION 5: Blind vote ──────────────────────────────────────── */
.vote-section { background: #fff7ed; }
.vote-demo {
  background: #fff; border-radius: 20px; padding: 1.75rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08); max-width: 520px; margin: 2rem auto 0;
}
.vote-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: .6rem 0; border-bottom: 1px solid #f1f5f9; gap: 1rem;
}
.vote-row:last-child { border-bottom: none; }
.vote-option-name { font-size: .9rem; font-weight: 600; color: #44291a; flex: 1; }
.vote-cells { display: flex; gap: .4rem; }
.vote-cell {
  width: 32px; height: 32px; border-radius: 8px;
  background: #f1f5f9; display: flex; align-items: center;
  justify-content: center; font-size: .8rem; font-weight: 700;
  color: #94a3b8; border: 1px solid #e2e8f0;
}
.vote-cell-sealed { background: #1e293b; color: #475569; border-color: #334155; }
.vote-reveal-overlay {
  display: none;
  background: #0f172a; border-radius: 20px; padding: 1.75rem;
  margin-top: 1rem;
}
.reveal-cols {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
  text-align: center;
}
.reveal-col-hdr {
  font-size: .7rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: .75rem;
}
.reveal-yes { color: #4ade80; }
.reveal-maybe { color: #fbbf24; }
.reveal-no { color: #f87171; }
.reveal-card {
  background: rgba(255,255,255,.08); border-radius: 10px;
  padding: .6rem; font-size: .75rem; color: #fff;
  margin-bottom: .4rem; font-weight: 600;
}
.reveal-count { font-size: .65rem; color: rgba(255,255,255,.5); }
.vote-toggle {
  display: block; margin: 1rem auto 0;
  background: #f97316; color: #fff; border: none; border-radius: 50px;
  padding: .6rem 1.5rem; font-size: .85rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: background .15s;
}
.vote-toggle:hover { background: #ea6a0a; }
.vote-annotation {
  font-family: 'Kalam', cursive; font-size: 1.2rem; font-weight: 700;
  color: #f97316; text-align: center; margin-top: .75rem;
}

/* ── SECTION 6: Room assignments ────────────────────────────────── */
.room-section { background: #f8fafc; }
.room-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  border: 1.5px solid #22c55e; max-width: 480px;
}
.room-card-header {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1rem;
}
.room-hotel-name {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1.05rem; color: #44291a;
}
.room-hotel-meta { font-size: .75rem; color: #64748b; margin-top: 1px; }
.room-row {
  background: #f8fafc; border-radius: 10px; padding: .75rem;
  margin-bottom: .5rem;
}
.room-row-title { font-size: .72rem; font-weight: 700; color: #44291a; margin-bottom: .4rem; }
.room-chips { display: flex; gap: .35rem; flex-wrap: wrap; align-items: center; }
.room-chip {
  display: inline-flex; align-items: center; gap: .25rem;
  font-size: .72rem; font-weight: 700; padding: .2rem .55rem;
  border-radius: 20px; color: #fff;
}
.room-chip-add {
  background: transparent; border: 1.5px dashed #d1d5db;
  color: #94a3b8; font-size: .72rem; padding: .2rem .55rem;
  border-radius: 20px; cursor: default;
}
.room-chip-empty {
  background: #f1f5f9; border: 1.5px dashed #d1d5db;
  color: #94a3b8; font-size: .7rem; padding: .2rem .65rem;
  border-radius: 20px; font-style: italic;
}
.room-per-person {
  margin-top: .75rem; font-size: .78rem; color: #64748b;
  text-align: center; border-top: 1px solid #f1f5f9; padding-top: .6rem;
}
.room-per-person strong { color: #44291a; }
.room-caveat {
  font-family: 'Kalam', cursive; font-size: 1.2rem; font-weight: 700;
  color: #64748b; margin-top: .6rem; text-align: center;
}
.room-demo-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center;
  max-width: 860px; margin: 0 auto;
}
@media (max-width: 680px) { .room-demo-layout { grid-template-columns: 1fr; } }

/* ── SECTION 6.5: Pay Up ──────────────────────────────────────────── */
.payup-mkt-section { background: #fff7ed; }
.payup-mkt-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 860px; margin: 0 auto;
}
@media (max-width: 680px) { .payup-mkt-layout { grid-template-columns: 1fr; } }
.payup-mkt-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  border-left: 4px solid #22c55e; max-width: 480px;
}
.payup-mkt-hdr {
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid #f1f5f9;
}
.payup-mkt-hdr-icon { font-size: 1.3rem; }
.payup-mkt-hdr-title {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1rem; color: #44291a;
}
.payup-mkt-hdr-meta { font-size: .7rem; color: #94a3b8; }
.payup-mkt-expense {
  background: #f8fafc; border-radius: 10px; padding: .65rem .75rem;
  margin-bottom: .4rem;
}
.payup-mkt-expense-top {
  display: flex; justify-content: space-between; align-items: center;
}
.payup-mkt-expense-label { font-size: .78rem; font-weight: 700; color: #1e293b; }
.payup-mkt-expense-amount { font-size: .78rem; font-weight: 800; color: #1e293b; }
.payup-mkt-expense-meta { font-size: .65rem; color: #94a3b8; margin-top: .15rem; }
.payup-mkt-divider {
  font-size: .6rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: #94a3b8; margin: 1rem 0 .6rem; padding-top: .5rem;
  border-top: 1px solid #f1f5f9;
}
.payup-mkt-balance {
  display: flex; justify-content: space-between; align-items: center;
  padding: .35rem 0; font-size: .78rem; color: #334155;
}
.payup-mkt-balance-names b { font-weight: 700; }
.payup-mkt-settle-pill {
  font-size: .6rem; font-weight: 700; background: #dcfce7; color: #16a34a;
  border: 1px solid #bbf7d0; border-radius: 20px; padding: .15rem .55rem;
  cursor: pointer; transition: background .15s;
}
.payup-mkt-settle-pill:hover { background: #bbf7d0; }
.payup-mkt-settled {
  font-size: .6rem; font-weight: 700; color: #16a34a;
}
.payup-mkt-settled-row { color: #94a3b8; text-decoration: line-through; }
.payup-mkt-positions {
  border-top: 1px solid #f1f5f9; margin-top: .75rem; padding-top: .6rem;
}
.payup-mkt-pos-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; color: #334155; padding: .2rem 0;
}
.payup-mkt-pos-chip {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; flex-shrink: 0;
}
.payup-mkt-pos-amount { margin-left: auto; font-weight: 700; white-space: nowrap; }
.payup-mkt-pos-positive { color: #16a34a; }
.payup-mkt-pos-negative { color: #dc2626; }
.payup-mkt-pos-settled { color: #16a34a; }
.payup-mkt-caveat {
  font-family: 'Kalam', cursive; font-size: 1.2rem; font-weight: 700;
  color: #64748b; margin-top: .6rem; text-align: center;
}
.payup-mkt-pills {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem;
}
.payup-mkt-pill {
  font-size: .7rem; font-weight: 600; padding: .3rem .7rem;
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 20px;
  color: #475569;
}

/* ── SECTION 7: Banter → Plan ───────────────────────────────────── */
.banter-section { background: #0f172a; }
.banter-panel {
  background: #1e293b; border-radius: 16px; overflow: hidden;
  max-width: 480px; border: 1px solid #334155;
}
.banter-header {
  background: #0f172a; padding: .6rem 1rem;
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: #f97316; display: flex; align-items: center; gap: .4rem;
}
.banter-messages { padding: .75rem 1rem; }
.banter-msg { display: flex; gap: .5rem; margin-bottom: .75rem; }
.banter-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.banter-bubble {
  background: #334155; border-radius: 0 10px 10px 10px;
  padding: .5rem .75rem; flex: 1;
}
.banter-name { font-size: .6rem; color: #94a3b8; margin-bottom: 2px; }
.banter-text { font-size: .78rem; color: #e2e8f0; line-height: 1.5; }
.banter-reaction { font-size: .7rem; margin-top: 3px; }
.banter-suggestion {
  background: #0f172a; border: 1px solid #475569; border-radius: 10px;
  padding: .6rem .75rem; margin: .4rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
}
.banter-sug-text { font-size: .72rem; color: #e2e8f0; }
.banter-sug-btn {
  background: #f97316; color: #fff; border: none; border-radius: 20px;
  padding: .2rem .55rem; font-size: .62rem; font-weight: 700; cursor: default;
  font-family: inherit;
}
.banter-chips { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1rem; padding: 0 1rem .75rem; }
.banter-chip {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: .2rem .6rem;
  font-size: .65rem; color: rgba(255,255,255,.7); font-weight: 600;
}
.banter-caveat {
  font-family: 'Kalam', cursive; font-size: 1.25rem; font-weight: 700;
  color: #f97316; margin-top: 1.5rem;
}
.banter-demo-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .banter-demo-layout { grid-template-columns: 1fr; } }

/* ── SECTION 8: Moto leg card tease ────────────────────────────── */
.moto-section { background: #f0fdf4; }
.coming-badge {
  display: inline-block; background: #f97316; color: #fff;
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; padding: .2rem .6rem; border-radius: 20px;
  margin-bottom: .75rem;
}
.moto-leg-card {
  background: #fff; border-radius: 16px; padding: 1.25rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.08); max-width: 480px;
  border-left: 3px solid #f97316;
}
.moto-leg-title {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1rem; color: #44291a; display: flex; justify-content: space-between;
  align-items: center; margin-bottom: .25rem;
}
.moto-leg-stats { font-size: .75rem; color: #64748b; margin-bottom: .75rem; }
.moto-surface-bar { height: 8px; border-radius: 4px; overflow: hidden; display: flex; margin-bottom: .35rem; }
.moto-surface-paved { background: #94a3b8; }
.moto-surface-gravel { background: #d97706; }
.moto-surface-label { font-size: .65rem; color: #64748b; margin-bottom: .75rem; }
.moto-pills { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .75rem; }
.moto-pill {
  font-size: .68rem; font-weight: 700; border-radius: 20px;
  padding: .2rem .6rem;
}
.moto-pill-elev { background: #dbeafe; color: #1d4ed8; }
.moto-pill-fuel { background: #dcfce7; color: #166534; }
.moto-pill-time { background: #fef3c7; color: #92400e; }
.moto-weather { font-size: .7rem; color: #64748b; border-top: 1px solid #f1f5f9; padding-top: .6rem; }
.moto-hazard { font-size: .68rem; color: #dc2626; margin-top: .4rem; }
.moto-annots { margin-top: 1rem; }
.moto-annot { display: flex; gap: .4rem; align-items: flex-start; margin-bottom: .35rem; }
.moto-annot-arrow { color: #f97316; font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.moto-annot-text {
  font-family: 'Kalam', cursive; font-size: 1.25rem;
  font-weight: 700; color: #64748b;
}
.feature-pill-row { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.feature-pill {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 20px;
  padding: .3rem .8rem; font-size: .72rem; font-weight: 700; color: #44291a;
  display: flex; align-items: center; gap: .3rem;
}
.moto-demo-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .moto-demo-layout { grid-template-columns: 1fr; } }

/* ── SECTION 9: Sanity Check ────────────────────────────────────── */
.sanity-section { background: #fffbeb; }
.sanity-card {
  background: #fff; border-radius: 16px; padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.08); max-width: 440px;
}
.sanity-header {
  font-family: 'Fraunces', serif; font-weight: 700;
  font-size: 1rem; color: #44291a; display: flex; align-items: center;
  gap: .5rem; margin-bottom: 1.1rem; padding-bottom: .75rem;
  border-bottom: 1px solid #fef3c7;
}
.sanity-item {
  display: flex; align-items: flex-start; gap: .6rem;
  padding: .55rem 0; border-bottom: 1px solid #f8f8f8; font-size: .82rem;
}
.sanity-item:last-child { border-bottom: none; }
.sanity-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.sanity-text { flex: 1; color: #44291a; line-height: 1.5; }
.sanity-text strong { display: block; }
.sanity-text small { color: #64748b; font-size: .75rem; }
.sanity-fix {
  font-size: .7rem; color: #f97316; font-weight: 700; cursor: default;
  margin-top: 3px; display: block;
}
.sanity-demo-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .sanity-demo-layout { grid-template-columns: 1fr; } }

/* ── SECTION 10: AI Builder ─────────────────────────────────────── */
.ai-section { background: #0ea5e9; }
.ai-features { list-style: none; margin: 1.5rem 0 2rem; }
.ai-features li {
  display: flex; align-items: center; gap: .65rem;
  font-size: .95rem; color: rgba(255,255,255,.9);
  margin-bottom: .65rem;
}
.ai-features li::before { content: '✓'; color: #fff; font-weight: 800; font-size: .8rem; }
.ai-loading {
  background: rgba(0,0,0,.25); border-radius: 16px; padding: 2rem;
  text-align: center; margin-top: 2rem; max-width: 380px;
}
.ai-loading-icon { font-size: 2.5rem; margin-bottom: .6rem; }
.ai-loading-text { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 1rem; }
.ai-dots { display: flex; gap: .4rem; justify-content: center; }
.ai-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.6);
  animation: bounce 1.2s ease-in-out infinite;
}
.ai-dot:nth-child(2) { animation-delay: .2s; }
.ai-dot:nth-child(3) { animation-delay: .4s; }
@keyframes bounce {
  0%, 80%, 100% { transform: scale(0.8); opacity: .5; }
  40% { transform: scale(1.2); opacity: 1; }
}
.ai-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .ai-layout { grid-template-columns: 1fr; } }

/* ── SECTION 11: Zero friction entry ────────────────────────────── */
.zero-section { background: #fff7ed; }
.wizard-card-stack {
  background: #1e293b; border-radius: 20px; padding: 1.5rem;
  max-width: 400px;
}
.wizard-steps { list-style: none; }
.wizard-step {
  display: flex; gap: .75rem; align-items: flex-start;
  padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.wizard-step:last-child { border-bottom: none; }
.wizard-step-num {
  width: 22px; height: 22px; border-radius: 50%;
  background: #f97316; color: #fff; font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 2px;
}
.wizard-step-label { font-size: .75rem; color: rgba(255,255,255,.6); line-height: 1; margin-bottom: 2px; }
.wizard-step-value { font-size: .85rem; font-weight: 700; color: #fff; }
.wizard-step-chip {
  display: inline-flex; align-items: center; gap: .2rem;
  background: #f97316; color: #fff; font-size: .72rem; font-weight: 700;
  padding: .15rem .45rem; border-radius: 20px;
}
.wizard-cta {
  margin-top: 1.25rem; background: #f97316; color: #fff; border: none;
  border-radius: 12px; width: 100%; padding: .8rem;
  font-size: .9rem; font-weight: 800; cursor: default; font-family: inherit;
}
.crew-modes { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; margin-top: 1rem; }
.crew-mode-card {
  background: #1e293b; border-radius: 12px; padding: .75rem;
  text-align: center; border: 1px solid #334155;
}
.crew-mode-icon { font-size: 1.2rem; margin-bottom: .3rem; }
.crew-mode-name { font-size: .7rem; font-weight: 700; color: #fff; margin-bottom: .15rem; }
.crew-mode-desc { font-size: .6rem; color: rgba(255,255,255,.5); }
.zero-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .zero-layout { grid-template-columns: 1fr; } }

/* ── SECTION 12: Pre-ride brief tease ───────────────────────────── */
.brief-section { background: #0f172a; }
.email-preview-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  max-width: 420px; box-shadow: 0 8px 40px rgba(0,0,0,.3);
}
.email-header {
  background: #f97316; padding: .75rem 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.email-subject { font-size: .8rem; font-weight: 700; color: #fff; }
.email-body { padding: 1.25rem; }
.email-day-label {
  font-size: .65rem; color: #94a3b8; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: .5rem;
}
.email-leg-row {
  display: flex; gap: .6rem; padding: .5rem 0;
  border-bottom: 1px solid #f1f5f9; align-items: flex-start;
}
.email-leg-icon { font-size: 1.1rem; flex-shrink: 0; }
.email-leg-title { font-size: .82rem; font-weight: 700; color: #44291a; }
.email-leg-meta { font-size: .72rem; color: #64748b; margin-top: 2px; }
.email-leg-advisory { font-size: .68rem; color: #dc2626; margin-top: 3px; }
.email-footer-row {
  display: flex; gap: .5rem; margin-top: .6rem; font-size: .75rem; color: #64748b;
}
.brief-caveat {
  font-family: 'Kalam', cursive; font-size: 1.25rem; font-weight: 700;
  color: #f97316; margin-top: 1.5rem;
}
.brief-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 900px; margin: 0 auto;
}
@media (max-width: 700px) { .brief-layout { grid-template-columns: 1fr; } }

/* ── SECTION 13: Hazard reporting ───────────────────────────────── */
.hazard-section { background: #f8fafc; }
.hazard-demo { max-width: 440px; margin: 2rem auto 0; }
.hazard-card {
  background: #fff; border-radius: 12px; padding: 1rem 1.1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.07); margin-bottom: .75rem;
  border-left: 3px solid #fbbf24;
}
.hazard-card-title { font-size: .85rem; font-weight: 700; color: #44291a; margin-bottom: .2rem; }
.hazard-card-meta { font-size: .7rem; color: #64748b; margin-bottom: .5rem; }
.hazard-card-actions { display: flex; gap: .4rem; }
.hazard-action {
  background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 20px;
  padding: .2rem .65rem; font-size: .65rem; font-weight: 700; color: #44291a;
  cursor: default;
}
.hazard-types { display: flex; gap: .4rem; flex-wrap: wrap; margin-top: 1rem; }
.hazard-type-chip {
  background: #fff; border: 1.5px solid #e2e8f0; border-radius: 20px;
  padding: .3rem .7rem; font-size: .72rem; font-weight: 700; color: #44291a;
}
.hazard-caveat {
  font-family: 'Kalam', cursive; font-size: 1.2rem; font-weight: 700;
  color: #f97316; text-align: center; margin-top: .75rem;
}

/* ── SECTION 14: Final CTA ──────────────────────────────────────── */
.cta-section { background: #f97316; padding: 88px 1.25rem; text-align: center; }
.cta-h2 {
  font-family: 'Fraunces', serif; font-weight: 900; font-style: italic;
  font-size: clamp(2.4rem, 6vw, 3.5rem); color: #fff;
  letter-spacing: -.02em; margin-bottom: 1rem;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-trust { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; }
.cta-trust-item { font-size: .8rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .3rem; }
.cta-trust-item::before { content: '✓'; font-weight: 800; }

/* ── SECTION 15: Footer ─────────────────────────────────────────── */
.mkt-footer { background: #0f172a; padding: 56px 1.25rem 32px; }
.footer-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col-title {
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: .75rem;
}
.footer-col a {
  display: block; font-size: .85rem; color: rgba(255,255,255,.65);
  margin-bottom: .4rem; text-decoration: none;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 900px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .75rem;
}
.footer-logo {
  font-family: 'Fraunces', serif; font-weight: 900;
  color: rgba(255,255,255,.8); font-size: .95rem;
  display: flex; align-items: center; gap: .3rem;
}
.footer-tagline { font-size: .78rem; color: rgba(255,255,255,.35); font-style: italic; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { font-size: .75rem; color: rgba(255,255,255,.4); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,.7); }

/* ── Pay Up Enhancement ───────────────────────────────────────────── */
.payup-handles-note {
  font-size: .78rem; color: #64748b; margin-top: .75rem;
  font-style: italic;
}

/* ── Banter Activity Feed ─────────────────────────────────────────── */
.banter-activity-preview {
  margin-top: 1.5rem; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 8px;
  padding: .75rem 1rem;
}
.banter-activity-label {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: .5rem;
}
.banter-activity-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .72rem; color: rgba(255,255,255,.7); padding: .3rem 0;
}
.banter-act-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.banter-act-time {
  margin-left: auto; font-size: .6rem; color: rgba(255,255,255,.35);
}

/* ── SECTION 7.5: Media Gallery ───────────────────────────────────── */
.media-section { background: #fff7ed; }
.media-layout {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 768px) { .media-layout { grid-template-columns: 1fr; } }
.media-chips {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem;
}
.media-chip {
  font-size: .72rem; padding: .3rem .6rem;
  background: #fff; border: 1px solid #e2e8f0; border-radius: 20px;
  color: #44291a;
}
.media-gallery-demo {
  background: #fff; border-radius: 12px; padding: 1rem;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.media-gallery-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: .75rem;
}
.media-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
}
.media-thumb {
  aspect-ratio: 1; border-radius: 8px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.media-thumb-lg { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.media-thumb-bg {
  position: absolute; inset: 0; border-radius: 8px;
}
.media-thumb-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 8px;
}
.media-thumb-icon {
  position: relative; z-index: 1; font-size: 1.5rem;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.3));
}
.media-thumb-lg .media-thumb-icon { font-size: 2.5rem; }
.media-thumb-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 4px 6px;
  background: linear-gradient(transparent, rgba(0,0,0,.5));
  border-radius: 0 0 8px 8px;
}
.media-thumb-day {
  font-size: .5rem; font-weight: 700; color: #fff;
}
.media-thumb-more {
  background: #f1f5f9; display: flex; align-items: center;
  justify-content: center; font-size: .7rem; font-weight: 700;
  color: #64748b; border: 1px dashed #cbd5e1; border-radius: 8px;
}
.media-contributors {
  display: flex; align-items: center; gap: 4px; margin-top: .75rem;
}
.media-contrib-avatar {
  width: 22px; height: 22px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 700;
}

/* ── Moto Leg Card Enhancements ───────────────────────────────────── */
.moto-elev-profile {
  margin: .75rem 0; padding: .5rem; background: rgba(255,255,255,.05);
  border-radius: 6px; border: 1px solid rgba(255,255,255,.08);
}
.moto-elev-label {
  font-size: .55rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #94a3b8; margin-bottom: .25rem;
}
.moto-elev-svg { width: 100%; height: 50px; }
.moto-elev-range {
  display: flex; justify-content: space-between;
  font-size: .5rem; color: #94a3b8; margin-top: .25rem;
}
.moto-gems {
  margin: .5rem 0; padding: .5rem; background: rgba(255,255,255,.04);
  border-radius: 6px; border: 1px solid rgba(255,255,255,.06);
}
.moto-gems-label {
  font-size: .55rem; font-weight: 700; color: #f97316; margin-bottom: .35rem;
}
.moto-gem-item {
  font-size: .65rem; color: #e2e8f0; padding: .2rem 0;
  display: flex; align-items: center; gap: .5rem;
}
.moto-gem-votes {
  margin-left: auto; font-size: .5rem; color: #94a3b8;
  background: rgba(255,255,255,.06); padding: .15rem .4rem;
  border-radius: 10px;
}

/* ── SECTION 9.5: Bike Profile ────────────────────────────────────── */
.bike-section { background: #fff; }
.bike-layout {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
@media (max-width: 768px) { .bike-layout { grid-template-columns: 1fr; } }
.bike-chips {
  display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem;
}
.bike-chip {
  font-size: .72rem; padding: .3rem .6rem;
  background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 20px;
  color: #44291a;
}
.bike-profile-card {
  background: #fff; border-radius: 12px; padding: 1.25rem;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.bike-profile-header {
  display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem;
}
.bike-profile-name {
  font-size: .85rem; font-weight: 700; color: #44291a;
}
.bike-profile-meta {
  font-size: .65rem; color: #94a3b8;
}
.bike-profile-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem;
  margin-bottom: 1rem;
}
.bike-stat {
  text-align: center; padding: .5rem; background: #f8fafc;
  border-radius: 8px; border: 1px solid #e2e8f0;
}
.bike-stat-value {
  font-size: .9rem; font-weight: 800; color: #f97316;
}
.bike-stat-label {
  font-size: .55rem; color: #94a3b8; text-transform: uppercase;
  letter-spacing: .06em;
}
.bike-profile-prefs { margin-bottom: 1rem; }
.bike-pref-row {
  display: flex; align-items: center; gap: .5rem;
}
.bike-pref-label {
  font-size: .65rem; color: #64748b; min-width: 80px;
}
.bike-pref-bar {
  flex: 1; height: 6px; border-radius: 3px; overflow: hidden;
  display: flex; background: #f1f5f9;
}
.bike-pref-fill { height: 100%; }
.bike-pref-value {
  font-size: .6rem; color: #94a3b8; min-width: 70px; text-align: right;
}
.bike-profile-riders {
  border-top: 1px solid #f1f5f9; padding-top: .75rem;
}
.bike-rider-row {
  display: flex; align-items: center; gap: .5rem; padding: .35rem 0;
}
.bike-rider-avatar {
  width: 24px; height: 24px; border-radius: 50%; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 700; flex-shrink: 0;
}
.bike-rider-name {
  font-size: .7rem; font-weight: 600; color: #44291a;
}
.bike-rider-range {
  font-size: .58rem; color: #94a3b8;
}
.bike-profile-note {
  margin-top: .75rem; padding: .5rem .75rem;
  background: #fffbeb; border: 1px solid #fde68a; border-radius: 6px;
  font-size: .65rem; color: #92400e; font-style: italic;
}

/* ── AI Navigator Callout ─────────────────────────────────────────── */
.ai-navigator-callout {
  margin-top: 1.5rem; padding: 1rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px; display: flex; gap: .75rem; align-items: flex-start;
}
.ai-nav-icon { font-size: 1.5rem; flex-shrink: 0; }
.ai-nav-title {
  font-size: .85rem; font-weight: 700; color: #fff; margin-bottom: .25rem;
}
.ai-nav-desc {
  font-size: .75rem; color: rgba(255,255,255,.65); line-height: 1.5;
}

/* ── SECTION 12.5: Packing Lists ──────────────────────────────────── */
.packing-section { background: #fff; }
.packing-card {
  background: #fff; border-radius: 12px; padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.packing-header {
  display: flex; align-items: center; gap: .5rem; margin-bottom: .75rem;
}
.packing-title {
  font-size: .8rem; font-weight: 700; color: #44291a;
}
.packing-category {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: #94a3b8; margin: .75rem 0 .35rem;
  padding-top: .5rem; border-top: 1px solid #f1f5f9;
}
.packing-category:first-of-type { border-top: none; margin-top: .25rem; }
.packing-item {
  display: flex; align-items: center; gap: .5rem; padding: .3rem 0;
  font-size: .75rem; color: #44291a;
}
.packing-check {
  width: 18px; height: 18px; border-radius: 4px;
  border: 1.5px solid #cbd5e1; display: flex; align-items: center;
  justify-content: center; font-size: .6rem; color: transparent;
  flex-shrink: 0;
}
.packing-checked .packing-check {
  background: #dcfce7; border-color: #86efac; color: #16a34a;
}
.packing-who {
  margin-left: auto; font-size: .6rem; color: #94a3b8;
}
.packing-progress {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .75rem; padding-top: .5rem; border-top: 1px solid #f1f5f9;
}
.packing-progress-bar {
  flex: 1; height: 6px; background: #f1f5f9; border-radius: 3px;
  overflow: hidden;
}
.packing-progress-fill {
  height: 100%; background: #16a34a; border-radius: 3px;
}
.packing-progress-text {
  font-size: .6rem; color: #64748b; white-space: nowrap;
}

/* ── SECTION 13.5: Discover & Clone ───────────────────────────────── */
.discover-section { background: #fff7ed; }
.discover-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 960px; margin: 0 auto;
}
@media (max-width: 768px) { .discover-grid { grid-template-columns: 1fr; } }
.discover-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  border: 1px solid #e2e8f0; box-shadow: 0 4px 16px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.discover-card:hover {
  transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.1);
}
.discover-card-banner {
  height: 140px; position: relative; display: flex;
  align-items: flex-end; padding: .75rem; overflow: hidden;
}
.discover-banner-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.discover-card-miles {
  position: relative; z-index: 1;
  font-size: .7rem; font-weight: 800; color: #fff;
  background: rgba(0,0,0,.4); padding: .2rem .5rem;
  border-radius: 12px; backdrop-filter: blur(4px);
}
.discover-card-body { padding: 1rem; }
.discover-card-title {
  font-size: .9rem; font-weight: 700; color: #44291a; margin-bottom: .25rem;
}
.discover-card-meta {
  font-size: .65rem; color: #94a3b8; margin-bottom: .5rem;
}
.discover-card-highlights {
  display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .75rem;
}
.discover-tag {
  font-size: .58rem; padding: .15rem .4rem; background: #fff7ed;
  border: 1px solid #fed7aa; border-radius: 10px; color: #c2410c;
}
.discover-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: .5rem; border-top: 1px solid #f1f5f9;
}
.discover-rating {
  font-size: .7rem; font-weight: 700; color: #f59e0b;
}
.discover-clone-btn {
  font-size: .65rem; font-weight: 700; color: #f97316;
  cursor: pointer;
}
.discover-clone-btn:hover { text-decoration: underline; }
