:root {
  color-scheme: dark;
  --bg: #050913;
  --panel: #0c1623;
  --panel-2: #101d2c;
  --panel-3: #152437;
  --line: #22354a;
  --muted: #788aa0;
  --text: #f1f6fc;
  --blue: #3f91f2;
  --green: #20b486;
  --orange: #f0642e;
  --violet: #9c73f5;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(52, 133, 225, .16), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(27, 174, 128, .10), transparent 24%),
    var(--bg);
  color: var(--text);
  font: 14px/1.45 -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, "Segoe UI", sans-serif;
  letter-spacing: -.006em;
}
button, input, select { font: inherit; }
button { -webkit-tap-highlight-color: transparent; }

.app-shell {
  width: min(100%, 900px);
  min-height: 100vh;
  margin: 0 auto;
  border-inline: 1px solid rgba(91, 119, 149, .22);
  background: rgba(5, 9, 19, .94);
  box-shadow: 0 0 80px rgba(0, 0, 0, .35);
}
.app-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px 14px; }
.brand { display: flex; gap: 12px; align-items: center; }
.brand-icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, #3a95f3, #21b382);
  box-shadow: 0 10px 28px rgba(49, 144, 223, .2); font-size: 21px;
}
h1 { margin: 0; font-size: 21px; letter-spacing: -.035em; }
.brand p { margin: 4px 0 0; color: var(--muted); text-transform: uppercase; font: 600 10px/1.2 ui-monospace, SFMono-Regular, monospace; letter-spacing: .16em; }
.live-badge { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; color: #9babbc; background: rgba(16, 29, 44, .75); text-transform: uppercase; font: 600 10px ui-monospace, monospace; letter-spacing: .1em; }
.live-badge span { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }

.tabs { position: sticky; top: 0; z-index: 10; display: flex; gap: 12px; padding: 0 22px; border-bottom: 1px solid var(--line); overflow: auto; background: rgba(5, 9, 19, .86); backdrop-filter: blur(18px); scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { position: relative; padding: 14px 10px; border: 0; color: #667990; background: none; font-size: 13px; font-weight: 700; cursor: pointer; }
.tab:hover { color: #b9c6d4; }
.tab.active { color: var(--text); }
.tab.active::after { content: ""; position: absolute; left: 5px; right: 5px; bottom: -1px; height: 3px; border-radius: 3px 3px 0 0; background: linear-gradient(90deg, var(--blue), #62b2ff); box-shadow: 0 -3px 14px rgba(63, 145, 242, .4); }

.screen { padding: 23px 26px 42px; }
.hidden { display: none !important; }
.loading, .error { margin: 30px; padding: 24px; border: 1px solid var(--line); border-radius: 18px; color: var(--muted); background: var(--panel); }
.error { color: #ff9c84; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 16px; color: #8295ab; text-transform: uppercase; font: 650 10px ui-monospace, monospace; letter-spacing: .18em; }
.eyebrow::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }

.hero-card { position: relative; isolation: isolate; min-height: 180px; padding: 23px; margin-bottom: 12px; overflow: hidden; border: 1px solid #27435f; border-radius: 20px; background: linear-gradient(135deg, #101e2f 0%, #0b1522 58%, #0b1a21 100%); }
.hero-card::before { content: ""; position: absolute; width: 250px; height: 250px; top: -150px; right: -40px; z-index: -1; border-radius: 50%; background: rgba(53, 143, 239, .22); filter: blur(16px); }
.hero-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: 120px; bottom: -150px; z-index: -1; border-radius: 50%; background: rgba(32, 180, 134, .18); filter: blur(18px); }
.hero-kicker { display: flex; justify-content: space-between; gap: 15px; color: #8da0b5; text-transform: uppercase; font: 650 10px ui-monospace, monospace; letter-spacing: .13em; }
.hero-number { margin: 21px 0 0; font: 740 clamp(40px, 8vw, 62px)/.94 ui-monospace, SFMono-Regular, monospace; letter-spacing: -.06em; text-shadow: 0 8px 34px rgba(36, 116, 205, .18); }
.hero-number small { color: #7e91a7; font-size: 14px; letter-spacing: 0; }
.hero-sub { margin: 14px 0 0; color: #94a4b5; font-size: 15px; }
.hero-sub strong { color: var(--text); }

.metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.metric { position: relative; display: grid; grid-template-columns: 34px 1fr; gap: 11px; min-height: 105px; padding: 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(145deg, var(--panel-2), #0b1521); }
.metric::after { content: ""; position: absolute; inset: auto -15px -42px auto; width: 100px; height: 100px; border-radius: 50%; opacity: .09; background: currentColor; }
.metric-blue { color: var(--blue); }
.metric-orange { color: var(--orange); }
.metric-green { color: var(--green); }
.metric-violet { color: var(--violet); }
.metric-icon { display: grid; place-items: center; align-self: start; width: 32px; height: 32px; border: 1px solid currentColor; border-radius: 10px; background: rgba(255, 255, 255, .03); font-weight: 800; }
.metric-label { color: #7d90a6; text-transform: uppercase; font: 650 9px ui-monospace, monospace; letter-spacing: .15em; }
.metric-value { margin-top: 8px; color: var(--text); font: 740 24px ui-monospace, SFMono-Regular, monospace; }
.metric-note { margin-top: 4px; color: #718297; font-size: 11px; }

.section { margin-top: 24px; padding-top: 21px; border-top: 1px solid rgba(34, 53, 74, .78); }
.card { border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, var(--panel), #09121d); overflow: hidden; }
.route-card { padding: 19px; }
.route-title { display: flex; justify-content: space-between; align-items: end; gap: 15px; margin-bottom: 20px; }
.route-caption { color: var(--blue); text-transform: uppercase; font: 700 10px ui-monospace, monospace; letter-spacing: .16em; }
.route-title h2 { margin: 5px 0 0; font-size: 17px; }
.route-title h2 b { color: #647a91; padding: 0 4px; }
.route-title > strong { font: 740 20px ui-monospace, monospace; }
.track { position: relative; height: 12px; border-radius: 99px; background: #172a3b; }
.track > div { height: 100%; min-width: 3px; border-radius: inherit; background: linear-gradient(90deg, var(--blue), #46b0db, var(--green)); box-shadow: 0 0 18px rgba(54, 153, 213, .3); }
.train-marker { position: absolute; top: 50%; translate: -50% -50%; display: grid; place-items: center; width: 31px; height: 31px; border: 3px solid #07101a; border-radius: 50%; background: #17283b; font-size: 15px; box-shadow: 0 5px 18px rgba(0, 0, 0, .45); }
.track-labels { display: flex; justify-content: space-between; margin-top: 14px; color: #718399; font: 11px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .08em; }
.team-contribution { display: flex; gap: 12px; margin-top: 15px; color: #8394a7; font-size: 11px; flex-wrap: wrap; }
.team-share { display: flex; align-items: center; gap: 6px; }
.team-share span { width: 9px; height: 9px; border-radius: 3px; }
.team-share strong { color: #b6c1ce; }
.current-place { display: grid; grid-template-columns: 14px 1fr auto; align-items: center; gap: 12px; margin-top: 20px; padding: 14px 15px; border: 1px solid #25507a; border-radius: 15px; background: linear-gradient(90deg, rgba(44, 119, 196, .2), rgba(20, 47, 73, .18)); }
.pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(63, 145, 242, .13), 0 0 13px var(--blue); }
.current-place small { display: block; margin-bottom: 2px; color: #7589a0; font-size: 11px; }
.current-place strong { font-size: 15px; }
.current-place b { color: #b9c8d7; font: 700 14px ui-monospace, monospace; }
.route-list { margin-top: 12px; border: 1px solid rgba(34, 53, 74, .82); border-radius: 15px; overflow: hidden; }
.route-row { display: grid; grid-template-columns: 13px 1fr auto auto; gap: 9px; padding: 9px 12px; border-bottom: 1px solid rgba(34, 53, 74, .58); color: #8798aa; font-size: 12px; }
.route-row:last-child { border-bottom: 0; }
.dot { width: 8px; height: 8px; margin-top: 5px; border-radius: 50%; background: #24394a; }
.route-row.passed .dot { background: var(--green); }
.route-row.next { color: var(--text); background: rgba(51, 126, 205, .10); }
.route-row.next .dot { background: var(--blue); box-shadow: 0 0 9px var(--blue); }
.route-km, .route-eta { color: #728398; font: 12px ui-monospace, monospace; }
.route-toggle { width: 100%; margin-top: 10px; padding: 11px; border: 0; border-radius: 11px; color: #9bb4cb; background: #132235; cursor: pointer; font-weight: 700; }
.route-toggle:hover { background: #172a40; }

.forecast { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 19px; }
.forecast h3 { margin: 7px 0 0; font: 740 26px ui-monospace, monospace; }
.forecast-badge { padding: 9px 12px; border: 1px solid rgba(32, 180, 134, .34); border-radius: 999px; color: #72dab8; background: rgba(32, 180, 134, .09); font-size: 12px; font-weight: 700; }

.segmented { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 18px; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: var(--panel-2); }
.segment { min-height: 56px; border: 0; border-right: 1px solid var(--line); background: transparent; color: #72849a; cursor: pointer; font-size: 13px; font-weight: 700; }
.segment:last-child { border-right: 0; }
.segment.active { color: var(--text); background: linear-gradient(145deg, #17263a, #111d2c); box-shadow: inset 0 -2px 0 var(--blue); }
.segment small { display: block; margin-top: 4px; color: #64768c; font: 10px ui-monospace, monospace; letter-spacing: .14em; text-transform: uppercase; }
.team-ranking { display: grid; gap: 10px; }
.rank-row { position: relative; padding: 16px; overflow: hidden; border: 1px solid var(--line); border-radius: 16px; background: linear-gradient(135deg, rgba(16, 29, 44, .98), rgba(9, 18, 29, .98)); }
.rank-row::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--team-color); }
.rank-top { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 10px; }
.rank-pos { color: #718399; font: 740 16px ui-monospace, monospace; }
.team-name { font-size: 17px; font-weight: 730; }
.color-dot { display: inline-block; width: 11px; height: 11px; margin-right: 8px; border-radius: 3px; }
.rank-value { font: 740 22px ui-monospace, monospace; }
.rank-bar { height: 11px; margin: 15px 0 11px; border-radius: 99px; background: #152536; overflow: hidden; }
.rank-bar div { height: 100%; border-radius: 99px; box-shadow: 0 0 16px color-mix(in srgb, var(--team-color), transparent 45%); }
.rank-meta { display: flex; gap: 15px; color: #718298; font-size: 11px; flex-wrap: wrap; }
.rank-meta strong { color: #bac5d1; }
.chart-card { padding: 21px; }
.chart-total { display: flex; justify-content: space-between; align-items: center; color: #8192a5; }
.chart-total strong { color: var(--text); font: 740 20px ui-monospace, monospace; }
.stacked-chart { display: flex; align-items: end; gap: 5px; height: 165px; margin-top: 18px; }
.stack { flex: 1; display: flex; flex-direction: column-reverse; justify-content: flex-start; min-width: 5px; height: 100%; }
.stack i { display: block; min-height: 1px; border: 1px solid #09111c; border-radius: 3px 3px 0 0; }
.chart-head { display: flex; justify-content: space-between; margin-top: 10px; color: #74859a; font: 11px ui-monospace, monospace; text-transform: uppercase; letter-spacing: .1em; }
.chart-legend { display: flex; gap: 14px; margin-top: 18px; color: #8393a6; font-size: 12px; flex-wrap: wrap; }
.chart-legend span { display: flex; align-items: center; gap: 6px; }
.chart-legend i { width: 9px; height: 9px; border-radius: 3px; }

.people-search-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; margin-bottom: 14px; }
.search-box, .select-box { min-height: 50px; border: 1px solid var(--line); border-radius: 14px; background: var(--panel-2); }
.search-box { display: flex; align-items: center; gap: 10px; padding: 0 15px; }
.search-box > span { color: var(--blue); font-size: 25px; line-height: 1; rotate: -18deg; }
.search-box input { width: 100%; border: 0; outline: 0; color: var(--text); background: transparent; }
.search-box input::placeholder { color: #687b91; }
.select-box { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 8px 13px; }
.select-box > span { margin-bottom: 3px; color: #66798f; text-transform: uppercase; font: 650 9px ui-monospace, monospace; letter-spacing: .13em; }
.select-box select { width: 100%; border: 0; outline: 0; color: #c6d1dc; background: transparent; cursor: pointer; }
.filters { display: flex; gap: 8px; overflow: auto; padding: 2px 0 12px; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter { border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; color: #8192a6; background: var(--panel); font-size: 12px; white-space: nowrap; cursor: pointer; }
.filter.active { color: var(--text); border-color: #355b82; background: #17283b; box-shadow: 0 7px 24px rgba(29, 91, 151, .12); }
.filter small { color: #667a91; }
.people-result-caption { margin: 8px 0 4px; color: #66798f; text-transform: uppercase; font: 650 10px ui-monospace, monospace; letter-spacing: .12em; }
.people-list { margin-top: 5px; }
.person-row { display: grid; width: 100%; grid-template-columns: 34px 48px 1fr 82px auto 16px; align-items: center; gap: 10px; min-height: 70px; padding: 11px 8px; border: 0; border-bottom: 1px solid rgba(34, 53, 74, .66); border-radius: 13px; color: inherit; background: transparent; text-align: left; cursor: pointer; transition: background .15s ease, transform .15s ease; }
.person-row:hover, .person-row:focus-visible { outline: 0; background: rgba(20, 36, 55, .68); transform: translateX(2px); }
.avatar { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; color: white; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .12), 0 8px 22px rgba(0, 0, 0, .18); font: 740 12px ui-monospace, monospace; }
.person-main { min-width: 0; }
.person-name { font-size: 15px; font-weight: 720; }
.person-meta { margin-top: 4px; color: #6e8197; font-size: 11px; }
.spark { display: flex; align-items: end; gap: 2px; height: 34px; }
.spark i { width: 5px; min-height: 3px; border-radius: 2px 2px 0 0; opacity: .9; }
.person-score { text-align: right; font: 740 17px ui-monospace, monospace; }
.person-score small { display: block; margin-top: 4px; color: #6f8197; font-size: 11px; }
.person-chevron { color: #49627c; font-size: 29px; font-weight: 300; transition: translate .15s ease, color .15s ease; }
.person-row:hover .person-chevron { color: var(--blue); translate: 3px 0; }
.empty { display: grid; place-items: center; gap: 7px; padding: 54px 20px; text-align: center; color: #74869b; }
.empty > span { color: var(--blue); font-size: 36px; rotate: -18deg; }
.empty strong { color: #aebdcb; }
.empty small { color: #64778d; }

.profile-back { display: inline-flex; align-items: center; gap: 8px; margin: -7px 0 18px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #a9bacb; background: rgba(16, 29, 44, .75); cursor: pointer; font-size: 13px; font-weight: 700; }
.profile-back:hover { color: white; border-color: #355b82; background: #17283b; }
.profile-back span { color: var(--blue); font-size: 18px; }
.profile-hero { position: relative; display: flex; align-items: center; gap: 16px; padding: 20px; overflow: hidden; border: 1px solid color-mix(in srgb, var(--person-color), #22354a 55%); border-radius: 19px; background: linear-gradient(135deg, color-mix(in srgb, var(--person-color), #101d2c 86%), #09121d 72%); }
.profile-hero::after { content: ""; position: absolute; width: 170px; height: 170px; top: -95px; right: -25px; border-radius: 50%; background: var(--person-color); opacity: .12; filter: blur(12px); }
.profile-avatar { position: relative; z-index: 1; display: grid; place-items: center; flex: 0 0 62px; width: 62px; height: 62px; border-radius: 18px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16), 0 14px 28px rgba(0, 0, 0, .25); font: 780 18px ui-monospace, monospace; }
.profile-title { position: relative; z-index: 1; min-width: 0; }
.profile-kicker { color: #8194a9; text-transform: uppercase; font: 650 10px ui-monospace, monospace; letter-spacing: .18em; }
.profile-title h2 { margin: 6px 0 9px; font-size: 23px; letter-spacing: -.03em; }
.profile-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.profile-tags span { display: flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 8px; color: #a0b0c0; background: rgba(26, 42, 59, .82); font: 650 11px ui-monospace, monospace; }
.profile-tags i { width: 8px; height: 8px; border-radius: 3px; }
.profile-metrics { display: grid; grid-template-columns: 1fr 1fr; margin-top: 12px; border: 1px solid var(--line); border-radius: 20px; background: linear-gradient(145deg, var(--panel), #09121d); overflow: hidden; }
.profile-metrics article { min-height: 112px; padding: 17px; border-right: 1px solid rgba(34, 53, 74, .7); border-bottom: 1px solid rgba(34, 53, 74, .7); }
.profile-metrics article:nth-child(2n) { border-right: 0; }
.profile-metrics article:nth-last-child(-n+2) { border-bottom: 0; }
.profile-metrics small { display: block; color: #778ba1; text-transform: uppercase; font: 650 10px ui-monospace, monospace; letter-spacing: .16em; }
.profile-metrics strong { display: block; margin-top: 9px; font: 740 24px ui-monospace, monospace; }
.profile-metrics strong b { font-size: 21px; }
.profile-metrics span { display: block; margin-top: 6px; color: #718398; font-size: 12px; }
.personal-chart-card { padding: 22px; }
.personal-chart { display: flex; align-items: end; gap: 5px; height: 150px; }
.personal-bar-wrap { display: flex; flex: 1; align-items: end; min-width: 5px; height: 100%; }
.personal-bar-wrap i { display: block; width: 100%; min-height: 2px; border-radius: 5px 5px 2px 2px; opacity: .94; box-shadow: 0 0 14px color-mix(in srgb, var(--person-color, #3f91f2), transparent 70%); }
.profile-gap { display: grid; grid-template-columns: 47px 1fr auto; align-items: center; gap: 14px; margin-top: 18px; padding: 17px 20px; }
.avatar.mini { width: 45px; height: 45px; border-radius: 13px; }
.profile-gap small { display: block; color: #74879c; font-size: 12px; }
.profile-gap strong { display: block; margin-top: 5px; font-size: 15px; }
.profile-gap > b { color: var(--orange); font: 760 24px ui-monospace, monospace; }
.profile-leader { margin-top: 18px; padding: 20px; color: #e8bd65; font-weight: 700; }
.day-list { overflow: hidden; }
.day-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; min-height: 54px; padding: 9px 15px; border-bottom: 1px solid rgba(34, 53, 74, .62); }
.day-row:last-child { border-bottom: 0; }
.day-index { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 9px; color: #7390ac; background: #132235; font: 700 11px ui-monospace, monospace; }
.day-row > span:nth-child(2) { color: #91a2b4; text-transform: capitalize; }
.day-row strong { font: 730 15px ui-monospace, monospace; }
.day-row strong small { color: #6c8095; font-size: 10px; }

@media (max-width: 620px) {
  .app-shell { border: 0; }
  .app-header { padding: max(13px, env(safe-area-inset-top)) 14px 9px; }
  .brand { gap: 10px; }
  .brand-icon { width: 38px; height: 38px; border-radius: 12px; font-size: 18px; }
  h1 { font-size: 18px; }
  .brand p { font-size: 8px; }
  .live-badge { display: none; }
  .tabs { padding: 0 6px; justify-content: space-around; gap: 1px; }
  .tab { padding: 12px 10px; font-size: 12px; }
  .screen { padding: 16px 13px 30px; }
  .eyebrow { margin-bottom: 13px; font-size: 9px; }
  .hero-card { min-height: 155px; padding: 17px; border-radius: 17px; }
  .hero-kicker { font-size: 8px; }
  .hero-number { margin-top: 20px; font-size: clamp(34px, 11vw, 45px); }
  .hero-number small { font-size: 11px; }
  .hero-sub { margin-top: 12px; font-size: 13px; }
  .metric { grid-template-columns: 27px 1fr; gap: 8px; min-height: 91px; padding: 12px 10px; border-radius: 14px; }
  .metric-icon { width: 27px; height: 27px; border-radius: 8px; font-size: 11px; }
  .metric-label { font-size: 8px; }
  .metric-value { margin-top: 7px; font-size: 19px; }
  .metric-note { font-size: 9px; }
  .section { margin-top: 20px; padding-top: 17px; }
  .route-card { padding: 15px 12px; }
  .route-title { margin-bottom: 17px; }
  .route-title h2 { font-size: 15px; }
  .route-title > strong { font-size: 17px; }
  .team-contribution { gap: 8px; margin-top: 13px; font-size: 10px; }
  .current-place { margin-top: 15px; padding: 11px 12px; }
  .current-place strong { font-size: 13px; }
  .current-place b { font-size: 11px; }
  .route-row { grid-template-columns: 12px 1fr auto; }
  .route-eta { display: none; }
  .forecast { align-items: flex-start; flex-direction: column; padding: 16px; }
  .forecast h3 { font-size: 22px; }
  .segmented { margin-bottom: 15px; }
  .segment { min-height: 50px; font-size: 11px; }
  .segment small { font-size: 8px; }
  .rank-row { padding: 14px 12px; }
  .team-name { font-size: 15px; }
  .rank-value { font-size: 18px; }
  .rank-meta { gap: 11px; font-size: 10px; }
  .chart-card { padding: 16px 13px; }
  .stacked-chart { height: 145px; margin-top: 15px; }
  .people-search-card { grid-template-columns: 1fr; }
  .search-box, .select-box { min-height: 47px; }
  .person-row { grid-template-columns: 25px 40px 1fr auto 12px; gap: 7px; min-height: 62px; padding: 9px 1px; }
  .spark { display: none; }
  .avatar { width: 37px; height: 37px; border-radius: 11px; font-size: 11px; }
  .person-score { font-size: 14px; }
  .person-score small { font-size: 9px; }
  .person-name { font-size: 13px; }
  .person-meta { font-size: 9px; }
  .person-chevron { font-size: 20px; }
  .profile-back { margin-bottom: 13px; padding: 7px 10px; font-size: 11px; }
  .profile-hero { align-items: flex-start; gap: 12px; padding: 16px 13px; }
  .profile-avatar { flex-basis: 50px; width: 50px; height: 50px; border-radius: 15px; font-size: 15px; }
  .profile-title h2 { font-size: 18px; }
  .profile-tags { gap: 5px; }
  .profile-tags span { padding: 4px 6px; font-size: 8px; }
  .profile-metrics article { min-height: 94px; padding: 13px 11px; }
  .profile-metrics small { font-size: 8px; }
  .profile-metrics strong { margin-top: 7px; font-size: 19px; }
  .profile-metrics span { font-size: 10px; }
  .personal-chart-card { padding: 14px 11px; }
  .personal-chart { height: 125px; gap: 3px; }
  .profile-gap { grid-template-columns: 47px 1fr; padding: 15px; }
  .profile-gap > b { display: none; }
  .day-row { padding-inline: 12px; }
  .day-row strong { font-size: 13px; }
}
