/* ========================================
   BASE STYLES
======================================== */
* { 
  box-sizing: border-box; 
}

html, body { 
  height: 100%; 
  margin: 0; 
  padding: 0; 
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--bg-a), var(--bg-b));
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1 { 
  margin: 0; 
  font-weight: 800; 
  font-size: 20px; 
  color: var(--text); 
}

.subtitle { 
  margin: 0; 
  color: var(--muted); 
  font-size: 13px; 
}

.label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.muted {
  color: var(--muted);
}