/* Athlenote website. Brand tokens from the Athlenote Brand Guideline. */
:root {
  --blue: #009CFF;
  --blue-dark: #0083D7;
  --blue-tint: #E5F4FF;
  --orange: #F96B2C;
  --orange-tint: #FEF0E9;
  --journal: #0FB871;
  --habits: #EFB100;
  --habits-text: #C99500;
  --teal: #0C7D8F;
  --ink: #1F2430;
  --muted: #5F6B7A;
  --faint: #98A5B3;
  --bg: #FAFBFC;
  --white: #FFFFFF;
  --track: #E3E8EF;
  --r-sm: 14px;
  --r-md: 18px;
  --r-lg: 24px;
  --shadow-card: 0 2px 8px rgba(31,36,48,0.06);
  --shadow-raised: 0 8px 20px rgba(31,36,48,0.10);
  --shadow-blue: 0 6px 14px rgba(0,156,255,0.30);
  --shadow-orange: 0 6px 14px rgba(249,107,44,0.30);
  --font-body: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-hand: 'Caveat', 'Segoe Print', cursive;
  --font-sport: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --spring: cubic-bezier(.34,1.56,.64,1);
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3 { margin: 0; line-height: 1.1; }
p { margin: 0; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: var(--gutter); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 52px; padding: 0 28px; border-radius: 999px; font-weight: 600; font-size: 16px; border: 0; cursor: pointer; transition: transform .25s var(--spring), background .2s; }
.btn:active { transform: scale(.97); }
.btn-orange { background: var(--orange); color: var(--white); box-shadow: var(--shadow-orange); }
.btn-orange:hover { color: var(--white); background: #EE5E1F; }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: var(--shadow-blue); }
.btn-blue:hover { color: var(--white); background: var(--blue-dark); }
.btn-ghost { background: var(--white); color: var(--ink); border: 1px solid var(--track); }
.btn-ghost:hover { color: var(--ink); border-color: var(--faint); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 14px; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(250,251,252,0.86); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); }
.nav-inner { height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo img { width: 38px; height: 38px; }
.nav-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 56px; }
.hero-text { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
.headline { display: flex; flex-direction: column; align-items: center; }
.headline .hand { font-family: var(--font-hand); font-weight: 700; font-size: clamp(56px, 8vw, 112px); line-height: .9; color: var(--ink); }
.headline .sport { position: relative; display: inline-block; padding: 0 .09em; font-family: var(--font-sport); font-weight: 800; font-style: italic; text-transform: uppercase; font-size: clamp(88px, 12.5vw, 176px); line-height: .82; letter-spacing: -0.01em; color: var(--blue); }
.headline .sport svg { position: absolute; left: 0; bottom: -0.12em; width: 100%; height: .15em; }
.hero-sub { max-width: 620px; font-size: clamp(16px, 1.4vw, 18px); line-height: 1.55; color: var(--muted); text-wrap: pretty; }

.voice { position: relative; z-index: 2; margin-top: 56px; height: 140px; display: flex; align-items: center; justify-content: center; }
.voice .giant { position: absolute; z-index: -1; left: 50%; top: 50%; transform: translate(-50%, -34%); font-weight: 700; font-size: min(23vw, 330px); line-height: .8; letter-spacing: -0.045em; color: var(--blue-tint); white-space: nowrap; user-select: none; pointer-events: none; }
.bars { display: flex; align-items: center; gap: 6px; }
.bar { width: 6px; border-radius: 999px; background: var(--blue); transform-origin: center; animation: wave 1.1s cubic-bezier(.45,0,.55,1) infinite alternate; }
.record { position: relative; width: 88px; height: 88px; margin: 0 20px; flex-shrink: 0; }
.record span { position: absolute; inset: 0; border-radius: 999px; background: var(--blue); display: flex; align-items: center; justify-content: center; }
.record .pulse { animation: pulse 2.2s cubic-bezier(.2,.8,.2,1) infinite; }
.record .core { box-shadow: var(--shadow-blue); }

.hero-wide { max-width: 1400px; }
.hero-cards { position: relative; z-index: 2; margin-top: 48px; padding-bottom: 96px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px; align-items: start; }
.hero-cards .card:nth-child(2) { margin-top: 48px; }
.hero-cards .card:nth-child(3) { margin-top: 16px; }
.hero-cards .card:nth-child(4) { margin-top: 40px; }
.hero-cards .card:nth-child(5) { margin-top: 8px; }

/* Cards */
.card { background: var(--white); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-raised); display: flex; flex-direction: column; gap: 14px; }
.card-label { font-size: 13px; font-weight: 600; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.card-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-meta { font-size: 13px; color: var(--faint); }
.card p { font-size: 15px; line-height: 1.5; color: var(--ink); }
.dot { width: 8px; height: 8px; border-radius: 999px; background: var(--journal); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { height: 28px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--track); font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; }
.ai-pill { height: 20px; padding: 0 8px; border-radius: 999px; background: var(--orange-tint); color: var(--orange); font-size: 11px; font-weight: 600; display: inline-flex; align-items: center; }
.avatar { width: 32px; height: 32px; border-radius: 999px; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ring-wrap { position: relative; width: 132px; height: 132px; align-self: center; }
.ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring-num { font-size: 36px; font-weight: 700; letter-spacing: -1px; line-height: 1; }
.ring-band { font-size: 13px; color: var(--muted); margin-top: 4px; }
.card .teal { font-size: 13px; color: var(--teal); font-weight: 500; text-align: center; }
.rings-row { display: flex; align-items: center; gap: 16px; }
.legend { display: flex; flex-direction: column; gap: 10px; font-size: 13px; line-height: 1.3; }
.legend b { display: block; font-weight: 600; }
.legend span { color: var(--faint); }
.lock-row { display: flex; align-items: center; gap: 14px; }
.lock { width: 56px; height: 56px; border-radius: 999px; background: var(--orange-tint); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.progress { height: 8px; border-radius: 999px; background: var(--track); overflow: hidden; }
.progress i { display: block; height: 100%; border-radius: 999px; background: var(--orange); }

/* Sections */
.section { padding-block: clamp(72px, 10vw, 128px); }
.split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.split.flip .copy { order: 2; }
.eyebrow { font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 16px; }
.eyebrow.orange { color: var(--orange); }
.section h2 { font-size: clamp(36px, 4.6vw, 60px); letter-spacing: -0.02em; line-height: 1.08; margin-bottom: 24px; text-wrap: balance; max-width: 640px; }
.copy p { font-size: 18px; line-height: 1.7; color: var(--muted); max-width: 560px; }
.copy p + p { margin-top: 16px; }
.small-print { margin-top: 24px !important; font-size: 13px !important; line-height: 1.6 !important; color: var(--faint) !important; }
.small-print a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }

/* Screenshot slot: replace the inner .shot-empty with <img src="assets/your-screenshot.png" alt=""> */
.phone { width: min(300px, 78vw); aspect-ratio: 300 / 620; border-radius: 50px; background: var(--ink); padding: 11px; box-shadow: 0 30px 60px rgba(31,36,48,0.18); margin-inline: auto; }
.phone-screen { position: relative; width: 100%; height: 100%; border-radius: 40px; background: var(--white); overflow: hidden; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.shot-empty { position: absolute; inset: 18px; border: 2px dashed var(--track); border-radius: 26px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 500; color: var(--faint); text-align: center; padding: 16px; }
.visual { position: relative; display: flex; justify-content: center; }
.visual .float { position: absolute; width: 260px; }
.visual .float.left { left: 0; bottom: 12%; }
.visual .float.right { right: 0; top: 10%; }

/* Mentors */
.mentors { background: var(--white); }
.locked-grid { margin-top: 56px; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.locked { background: var(--bg); border: 1px solid var(--track); border-radius: var(--r-md); padding: 20px 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.locked .lock { width: 48px; height: 48px; }
.locked b { font-size: 15px; font-weight: 600; }
.locked span { font-size: 13px; color: var(--faint); line-height: 1.3; }
.locked.open { background: var(--white); border-color: var(--orange); box-shadow: var(--shadow-card); }
.locked-note { margin-top: 20px; text-align: center; font-size: 15px; color: var(--muted); }

/* Privacy */
.privacy-band { text-align: center; }
.privacy-band .copy p { margin-inline: auto; }
.privacy-icon { width: 64px; height: 64px; border-radius: 999px; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }

/* Pricing */
.pricing { background: var(--white); }
.pricing-head { text-align: center; }
.pricing-head p { margin: 0 auto; }
.plans { margin: 56px auto 0; max-width: 880px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.plan { border: 1px solid var(--track); border-radius: var(--r-lg); padding: 32px; display: flex; flex-direction: column; gap: 20px; background: var(--bg); }
.plan.pro { background: var(--ink); color: var(--white); border-color: var(--ink); }
.plan h3 { font-size: 22px; }
.price { display: flex; align-items: baseline; gap: 8px; }
.price b { font-size: 48px; letter-spacing: -1.5px; line-height: 1; }
.price span { color: var(--muted); }
.plan.pro .price span, .plan.pro .annual { color: #B8C2CE; }
.annual { font-size: 14px; color: var(--muted); margin-top: -12px; }
.plan ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; font-size: 15px; line-height: 1.45; }
.plan li { display: flex; gap: 10px; }
.plan li svg { flex-shrink: 0; margin-top: 2px; }
.plan .btn { margin-top: auto; }
.trial-note { margin-top: 28px; text-align: center; font-size: 14px; color: var(--muted); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.faq-group + .faq-group { margin-top: 40px; }
.pricing .plan.pro { background: #121620; border-color: #121620; }
.faq-group h3 { font-size: 13px; font-weight: 600; color: var(--faint); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
details { border-bottom: 1px solid var(--track); }
summary { list-style: none; cursor: pointer; padding: 20px 40px 20px 0; position: relative; font-size: 17px; font-weight: 600; line-height: 1.4; }
summary::-webkit-details-marker { display: none; }
summary::after { content: ''; position: absolute; right: 6px; top: 50%; width: 12px; height: 12px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--spring); }
details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
details p { padding: 0 0 20px; color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 640px; }

/* Final CTA */
.final { text-align: center; position: relative; overflow: hidden; }
.final h2 { font-family: var(--font-hand); font-weight: 700; font-size: clamp(48px, 6vw, 80px); line-height: 1; letter-spacing: 0; }
.store-buttons { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }

/* Footer */
.footer { border-top: 1px solid var(--track); padding-block: 48px; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; font-size: 14px; }
.footer-links a { color: var(--muted); }
.footer small { display: block; margin-top: 24px; color: var(--faint); font-size: 13px; }

/* Legal and simple pages */
.page { max-width: 760px; margin: 0 auto; padding: 64px var(--gutter) 96px; }
.page h1 { font-size: clamp(36px, 5vw, 52px); letter-spacing: -0.02em; margin-bottom: 12px; }
.page h1 + p { color: var(--faint); font-size: 14px; margin-bottom: 40px; }
.page h2 { font-size: 24px; margin: 40px 0 12px; }
.page h3 { font-size: 18px; margin: 28px 0 8px; }
.page p, .page li { color: var(--muted); font-size: 16px; line-height: 1.75; }
.page p + p { margin-top: 12px; }
.page ul, .page ol { padding-left: 22px; margin: 12px 0; }
.page table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.page th, .page td { text-align: left; padding: 10px; border-bottom: 1px solid var(--track); vertical-align: top; color: var(--muted); }
.page th { color: var(--ink); }
.table-scroll { overflow-x: auto; }
.steps { counter-reset: s; list-style: none; padding: 0 !important; }
.steps li { counter-increment: s; position: relative; padding-left: 48px; margin-bottom: 16px; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 999px; background: var(--blue-tint); color: var(--blue-dark); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.callout { background: var(--orange-tint); border-radius: var(--r-md); padding: 20px 24px; margin: 24px 0; }
.callout p { color: var(--ink) !important; }

/* Motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .76s var(--spring); }
.reveal.in { opacity: 1; transform: none; }
@keyframes wave { from { transform: scaleY(.42); } to { transform: scaleY(1); } }
@keyframes pulse { 0% { transform: scale(1); opacity: .35; } 100% { transform: scale(1.75); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .bar, .record .pulse { animation: none; } .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* Responsive */
@media (max-width: 1080px) {
  .hero-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-cards .card:nth-child(n+4) { display: none; }
  .locked-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .split, .faq-grid { grid-template-columns: minmax(0, 1fr); }
  .split.flip .copy { order: 0; }
  .visual .float { display: none; }
  .plans { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 640px) {
  .hero { padding-top: 32px; }
  .hero-text { gap: 26px; }
  .voice { margin-top: 40px; height: 104px; }
  .bars { gap: 5px; }
  .bar { width: 5px; }
  .bars[data-side="right"] .bar:nth-child(n+14) { display: none; }
  .bars[data-side="left"] .bar:nth-child(-n+37) { display: none; }
  .record { width: 72px; height: 72px; margin: 0 14px; }
  .voice .giant { font-size: 19.5vw; transform: translate(-50%, 62%); }
  .headline .sport { font-size: 20vw; }
  .hero-cards { margin-top: 84px; grid-template-columns: minmax(0, 1fr); gap: 16px; padding-bottom: 72px; }
  .hero-cards .card { margin-top: 0 !important; }
  .hero-cards .card:nth-child(n+3) { display: none; }
  .hero-cards .card:nth-child(2) { margin-left: 28px !important; }
  .locked-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .copy p { font-size: 17px; }
  .plan { padding: 24px; }
  .store-buttons .btn { width: 100%; }
}

/* ---- Section rhythm ---- */
.band-white { background: var(--white); }
.band-tint { background: #F2F9FF; }
.band-dark { background: #121620; color: var(--white); }
.band-dark .copy p { color: #B8C2CE; }
.band-dark .small-print { color: #7C8798 !important; }
.band-dark .small-print a { color: #B8C2CE; }
.band-dark h2 { color: var(--white); }

/* Sports marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--track); background: var(--white); padding-block: 18px; }
.marquee-track { display: flex; gap: 40px; width: max-content; animation: slide 38s linear infinite; }
.marquee span { font-size: 15px; font-weight: 500; color: var(--faint); white-space: nowrap; display: flex; align-items: center; gap: 40px; }
.marquee span::after { content: ''; width: 5px; height: 5px; border-radius: 999px; background: var(--track); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Mentors on dark */
.band-dark .locked { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.10); }
.band-dark .locked b { color: var(--white); }
.band-dark .locked span { color: #7C8798; }
.band-dark .locked.open { background: rgba(249,107,44,0.10); border-color: var(--orange); }
.band-dark .locked-note { color: #B8C2CE; }
.band-dark .phone { box-shadow: 0 30px 70px rgba(0,0,0,0.5); background: #2A3140; }
.band-dark .shot-empty { border-color: var(--track); }
.statement { font-family: var(--font-hand); font-weight: 700; font-size: clamp(40px, 5.6vw, 76px); line-height: 1; color: var(--white); text-wrap: balance; }

/* Readiness band scale */
.scale { margin-top: 56px; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.scale div { border-radius: var(--r-md); padding: 16px; background: var(--white); border: 1px solid var(--track); border-top-width: 3px; }
.scale b { display: block; font-size: 15px; font-weight: 600; }
.scale span { font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }
.scale div:nth-child(1) { border-top-color: #9AA6B4; }
.scale div:nth-child(1) b { color: #9AA6B4; }
.scale div:nth-child(2) { border-top-color: #7FB4C4; }
.scale div:nth-child(2) b { color: #7FB4C4; }
.scale div:nth-child(3) { border-top-color: var(--teal); }
.scale div:nth-child(3) b { color: var(--teal); }
.scale div:nth-child(4) { border-top-color: var(--blue); }
.scale div:nth-child(4) b { color: var(--blue); }
.scale div:nth-child(5) { border-top-color: var(--journal); }
.scale div:nth-child(5) b { color: var(--journal); }
.sources { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 10px; }
.sources a { display: inline-flex; align-items: center; gap: 8px; height: 34px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--track); background: var(--white); color: var(--muted); font-size: 13px; }
.sources a:hover { border-color: var(--blue); color: var(--blue); }

/* Habits feature pills */
.pills { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; background: var(--white); border: 1px solid var(--track); font-size: 14px; font-weight: 500; }
.rings-big { display: flex; justify-content: center; }

/* Final CTA band */
.final { background: #F2F9FF; }
.final .giant-echo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-weight: 700; font-size: min(22vw, 300px); line-height: .8; letter-spacing: -0.045em; color: #E1F0FF; white-space: nowrap; user-select: none; pointer-events: none; z-index: 0; }
.final .wrap { position: relative; z-index: 1; }

/* Dark footer */
.footer { background: #121620; border-top: 0; color: #B8C2CE; }
.footer-links a { color: #B8C2CE; }
.footer-links a:hover { color: var(--white); }
.footer small { color: #6C7889; }

@media (max-width: 860px) {
  .scale { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---- Readiness meter ---- */
.meter { margin-top: 64px; }
.meter-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.meter-caption { font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); }
.meter-today { font-size: 14px; font-weight: 600; color: var(--blue); font-variant-numeric: tabular-nums; }
.meter-track { position: relative; display: flex; gap: 3px; height: 12px; }
.meter-track i { display: block; height: 100%; border-radius: 999px; }
.meter-track b { position: absolute; top: -9px; width: 2px; height: 30px; background: var(--ink); border-radius: 999px; }
.meter-track b::after { content: ''; position: absolute; left: 50%; top: -7px; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 999px; background: var(--ink); }
.meter-labels { margin-top: 18px; display: flex; }
.meter-labels span { flex: 1; font-size: 13px; color: var(--faint); font-variant-numeric: tabular-nums; }
.meter-labels b { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 2px; }

/* ---- Mentor unlock track ---- */
.track { position: relative; margin-top: 64px; display: flex; justify-content: space-between; gap: 12px; }
.track-line { position: absolute; left: 6%; right: 6%; top: 25px; height: 2px; background: rgba(255,255,255,0.12); }
.node { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; text-align: center; }
.node-dot { width: 52px; height: 52px; border-radius: 999px; background: #121620; border: 2px solid rgba(255,255,255,0.14); color: #6C7889; display: flex; align-items: center; justify-content: center; }
.node b { font-size: 14px; font-weight: 500; color: #7C8798; }
.node.unlocked .node-dot { background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: 0 6px 18px rgba(249,107,44,0.35); }
.node.unlocked b { color: var(--white); font-weight: 600; }
@media (max-width: 860px) {
  .meter-labels span { font-size: 11px; }
  .meter-labels b { font-size: 12px; }
  .track { flex-wrap: wrap; gap: 24px 12px; }
  .track-line { display: none; }
  .node { flex: 0 0 28%; }
}
