/* ============================================================
   Procreate for Jewelry Designers — Design System
   Bright jewel tones: HOT (gold/coral/ruby) vs COLD (sky/mint/
   lavender) on a light, high-luminosity base.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* -- hot (warm) palette -- */
  --hot-gold: #f5b41c;
  --hot-gold-light: #ffd873;
  --hot-gold-dark: #c98a0a;
  --hot-coral: #ff6f5e;
  --hot-coral-light: #ffab9c;
  --hot-ruby: #e8395f;
  --hot-ruby-light: #ff7d9c;
  --hot-amber: #ff9c3d;

  /* -- cold (cool) palette -- */
  --cold-sky: #2fb6e0;
  --cold-sky-light: #a3e6fb;
  --cold-sapphire: #3457d5;
  --cold-sapphire-light: #8fa8f7;
  --cold-mint: #1fc9a3;
  --cold-mint-light: #9df3de;
  --cold-lavender: #8b6fd9;
  --cold-lavender-light: #cabdf5;

  /* legacy aliases kept for existing components */
  --emerald: #0e9e77;
  --emerald-light: #1fc9a3;
  --sapphire: #3457d5;
  --sapphire-light: #6a86ea;
  --amethyst: #8b6fd9;
  --ruby: #e8395f;
  --gold: #f5b41c;
  --gold-light: #ffd873;
  --gold-dark: #c98a0a;

  --charcoal: #2a2340;
  --charcoal-soft: #3a3156;
  --ink: #2a2340;
  --paper: #fffdf8;
  --paper-dim: #fef3e2;
  --line: #f0e2c8;
  --text: #2c2640;
  --text-soft: #6b6484;
  --white: #ffffff;
  --success: #17b07e;
  --danger: #e8395f;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 4px 18px rgba(52, 87, 213, 0.09);
  --shadow-card: 0 8px 30px rgba(52, 87, 213, 0.14);
  --sidebar-w: 280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h1 { font-weight: 900; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--emerald-light); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; }

button {
  font-family: var(--font-body);
  cursor: pointer;
}

/* ---------- App shell ---------- */

.app-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: var(--sidebar-w);
  flex-shrink: 0;
  background: linear-gradient(200deg, var(--cold-sapphire) 0%, var(--cold-lavender) 55%, var(--hot-ruby) 130%);
  color: #fffef9;
  padding: 24px 18px 32px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 50;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 6px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 18px;
}

.sidebar-brand .gem {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.sidebar-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--hot-gold-light);
  letter-spacing: 0.01em;
}

.sidebar-streak {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 196, 40, 0.22);
  border: 1px solid rgba(255, 196, 40, 0.45);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: #fff6da;
  font-weight: 700;
}

.sidebar-progress-overall {
  margin-bottom: 20px;
}

.sidebar-progress-overall .label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #f1ecff;
  margin-bottom: 6px;
}

.bar-track {
  height: 8px;
  background: rgba(255,255,255,0.25);
  border-radius: 99px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--hot-gold), var(--hot-coral));
  border-radius: 99px;
  transition: width 0.6s cubic-bezier(.22,1,.36,1);
}

.sidebar nav { display: flex; flex-direction: column; gap: 2px; }

.side-section-title {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #e8e2ff;
  margin: 16px 8px 6px;
}

.side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: var(--radius-sm);
  color: #fffdf7;
  font-size: 0.92rem;
  font-weight: 500;
}

.side-link:hover { background: rgba(255,255,255,0.14); text-decoration: none; }
.side-link.active { background: rgba(255, 196, 40, 0.28); color: var(--hot-gold-light); }

.side-link .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.side-link.done .dot { background: var(--cold-mint-light); box-shadow: 0 0 6px rgba(31,201,163,0.8); }
.side-link .pct {
  margin-left: auto;
  font-size: 0.72rem;
  color: #e8e2ff;
}

.sidebar-toggle {
  display: none;
}

.main {
  flex: 1;
  min-width: 0;
  padding: 40px 48px 80px;
  max-width: 900px;
}

.topbar {
  display: none;
}

/* ---------- Landing hero ---------- */

.hero {
  background: linear-gradient(120deg, var(--cold-sky) 0%, var(--cold-lavender) 42%, var(--hot-coral) 78%, var(--hot-gold) 100%);
  color: #2c2640;
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(255,255,255,0.35), transparent 55%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff6da;
  background: rgba(44,38,64,0.35);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 18px;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(44,38,64,0.25);
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 14ch;
  margin-bottom: 16px;
}

.hero p.lede {
  font-size: 1.1rem;
  max-width: 56ch;
  color: #2c2640;
  font-weight: 500;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 26px;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, var(--hot-gold-light), var(--hot-coral));
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(255,111,94,0.4);
}

.btn-ghost {
  background: rgba(255,255,255,0.25);
  color: #2c2640;
  border: 1px solid rgba(44,38,64,0.25);
  font-weight: 700;
}

.btn-outline {
  background: transparent;
  color: var(--cold-sapphire);
  border: 1.5px solid var(--cold-sapphire);
}
.btn-outline:hover { background: rgba(52,87,213,0.08); }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* ---------- Sections / cards ---------- */

section.block { margin-bottom: 44px; }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow-soft);
}

.why-box {
  background: #f4ede0;
  border-left: 4px solid var(--gold-dark);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 0.96rem;
}
.why-box strong { color: var(--gold-dark); }

.practice-box {
  background: #eef6f1;
  border-left: 4px solid var(--emerald);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 18px 0 0;
  font-size: 0.96rem;
}
.practice-box strong { color: var(--emerald); }

.corel-box {
  background: #eef1f8;
  border-left: 4px solid var(--sapphire);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px;
  margin: 18px 0;
  font-size: 0.94rem;
}
.corel-box strong { color: var(--sapphire); }

/* ---------- Lessons ---------- */

.level-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.level-header .goal-pill {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--emerald-light);
  background: #e7f3ee;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 10px;
  font-weight: 600;
}

.lesson {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  margin-bottom: 22px;
  overflow: hidden;
  scroll-margin-top: 20px;
}

.lesson-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  background: var(--paper-dim);
  border-bottom: 1px solid var(--line);
}

.lesson-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  background: var(--white);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.lesson-check.checked {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--ink);
  border-color: var(--gold-dark);
}

.lesson-head h3 {
  margin: 0;
  font-size: 1.15rem;
  flex: 1;
}

.lesson-num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 0.95rem;
}

.lesson-body {
  padding: 22px 26px 26px;
}

.lesson-body ol, .lesson-body ul {
  padding-left: 1.3em;
}
.lesson-body li { margin-bottom: 0.5em; }

.lesson-body h4 {
  font-size: 1rem;
  margin-top: 1.2em;
}

/* ---------- Diagram: Procreate interface tour ---------- */

.interface-diagram {
  background: #16151a;
  border-radius: var(--radius-md);
  padding: 18px;
  color: #e8e4d4;
  margin: 20px 0;
  font-size: 0.85rem;
}

.diagram-canvas {
  border: 1px dashed #4a4658;
  border-radius: var(--radius-sm);
  min-height: 220px;
  position: relative;
  background:
    linear-gradient(135deg, #23212b 25%, transparent 25%) -10px 0/20px 20px,
    linear-gradient(225deg, #23212b 25%, transparent 25%) -10px 0/20px 20px,
    linear-gradient(315deg, #23212b 25%, transparent 25%) 0 0/20px 20px,
    linear-gradient(45deg, #23212b 25%, transparent 25%) 0 0/20px 20px,
    #1c1a22;
  margin: 30px 10px;
}

.dtag {
  position: absolute;
  background: var(--gold-light);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}
.dtag.top-left { top: -14px; left: -6px; }
.dtag.top-right { top: -14px; right: -6px; }
.dtag.top-mid { top: -14px; left: 50%; transform: translateX(-50%); }
.dtag.bottom-left { bottom: -14px; left: -6px; }
.dtag.right-mid { top: 50%; right: -6px; transform: translateY(-50%); }
.dtag.left-mid { top: 50%; left: -6px; transform: translateY(-50%); }
.dtag.bottom-mid { bottom: -14px; left: 50%; transform: translateX(-50%); }

.gesture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.gesture-card {
  background: var(--paper-dim);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.gesture-card .g-title {
  font-weight: 700;
  color: var(--sapphire);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.gesture-card .g-corel {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-top: 6px;
}

/* ---------- Quiz ---------- */

.quiz {
  background: linear-gradient(160deg, var(--cold-sapphire) 0%, var(--cold-lavender) 55%, var(--hot-ruby) 130%);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  color: #fffdf7;
  margin-top: 40px;
}
.quiz h2 { color: #fffdf5; }
.quiz-q { margin-bottom: 26px; }
.quiz-q p.q-text { font-weight: 700; margin-bottom: 10px; }
.quiz-opts { display: flex; flex-direction: column; gap: 8px; }
.quiz-opt {
  text-align: left;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fbf7ea;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.95rem;
}
.quiz-opt:hover { background: rgba(255,255,255,0.15); }
.quiz-opt.correct { background: var(--success); border-color: var(--success); }
.quiz-opt.incorrect { background: var(--danger); border-color: var(--danger); }
.quiz-opt:disabled { cursor: default; }
.quiz-feedback {
  font-size: 0.85rem;
  margin-top: 8px;
  min-height: 1.2em;
  color: var(--gold-light);
}
.quiz-result {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 1.3rem;
  display: none;
}
.quiz-result.show { display: block; }

/* ---------- Roadmap (skill tree) ---------- */

.roadmap-wrap {
  overflow-x: auto;
  padding: 10px 0 20px;
}
.roadmap {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 780px;
}
.road-node {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 0 10px;
}
.road-connector {
  position: absolute;
  top: 34px;
  left: -50%;
  width: 100%;
  height: 4px;
  background: var(--line);
  z-index: 0;
}
.road-node:first-child .road-connector { display: none; }
.road-connector.filled { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }

.road-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--line);
  background: var(--white);
  color: var(--text-soft);
}
.road-circle.active {
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 0 0 6px rgba(212,175,55,0.18);
}
.road-circle.complete {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}
.road-node h4 { font-size: 0.95rem; margin-bottom: 2px; }
.road-node p { font-size: 0.78rem; color: var(--text-soft); margin: 0; }

/* ---------- Dashboard ---------- */

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--emerald);
}
.stat-card .num.gold { color: var(--gold-dark); }
.stat-card .lbl { font-size: 0.82rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.04em; }

.dash-level {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 18px;
}
.dash-level-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 12px;
}
.dash-level-head h3 { margin: 0; font-size: 1.05rem; }
.dash-lessons { list-style: none; padding: 0; margin: 14px 0 0; }
.dash-lessons li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.9rem;
  border-bottom: 1px dashed var(--line);
}
.dash-lessons li:last-child { border-bottom: none; }
.dash-lessons .mini-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
}
.dash-lessons li.done .mini-dot { background: var(--success); border-color: var(--success); }
.dash-lessons li.done span.name { text-decoration: line-through; color: var(--text-soft); }

.celebration {
  display: none;
  text-align: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 30px;
  font-family: var(--font-display);
}
.celebration.show { display: block; }

/* ---------- Resources ---------- */

.cheat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.cheat-card h4 {
  color: var(--sapphire);
  border-bottom: 2px solid var(--paper-dim);
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.cheat-card table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.cheat-card td { padding: 5px 0; border-bottom: 1px solid var(--paper-dim); vertical-align: top; }
.cheat-card td:first-child { font-weight: 700; color: var(--gold-dark); width: 44%; }

.glossary dt { font-weight: 700; color: var(--sapphire); margin-top: 12px; }
.glossary dd { margin: 2px 0 0; color: var(--text-soft); }

.pace-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.pace-table th, .pace-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.pace-table th { background: var(--paper-dim); }

/* ---------- Footer nav (prev/next) ---------- */

.lesson-footer-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---------- Checklist (self-grade) ---------- */

.checklist { list-style: none; padding: 0; }
.checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}
.checklist input[type=checkbox] {
  width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold-dark);
}

/* ---------- Responsive ---------- */

@media (max-width: 880px) {
  .sidebar {
    position: fixed;
    left: 0; top: 0;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow-card);
  }
  .sidebar.open { transform: translateX(0); }
  .topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: linear-gradient(120deg, var(--cold-sapphire), var(--hot-ruby));
    color: #fffdf7;
    position: sticky;
    top: 0;
    z-index: 40;
  }
  .topbar .sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff6da;
    font-size: 1.2rem;
  }
  .topbar-title { font-family: var(--font-display); font-weight: 700; }
  .main { padding: 24px 18px 60px; max-width: 100%; }
  .hero { padding: 34px 22px; }
  .sidebar-backdrop {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 45;
  }
  .sidebar-backdrop.show { display: block; }
  .roadmap { min-width: 620px; }
}

@media (max-width: 480px) {
  .lesson-body { padding: 18px; }
  .lesson-head { padding: 14px 16px; }
  .card { padding: 18px; }
}

/* touch targets */
@media (pointer: coarse) {
  .lesson-check { width: 30px; height: 30px; }
  .quiz-opt, .btn, .side-link { min-height: 44px; }
  .checklist input[type=checkbox] { width: 24px; height: 24px; }
}

/* ============================================================
   Lesson Visuals — reusable inline-SVG / CSS diagram components
   ============================================================ */

.visual {
  background: linear-gradient(135deg, #fff9ec 0%, #fdf1ff 50%, #eef9ff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px 16px;
  margin: 18px 0;
}
.visual-cap {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 10px;
  font-weight: 600;
}
.visual svg { display: block; margin: 0 auto; max-width: 100%; }
.visual-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
}
.visual-item { text-align: center; }
.visual-item .vi-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-top: 6px;
}

/* gradient bars (metal/tone comparisons) */
.gbar-row { display: flex; flex-direction: column; gap: 10px; }
.gbar { display: flex; align-items: center; gap: 12px; }
.gbar .gbar-label { width: 120px; font-size: 0.82rem; font-weight: 700; color: var(--text); flex-shrink: 0; }
.gbar .gbar-strip { flex: 1; height: 28px; border-radius: 8px; border: 1px solid rgba(0,0,0,0.08); }

/* swatch grid (palettes) */
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(38px, 1fr)); gap: 6px; max-width: 420px; margin: 0 auto; }
.swatch { aspect-ratio: 1; border-radius: 6px; border: 1px solid rgba(0,0,0,0.1); }

/* icon chip row (settings / cuts / views gallery) */
.icon-chip-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.icon-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 10px 14px 8px;
  text-align: center;
  min-width: 90px;
}
.icon-chip .chip-label { font-size: 0.74rem; font-weight: 700; color: var(--text-soft); margin-top: 6px; }

/* hand icon for gesture cards */
.finger-icons { display: flex; gap: 3px; margin-bottom: 4px; }
.finger-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--cold-sapphire);
}

/* stopwatch / speed icon */
.stat-icon-circle {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 8px;
  background: linear-gradient(135deg, var(--cold-mint-light), var(--cold-sky));
  color: #fff;
}
