:root {
  --bg: #0B0A10; --bg2: #131220; --card: #1A1828;
  --iris: #A06BFF; --irisDeep: #6A3FD6; --irisGlow: #D0B0FF;
  --amber: #FFB547; --mint: #5DE0A6; --coral: #FF6B6B;
  --text: #F4F1FA; --dim: rgba(244,241,250,0.64); --mute: rgba(244,241,250,0.42);
  --line: rgba(255,255,255,0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0; background: var(--bg); color: var(--text);
  font-family: -apple-system, "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: rgba(160,107,255,0.3); border-radius: 4px; }

/* layout */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* nav */
nav.top {
  position: sticky; top: 0; z-index: 50;
  padding: 20px 0; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: rgba(11,10,16,0.7); border-bottom: 1px solid var(--line);
}
nav.top .inner { display: flex; align-items: center; justify-content: space-between; }
nav.top .brand {
  display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px;
  background: linear-gradient(135deg, #F4F1FA 0%, #D0B0FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
nav.top .links { display: flex; gap: 28px; font-size: 14px; color: var(--dim); font-weight: 500; }
nav.top .links a:hover { color: var(--text); }
nav.top .cta {
  padding: 9px 18px; border-radius: 100px; font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, #A06BFF 0%, #6A3FD6 100%); color: #fff;
  box-shadow: 0 4px 14px rgba(160,107,255,0.4); cursor: pointer;
}
@media (max-width: 740px) { nav.top .links { display: none; } }

/* hero */
section.hero {
  position: relative; padding: 80px 0 120px; overflow: hidden;
}
section.hero::before {
  content: ''; position: absolute; inset: -200px 0 0 0;
  background: radial-gradient(60% 50% at 50% 0%, rgba(160,107,255,0.35) 0%, transparent 60%),
              radial-gradient(40% 30% at 20% 70%, rgba(255,181,71,0.18) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero .phoneArea { justify-self: center; }
}
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--iris);
  padding: 6px 12px; border-radius: 100px; background: rgba(160,107,255,0.12);
  border: 1px solid rgba(160,107,255,0.3); display: inline-block; margin-bottom: 22px;
}
h1 {
  font-size: clamp(40px, 6vw, 72px); font-weight: 700; letter-spacing: -2px;
  line-height: 1.02; margin: 0 0 22px;
  background: linear-gradient(180deg, #fff 0%, #D0B0FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.sub { font-size: 18px; color: var(--dim); line-height: 1.5; max-width: 500px; margin-bottom: 32px; }
@media (max-width: 900px) { .sub { margin: 0 auto 32px; } }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) { .cta-row { justify-content: center; } }

/* apple sign-in */
.apple-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 14px; background: #000; color: #fff;
  font-size: 15px; font-weight: 600; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.15s ease;
}
.apple-btn:hover { transform: translateY(-2px); }
.apple-btn svg { width: 18px; height: 21px; }

.secondary-btn {
  padding: 14px 22px; border-radius: 14px; background: rgba(255,255,255,0.06);
  border: 1px solid var(--line); color: var(--text);
  font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
}
.secondary-btn:hover { background: rgba(255,255,255,0.1); }

.hint { display: flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--mute); font-size: 12px; }
@media (max-width: 900px) { .hint { justify-content: center; } }

/* hero phone mockup */
.phoneArea { position: relative; display: flex; justify-content: center; }
.phone {
  width: 320px; height: 680px; border-radius: 46px; position: relative;
  background: #0B0A10; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 2px #111, 0 0 0 8px #1a1a22, 0 0 0 9px #2a2738;
}
.phone::before {
  content: ''; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 105px; height: 32px; background: #000; border-radius: 20px; z-index: 3;
}
.phone .screen {
  position: absolute; inset: 0; padding: 60px 20px 20px;
  background: radial-gradient(120% 60% at 50% 0%, #2A1D5C 0%, #13102A 40%, #0B0A10 80%);
}
.screen .mini-head {
  display: flex; align-items: center; justify-content: space-between; padding: 8px 4px 16px;
}
.screen .brand-mini {
  font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #F4F1FA 0%, #D0B0FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.screen .hero-card {
  border-radius: 22px; padding: 16px; overflow: hidden; position: relative;
  background: linear-gradient(135deg, #A06BFF 0%, #6A3FD6 100%);
  box-shadow: 0 20px 40px -10px rgba(160,107,255,0.45);
}
.screen .hero-card .eye {
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px; color: rgba(255,255,255,0.85);
}
.screen .hero-card h3 {
  font-size: 20px; font-weight: 700; margin: 6px 0 8px; line-height: 1.1; letter-spacing: -0.3px;
}
.screen .hero-card .meta { font-size: 11px; color: rgba(255,255,255,0.88); }
.screen .hero-card .avatars { display: flex; margin-top: 10px; }
.screen .hero-card .avatars div {
  width: 22px; height: 22px; border-radius: 11px; border: 2px solid #7B4CE5;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; color: #0B0A10;
}
.screen .hero-card .avatars div:nth-child(1) { background: #FFB547; }
.screen .hero-card .avatars div:nth-child(2) { background: #5DE0A6; margin-left: -6px; }
.screen .title-sm {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: var(--dim); margin: 18px 0 8px;
}
.screen .week-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 14px;
}
.screen .week-card .tot {
  font-size: 22px; font-weight: 700; letter-spacing: -0.5px; font-variant-numeric: tabular-nums;
}
.screen .week-card .tot span { font-size: 11px; color: var(--dim); font-weight: 500; }
.screen .week-card .bar {
  height: 4px; border-radius: 2px; background: var(--line); margin: 10px 0; overflow: hidden;
}
.screen .week-card .bar > div {
  width: 32%; height: 100%; background: linear-gradient(135deg, #A06BFF, #6A3FD6); border-radius: 2px;
}
.screen .week-card .days { display: flex; gap: 4px; }
.screen .week-card .days > div {
  flex: 1; height: 28px; border-radius: 6px; display: flex; align-items: center;
  justify-content: center; font-size: 9px; font-weight: 700; color: #fff;
}
.screen .feed-row {
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  padding: 10px 12px; display: flex; align-items: center; gap: 10px;
}
.screen .feed-row .av {
  width: 30px; height: 30px; border-radius: 15px; background: #FFB547;
  display: flex; align-items: center; justify-content: center;
  color: #0B0A10; font-weight: 700; font-size: 12px;
}
.screen .feed-row .main { flex: 1; min-width: 0; }
.screen .feed-row .n { font-size: 12px; font-weight: 600; }
.screen .feed-row .m { font-size: 10px; color: var(--dim); font-variant-numeric: tabular-nums; }

/* floating glow behind phone */
.phoneArea::before {
  content: ''; position: absolute; width: 400px; height: 400px; left: 50%; top: 50%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(160,107,255,0.3) 0%, transparent 60%);
  z-index: -1; pointer-events: none;
}

/* features */
section.features { padding: 120px 0; position: relative; }
.section-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; color: var(--iris); text-align: center;
}
h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; line-height: 1.1;
  text-align: center; max-width: 720px; margin: 14px auto 0;
  background: linear-gradient(180deg, #fff 0%, #D0B0FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-sub {
  text-align: center; color: var(--dim); font-size: 17px;
  max-width: 600px; margin: 16px auto 64px; line-height: 1.5;
}

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  padding: 28px; border-radius: 24px; background: var(--card); border: 1px solid var(--line);
  position: relative; overflow: hidden; transition: transform 0.2s;
}
.feature:hover { transform: translateY(-4px); border-color: rgba(160,107,255,0.3); }
.feature.hero-feat {
  background: linear-gradient(135deg, rgba(160,107,255,0.18) 0%, rgba(106,63,214,0.08) 100%);
  border: 1px solid rgba(160,107,255,0.25); grid-column: span 3; padding: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.feature.hero-feat:hover { transform: none; }
@media (max-width: 900px) {
  .feature.hero-feat { grid-column: span 1; grid-template-columns: 1fr; padding: 28px; gap: 32px; justify-items: center; }
  .feature.hero-feat .hero-feat-body { text-align: center; }
}
.feature .icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.feature h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.4px; margin: 0 0 8px; }
.feature p { font-size: 14px; color: var(--dim); line-height: 1.55; margin: 0; }
.feature .hero-feat-body { max-width: 520px; }
.feature.hero-feat h3 { font-size: 32px; letter-spacing: -0.8px; margin-bottom: 14px; }
.feature.hero-feat p { font-size: 17px; color: rgba(244,241,250,0.8); }

/* health section */
section.health {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(255,107,107,0.04) 0%, transparent 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.health .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .health .wrap { grid-template-columns: 1fr; text-align: center; } }
.health h2 { text-align: left; margin: 14px 0 0; }
@media (max-width: 900px) { .health h2 { text-align: center; } }
.health-visual {
  position: relative; height: 380px; display: flex; align-items: center; justify-content: center;
}
.health-ring {
  width: 280px; height: 280px; border-radius: 50%;
  border: 2px solid rgba(255,107,107,0.25); position: relative;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.health-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, #FF6B6B 0%, #A06BFF 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 60px rgba(255,107,107,0.3);
}
.health-dot {
  position: absolute; width: 44px; height: 44px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.check-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--dim); list-style: none; line-height: 1.45;
}
@media (max-width: 900px) {
  .check-list li { text-align: left; }
  .check-list { max-width: 420px; margin: 28px auto 0; }
}
.check-list .chk {
  width: 22px; height: 22px; border-radius: 6px; background: rgba(93,224,166,0.15); color: var(--mint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.check-list strong { color: var(--text); }

/* login section */
section.login-section { padding: 120px 0; position: relative; }
.login-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 50% 50%, rgba(160,107,255,0.15) 0%, transparent 70%);
  z-index: 0;
}
.login-section .wrap { position: relative; z-index: 2; max-width: 520px; }
.login-card {
  padding: 44px; border-radius: 28px;
  background: linear-gradient(180deg, rgba(26,24,40,0.8) 0%, rgba(19,18,32,0.8) 100%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line); text-align: center;
}
.login-card .iris-icon { margin-bottom: 24px; display: inline-block; position: relative; }
.login-card .iris-icon::before {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(circle, rgba(160,107,255,0.4) 0%, transparent 70%); z-index: -1;
}
.login-card h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; margin: 0 0 10px; }
.login-card p { color: var(--dim); font-size: 15px; margin: 0 0 28px; line-height: 1.5; }
.login-card .apple-btn { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }
.login-card .tos { font-size: 11px; color: var(--mute); margin-top: 18px; line-height: 1.5; }
.login-card .tos a { color: var(--dim); text-decoration: underline; }

.divider {
  display: flex; align-items: center; gap: 12px; margin: 20px 0; color: var(--mute); font-size: 11px;
}
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

/* footer */
footer { padding: 48px 0 36px; border-top: 1px solid var(--line); color: var(--mute); font-size: 13px; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
footer .links { display: flex; gap: 24px; }
footer a:hover { color: var(--text); }

/* iris glyph */
.iris { display: inline-block; vertical-align: middle; }

/* ───────── activity / run detail phone (hero mockup) ───────── */
.phone .screen.activity { padding: 0; overflow: hidden; background: var(--bg); }
.screen.activity .map-hero {
  position: relative; width: 100%; height: 260px; overflow: hidden;
}
.screen.activity .map-svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.screen.activity .map-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,16,0.55) 0%, transparent 35%, rgba(11,10,16,0.95) 100%);
  pointer-events: none;
}
.screen.activity .map-top {
  position: absolute; top: 52px; left: 16px; right: 16px; z-index: 3;
  display: flex; justify-content: space-between; align-items: center;
}
.screen.activity .iconbtn {
  width: 32px; height: 32px; border-radius: 16px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.screen.activity .map-title {
  position: absolute; left: 16px; right: 16px; bottom: 12px; z-index: 3;
}
.screen.activity .badge-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.screen.activity .paired-pill {
  padding: 3px 8px; border-radius: 100px;
  background: rgba(160,107,255,0.2); color: var(--iris);
  border: 1px solid var(--line);
  font-size: 9px; font-weight: 700; letter-spacing: 1.2px;
}
.screen.activity .when { font-size: 10px; color: var(--dim); }
.screen.activity .map-title h3 {
  font-size: 19px; font-weight: 700; letter-spacing: -0.4px;
  margin: 0; line-height: 1.15;
}
.screen.activity .subtitle { font-size: 11px; color: var(--dim); margin-top: 3px; }

.screen.activity .act-body { padding: 14px 14px 16px; }
.screen.activity .stats-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.screen.activity .statbox {
  padding: 10px 11px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
}
.screen.activity .statbox .lab {
  font-size: 9px; color: var(--dim); font-weight: 600; letter-spacing: 0.4px;
}
.screen.activity .statbox .val {
  margin-top: 4px; font-size: 16px; font-weight: 700; letter-spacing: -0.3px;
  font-variant-numeric: tabular-nums;
}
.screen.activity .statbox .val span { font-size: 9px; color: var(--dim); font-weight: 500; }

.screen.activity .health-badge {
  margin-top: 10px; padding: 10px 12px; border-radius: 14px;
  background: rgba(255,107,107,0.08); border: 1px solid rgba(255,107,107,0.2);
  display: flex; align-items: center; gap: 10px;
}
.screen.activity .health-badge .ico {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,107,107,0.18);
  display: flex; align-items: center; justify-content: center;
}
.screen.activity .health-badge .txt { flex: 1; min-width: 0; }
.screen.activity .health-badge .n { font-size: 11px; font-weight: 600; }
.screen.activity .health-badge .m { font-size: 9px; color: var(--dim); }

.screen.activity .section-h {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: var(--dim); margin: 14px 0 8px; text-transform: uppercase;
}

.screen.activity .splits {
  padding: 14px 12px 12px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
  display: flex; align-items: flex-end; gap: 8px; height: 100px;
}
.screen.activity .splits .spl {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 100%;
  justify-content: flex-end;
}
.screen.activity .splits .p {
  font-size: 9px; color: var(--dim); font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.screen.activity .splits .b {
  width: 100%; border-radius: 5px;
  background: linear-gradient(180deg, #A06BFF 0%, #6A3FD6 100%);
}
.screen.activity .splits .k { font-size: 8px; color: var(--mute); font-weight: 600; }

.screen.activity .hr-zones {
  padding: 12px; border-radius: 14px;
  background: var(--card); border: 1px solid var(--line);
}
.screen.activity .hrbar {
  display: flex; height: 8px; border-radius: 4px; overflow: hidden; margin-bottom: 8px;
}
.screen.activity .hrlegend {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 10px; color: var(--text);
}
.screen.activity .hrlegend > div {
  display: flex; align-items: center; gap: 8px;
}
.screen.activity .hrlegend .sw {
  width: 7px; height: 7px; border-radius: 3px; display: inline-block;
}
.screen.activity .hrlegend b {
  margin-left: auto; font-weight: 600; color: var(--dim);
  font-variant-numeric: tabular-nums;
}

/* ───────── live run phone (hero feature) ───────── */

/* ───────── live run phone (hero feature) ───────── */
.phone.live-phone { margin: 0; }
.phone .screen.live { padding: 0; background: #0B0A10; overflow: hidden; }
.screen.live .aurora {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(80% 50% at 50% 10%, rgba(160,107,255,0.35) 0%, transparent 70%),
    radial-gradient(60% 40% at 80% 90%, rgba(93,224,166,0.14) 0%, transparent 70%);
}
.screen.live .live-top {
  position: absolute; top: 52px; left: 16px; right: 16px; z-index: 3;
  display: flex; align-items: center; justify-content: space-between;
}
.screen.live .iconbtn {
  width: 34px; height: 34px; border-radius: 17px;
  background: rgba(255,255,255,0.08); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px);
}
.screen.live .live-pill {
  padding: 6px 12px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,107,107,0.18); border: 1px solid rgba(255,107,107,0.35);
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--coral);
  backdrop-filter: blur(12px);
}
.screen.live .live-pill .pulse {
  width: 6px; height: 6px; border-radius: 50%; background: var(--coral);
  animation: livepulse 1.5s infinite;
}
@keyframes livepulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.screen.live .live-body {
  position: absolute; top: 110px; left: 0; right: 0; z-index: 2;
  text-align: center; padding: 0 16px;
}
.screen.live .tag { font-size: 9px; font-weight: 700; letter-spacing: 2px; color: var(--dim); margin-bottom: 6px; }
.screen.live .live-timer {
  font-size: 64px; font-weight: 200; letter-spacing: -3px; line-height: 1;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 0%, #D0B0FF 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.screen.live .sub { font-size: 9px; color: var(--dim); margin-top: 4px; letter-spacing: 1.2px; font-weight: 500; }
.screen.live .live-track { margin-top: 22px; padding: 0 4px; }
.screen.live .live-track .markers {
  display: flex; justify-content: space-between;
  font-size: 9px; color: var(--mute); font-weight: 600; letter-spacing: 0.4px; margin-bottom: 4px;
}
.screen.live .live-track svg { width: 100%; height: 130px; overflow: visible; display: block; }
.screen.live .gap-pill {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 4px; padding: 6px 12px; border-radius: 100px;
  background: rgba(255,181,71,0.12); border: 1px solid rgba(255,181,71,0.3);
  font-size: 11px; color: var(--dim);
}
.screen.live .gap-pill strong { color: var(--amber); font-weight: 700; font-variant-numeric: tabular-nums; }

.screen.live .live-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 18px 12px 22px;
  background: linear-gradient(180deg, rgba(11,10,16,0) 0%, rgba(11,10,16,0.92) 30%, rgba(11,10,16,1) 100%);
}
.screen.live .runner-cards { display: flex; gap: 8px; margin-bottom: 12px; }
.screen.live .runner-card {
  flex: 1; padding: 10px 11px; border-radius: 16px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.screen.live .runner-card.self {
  background: rgba(160,107,255,0.1); border-color: rgba(160,107,255,0.4);
}
.screen.live .runner-card .head { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.screen.live .runner-card .av {
  width: 20px; height: 20px; border-radius: 10px;
  color: #0B0A10; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.screen.live .runner-card .name { font-size: 11px; font-weight: 600; }
.screen.live .runner-card .self-tag {
  font-size: 8px; color: var(--iris); margin-left: auto;
  font-weight: 700; letter-spacing: 0.5px;
}
.screen.live .runner-card .row { display: flex; justify-content: space-between; align-items: baseline; }
.screen.live .runner-card .dist {
  font-size: 17px; font-weight: 700; font-variant-numeric: tabular-nums; letter-spacing: -0.3px;
}
.screen.live .runner-card .dist span { font-size: 9px; color: var(--dim); font-weight: 500; }
.screen.live .runner-card .pace { font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; }
.screen.live .runner-card .pace span { font-size: 9px; color: var(--dim); }
.screen.live .runner-card .hr {
  display: inline-flex; align-items: center; gap: 4px; margin-top: 4px;
  font-size: 10px; color: var(--dim); font-variant-numeric: tabular-nums;
}

.screen.live .reactions { display: flex; gap: 6px; justify-content: center; margin-bottom: 14px; }
.screen.live .reactions .r {
  width: 34px; height: 34px; border-radius: 17px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}

.screen.live .live-ctrls { display: flex; gap: 10px; align-items: center; justify-content: center; }
.screen.live .live-ctrls .small {
  width: 40px; height: 40px; border-radius: 20px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
}
.screen.live .live-ctrls .pause-big {
  width: 56px; height: 56px; border-radius: 28px;
  background: linear-gradient(135deg, #A06BFF 0%, #6A3FD6 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(160,107,255,0.5);
}
