/* ═══════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════ */
:root {
  --cream:    #f7f3ed;
  --paper:    #faf8f4;
  --warm:     #f0ebe1;
  --ink:      #1c1a17;
  --ink2:     #3d3a35;
  --ink3:     #6b6760;
  --ink4:     #a09c96;
  --border:   #e0d9cf;
  --border2:  #ccc4b8;

  --sage:     #7a9e7e;
  --sage-bg:  #eef4ef;
  --sage-mid: #b8d4bb;
  --rust:     #c4622d;
  --rust-bg:  #fdf0e8;
  --rust-mid: #e8a882;
  --sky:      #4a7fa5;
  --sky-bg:   #e8f2f9;
  --sky-mid:  #9cc4de;
  --lavender: #7b6fa8;
  --lav-bg:   #f0eef8;
  --lav-mid:  #c0b8e0;
  --gold:     #c49a2a;
  --gold-bg:  #fdf8e8;

  --shadow-sm: 0 1px 4px rgba(28,26,23,.07);
  --shadow-md: 0 4px 16px rgba(28,26,23,.10);
  --shadow-lg: 0 12px 40px rgba(28,26,23,.13);
  --r:    10px;
  --r-sm: 6px;
}

/* ═══════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 14px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Lora', serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Subtle paper texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

/* ═══════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════ */
.app { display: flex; min-height: 100vh; position: relative; z-index: 1; }

/* ── SIDEBAR ── */
.sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--paper);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 50;
  padding: 28px 0 20px;
}

.sidebar-logo {
  padding: 0 24px 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}
.logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-mark span { color: var(--sage); font-style: italic; }
.logo-sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--ink4);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.nav-section { padding: 0 12px; margin-bottom: 8px; }
.nav-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink4);
  padding: 0 12px;
  margin-bottom: 6px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--r-sm);
  color: var(--ink3);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  cursor: pointer;
  transition: all .2s;
  user-select: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.nav-item:hover { background: var(--warm); color: var(--ink); }
.nav-item.active { background: var(--sage-bg); color: var(--sage); }
.nav-item .nav-icon { font-size: 15px; width: 20px; text-align: center; }
.nav-badge {
  margin-left: auto;
  background: var(--rust);
  color: #fff;
  font-size: 9px;
  padding: 1px 6px;
  border-radius: 10px;
  font-family: 'DM Mono', monospace;
}

.sidebar-bottom {
  margin-top: auto;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.stress-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink4);
  margin-bottom: 8px;
}
.stress-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin-bottom: 6px;
  overflow: hidden;
}
.stress-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .6s ease, background .6s ease;
}
.stress-desc {
  font-size: 11px;
  color: var(--ink3);
  font-family: 'DM Mono', monospace;
}

/* ── MAIN ── */
.main { margin-left: 240px; flex: 1; min-height: 100vh; }

/* ── TOPBAR ── */
.topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,243,237,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}
.topbar-title em { font-style: italic; color: var(--sage); }
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.topbar-date {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink4);
}

/* ── PAGES ── */
.page { padding: 32px 36px; display: none; animation: fadeIn .3s ease; }
.page.active { display: block; }

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

/* ═══════════════════════════════════════════════════
   GRID HELPERS
═══════════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--r-sm);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--ink2); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: #6b8f6f; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink3); border: 1px solid var(--border2); }
.btn-ghost:hover { background: var(--warm); color: var(--ink); }
.btn-danger { background: transparent; color: var(--rust); border: 1px solid var(--rust-mid); }
.btn-danger:hover { background: var(--rust-bg); }
.btn-sm { padding: 6px 12px; font-size: 11px; }
.btn-icon {
  padding: 8px;
  border-radius: var(--r-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink3);
  cursor: pointer;
  font-size: 14px;
  transition: all .2s;
}
.btn-icon:hover { background: var(--warm); color: var(--ink); }

/* ═══════════════════════════════════════════════════
   CARD
═══════════════════════════════════════════════════ */
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 4px;
}
.card-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink4);
}

/* ═══════════════════════════════════════════════════
   BADGES & LABELS
═══════════════════════════════════════════════════ */
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}
.badge-sage { background: var(--sage-bg); color: var(--sage); }
.badge-rust { background: var(--rust-bg); color: var(--rust); }
.badge-sky  { background: var(--sky-bg);  color: var(--sky); }
.badge-lav  { background: var(--lav-bg);  color: var(--lavender); }
.badge-gold { background: var(--gold-bg); color: var(--gold); }
.badge-ink  { background: var(--warm);    color: var(--ink3); }

.prio { display: inline-block; width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.prio-high   { background: var(--rust); }
.prio-medium { background: var(--gold); }
.prio-low    { background: var(--sage); }

/* ═══════════════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════════════ */
.field { display: flex; flex-direction: column; gap: 6px; }
.label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink3);
}
.input, .select, .textarea {
  background: var(--cream);
  border: 1px solid var(--border2);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  font-family: 'Lora', serif;
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(122,158,126,.15);
}
.textarea { resize: vertical; min-height: 80px; }
.select { cursor: pointer; }

/* ═══════════════════════════════════════════════════
   MODAL
═══════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(28,26,23,.45);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--paper);
  border-radius: var(--r);
  padding: 32px;
  width: 500px;
  max-width: 90vw;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px);
  transition: transform .25s;
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
}
.modal-close {
  background: none; border: none;
  font-size: 20px; color: var(--ink4);
  cursor: pointer; padding: 2px 6px;
  border-radius: 4px; transition: all .2s;
}
.modal-close:hover { background: var(--warm); color: var(--ink); }
.modal-fields { display: flex; flex-direction: column; gap: 16px; }
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════ */
.toast-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  animation: toastIn .3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.success { background: var(--sage); }
.toast.warning { background: var(--rust); }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════
   EMPTY STATE
═══════════════════════════════════════════════════ */
.empty { text-align: center; padding: 60px 20px; }
.empty-icon { font-size: 48px; margin-bottom: 16px; opacity: .5; }
.empty-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--ink2);
  margin-bottom: 8px;
}
.empty-sub {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink4);
}

/* ═══════════════════════════════════════════════════
   SCROLLBAR
═══════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink4); }

/* ═══════════════════════════════════════════════════
   DASHBOARD PAGE
═══════════════════════════════════════════════════ */
.greeting { margin-bottom: 28px; }
.greeting-hello {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.greeting-hello em { font-style: italic; color: var(--sage); }
.greeting-sub {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink4);
  margin-top: 6px;
}

.stat-card { padding: 20px 22px; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink4);
}
.stat-trend {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  margin-top: 8px;
}

.upcoming-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: background .2s;
  cursor: pointer;
}
.upcoming-item:last-child { border-bottom: none; }
.upcoming-item:hover {
  background: var(--warm);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: var(--r-sm);
}
.upcoming-course-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.upcoming-info { flex: 1; min-width: 0; }
.upcoming-title { font-size: 13px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.upcoming-meta { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--ink4); margin-top: 2px; }
.upcoming-due { font-family: 'DM Mono', monospace; font-size: 11px; text-align: right; flex-shrink: 0; }

.wellness-card { background: var(--sage-bg); border-color: var(--sage-mid); }
.wellness-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.5;
  margin-bottom: 8px;
}
.wellness-author { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--ink4); }

.week-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; }
.week-day { text-align: center; }
.week-day-name { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.1em; color: var(--ink4); margin-bottom: 6px; }
.week-day-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink3);
}
.week-day-num.today { background: var(--sage); color: #fff; }
.week-day-num.has-tasks { border: 2px solid var(--rust); color: var(--ink); }
.week-dots { display: flex; gap: 2px; justify-content: center; flex-wrap: wrap; min-height: 8px; }
.week-dot { width: 5px; height: 5px; border-radius: 50%; }

/* ═══════════════════════════════════════════════════
   ASSIGNMENTS PAGE
═══════════════════════════════════════════════════ */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 400;
}
.page-title em { font-style: italic; color: var(--sage); }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; align-items: center; }
.filter-chip {
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink3);
  cursor: pointer;
  transition: all .2s;
  background: transparent;
}
.filter-chip:hover { background: var(--warm); }
.filter-chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.assignment-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}
.assignment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.assignment-card.completed { opacity: .6; }
.assignment-card.completed .assign-title { text-decoration: line-through; color: var(--ink4); }

.checkbox {
  width: 18px; height: 18px;
  border-radius: 4px;
  border: 2px solid var(--border2);
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.checkbox:hover { border-color: var(--sage); }
.checkbox.checked { background: var(--sage); border-color: var(--sage); }
.checkbox.checked::after { content: '✓'; color: #fff; font-size: 10px; font-weight: 700; }

.assign-body { flex: 1; min-width: 0; }
.assign-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.assign-title { font-size: 14px; color: var(--ink); }
.assign-desc { font-size: 12px; color: var(--ink3); margin-top: 4px; line-height: 1.5; }
.assign-footer { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.assign-due { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink4); }
.assign-due.overdue { color: var(--rust); }
.assign-due.soon    { color: var(--gold); }
.assign-actions { display: flex; gap: 6px; margin-left: auto; opacity: 0; transition: opacity .2s; }
.assignment-card:hover .assign-actions { opacity: 1; }

.assignments-list { display: flex; flex-direction: column; gap: 10px; }
.section-group { margin-bottom: 28px; }
.section-group-title {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-group-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.overdue-banner {
  background: var(--rust-bg);
  border: 1px solid var(--rust-mid);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--rust);
  margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════
   COURSES PAGE
═══════════════════════════════════════════════════ */
.course-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px;
  transition: all .2s;
  position: relative;
  overflow: hidden;
}
.course-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.course-color-bar { height: 3px; border-radius: 2px; margin-bottom: 16px; }
.course-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}
.course-code { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink4); margin-bottom: 14px; }
.course-stats { display: flex; gap: 16px; }
.course-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}
.course-stat-label { font-family: 'DM Mono', monospace; font-size: 10px; color: var(--ink4); }
.course-progress-track { height: 4px; background: var(--border); border-radius: 2px; margin-top: 14px; }
.course-progress-fill { height: 100%; border-radius: 2px; transition: width .5s ease; }
.course-actions { display: flex; gap: 6px; margin-top: 14px; opacity: 0; transition: opacity .2s; }
.course-card:hover .course-actions { opacity: 1; }

/* ═══════════════════════════════════════════════════
   POMODORO PAGE
═══════════════════════════════════════════════════ */
.pomodoro-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
.pomodoro-tabs {
  display: flex;
  gap: 4px;
  background: var(--warm);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 48px;
}
.pomo-tab {
  padding: 8px 22px;
  border-radius: 6px;
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  cursor: pointer;
  color: var(--ink3);
  background: none;
  transition: all .2s;
}
.pomo-tab.active {
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.pomo-timer-ring { margin-bottom: 36px; }
.ring-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.ring-wrap svg { transform: rotate(-90deg); }
.ring-center { position: absolute; text-align: center; }
.pomo-time {
  font-family: 'DM Mono', monospace;
  font-size: 52px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.pomo-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--ink4);
  margin-top: 6px;
  text-align: center;
}
.pomo-controls { display: flex; gap: 14px; margin-bottom: 40px; }
.pomo-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  background: var(--paper);
  font-size: 20px;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pomo-btn:hover { border-color: var(--sage); background: var(--sage-bg); transform: scale(1.05); }
.pomo-btn.main {
  width: 64px; height: 64px;
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
}
.pomo-btn.main:hover { background: #6b8f6f; transform: scale(1.08); box-shadow: var(--shadow-md); }

.pomo-sessions { display: flex; gap: 8px; margin-bottom: 32px; }
.pomo-session-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid var(--border2);
  transition: all .3s;
}
.pomo-session-dot.done { background: var(--sage); border-color: var(--sage); }

.pomo-task-box { width: 100%; max-width: 400px; }
.pomo-task-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink4);
  margin-bottom: 8px;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   WELLNESS PAGE
═══════════════════════════════════════════════════ */
.wellness-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }

.mood-options { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.mood-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 2px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--ink3);
}
.mood-btn:hover { border-color: var(--sage); background: var(--sage-bg); }
.mood-btn.selected { border-color: var(--sage); background: var(--sage-bg); color: var(--sage); }

.tip-card { background: var(--gold-bg); border-color: rgba(196,154,42,.3); }
.tips-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.tips-list li {
  font-size: 13px;
  color: var(--ink2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.tips-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 10px;
  top: 3px;
}

.quote-rotator {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.6;
  margin-bottom: 10px;
}
.quote-author { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink4); }

.streak-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
}
.streak-label { font-family: 'DM Mono', monospace; font-size: 11px; color: var(--ink4); }

.breath-circle {
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--sage-bg);
  border: 3px solid var(--sage-mid);
  margin: 0 auto 20px;
  transition: transform 4s ease, background 4s ease, border-color 4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--sage);
}
.breath-label {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: var(--ink3);
  height: 20px;
  margin-bottom: 20px;
}
