@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,700;0,9..40,900;1,9..40,400&family=JetBrains+Mono:wght@400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
::selection { background: rgba(52,211,153,0.3); }

:root {
  --bg: #070e1b;
  --text: #94a3b8;
  --text-light: #64748b;
  --text-dim: #475569;
  --text-dark: #334155;
  --heading: #f1f5f9;
  --surface: rgba(255,255,255,0.02);
  --border: rgba(255,255,255,0.06);
  --accent: #34d399;
  --accent2: #0891b2;
  --danger: #ef4444;
  --font: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

@keyframes pulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7,14,27,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 3s infinite;
}
.nav-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  color: var(--text-light);
}
.nav-links a:hover { color: var(--heading); }
.lang-switch {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-dim);
  transition: all 0.2s;
}
.lang-switch:hover { color: var(--heading); border-color: var(--accent); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(52,211,153,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(8,145,178,0.05) 0%, transparent 50%),
    var(--bg);
}
.hero-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--heading);
  max-width: 800px;
  margin-bottom: 24px;
}
.hero h1 .gradient {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  max-width: 560px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 40px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: var(--bg);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52,211,153,0.15);
}
.btn-secondary {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.2); }

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.stat {
  padding: 32px 24px;
  text-align: center;
}
.stat-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
}
.stat-label {
  font-size: 13px;
  color: var(--heading);
  font-weight: 600;
  margin-top: 4px;
}
.stat-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* SECTIONS */
.section {
  padding: 100px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.section-wide {
  padding: 80px 24px 100px;
  max-width: 900px;
  margin: 0 auto;
}
.section-pricing {
  padding: 80px 24px 100px;
  max-width: 1000px;
  margin: 0 auto;
}
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-tag.cyan { color: var(--accent2); }
.section-tag.green { color: var(--accent); }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 28px;
}
.section-title.small {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

/* PROBLEM CARDS */
.problem-grid { display: grid; gap: 20px; }
.problem-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.problem-number {
  font-size: 24px;
  font-weight: 900;
  color: var(--danger);
  min-width: 100px;
}
.problem-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* PRODUCT BOXES */
.product-box {
  padding: 32px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.product-box:last-child { margin-bottom: 0; }
.product-step {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.product-step.cyan { color: var(--accent2); }
.product-step.green { color: var(--accent); }
.product-box h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 6px;
}
.product-box p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 8px;
}
.module-item {
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.module-num {
  font-weight: 700;
  font-size: 11px;
  min-width: 18px;
}
.module-num.cyan { color: var(--accent2); }
.module-num.green { color: var(--accent); }

/* AUTHOR */
.author-card {
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(52,211,153,0.03), rgba(8,145,178,0.03));
  max-width: 700px;
  margin: 0 auto;
}
.author-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.author-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 4px;
}
.author-title {
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}
.author-bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

/* PRICE CARDS */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.price-card.highlight {
  background: linear-gradient(135deg, rgba(52,211,153,0.08), rgba(8,145,178,0.08));
  border: 2px solid rgba(52,211,153,0.4);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #0a1628;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 5px 18px;
  border-radius: 20px;
  text-transform: uppercase;
}
.price-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-light);
  text-transform: uppercase;
}
.price-card.highlight .price-tag { color: var(--accent); }
.price-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading);
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-usd {
  font-size: 44px;
  font-weight: 900;
  color: var(--heading);
  line-height: 1;
}
.price-currency { font-size: 14px; color: var(--text-light); }
.price-regular {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 8px;
}
.price-mxn {
  font-size: 13px;
  color: var(--text-light);
}
.price-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}
.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.price-feature.exclusive {
  color: var(--accent);
  font-weight: 600;
}
.price-feature svg { flex-shrink: 0; }
.price-btn {
  margin-top: 8px;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  width: 100%;
  background: rgba(255,255,255,0.08);
  color: var(--heading);
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52,211,153,0.15);
}
.price-card.highlight .price-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #0a1628;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}
.service-card {
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent2);
}
.service-tier {
  font-size: 20px;
  font-weight: 800;
  color: var(--heading);
}
.service-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}
.service-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

/* LEAD MAGNET */
.lead-section {
  padding: 80px 24px 100px;
  max-width: 600px;
  margin: 0 auto;
}
.lead-card {
  padding: 40px 32px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(52,211,153,0.06), rgba(8,145,178,0.06));
  border: 1px solid rgba(52,211,153,0.15);
}
.lead-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}
.lead-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}
.lead-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.6;
}
.lead-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.lead-input {
  flex: 1 1 240px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--heading);
  font-size: 15px;
  outline: none;
  font-family: var(--font);
}
.lead-input:focus { border-color: rgba(52,211,153,0.4); }
.lead-btn {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.lead-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52,211,153,0.15);
}
.lead-success {
  padding: 16px;
  border-radius: 10px;
  background: rgba(52,211,153,0.1);
  color: var(--accent);
  font-weight: 600;
  display: none;
}
.lead-success.show { display: block; }
.lead-form.hidden { display: none; }

/* FOOTER */
.footer {
  padding: 40px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-brand {
  font-size: 13px;
  color: var(--text-dark);
}
.footer-brand strong {
  font-weight: 700;
  color: var(--text-dim);
}
.footer-copy {
  font-size: 12px;
  color: var(--text-dark);
}

/* FLASH MESSAGES */
.flash-error {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(239,68,68,0.1);
  color: var(--danger);
  font-size: 14px;
  margin-bottom: 12px;
}
.flash-success {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(52,211,153,0.1);
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 12px;
}

/* AUTH FORMS */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  padding: 40px 32px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.auth-card h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 8px;
}
.auth-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.auth-field {
  margin-bottom: 16px;
}
.auth-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.auth-field input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--heading);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
}
.auth-field input:focus { border-color: rgba(52,211,153,0.4); }
.auth-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
}
.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(52,211,153,0.15);
}
.auth-error {
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(239,68,68,0.1);
  color: var(--danger);
  font-size: 14px;
  margin-bottom: 16px;
}
.auth-link {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-light);
}
.auth-link a { color: var(--accent); text-decoration: underline; }

/* DASHBOARD */
.dashboard {
  padding: 120px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.dashboard-greeting {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.dashboard h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 40px;
}
.track-card {
  padding: 28px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.track-card.locked {
  opacity: 0.5;
}
.module-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s;
}
.module-link:hover {
  background: rgba(255,255,255,0.04);
  color: var(--heading);
}

/* MODULE CONTENT */
.module-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.module-content h1 { font-size: 32px; font-weight: 800; color: var(--heading); margin-bottom: 12px; }
.module-body h1 { font-size: 28px; font-weight: 800; color: var(--heading); margin: 40px 0 12px; }
.module-body h2 { font-size: 22px; font-weight: 800; color: var(--heading); margin: 36px 0 12px; }
.module-body h3 { font-size: 17px; font-weight: 700; color: var(--heading); margin: 28px 0 8px; }
.module-body p, .module-body li { font-size: 15px; line-height: 1.8; color: var(--text); margin-bottom: 14px; }
.module-body ul, .module-body ol { padding-left: 20px; margin-bottom: 16px; }
.module-body li { margin-bottom: 6px; }
.module-body a { color: var(--accent); text-decoration: underline; }
.module-body strong { color: var(--heading); }
.module-body code {
  font-family: var(--mono);
  font-size: 13px;
  background: rgba(255,255,255,0.06);
  padding: 2px 6px;
  border-radius: 4px;
}
.module-body pre {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  overflow-x: auto;
  margin: 20px 0;
}
.module-body pre code {
  background: none;
  padding: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--heading);
}
.module-body hr { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.module-body blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(52,211,153,0.04);
  border-radius: 0 8px 8px 0;
}
.module-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.module-body th, .module-body td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
  color: var(--text);
}
.module-body th {
  background: rgba(255,255,255,0.04);
  color: var(--heading);
  font-weight: 700;
}
.module-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* CONFIG DOWNLOAD */
.config-download {
  margin-top: 48px;
  padding: 24px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(52,211,153,0.06), rgba(8,145,178,0.06));
  border: 1px solid rgba(52,211,153,0.2);
}
.config-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--heading);
  font-size: 15px;
}
.config-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.config-list code {
  font-family: var(--mono);
  font-size: 12px;
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 6px;
  color: var(--accent);
}
body.light-mode .config-list code {
  background: rgba(0,0,0,0.05);
}
.config-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(52,211,153,0.15);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s;
}
.config-btn:hover {
  background: rgba(52,211,153,0.25);
  color: var(--accent);
}

/* LIGHT MODE (module reader) */
body.light-mode {
  --bg: #f8f9fa;
  --text: #374151;
  --text-light: #6b7280;
  --text-dim: #9ca3af;
  --text-dark: #d1d5db;
  --heading: #111827;
  --surface: rgba(0,0,0,0.02);
  --border: rgba(0,0,0,0.08);
}
body.light-mode .nav {
  background: rgba(248,249,250,0.92);
  border-bottom-color: rgba(0,0,0,0.06);
}
body.light-mode .nav-name { color: #111827; }
body.light-mode .module-body code {
  background: rgba(0,0,0,0.05);
}
body.light-mode .module-body pre {
  background: #1e293b;
  border-color: #334155;
}
body.light-mode .module-body pre code {
  color: #e2e8f0;
}
body.light-mode .module-body blockquote {
  background: rgba(52,211,153,0.06);
}
body.light-mode .module-body th {
  background: rgba(0,0,0,0.04);
}
body.light-mode .footer {
  border-top-color: rgba(0,0,0,0.06);
}

/* THEME TOGGLE */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: rgba(7,14,27,0.9);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
body.light-mode .theme-toggle {
  background: rgba(255,255,255,0.9);
}
.theme-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(52,211,153,0.3);
}

/* MOBILE */
@media (max-width: 640px) {
  .nav { padding: 12px 16px; flex-wrap: wrap; gap: 8px; }
  .nav-links { gap: 12px; font-size: 12px; }
  .nav-name { font-size: 13px; letter-spacing: 0.5px; }
  .hero { padding: 100px 16px 60px; }
  .hero-sub { font-size: 16px; }
  .problem-card { flex-direction: column; gap: 8px; }
  .problem-number { min-width: auto; }
  .price-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .lead-card { padding: 28px 20px; }
  .footer { flex-direction: column; text-align: center; }
  .module-content { padding: 90px 16px 60px; }
  .module-content h1 { font-size: 24px; }
  .module-body h2 { font-size: 18px; }
  .module-body pre { padding: 14px; font-size: 12px; }
  .module-nav { flex-direction: column; gap: 12px; }
  .theme-toggle { bottom: 16px; right: 16px; width: 42px; height: 42px; font-size: 18px; }
  .dashboard { padding: 90px 16px 60px; }
  .dashboard h1 { font-size: 24px; }
  .track-card { padding: 20px; }
}
