/* FancyTeams 首页 — 与详情页样式对齐 */

/* 根滚动容器关掉 scroll anchoring（详见 .ft-page 上的注释） */
html{
  overflow-anchor: none;
}

.ft-page{
  background: #ffffff;
  min-height: 100vh;
  /* 关掉 Chrome 的 scroll anchoring。
     筛选区吸顶时 padding 有过渡动画，section 高度在变；浏览器为了"视觉稳定"
     会自动微调 scrollY，结果反而把吸顶哨兵抖回视口，导致 is-stuck 在加/去
     之间反复跳。关掉它就稳定了。 */
  overflow-anchor: none;
}

.ft-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid #ececef;
}
.ft-header-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ft-brand{
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-right: auto;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", system-ui, sans-serif;
  letter-spacing: -0.005em;
}
.ft-brand-mark{ font-size: 22px; line-height: 1; }
.ft-brand-name{ font-size: 16px; color: #1d1d1f; font-weight: 500; }
.ft-brand-sub{
  font-size: 14px;
  color: #86868b;
  font-weight: 400;
  display: none;
}
@media (min-width: 768px) {
  .ft-brand-sub{ display: inline; }
}
.ft-submit{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform .18s ease, opacity .18s ease;
}
.ft-submit:hover{ opacity: .85; }
.ft-submit:active{ transform: scale(.96); }

/* hero */
.ft-main{
  padding-top: 56px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* hero 上的装饰 emoji 用负 left/right 戳出 hero box，
     窄屏时会触发水平滚动，这里裁掉。clip 比 hidden 干净，不影响 fixed 子元素。 */
  overflow-x: clip;
}
.ft-hero{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  max-width: 720px;
  text-align: center;
  position: relative;
}
.ft-hero-deco{
  position: absolute;
  font-size: 30px;
  line-height: 1;
  user-select: none;
  font-family: -apple-system, BlinkMacSystemFont, "Apple Color Emoji", "Segoe UI Emoji", "PingFang SC", system-ui, sans-serif;
  transition: transform .25s cubic-bezier(.2, 0, 0, 1);
}
.ft-hero-deco--cool    { top:  -6px; left:  -30px; transform: rotate(-22.4deg); }
.ft-hero-deco--earth   { top: 145px; left:  -50px; transform: rotate(4.6deg); }
.ft-hero-deco--map     { top:  -6px; right: -60px; transform: rotate(23.1deg); }
.ft-hero-deco--pumpkin { top: 120px; right: -80px; transform: rotate(22.1deg); }
/* hover: 各自保留原 rotate，叠加 scale。
   不能简单写 .ft-hero-deco:hover { transform: scale(...) } —— 会覆盖掉 rotate。 */
.ft-hero-deco--cool:hover    { transform: rotate(-22.4deg) scale(1.25); }
.ft-hero-deco--earth:hover   { transform: rotate(4.6deg)   scale(1.25); }
.ft-hero-deco--map:hover     { transform: rotate(23.1deg)  scale(1.25); }
.ft-hero-deco--pumpkin:hover { transform: rotate(22.1deg)  scale(1.25); }
/* V1.0 是 .ft-hero-title 的子元素 —— 锚到 title 文字的右上角，
   不再依赖 hero 宽度或具体标题内容。改标题文字 / 字号都不用动它。 */
.ft-hero-deco--v1{
  position: absolute;
  left: 100%;
  bottom: 100%;
  margin-left: 11px;
  margin-bottom: -9px;
  pointer-events: none;
  user-select: none;
  font-family: "Hannotate SC", "Snell Roundhand", "Comic Sans MS", cursive;
  font-weight: 700;
  font-size: 23px;
  line-height: 1;
  color: #df645a;
  transform: rotate(-8.25deg);
  transform-origin: left bottom;
  white-space: nowrap;
}
/* 中等屏（侧栏 + hero 接近 720px content area 时）：装饰收一收，
   字号缩小，避免 🎃/🗺️ 顶到内容右边缘，V1.0 也跟着标题位置收回。 */
@media (max-width: 1024px){
  .ft-hero-deco{ font-size: 24px; }
  .ft-hero-deco--cool    { top:  -2px; left:  -10px; }
  .ft-hero-deco--earth   { top: 132px; left:  -16px; }
  .ft-hero-deco--map     { top:  -2px; right: -16px; }
  .ft-hero-deco--pumpkin { top: 110px; right: -24px; }
  .ft-hero-deco--v1{ font-size: 19px; }
}
/* 手机：标题缩到 32px 后整体太挤，装饰直接隐藏。 */
@media (max-width: 720px){
  .ft-hero-deco,
  .ft-hero-deco--v1{ display: none; }
}
.ft-hero-eyebrow{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #86868b;
  margin: 0;
  text-transform: uppercase;
}
.ft-hero-title{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", system-ui, sans-serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: #1d1d1f;
  margin: 0;
  /* V1.0 装饰锚在右上角，需要 title 自己作为定位上下文 */
  position: relative;
}
.ft-hero-tag{
  font-size: 16px;
  line-height: 1.5;
  color: #86868b;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 1024px){
  .ft-hero-title{ font-size: 48px; }
}

/* grid — 瀑布流（masonry） */
.ft-grid{
  margin-top: 64px;
  column-width: 302px;
  column-gap: 20px;
  width: 100%;
  max-width: 1075px;
  padding: 0 24px;
}
.ft-grid > .ft-card{
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: var(--ft-card-gap, 20px);
  display: block;
}
@media (max-width: 720px){
  .ft-grid{ grid-template-columns: 1fr; padding: 0 16px; }
  .ft-hero-title{ font-size: 32px; }
}

/* card — 整卡白底 + Airbnb 风阴影做分割
   hover 效果复用详情页 .t4-topcard：柔和阴影分层 + 轻微抬升 */
.ft-card{
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 32px;
  corner-shape: squircle;
  -webkit-corner-shape: squircle;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 14px 44px -10px rgba(0, 0, 0, 0.10);
  transition:
    box-shadow .2s cubic-bezier(.2,0,0,1),
    transform .15s cubic-bezier(.2,0,0,1);
}
/* 覆盖式 anchor —— 整张卡可点，但不嵌套 social <a>。
   爬虫能拿到 /team/<slug> 的真 href，social 链接通过 z-index 浮在上面。 */
.ft-card-cover{
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
}
.ft-card-cover:focus-visible{
  outline: 2px solid #007aff;
  outline-offset: -2px;
}
.ft-card-foot a,
.ft-card-foot .t4-brief-soc,
.ft-card-foot .t4-brief-soc *{
  position: relative;
  z-index: 2;
}
.ft-card:hover{
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 22px 56px -10px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

/* card body — 上半部 */
.ft-card-body{
  padding: 24px 22px 0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-card-head{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ft-card-head-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.ft-card-logo{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f5f7;
  box-shadow: inset 0 0 0 0.5px #EFEFEF;
}
.ft-card-id{ min-width: 0; }
.ft-card-open{
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5f5f7;
  color: #86868b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
/* 取消进入图标的 hover 反馈 */
.ft-card:hover .ft-card-open{
  background: #f5f5f7;
  color: #86868b;
}
.ft-card:hover .ft-card-open svg{
  transform: none;
}
.ft-card-open svg{
  transition: transform .2s ease;
}
.ft-card-name{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #1d1d1f;
  line-height: 1.3;
}
.ft-card-tag{
  margin-top: 5px;
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 400;
  color: #86868b;
  letter-spacing: -0.005em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* chips: 复用 .t4-chip 但稍小 */
.ft-card-chiprow{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ft-card-chiprow .t4-chip{
  height: 26px;
  padding: 0 10px;
  font-size: 12px;
}
.ft-card-chiprow .ft-chip-link{
  cursor: pointer;
  transition: background .15s, color .15s;
  text-decoration: none;
}
.ft-card-chiprow .ft-chip-link:hover{
  background: #f5f5f7;
  border-color: #d2d2d7;
}
.ft-card-chiprow .ft-chip-link svg{
  color: #86868b;
}

/* card news 区 — 下半部（保持白色，无色块） */
.ft-card-news{
  padding: 16px 22px 22px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ft-card-news{ gap: 16px; padding: 16px 22px 22px; }
.ft-card-news .t4-brief-news{
  gap: 10px;
}
.ft-card-news .t4-brief-news-link:hover{ opacity: 1; }
.ft-card-news .t4-brief-news-link:hover .arr{ transform: none; }
.ft-card-news .t4-brief-news-link{
  grid-template-columns: auto 1fr;
  font-size: 13px;
  column-gap: 10px;
}
.ft-card-news .t4-brief-news-row .src{ font-size: 13px; }
.ft-card-news .t4-brief-news-row .t{ font-size: 13px; }

.ft-card-foot{
  margin-top: 4px;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
/* 头像更小、圆形 */
.ft-card-foot .t4-brief-av{
  width: 28px !important;
  height: 28px !important;
  box-shadow: inset 0 0 0 0.5px #EFEFEF;
}
.ft-card-foot .t4-brief-pmeta .nm{ font-size: 13px; }
.ft-card-foot .t4-brief-pmeta .rl{ font-size: 11.5px; }

/* 社交图标：复用详情页 .t4-brief-soc 但移除背景色（图标 svg 自带颜色）
   主页不再添加 hover/rotation 反馈，点击直接进入详情 */
.ft-card-foot .t4-brief-soc > *{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: none;
  transform-origin: center;
  background: transparent;
  border: 0;
  transition: none;
  box-shadow: none;
}
.ft-card-foot .t4-brief-soc > *:hover,
.ft-card-foot .t4-brief-soc > *:active,
.ft-card-foot:hover .t4-brief-soc > *,
.ft-card:hover .t4-brief-soc > *,
.ft-card-foot .t4-brief-person:hover .t4-brief-soc > *,
.ft-card-foot .t4-brief-person:hover .t4-brief-soc > *:hover{
  transform: none;
  box-shadow: none;
}
.ft-card-foot .t4-brief-soc > * img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}

/* ============================================================
   SEARCH + FILTERS
   ============================================================ */
/* 吸顶判定用的零高度哨兵：紧贴在 .ft-search-section 之前。
   IntersectionObserver 监听它进出视口 → 决定 is-stuck，跟元素自身尺寸完全解耦。
   margin-top 接管了 section 原来的 32px 上间距，这样哨兵的底边正好落在
   section 的"自然顶部"上：当哨兵刚滚出视口顶时，section 也刚好开始吸顶，
   class 切换不会比真正吸顶提前。 */
.ft-search-sentinel{
  width: 1px;
  height: 0;
  margin: 32px 0 0;
  padding: 0;
  pointer-events: none;
}
.ft-search-section{
  width: 100%;
  max-width: 720px;
  padding: 12px 24px;
  /* margin-top 已经搬到 .ft-search-sentinel；section 自身从哨兵正下方开始 */
  /* 也排除自己作为 scroll anchor 候选，多一层保险 */
  overflow-anchor: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* 吸顶：滚动到顶部时停留 */
  position: sticky;
  top: 0;
  z-index: 20;
  align-self: center;
  transition:
    padding .32s cubic-bezier(.22,1,.36,1),
    box-shadow .2s ease;
}
/* 用 ::before 铺一层全宽毛玻璃背景，避免改变 sticky 元素自身宽度引起跳动 */
.ft-search-section::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
  z-index: -1;
}
.ft-search-section.is-stuck::before{ opacity: 1; }
/* 吸顶后：仅压缩 padding，不改变宽度 */
.ft-search-section.is-stuck{
  padding: 10px 24px;
}
.ft-search-section::after{
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  bottom: 0;
  height: 1px;
  background: rgba(0,0,0,0.06);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.ft-search-section.is-stuck::after{ opacity: 1; }

/* 行内 pills：吸顶后整行收紧 */
.ft-search-section .ft-filter-row{
  position: relative;
  z-index: 1;
  transition: gap .32s cubic-bezier(.22,1,.36,1);
}
.ft-search-section.is-stuck .ft-filter-row{
  gap: 10px;
}

/* 单个 pill：吸顶后高度/宽度/字号同步缩小 */
.ft-filter-pill{
  transition:
    width .32s cubic-bezier(.22,1,.36,1),
    height .32s cubic-bezier(.22,1,.36,1),
    padding .32s cubic-bezier(.22,1,.36,1),
    border-radius .32s cubic-bezier(.22,1,.36,1),
    font-size .32s cubic-bezier(.22,1,.36,1),
    border-color .15s ease,
    color .15s ease,
    transform .1s ease,
    box-shadow .2s ease;
}
.ft-search-section.is-stuck .ft-filter-pill{
  width: auto;
  height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.ft-search-section.is-stuck .ft-filter-pill > span:first-child{
  font-size: 13px !important;
}
.ft-search-section.is-stuck .ft-filter-caret{
  width: 9px; height: 9px;
}
.ft-search-box{
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e6e6e8;
  box-shadow: 0 6px 16px 0 var(--ft-shadow, rgba(0,0,0,0.07));
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.ft-search-box:hover{
  border-color: #d2d2d7;
  box-shadow: 0 10px 24px 0 var(--ft-shadow-hover, rgba(0,0,0,0.11));
}
.ft-search-box:focus-within{
  background: #ffffff;
  border-color: #1d1d1f;
  box-shadow: 0 4px 14px 0 var(--ft-shadow, rgba(0,0,0,0.08));
}
.ft-search-icon{
  color: #86868b;
  flex-shrink: 0;
}
.ft-search-input{
  flex: 1;
  height: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15.5px;
  color: #1d1d1f;
  letter-spacing: -0.005em;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", system-ui, sans-serif;
}
.ft-search-input::placeholder{
  color: #86868b;
}
.ft-search-clear{
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: rgba(0,0,0,0.06);
  color: #1d1d1f;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: background .15s ease;
}
.ft-search-clear:hover{ background: rgba(0,0,0,0.12); }

/* 顶部促销 banner —— 灰底圆角 + 文案，整块可点击 */
.ft-promo-banner{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 14px 20px;
  margin: 0 auto 40px;
  background: #f7f7f7;
  border-radius: 999px;
  color: #1d1d1f;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: background .15s ease, transform .12s ease;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", system-ui, sans-serif;
}
.ft-promo-banner:hover{ background: #efefef; }
.ft-promo-banner:hover .ft-promo-banner__arr{ transform: translateX(3px); }
.ft-promo-banner__arr{
  color: #86868b;
  font-size: 14px;
  transition: transform .15s ease;
}

.ft-filter-row{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* 方向 pill 选中后：白底深字 + 行内 × 清除按钮（替代 caret） */
.ft-filter-pill.has-value{
  background: #ffffff;
  color: #1d1d1f;
  border-color: #1d1d1f;
}
/* 选中态 hover 不变成黑色，保持白底；仅边框做极轻反馈 */
.ft-filter-pill.has-value:hover{
  background: #ffffff;
  color: #1d1d1f;
  border-color: #1d1d1f;
}
.ft-filter-clear{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: transparent;
  color: #1d1d1f;
  margin-left: 2px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.ft-filter-clear:hover{
  background: #1d1d1f;
  color: #ffffff;
}
.ft-filter-pill.has-value .ft-filter-caret{ display: none; }

/* 标签：name + 可选 "+N" 计数；超长 name 用省略号收尾，"+N" 永不被裁掉 */
.ft-filter-label{
  display: inline-flex;
  align-items: baseline;
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
  overflow: hidden;
  font-size: 15px;
  line-height: 1;
}
.ft-filter-label-name{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ft-filter-label-extra{
  flex: 0 0 auto;
  white-space: nowrap;
}

.ft-filter-pill{
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 160px;
  height: 48px;
  padding: 0 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #dddddd;
  font-size: 14px;
  font-weight: 400;
  color: #1d1d1f;
  letter-spacing: -0.005em;
  box-shadow: none;
  transition: border-color .15s ease, color .15s ease, transform .1s ease;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", system-ui, sans-serif;
}
.ft-filter-pill:hover{
  border-color: #1d1d1f;
}
.ft-filter-pill.is-active{
  background: #ffffff;
  color: #1d1d1f;
  border-color: #1d1d1f;
  box-shadow: none;
}
.ft-filter-caret{
  color: #86868b;
  margin-left: 2px;
  transition: transform .18s ease, color .15s ease;
}
.ft-filter-pill.is-active .ft-filter-caret{
  color: #1d1d1f;
  transform: rotate(180deg);
}

/* 让 search 区紧贴 hero（去掉 track 的额外上间距，避免重复留白） */
.ft-search-section + .ft-track-section{
  margin-top: 32px;
}

/* ============================================================
   TRACK section — 赛道分块器
   ============================================================ */
.ft-track-section{
  width: 100%;
  max-width: 1075px;
  padding: 0 24px;
  margin-top: 64px;
}
.ft-track-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 24px;
}
.ft-track-head-left{
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.ft-track-eyebrow{
  font-family: -apple-system, BlinkMacSystemFont, "SF Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: #86868b;
  font-weight: 500;
}
.ft-track-title{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", system-ui, sans-serif;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.022em;
  color: #1d1d1f;
  margin: 0;
}
.ft-track-sub{
  flex: 0 1 380px;
  font-size: 13px;
  line-height: 1.6;
  color: #86868b;
  font-weight: 400;
  margin: 0 0 4px;
  text-align: right;
}
@media (max-width: 720px){
  .ft-track-head{ flex-direction: column; align-items: flex-start; gap: 14px; }
  .ft-track-sub{ text-align: left; flex: 1 1 auto; }
  .ft-track-title{ font-size: 26px; }
}

/* grid: 4–6 列自适应；卡片更小 */
.ft-track-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
@media (min-width: 880px){
  .ft-track-grid{ grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1080px){
  .ft-track-grid{ grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 520px){
  .ft-track-grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* 单卡：白底 + 阴影做分块；与团队卡相同的圆角 + 阴影变量 */
.ft-track-card{
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: #ffffff;
  border: 0;
  border-radius: 20px;
  corner-shape: squircle;
  -webkit-corner-shape: squircle;
  padding: 14px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 132px;
  box-shadow:
    0 1px 2px 0 var(--ft-shadow, rgba(0,0,0,0.06)),
    0 6px 16px 0 var(--ft-shadow, rgba(0,0,0,0.07));
  transition: box-shadow .25s ease, transform .25s ease;
  position: relative;
}
.ft-track-card:hover{
  box-shadow:
    0 1px 2px 0 var(--ft-shadow, rgba(0,0,0,0.06)),
    0 12px 24px 0 var(--ft-shadow-hover, rgba(0,0,0,0.12));
  transform: translateY(-2px);
}
.ft-track-card.is-active{
  box-shadow:
    0 0 0 1.5px #1d1d1f,
    0 12px 24px 0 var(--ft-shadow-hover, rgba(0,0,0,0.14));
  transform: translateY(-2px);
}

.ft-track-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-height: 28px;
}
.ft-track-icon{
  font-size: 24px;
  line-height: 1;
  /* 让 emoji 在不同系统下显示更稳定 */
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.06));
}
.ft-track-badge{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 22px;
  padding: 0 9px 0 8px;
  border-radius: 999px;
  background: #1d1d1f;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.ft-track-badge .dot{
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 2px rgba(52,211,153,0.18);
}

.ft-track-card-name{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1d1d1f;
  line-height: 1.25;
  margin-top: auto;
}
.ft-track-card-stat{
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: #1d1d1f;
}
.ft-track-card-stat .num{
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ft-track-card-stat .unit{
  font-size: 12px;
  color: #86868b;
  font-weight: 400;
}

/* footer */
.ft-foot{
  padding: 64px 24px 48px;
  text-align: center;
  font-size: 13px;
  color: #86868b;
}
