/* ========================================
   页面级组件样式
   ======================================== */

/* ============================================
   1. 启动页 / NFC 碰一下
   ============================================ */
.splash {
  min-height: 100vh;
  background: var(--grad-aurora);
  background-size: 300% 300%;
  animation: aurora-flow 8s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 32px 80px;
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.splash::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.25) 0%, transparent 60%);
}
.splash::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
}

.splash__brand {
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.85;
  position: relative;
  z-index: 2;
}

.splash__logo {
  width: 80px;
  height: 80px;
  margin: 24px auto 16px;
  background: #fff;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  color: var(--brand-orange);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
}

.splash__title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
}
.splash__sub {
  font-size: 14px;
  opacity: 0.85;
  position: relative;
  z-index: 2;
}

/* NFC 圆形触点 */
.nfc-zone {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nfc-zone__core {
  width: 110px;
  height: 110px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.2s;
}
.nfc-zone__core:active { transform: scale(0.94); }
.nfc-zone__core svg { width: 56px; height: 56px; color: var(--brand-orange); }
.nfc-zone__hint {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
}
.nfc-zone__hint::after {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
  margin: 6px auto 0;
  animation: hint-pulse 1.4s ease infinite;
}
@keyframes hint-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

.splash__footer {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.splash__scene {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.92;
  padding: 10px 16px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
}
.splash__scene svg { width: 16px; height: 16px; }

/* ============================================
   2. 首页
   ============================================ */
.home {
  padding-bottom: 24px;
}
.home__hero {
  margin: 16px;
  padding: 20px;
  background: var(--grad-aurora);
  background-size: 300% 300%;
  animation: aurora-flow 12s ease infinite;
  border-radius: var(--radius-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.home__hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 65%);
}
.home__hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.home__hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
}
.home__hero-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 6px;
}
.home__hero-sub {
  font-size: 13px;
  opacity: 0.92;
}
.home__hero-illu {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.home__hero-illu svg { width: 44px; height: 44px; color: #fff; }
.home__hero-stats {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  position: relative;
  z-index: 2;
}
.home__hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.home__hero-stat span { font-size: 11px; opacity: 0.85; }

/* 三档行程 */
.section { margin: 16px; }
.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.section__title {
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section__title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--grad-orange);
  border-radius: 2px;
}
.section__more {
  font-size: 12px;
  color: var(--color-text-3);
  display: flex;
  align-items: center;
  gap: 2px;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.journey-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.journey-card:active { transform: scale(0.96); }
.journey-card__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-card__icon svg { width: 24px; height: 24px; }
.journey-card__icon--1 { background: rgba(255,107,26,0.12); color: var(--brand-orange); }
.journey-card__icon--2 { background: rgba(139,92,246,0.12); color: var(--color-culture); }
.journey-card__icon--3 { background: rgba(22,119,255,0.12); color: var(--color-taxi); }
.journey-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.journey-card__sub {
  font-size: 11px;
  color: var(--color-text-3);
}

/* 嗨卡概览 */
.hika-mini {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: linear-gradient(135deg, #FFE6CC, #FFF5E6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,107,26,0.15);
}
.hika-mini__chip {
  width: 48px;
  height: 48px;
  background: var(--grad-orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-brand);
}
.hika-mini__info { flex: 1; min-width: 0; }
.hika-mini__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.hika-mini__sub {
  font-size: 11px;
  color: var(--color-text-3);
}
.hika-mini__arrow { color: var(--color-text-3); }

/* 当周活动 */
.events-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px;
  scroll-snap-type: x mandatory;
}
.event-card {
  flex: 0 0 200px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.event-card__cover {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  position: relative;
}
.event-card__cover--1 { background: var(--grad-orange); }
.event-card__cover--2 { background: var(--grad-purple); }
.event-card__cover--3 { background: var(--grad-taxi); }
.event-card__cover--4 { background: var(--grad-gold); }
.event-card__date {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  font-weight: 500;
}
.event-card__body { padding: 10px 12px; }
.event-card__title { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.event-card__loc { font-size: 11px; color: var(--color-text-3); }

/* 榜单预览 */
.rank-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin: 0 -16px;
  padding: 0 16px;
}
.rank-card {
  flex: 0 0 160px;
  padding: 14px;
  border-radius: var(--radius-md);
  color: #fff;
  cursor: pointer;
}
.rank-card--food { background: var(--grad-red); }
.rank-card--book { background: var(--grad-purple); }
.rank-card--art { background: var(--grad-gold); }
.rank-card__eyebrow { font-size: 10px; opacity: 0.85; margin-bottom: 4px; }
.rank-card__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.rank-card__count { font-size: 11px; opacity: 0.85; }

/* ============================================
   3. 嗨卡详情
   ============================================ */
.card-page { padding-bottom: 24px; }
.card-hero {
  margin: 16px;
  padding: 22px;
  background: var(--grad-orange);
  border-radius: var(--radius-xl);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.card-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
}
.card-hero__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.card-hero__brand-name {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 2px;
}
.card-hero__chip {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.card-hero__title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}
.card-hero__sub {
  font-size: 13px;
  opacity: 0.92;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.card-hero__row {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.card-hero__row .stat {
  flex: 1;
  background: rgba(255,255,255,0.18);
  padding: 10px 12px;
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}
.card-hero__row .stat strong { display: block; font-size: 18px; font-weight: 800; }
.card-hero__row .stat span { font-size: 10px; opacity: 0.85; }

/* Tab栏 */
.tabs {
  display: flex;
  gap: 6px;
  padding: 0 16px;
  margin-bottom: 12px;
  overflow-x: auto;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex-shrink: 0;
  padding: 8px 16px;
  background: #fff;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-2);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.tab.is-active {
  background: var(--grad-orange);
  color: #fff;
  font-weight: 600;
  box-shadow: var(--shadow-brand);
}
.tab--taxi.is-active { background: var(--grad-taxi); box-shadow: 0 6px 18px rgba(22,119,255,0.24); }
.tab--culture.is-active { background: var(--grad-purple); }
.tab--food.is-active { background: var(--grad-red); }
.tab--shop.is-active { background: var(--grad-gold); }

/* 权益卡 */
.benefit-list { padding: 0 16px; display: flex; flex-direction: column; gap: 10px; }
.benefit {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s;
}
.benefit:active { transform: scale(0.98); }
.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.benefit__icon--culture { background: var(--grad-purple); }
.benefit__icon--food { background: var(--grad-red); }
.benefit__icon--shop { background: var(--grad-gold); }
.benefit__icon--taxi { background: var(--grad-taxi); }
.benefit__icon svg { width: 24px; height: 24px; }
.benefit__body { flex: 1; min-width: 0; }
.benefit__name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.benefit__desc { font-size: 11px; color: var(--color-text-3); margin-bottom: 6px; }
.benefit__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.benefit__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.benefit__price {
  color: var(--brand-orange);
  font-weight: 700;
  font-size: 13px;
}
.benefit__price--taxi { color: var(--color-taxi); }
.benefit__price--culture { color: var(--color-culture); }
.benefit__price--food { color: var(--color-food); }
.benefit__price--shop { color: var(--color-shop); }
.benefit__claim {
  padding: 5px 12px;
  background: var(--grad-orange);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}
.benefit__claim.is-claimed {
  background: rgba(0,0,0,0.05);
  color: var(--color-text-3);
}
.benefit__claim--taxi { background: var(--grad-taxi); }
.benefit__claim--culture { background: var(--grad-purple); }
.benefit__claim--food { background: var(--grad-red); }
.benefit__claim--shop { background: var(--grad-gold); }

/* ============================================
   4. 行程选择
   ============================================ */
.journey-page { padding: 16px; }
.journey-hero {
  background: var(--grad-aurora);
  background-size: 300% 300%;
  animation: aurora-flow 10s ease infinite;
  color: #fff;
  padding: 22px 20px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.journey-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
}
.journey-hero h1 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
  position: relative;
}
.journey-hero p {
  font-size: 13px;
  opacity: 0.92;
  position: relative;
}
.journey-hero__stat {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  position: relative;
}
.journey-hero__stat div strong { display: block; font-size: 18px; font-weight: 800; }
.journey-hero__stat div span { font-size: 10px; opacity: 0.85; }

.journey-cards { display: flex; flex-direction: column; gap: 14px; }
.journey-big {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}
.journey-big:active { transform: scale(0.98); }
.journey-big__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.journey-big__title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.journey-big__title .badge {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.journey-big__title h3 { font-size: 18px; font-weight: 700; }
.journey-big__duration {
  font-size: 11px;
  color: var(--color-text-3);
  text-align: right;
}
.journey-big__duration strong { display: block; font-size: 14px; color: var(--color-text); }
.journey-big__route {
  font-size: 13px;
  color: var(--color-text-2);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.journey-big__route .dot {
  width: 6px;
  height: 6px;
  background: var(--brand-orange);
  border-radius: 50%;
}
.journey-big__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.journey-big__cta {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}
.journey-big__cta .btn { flex: 1; }

/* ============================================
   5. 动线地图
   ============================================ */
.map-page {
  padding: 16px;
}
.map-area {
  background: #1A1A1A;
  border-radius: var(--radius-xl);
  height: 480px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

/* 高德地图模拟层 */
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(22,119,255,0.18), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(139,92,246,0.18), transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(255,107,26,0.18), transparent 60%);
}
.map-river {
  position: absolute;
  top: 30%;
  left: -5%;
  width: 110%;
  height: 30px;
  background: linear-gradient(90deg, transparent, rgba(22,119,255,0.5), transparent);
  border-radius: 30px;
  filter: blur(4px);
}
.map-road {
  position: absolute;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}
.map-road--main {
  top: 0;
  bottom: 0;
  left: 48%;
  width: 6px;
  background: linear-gradient(180deg, transparent, var(--brand-orange), transparent);
}
.map-road--main::after {
  content: '青年路示范轴 4508m';
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%) rotate(90deg);
  white-space: nowrap;
  font-size: 10px;
  color: var(--brand-orange-light);
  font-weight: 600;
  letter-spacing: 1px;
}

/* 点位 */
.poi {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 5;
  transition: transform 0.2s;
}
.poi:active { transform: scale(1.15); }
.poi__dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  background: var(--brand-orange);
  box-shadow: 0 4px 12px rgba(255,107,26,0.6);
  border: 2px solid #fff;
  position: relative;
}
.poi__dot--culture { background: var(--color-culture); box-shadow: 0 4px 12px rgba(139,92,246,0.5); }
.poi__dot--taxi { background: var(--color-taxi); box-shadow: 0 4px 12px rgba(22,119,255,0.5); }
.poi__dot--shop { background: var(--color-shop); box-shadow: 0 4px 12px rgba(245,158,11,0.5); }
.poi__dot--food { background: var(--color-food); box-shadow: 0 4px 12px rgba(239,68,68,0.5); }
.poi__label {
  margin-top: 4px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 10px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* 地图顶部水印 */
.map-watermark {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  font-size: 11px;
  color: #fff;
  z-index: 10;
}
.map-watermark svg { width: 14px; height: 14px; color: var(--color-taxi); }

.map-ctrl {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 10;
}
.map-ctrl__btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}
.map-ctrl__btn svg { width: 18px; height: 18px; color: #1A1A1A; }
.map-ctrl__btn--locate { background: var(--color-taxi); }
.map-ctrl__btn--locate svg { color: #fff; }

/* 点位详情卡 */
.poi-detail {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-md);
}
.poi-detail__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.poi-detail__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--grad-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.poi-detail__title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.poi-detail__sub { font-size: 12px; color: var(--color-text-3); }
.poi-detail__body { font-size: 13px; color: var(--color-text-2); line-height: 1.7; }
.poi-detail__cta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.poi-detail__cta .btn { flex: 1; font-size: 13px; min-height: 40px; padding: 0 12px; }

/* ============================================
   6. 榜单
   ============================================ */
.rank-page { padding: 16px; }
.rank-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
}
.rank-tab {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  color: var(--color-text-2);
  transition: all 0.2s;
}
.rank-tab.is-active { background: var(--grad-orange); color: #fff; font-weight: 600; box-shadow: var(--shadow-brand); }
.rank-tab.is-active--food { background: var(--grad-red); box-shadow: 0 6px 18px rgba(239,68,68,0.24); }
.rank-tab.is-active--book { background: var(--grad-purple); box-shadow: 0 6px 18px rgba(139,92,246,0.24); }
.rank-tab.is-active--art { background: var(--grad-gold); box-shadow: 0 6px 18px rgba(245,158,11,0.24); }

.rank-list { display: flex; flex-direction: column; gap: 10px; }
.rank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s;
}
.rank-row:active { transform: scale(0.98); }
.rank-row__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  background: rgba(0,0,0,0.05);
  color: var(--color-text-3);
}
.rank-row__num--1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: #fff; }
.rank-row__num--2 { background: linear-gradient(135deg, #C0C0C0, #909090); color: #fff; }
.rank-row__num--3 { background: linear-gradient(135deg, #CD7F32, #8B4513); color: #fff; }
.rank-row__thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.rank-row__thumb--food { background: var(--grad-red); }
.rank-row__thumb--book { background: var(--grad-purple); }
.rank-row__thumb--art { background: var(--grad-gold); }
.rank-row__info { flex: 1; min-width: 0; }
.rank-row__name { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.rank-row__tags { display: flex; gap: 4px; margin-bottom: 4px; flex-wrap: wrap; }
.rank-row__tags .mini {
  font-size: 10px;
  padding: 1px 6px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--radius-sm);
  color: var(--color-text-2);
}
.rank-row__meta { font-size: 11px; color: var(--color-text-3); display: flex; align-items: center; gap: 8px; }
.rank-row__meta b { color: var(--brand-orange); }
.rank-row__score {
  text-align: center;
  flex-shrink: 0;
}
.rank-row__score strong { font-size: 16px; font-weight: 800; color: var(--brand-orange); display: block; }
.rank-row__score span { font-size: 10px; color: var(--color-text-3); }

/* ============================================
   7. 活动日历
   ============================================ */
.events-page { padding: 16px; }
.events-hero {
  background: var(--grad-purple);
  color: #fff;
  padding: 20px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.events-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
}
.events-hero h2 { font-size: 20px; font-weight: 800; margin-bottom: 4px; position: relative; }
.events-hero p { font-size: 12px; opacity: 0.9; position: relative; }
.events-hero__month {
  margin-top: 12px;
  font-size: 12px;
  background: rgba(255,255,255,0.2);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.date-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 14px;
  padding-bottom: 4px;
}
.date-cell {
  flex: 0 0 52px;
  text-align: center;
  padding: 10px 6px;
  background: #fff;
  border-radius: var(--radius-md);
  font-size: 11px;
  color: var(--color-text-2);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s;
}
.date-cell strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin: 2px 0;
}
.date-cell.is-active {
  background: var(--grad-orange);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.date-cell.is-active strong { color: #fff; }

.event-big {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s;
}
.event-big:active { transform: scale(0.98); }
.event-big__date {
  flex-shrink: 0;
  text-align: center;
  padding: 6px 10px;
  background: rgba(255,107,26,0.1);
  border-radius: var(--radius-md);
  color: var(--brand-orange);
}
.event-big__date strong { display: block; font-size: 18px; font-weight: 800; line-height: 1; }
.event-big__date span { font-size: 10px; }
.event-big__body { flex: 1; min-width: 0; }
.event-big__title { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.event-big__loc { font-size: 11px; color: var(--color-text-3); margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.event-big__tags { display: flex; gap: 4px; flex-wrap: wrap; }

/* ============================================
   8. 积分中心
   ============================================ */
.points-page { padding: 16px; }
.points-hero {
  background: var(--grad-orange);
  color: #fff;
  padding: 22px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.points-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
}
.points-hero__label { font-size: 12px; opacity: 0.9; position: relative; }
.points-hero__score {
  font-size: 48px;
  font-weight: 800;
  margin: 8px 0;
  letter-spacing: 2px;
  position: relative;
  font-family: 'DIN Alternate', -apple-system, sans-serif;
}
.points-hero__sub { font-size: 11px; opacity: 0.9; position: relative; }
.points-hero__bar {
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 3px;
  margin-top: 14px;
  overflow: hidden;
  position: relative;
}
.points-hero__bar-fill {
  height: 100%;
  width: 65%;
  background: #fff;
  border-radius: 3px;
  position: relative;
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.points-task {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.2s;
}
.points-task:active { transform: scale(0.96); }
.points-task__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,26,0.1);
  color: var(--brand-orange);
}
.points-task__icon svg { width: 20px; height: 20px; }
.points-task__name { font-size: 11px; margin-bottom: 2px; }
.points-task__reward { font-size: 11px; color: var(--brand-orange); font-weight: 700; }

.task-list { display: flex; flex-direction: column; gap: 10px; }
.task-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.task-item__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255,107,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}
.task-item__icon svg { width: 20px; height: 20px; }
.task-item__info { flex: 1; min-width: 0; }
.task-item__name { font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.task-item__desc { font-size: 11px; color: var(--color-text-3); }
.task-item__btn {
  padding: 6px 12px;
  background: var(--grad-orange);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.task-item__btn.is-done {
  background: rgba(0,0,0,0.05);
  color: var(--color-text-3);
}

/* ============================================
   9. 打车券
   ============================================ */
.taxi-page { padding: 16px; }
.taxi-hero {
  background: var(--grad-taxi);
  color: #fff;
  padding: 22px;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.taxi-hero::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
}
.taxi-hero__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  position: relative;
}
.taxi-hero__brand-logo {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.taxi-hero__brand-logo svg { width: 18px; height: 18px; color: var(--color-taxi); }
.taxi-hero__brand-text { font-size: 12px; opacity: 0.95; }
.taxi-hero h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; position: relative; }
.taxi-hero p { font-size: 13px; opacity: 0.92; position: relative; }

.coupon {
  background: linear-gradient(135deg, #fff 0%, #fff 50%, #1677FF 50%, #1677FF 100%);
  background-size: 8px 8px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.coupon__main {
  background: #fff;
  display: flex;
  align-items: stretch;
  padding: 16px;
  border-radius: var(--radius-md);
}
.coupon__price {
  flex-shrink: 0;
  width: 110px;
  text-align: center;
  border-right: 2px dashed var(--color-line);
  margin-right: 14px;
  padding-right: 14px;
}
.coupon__price strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--color-taxi);
  line-height: 1;
  font-family: 'DIN Alternate', sans-serif;
}
.coupon__price strong small { font-size: 16px; }
.coupon__price span { font-size: 11px; color: var(--color-text-3); }
.coupon__body { flex: 1; }
.coupon__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.coupon__desc { font-size: 12px; color: var(--color-text-2); margin-bottom: 8px; }
.coupon__meta {
  font-size: 11px;
  color: var(--color-text-3);
  display: flex;
  align-items: center;
  gap: 6px;
}
.coupon__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--grad-taxi);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
  align-self: flex-end;
}

.coupon--landed .coupon__price strong { color: var(--brand-orange); }
.coupon--landed .coupon__cta { background: var(--grad-orange); box-shadow: var(--shadow-brand); }

/* 高德跳转模拟弹窗 */
.amap-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.amap-modal.is-show {
  opacity: 1;
  pointer-events: auto;
}
.amap-modal__card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  max-width: 320px;
  width: 100%;
  transform: scale(0.8);
  transition: transform 0.3s;
}
.amap-modal.is-show .amap-modal__card { transform: scale(1); }
.amap-modal__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--grad-taxi);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heartbeat 1.6s ease infinite;
}
.amap-modal__icon svg { width: 44px; height: 44px; color: #fff; }
.amap-modal__title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.amap-modal__sub { font-size: 13px; color: var(--color-text-3); margin-bottom: 16px; }
.amap-modal__route {
  background: #F5F5F7;
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
  text-align: left;
}
.amap-modal__route div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
}
.amap-modal__route div + div { border-top: 1px dashed var(--color-line); }
.amap-modal__route .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-taxi);
}
.amap-modal__route .dot--green { background: #22C55E; }
.amap-modal__route .dot--red { background: var(--color-food); }