/* ==========================================================================
   Gymmit theme: dark, high-contrast, gradient-driven.
   ========================================================================== */

:root {
  --bg: #0a0c12;
  --bg-soft: #0f121b;
  --surface: #151a26;
  --surface-2: #1b2233;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #eef1fa;
  --text-muted: #8b93ab;

  --accent: #7c5cff;       /* violet */
  --accent-soft: #a78bfa;
  --accent-2: #22d3ee;     /* cyan */
  --accent-3: #ff7a45;     /* orange, calories/energy */
  --accent-4: #f472b6;     /* pink */
  --accent-5: #34d399;     /* green, success */
  --danger: #f43f5e;

  --grad-primary: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --grad-energy: linear-gradient(135deg, var(--accent-3) 0%, var(--accent-4) 100%);
  --grad-success: linear-gradient(135deg, var(--accent-5) 0%, var(--accent-2) 100%);

  --shadow-glow: 0 8px 30px rgba(124, 92, 255, 0.25);
  --radius: 14px;
  --radius-sm: 10px;
}

html {
  font-size: 15px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  background:
    radial-gradient(1100px 600px at 12% -10%, rgba(124, 92, 255, 0.16), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(34, 211, 238, 0.12), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin-bottom: 60px;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
}
a:hover {
  color: var(--accent-2);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.text-muted {
  color: var(--text-muted) !important;
}

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(10, 12, 18, 0.75) !important;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border) !important;
  box-shadow: none !important;
}

.navbar .navbar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar .navbar-brand svg {
  width: 24px;
  height: 24px;
  flex: none;
  color: var(--accent-2);
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-muted) !important;
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem !important;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.06);
}

.navbar-nav .nav-link.active {
  color: var(--text) !important;
  background: rgba(124, 92, 255, 0.16);
}

/* ---------- Buttons ---------- */
.btn {
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--grad-primary);
  border: none;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--grad-primary);
  filter: brightness(1.1);
  box-shadow: 0 10px 34px rgba(124, 92, 255, 0.4);
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: var(--accent-soft);
  border: 1px solid var(--border-strong);
  background: transparent;
}
.btn-outline-primary:hover {
  color: var(--text);
  background: rgba(124, 92, 255, 0.16);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-outline-secondary {
  color: var(--text-muted);
  border-color: var(--border-strong);
  background: transparent;
}
.btn-outline-secondary:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-strong);
}

.btn-outline-danger {
  color: var(--danger);
  border-color: rgba(244, 63, 94, 0.4);
  background: transparent;
}
.btn-outline-danger:hover {
  background: rgba(244, 63, 94, 0.15);
  border-color: var(--danger);
  color: #fff;
}

.btn-danger {
  background: var(--danger);
  border: none;
}

.btn-link {
  color: var(--text-muted);
}
.btn-link:hover {
  color: var(--text);
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus, .form-select:focus {
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.35) !important;
}

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.card.border-success {
  border-color: rgba(52, 211, 153, 0.4) !important;
}

.card-header {
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius-sm);
}
.form-control:focus, .form-select:focus {
  background: var(--bg-soft);
  color: var(--text);
  border-color: var(--accent);
}
.form-control::placeholder {
  color: var(--text-muted);
}
.form-control:disabled, .form-select:disabled {
  opacity: 0.5;
}
.form-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}
.form-text {
  color: var(--text-muted);
}
select.form-select option, select.form-control option {
  background: var(--surface);
  color: var(--text);
}

/* ---------- Tables ---------- */
.table {
  color: var(--text);
  border-color: var(--border);
  --bs-table-bg: transparent;
}
.table > :not(caption) > * > * {
  background: transparent;
  border-bottom-color: var(--border);
  color: var(--text);
}
.table-hover > tbody > tr:hover > * {
  background: rgba(124, 92, 255, 0.08);
}
.table thead th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border-strong);
}

/* ---------- Alerts ---------- */
.alert-success {
  background: rgba(52, 211, 153, 0.14);
  border: 1px solid rgba(52, 211, 153, 0.35);
  color: #a7f3d0;
  border-radius: var(--radius-sm);
}
.alert-warning {
  background: rgba(255, 122, 69, 0.14);
  border: 1px solid rgba(255, 122, 69, 0.35);
  color: #ffd1b8;
  border-radius: var(--radius-sm);
}

/* ---------- Badges ---------- */
.badge.bg-secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  font-weight: 600;
}

/* ---------- Footer ---------- */
footer.footer {
  color: var(--text-muted);
  border-top: 1px solid var(--border) !important;
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.5s ease both;
}

.stagger > * {
  animation: fadeInUp 0.5s ease both;
}
.stagger > *:nth-child(1) { animation-delay: 0.02s; }
.stagger > *:nth-child(2) { animation-delay: 0.06s; }
.stagger > *:nth-child(3) { animation-delay: 0.10s; }
.stagger > *:nth-child(4) { animation-delay: 0.14s; }
.stagger > *:nth-child(5) { animation-delay: 0.18s; }
.stagger > *:nth-child(6) { animation-delay: 0.22s; }
.stagger > *:nth-child(7) { animation-delay: 0.26s; }
.stagger > *:nth-child(8) { animation-delay: 0.30s; }
.stagger > *:nth-child(n+9) { animation-delay: 0.34s; }

@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -24px) scale(1.06); }
}

/* ==========================================================================
   Hero (Home)
   ========================================================================== */

.hero {
  position: relative;
  padding: 3.5rem 1.5rem;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-soft) 100%);
  margin-bottom: 2.5rem;
  text-align: center;
}

.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  animation: floatBlob 10s ease-in-out infinite;
}
.hero::before {
  width: 320px;
  height: 320px;
  background: var(--accent);
  top: -120px;
  left: -80px;
}
.hero::after {
  width: 280px;
  height: 280px;
  background: var(--accent-2);
  bottom: -120px;
  right: -60px;
  animation-delay: -4s;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.05rem;
  max-width: 40rem;
  margin: 0 auto;
}

/* ---------- Feature tiles ---------- */
.feature-card {
  text-align: center;
  height: 100%;
}
.feature-card .feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-primary);
  color: #fff;
}
.feature-card .feature-icon svg {
  width: 26px;
  height: 26px;
}

/* ==========================================================================
   Stat tiles
   ========================================================================== */

.stat-tile {
  text-align: center;
  height: 100%;
}
.stat-tile .stat-label {
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.stat-tile .stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  margin-top: 0.15rem;
}
.stat-tile .stat-value.energy {
  background: var(--grad-energy);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-tile .stat-value.primary {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ==========================================================================
   Exercise category icon badge
   ========================================================================== */

.cat-icon {
  --cat-color: var(--accent);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--cat-color) 18%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-color) 45%, transparent);
  color: var(--cat-color);
}
.cat-icon svg {
  width: 26px;
  height: 26px;
}
.cat-icon.lg {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}
.cat-icon.lg svg {
  width: 34px;
  height: 34px;
}
.cat-icon.sm {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.cat-icon.sm svg {
  width: 18px;
  height: 18px;
}

.cat-pill {
  --cat-color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  color: var(--cat-color);
  background: color-mix(in srgb, var(--cat-color) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--cat-color) 40%, transparent);
  white-space: nowrap;
}
.cat-pill svg {
  width: 12px;
  height: 12px;
}

/* Category color assignments */
.cat-chest       { --cat-color: #ff7a45; }
.cat-back        { --cat-color: #22d3ee; }
.cat-legs        { --cat-color: #7c5cff; }
.cat-shoulders   { --cat-color: #f472b6; }
.cat-arms        { --cat-color: #eab308; }
.cat-core        { --cat-color: #34d399; }
.cat-cardio      { --cat-color: #f43f5e; }
.cat-fullbody    { --cat-color: #c084fc; }
.cat-olympic     { --cat-color: #3b82f6; }
.cat-flexibility { --cat-color: #2dd4bf; }

/* ==========================================================================
   Exercise cards (catalog grid)
   ========================================================================== */

.exercise-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.exercise-card .card-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.exercise-card .exercise-head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.exercise-card .exercise-name {
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.exercise-card .exercise-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  flex: 1;
}
.exercise-card .exercise-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}
.met-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-3);
  background: rgba(255, 122, 69, 0.14);
  border: 1px solid rgba(255, 122, 69, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}

/* ==========================================================================
   Set badges (per-set breakdown pills)
   ========================================================================== */

.set-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.set-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.18rem 0.55rem 0.18rem 0.3rem;
  font-size: 0.78rem;
  color: var(--text);
  white-space: nowrap;
}
.set-badge .set-badge-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}
.set-badge .dim {
  color: var(--text-muted);
}

/* ==========================================================================
   Set logger (Records/Create)
   ========================================================================== */

.set-row {
  display: grid;
  grid-template-columns: 2rem repeat(3, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 0.6rem;
  animation: fadeInUp 0.3s ease both;
}
.set-row .set-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--grad-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}
.set-row .remove-set {
  color: var(--danger);
  background: transparent;
  border: 1px solid rgba(244, 63, 94, 0.35);
  border-radius: var(--radius-sm);
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.set-row .remove-set:hover {
  background: rgba(244, 63, 94, 0.15);
}
.set-row label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
  display: block;
}

.estimate-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 122, 69, 0.16), rgba(244, 114, 182, 0.12));
  border: 1px solid rgba(255, 122, 69, 0.3);
  margin-bottom: 1.25rem;
}
.estimate-banner .estimate-value {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-energy);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.exercise-picker-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.exercise-picker-option:hover {
  background: rgba(255, 255, 255, 0.05);
}
.exercise-picker-option.selected {
  background: rgba(124, 92, 255, 0.16);
  border-color: var(--accent);
}
.exercise-picker-option .exercise-picker-name {
  font-weight: 600;
  font-size: 0.92rem;
}
.exercise-picker-option .exercise-picker-meta {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.exercise-picker-list {
  max-height: 320px;
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
  background: var(--bg-soft);
}
.exercise-picker-group-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 0.4rem 0.6rem 0.2rem;
}

/* ==========================================================================
   Charts
   ========================================================================== */

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.bar-row {
  display: grid;
  grid-template-columns: minmax(90px, auto) 1fr auto;
  align-items: center;
  gap: 0.75rem;
}
.bar-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bar-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.bar-fill {
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: 999px;
  animation: growBar 1s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms) forwards;
}
@keyframes growBar {
  to { width: var(--target-width); }
}
.bar-value {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  min-width: 2.5rem;
  text-align: right;
}

.bar-fill.grad-a { background: var(--grad-primary); }
.bar-fill.grad-b { background: var(--grad-energy); }
.bar-fill.grad-c { background: var(--grad-success); }
.bar-fill.grad-d { background: linear-gradient(135deg, #f472b6, #7c5cff); }
.bar-fill.grad-e { background: linear-gradient(135deg, #eab308, #ff7a45); }
.bar-fill.grad-f { background: linear-gradient(135deg, #3b82f6, #22d3ee); }

.trend-chart {
  width: 100%;
  height: 220px;
  overflow: visible;
}
.trend-line {
  fill: none;
  stroke: var(--accent-2);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2400;
  stroke-dashoffset: 2400;
  animation: drawLine 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
.trend-area {
  opacity: 0;
  animation: fadeIn 1s ease 0.4s forwards;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
.trend-dot {
  fill: var(--bg-soft);
  stroke: var(--accent-2);
  stroke-width: 2;
  transition: r 0.15s ease;
}
.trend-dot:hover {
  r: 6;
  cursor: pointer;
}

.hist-chart {
  width: 100%;
  height: 220px;
  overflow: visible;
}
.hist-bar {
  fill: var(--accent-2);
  opacity: 0.85;
  transform-box: fill-box;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: growBarV 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--delay, 0ms) forwards;
  transition: opacity 0.15s ease;
}
.hist-bar:hover {
  opacity: 1;
  cursor: pointer;
}
.hist-bar.hist-bar-orange {
  fill: var(--accent-3);
}
@keyframes growBarV {
  to { transform: scaleY(1); }
}
.hist-baseline {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

/* ==========================================================================
   Plan a Day: muscle chips, goal cards, scheme banner
   ========================================================================== */

.muscle-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.muscle-chip {
  position: relative;
  display: inline-flex;
}
.muscle-chip input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}
.muscle-chip label {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.muscle-chip input:checked + label {
  background: var(--grad-primary);
  border-color: transparent;
  color: #fff;
}
.muscle-chip input:focus-visible + label {
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.35);
}

.goal-card {
  position: relative;
}
.goal-card input {
  position: absolute;
  opacity: 0;
}
.goal-card label {
  display: block;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  height: 100%;
}
.goal-card input:checked + label {
  border-color: var(--accent);
  background: rgba(124, 92, 255, 0.14);
  box-shadow: var(--shadow-glow);
}
.goal-card input:focus-visible + label {
  box-shadow: 0 0 0 3px rgba(124, 92, 255, 0.35);
}
.goal-card .goal-title {
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.goal-card .goal-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.scheme-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(124, 92, 255, 0.35);
  margin-bottom: 1.5rem;
}
.scheme-stat {
  text-align: center;
}
.scheme-stat .scheme-value {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.scheme-stat .scheme-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Utility
   ========================================================================== */

.glow-divider {
  height: 1px;
  border: none;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
  margin: 2rem 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.section-title svg {
  width: 20px;
  height: 20px;
  color: var(--accent-2);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--surface-2);
  border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--border-strong);
}
