/* today.css — Today view, task cards, progress/venn/pillar chips, focus mode, quick-add bar, smart break, schedule banner, day strip, filter bars */

.checkin {
  flex: 1;
  padding: 52px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: breatheIn 0.7s var(--ease-out);
  background: linear-gradient(180deg,rgba(250,248,244,0.98) 0%,rgba(248,245,240,0.98) 100%);
  position: absolute;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: radial-gradient(ellipse at 50% 30%,rgba(247,236,211,0.4) 0%,transparent 55%),radial-gradient(ellipse at 20% 70%,rgba(221,233,214,0.25) 0%,transparent 45%);
  overflow-y: auto;
  backdrop-filter: blur(12px);
}

.checkin-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-warm);
  letter-spacing: -0.3px;
}

.checkin-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.checkin-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.today-header {
  margin-bottom: 22px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.greeting-text {
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.3px;
  animation: breatheIn 0.35s var(--ease-out);
  line-height: 1.3;
  color: var(--text-warm);
  font-style: italic;
}

.greeting-text span,.greeting-leaf {
  font-weight: 400;
}

.greeting-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 5px;
  font-style: italic;
  letter-spacing: 0.01em;
}

.today-rhythm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0 6px;
}

.progress-circle-wrap {
  position: relative;
  width: 185px;
  height: 185px;
  z-index: 1;
}

.progress-circle {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  position: relative;
}

.progress-circle-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  z-index: 2;
}

.progress-circle-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-warm);
  font-style: italic;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 8px rgba(255,255,255,0.6);
}

.progress-circle-sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(255,255,255,0.5);
}

.pillar-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 12px 0 24px;
}

.pillar-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 13px 18px;
  background: rgba(255,254,250,0.9);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-whisper);
  min-width: 90px;
  backdrop-filter: blur(4px);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(80,60,30,0.04);
}

.pillar-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}

.pillar-chip-dot.mental {
  background: var(--green);
  box-shadow: 0 0 6px rgba(122,158,109,0.3);
}

.pillar-chip-dot.physical {
  background: var(--purple);
  box-shadow: 0 0 6px rgba(154,125,168,0.3);
}

.pillar-chip-dot.spiritual {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(196,162,101,0.3);
}

.pillar-chip-name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-warm);
  letter-spacing: 0.02em;
}

.pillar-chip-count {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.today-focus {
  background: linear-gradient(135deg,rgba(255,254,250,0.95) 0%,rgba(254,250,244,0.8) 100%);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 16px rgba(80,60,30,0.04),0 0 0 1px rgba(80,60,30,0.015);
  border: 1px solid rgba(221,233,214,0.25);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all 0.3s var(--ease);
}

.focus-text {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.plan-today-btn {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s var(--ease);
}

.pool-task-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

.pool-task-name {
  font-size: 14px;
  flex: 1;
  color: var(--text-warm);
  font-weight: 400;
}

.plan-task-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 55px;
  padding-top: 2px;
}

.plan-task-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-warm);
}

.task-time-chip {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  white-space: nowrap;
  flex-shrink: 0;
  background: var(--bg-inset);
  border-radius: var(--radius-full);
  padding: 5px 10px;
  letter-spacing: 0.02em;
}

.task-time-chip.done {
  opacity: 0.4;
}

.task-badges {
  display: flex;
  gap: 4px;
  margin-top: 3px;
}

.task-badge {
  font-size: 11px;
  line-height: 1;
}

.progress-venn {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.venn-circle:hover {
  opacity: 0.7;
  transform: scale(1.06);
  filter: blur(0.5px);
}

.venn-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 9px;
  font-weight: 700;
  color: var(--text-secondary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  line-height: 1.4;
  z-index: 1;
}

.today-filter-bar,.tasks-filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.today-filter-bar::-webkit-scrollbar,.tasks-filter-bar::-webkit-scrollbar {
  display: none;
}

.task-card.event-card {
  border-left: 3px solid var(--gold);
}

.task-card.shared-card {
  border-left: 3px solid var(--purple-light);
}

.today-tasks {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 72px;
}

.task-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,254,250,0.9);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  border: none;
  transition: transform 0.25s var(--ease),box-shadow 0.25s var(--ease),opacity 0.2s ease;
  box-shadow: 0 2px 10px rgba(80,60,30,0.035),0 0 0 1px rgba(80,60,30,0.015);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
  border-left: 3px solid transparent;
}

.task-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--green-light);
  opacity: 0.5;
  transition: opacity 0.25s ease;
}

.task-card:active {
  transform: scale(0.98);
}

.task-card.completing:active {
  transform: none;
}

.task-card.done {
  opacity: 0.55;
  transform: none;
  background: rgba(250,248,243,0.65);
  transition: opacity 0.3s ease,background 0.3s ease;
  border-left-color: var(--border) !important;
}

.task-card.done:hover {
  transform: none;
  box-shadow: var(--shadow-card);
}

.task-card.done .task-card-name {
  text-decoration: line-through;
  color: var(--text-muted);
}

.task-check-area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 48px;
  height: 48px;
  margin: -10px -4px -10px -8px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.task-check-area:active {
  background: rgba(122,158,109,0.12);
}

.task-check-area.pressing .task-check {
  transform: scale(0.88);
  opacity: 0.7;
  transition: transform 0.1s ease;
}

.task-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-bounce);
  cursor: pointer;
  background: transparent;
  border-width: 2px;
}

.task-check:hover {
  transform: scale(1.15);
  border-color: var(--green-light);
  box-shadow: 0 0 14px rgba(122,158,109,0.25),0 0 4px rgba(122,158,109,0.15);
}

.task-check.mental {
  border-color: rgba(122,158,109,0.5);
  background: var(--green-bg);
}

.task-check.physical {
  border-color: rgba(154,125,168,0.5);
  background: var(--purple-bg);
}

.task-check.spiritual {
  border-color: rgba(196,162,101,0.5);
  background: var(--gold-bg);
}

.task-card.done .task-check {
  background: linear-gradient(135deg,var(--green-light),var(--green));
  border-color: var(--green);
  box-shadow: 0 2px 12px rgba(122,158,109,0.35),0 0 6px rgba(122,158,109,0.15);
}

.task-card.done .task-check::after {
  content: "✓";
  color: white;
  font-size: 15px;
  font-weight: 800;
}

.task-card-info {
  flex: 1;
  min-width: 0;
}

.task-card-name {
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s var(--ease);
  color: var(--text-warm);
  letter-spacing: 0;
  line-height: 1.4;
}

.task-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
  flex-shrink: 0;
}

.task-card-dur {
  display: flex;
  align-items: center;
  gap: 3px;
}

.task-card:hover .task-drag {
  opacity: 0.6;
}

.task-card.mini-mode {
  border-left: 3px solid var(--gold-light);
  background: linear-gradient(145deg,var(--bg-card) 0%,rgba(247,236,211,0.25) 100%);
}

.task-card.mini-mode .task-card-name {
  font-style: italic;
}

.all-done-state {
  text-align: center;
  padding: 42px 28px;
  animation: fadeIn 0.5s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg,rgba(255,253,249,0.6) 0%,rgba(247,236,211,0.15) 50%,rgba(221,233,214,0.1) 100%);
  border-radius: var(--radius);
  margin: 8px 0;
  border: 1px solid rgba(80,60,30,0.03);
}

.all-done-state::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%,rgba(221,233,214,0.3) 0%,rgba(247,236,211,0.2) 40%,transparent 70%);
  animation: allDoneAura 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.all-done-icon {
  font-size: 40px;
  margin-bottom: 8px;
  animation: allDoneFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(196,162,101,0.2));
  position: relative;
  z-index: 1;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.all-done-state h3 {
  font-size: 22px;
  color: var(--text-warm);
  margin-bottom: 8px;
  font-weight: 700;
  font-family: var(--font-display);
  position: relative;
  z-index: 1;
  font-style: italic;
  margin-top: 12px;
  letter-spacing: -0.3px;
}

.all-done-state p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.shared-task-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-warm);
}

.cal-day.today {
  background: linear-gradient(135deg,var(--green),var(--green-dark));
  color: white;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(122,158,109,0.3);
  border-radius: 50%;
}

.cal-day.selected:not(.today) {
  background: var(--green-bg);
  border: 2px solid var(--green-border);
  font-weight: 600;
}

.cal-day:hover:not(.today) {
  background: var(--green-bg);
  transform: scale(1.1);
}

.cal-day.today:hover {
  box-shadow: 0 4px 16px rgba(107,143,94,0.45);
}

.minimum-task-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-warm);
}

.plan-today-btn:hover {
  background: var(--green-bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
}

.pm-task-item.done .pm-task-name {
  text-decoration: line-through;
}

.pm-task-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2.5px solid var(--green);
  background: var(--green-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.pm-task-check:hover {
  background: var(--green-pale);
}

.pm-task-check.checked {
  background: var(--green);
  border-color: var(--green);
}

.pm-task-check.checked::after {
  content: "✓";
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.pm-task-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-warm);
  margin-bottom: 2px;
}

.task-card[data-pillar="mental"]::before {
  background: var(--green);
}

.task-card[data-pillar="physical"]::before {
  background: var(--purple);
}

.task-card[data-pillar="spiritual"]::before {
  background: var(--gold);
}

.task-card:focus-within {
  box-shadow: var(--shadow-float),inset 0 0 0 1px rgba(122,158,109,0.1);
}

.task-card.done::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,transparent 0%,rgba(220,196,142,0.06) 30%,rgba(220,196,142,0.1) 50%,rgba(220,196,142,0.06) 70%,transparent 100%);
  pointer-events: none;
  border-radius: inherit;
  animation: doneShimmer 4s ease-in-out infinite;
}

.checkin::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg,rgba(247,236,211,0.4) 0%,rgba(247,236,211,0.15) 50%,transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.schedule-banner {
  background: linear-gradient(135deg,rgba(247,236,211,0.95),rgba(254,250,244,0.9));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin: 0 20px 12px;
  animation: slideDown 0.4s var(--ease-out);
  box-shadow: 0 4px 20px rgba(196,162,101,0.1);
}

.schedule-banner.hidden {
  display: none;
}

.schedule-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.schedule-banner-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.schedule-banner-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-warm);
  display: block;
  margin-bottom: 3px;
}

.schedule-banner-text p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.schedule-banner-actions {
  display: flex;
  gap: 10px;
}

.schedule-banner-actions .btn-sm {
  background: linear-gradient(135deg,var(--gold),var(--gold-light));
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(196,162,101,0.2);
}

.schedule-banner-actions .btn-sm:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196,162,101,0.3);
}

.schedule-banner-actions .btn-ghost {
  color: var(--text-muted);
  font-size: 13px;
}

.smart-break {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg,rgba(221,233,214,0.2),rgba(198,217,191,0.12));
  border: 1px solid rgba(164,196,149,0.25);
  border-radius: 14px;
  padding: 12px 16px;
  margin: 0 0 16px;
  animation: slideDown 0.3s ease;
}

.smart-break.hidden {
  display: none;
}

.smart-break-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.smart-break-info {
  flex: 1;
}

.smart-break-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.smart-break-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
  min-width: 0;
}

.smart-break-dismiss {
  background: rgba(255,255,255,0.5);
  border: none;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.checkin-greeting-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  font-style: italic;
  animation: breatheIn 0.7s var(--ease-out);
  letter-spacing: -0.3px;
}

.checkin-name-line {
  font-size: 14px;
  color: var(--green-dark);
  font-weight: 700;
  font-style: italic;
  margin-top: -12px;
  letter-spacing: 0.02em;
}

.checkin-energy-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.energy-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: rgba(255,253,249,0.9);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-soft);
  width: 100%;
  border-width: 1px;
}

.energy-card:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-float);
  border-color: var(--green-border);
}

.energy-card:active {
  transform: scale(0.98);
}

.energy-card.active {
  border-color: var(--green);
  background: linear-gradient(135deg,rgba(221,233,214,0.25) 0%,rgba(255,253,249,0.9) 100%);
  box-shadow: 0 2px 12px rgba(122,158,109,0.12);
}

.energy-card.active[data-value="low"] {
  border-color: var(--purple);
  background: var(--purple-bg);
  box-shadow: 0 4px 20px rgba(154,125,168,0.18);
}

.energy-card.active[data-value="high"] {
  border-color: var(--gold);
  background: var(--gold-bg);
  box-shadow: 0 4px 20px rgba(196,162,101,0.18);
}

.energy-card-emoji {
  font-size: 28px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.06));
  transition: transform 0.3s var(--ease-bounce);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.energy-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.energy-card-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-warm);
}

.energy-card-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.checkin-focus-input {
  width: 100%;
  max-width: 320px;
}

.checkin-skip-btn {
  font-size: 13px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all 0.25s var(--ease);
}

.checkin-skip-btn:hover {
  color: var(--text-secondary);
  background: rgba(80,60,30,0.04);
}

.checkin-skip-btn:active {
  transform: scale(0.96);
}

.today-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
  padding-left: 12px;
  padding-top: 2px;
}

.day-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: rgba(255,254,250,0.85);
  border-radius: var(--radius);
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(80,60,30,0.035);
  animation: floatUp 0.4s var(--ease-out) both;
  border: 1px solid rgba(221,233,214,0.2);
  backdrop-filter: blur(4px);
}

.day-strip-ring-wrap {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.day-ring-svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}

.day-ring-bg {
  stroke: var(--sand);
}

.day-ring-fill {
  stroke: var(--green);
  stroke-linecap: round;
  transition: stroke-dasharray 0.6s var(--ease-out);
}

.day-ring-count {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.day-strip-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.day-strip-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-warm);
}

.day-strip-focus {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.task-card.done .task-time-chip {
  opacity: 0.4;
}

.quick-add-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 4px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  padding: 8px 12px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-float);
  z-index: 40;
  transition: opacity 0.2s,transform 0.2s;
  max-width: 456px;
  border: 1px solid var(--border);
}

.quick-add-bar.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
  display: none;
}

.quick-add-bar:focus-within {
  background: var(--bg-elevated, var(--bg-card));
  box-shadow: 0-4px 32px rgba(0,0,0,0.13);
}

.quick-add-input {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  color: var(--text);
  outline: none;
  padding: 8px 4px;
  min-width: 0;
}

.quick-add-input::placeholder {
  color: var(--text-faint);
  font-style: italic;
}

.quick-add-pillar {
  border: none;
  background: none;
  border-radius: var(--radius-full);
  padding: 4px;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  transition: background 0.15s;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
}

.quick-add-pillar:hover {
  background: var(--green-bg);
}

.quick-add-submit {
  border: none;
  background: var(--green-light);
  color: #fff;
  border-radius: var(--radius-full);
  width: 34px;
  height: 34px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s,transform 0.1s;
  flex-shrink: 0;
}

.quick-add-submit:hover {
  background: var(--green);
  transform: scale(1.08);
}

.quick-add-submit:active {
  transform: scale(0.95);
}

.task-card.next-up {
  border-left: 3px solid var(--green-light);
  box-shadow: 0 2px 16px rgba(122,158,109,0.14),var(--shadow-card);
}

.next-up-label {
  position: absolute;
  top: -1px;
  left: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 2px 10px 3px;
  background: linear-gradient(135deg,var(--sage),var(--green-pale));
  border-radius: 0 0 8px 8px;
  line-height: 1;
  right: 12px;
  box-shadow: 0 2px 6px rgba(122,158,109,0.1);
}

.task-card.next-up .task-card-info {
  padding-top: 6px;
}

.task-card:first-child::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to left,rgba(122,158,109,0.15),transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm)0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.today-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.today-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,254,250,0.9);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(221,233,214,0.3);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 10px rgba(80,60,30,0.035);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.today-action-btn:hover {
  border-color: var(--green-border);
  background: rgba(221,233,214,0.25);
  color: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(122,158,109,0.08);
}

.today-action-btn:active {
  transform: scale(0.97);
}

.today-action-btn [data-lucide],.today-action-btn .lucide {
  width: 16px;
  height: 16px;
}

.focus-mode {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  animation: breatheIn 0.4s var(--ease-out);
  background-image: radial-gradient(ellipse at 50% 30%,rgba(221,233,214,0.4) 0%,transparent 55%),radial-gradient(ellipse at 30% 80%,rgba(247,236,211,0.3) 0%,transparent 50%);
}

.focus-mode.hidden {
  display: none;
}

.focus-mode-inner {
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.focus-mode-header {
  text-align: center;
  margin-bottom: 32px;
}

.focus-mode-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  animation: floatGentle 3s ease-in-out infinite;
}

.focus-mode-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-dark);
  font-style: italic;
}

.focus-mode-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

.focus-task-card {
  width: 100%;
  max-width: 360px;
  padding: 32px 28px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dream);
  text-align: center;
  animation: breatheIn 0.5s var(--ease-out);
}

.focus-task-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-warm);
  line-height: 1.3;
  margin-bottom: 12px;
}

.focus-task-duration {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

.task-card[data-pillar="mental"] {
  border-left-color: var(--green);
}

.task-card[data-pillar="physical"] {
  border-left-color: var(--purple);
}

.task-card[data-pillar="spiritual"] {
  border-left-color: var(--gold);
}

.smart-break-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 24px;
  animation: slideBreakIn 0.5s var(--ease-out) forwards;
  background: linear-gradient(135deg,var(--green-bg) 0%,var(--cream) 100%);
  border-bottom: 1px solid var(--green-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.smart-break-content {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: linear-gradient(135deg,var(--green-pale),var(--sage));
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-float);
  border: 1px solid var(--green-border);
  margin-bottom: 14px;
}

.smart-break-text strong {
  font-size: 16px;
  color: var(--text-warm);
  display: block;
  margin-bottom: 4px;
}

.smart-break-text p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

.smart-break-dismiss:hover {
  background: rgba(255,255,255,0.8);
  color: var(--text);
}

.task-duration-chip {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-faint);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: var(--bg-inset);
  white-space: nowrap;
  flex-shrink: 0;
}

.task-card.done .task-duration-chip {
  opacity: 0.4;
}

.task-badge.priority-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--danger);
  color: white;
  font-size: 9px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.task-card:not(.done)::before {
  opacity: 0.6;
}

.all-done-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  margin-top: 4px;
}

.cal-day.today.selected {
  background: linear-gradient(135deg,var(--green),var(--green-dark));
  border: 2px solid var(--gold);
}

.cal-day.today.has-event::after {
  background: white;
}

.progress-circle-wrap.balanced .venn-progress {
  filter: drop-shadow(0 0 12px rgba(196,162,101,0.2));
}

.progress-circle-wrap.balanced::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle,rgba(196,162,101,0.08) 0%,transparent 70%);
  animation: shimmerGlow 3s ease-in-out infinite;
  pointer-events: none;
}

.smart-break-actions {
  display: flex;
  gap: 10px;
}

.smart-break-actions .btn-sm {
  flex: 1;
}

.smart-break-actions .btn-ghost {
  flex: 1;
  text-align: center;
}

.five-min-mode {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  animation: breatheIn 0.5s var(--ease-out);
}

.five-min-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.five-min-header h2 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-warm);
}

.five-min-header .back-btn {
  position: absolute;
  top: 20px;
  right: 20px;
}

.five-min-sub {
  font-size: 15px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 32px;
}

.five-min-card {
  width: 100%;
  max-width: 340px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.five-min-task-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  width: 100%;
  box-shadow: var(--shadow-float);
  animation: cardFloat 0.4s var(--ease-out);
  text-align: center;
}

.five-min-pillar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 12px;
  display: inline-block;
  margin: 0 auto 16px;
}

.five-min-task-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.five-min-task-pillar {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: capitalize;
  margin-bottom: 12px;
}

.five-min-task-notes {
  font-size: 14px;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.5;
}

.five-min-empty {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
}

.five-min-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  margin-top: 28px;
}

.five-min-actions .btn-primary,.five-min-actions .btn-ghost {
  flex: 1;
}

.five-min-progress {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

.five-min-done {
  text-align: center;
  padding: 24px;
}

.five-min-done-emoji {
  font-size: 40px;
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.five-min-done h3 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 6px;
  font-weight: 700;
}

.five-min-done p {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.partner-celebration {
  position: fixed;
  bottom: 100px;
  left: 16px;
  right: 16px;
  z-index: 950;
  background: linear-gradient(135deg,#fef9ef 0%,#fff8e8 100%);
  border: 1px solid rgba(196,162,101,0.3);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(196,162,101,0.15);
  animation: slideUp 0.5s var(--ease-out);
}

.partner-celeb-heart {
  font-size: 32px;
  animation: heartPulse 1s ease-in-out infinite;
}

.partner-celeb-text {
  flex: 1;
}

.partner-celeb-text strong {
  font-size: 15px;
  color: var(--text-warm);
  display: block;
  margin-bottom: 3px;
}

.partner-celeb-text p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

.partner-celeb-dismiss {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  padding: 4px;
}

.checkin .mood-btn {
  font-size: 12px;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s var(--ease-bounce);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.checkin .mood-btn.active {
  border-color: var(--green);
  background: var(--green-pale);
  transform: scale(1.05);
  box-shadow: 0 0 14px rgba(122,158,109,0.2),0 2px 8px rgba(122,158,109,0.1);
  color: var(--green-dark);
  font-weight: 600;
}

.checkin .mood-btn:hover {
  transform: translateY(-1px);
  border-color: var(--green-light);
  color: var(--text);
}

.today-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  margin-bottom: 12px;
  -webkit-overflow-scrolling: touch;
}

.streak-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-dark);
  background: linear-gradient(135deg,rgba(247,236,211,0.7) 0%,rgba(196,162,101,0.15) 100%);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-left: 8px;
  vertical-align: middle;
  animation: streakPulse 2.5s ease-in-out infinite;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 8px rgba(196,162,101,0.12);
  border: 1px solid rgba(196,162,101,0.15);
}

.progress-circle.balanced-shimmer::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,transparent 0%,rgba(196,168,130,0.15) 25%,transparent 50%,rgba(196,168,130,0.15) 75%,transparent 100%);
  animation: shimmerRotate 6s linear infinite;
  pointer-events: none;
}

.progress-circle.all-complete::after {
  background: conic-gradient(from 0deg,transparent 0%,rgba(196,168,130,0.25) 25%,transparent 50%,rgba(196,168,130,0.25) 75%,transparent 100%);
}

.progress-circle-wrap.all-complete {
  filter: drop-shadow(0 0 16px rgba(196,162,101,0.35));
  animation: breathe 3s ease-in-out infinite,allCompleteGlow 2s ease-in-out infinite;
}

.ref-mood-row .mood-btn {
  font-size: 12px;
  width: 48px;
  height: 48px;
  font-weight: 500;
  padding: 8px 14px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s var(--ease-bounce);
  color: var(--text-secondary);
}

.minimum-task-meta {
  font-size: 11px;
  color: var(--text-faint);
  text-transform: capitalize;
}

.insight-day-dot.today .dot-bar {
  background: var(--green-dark);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(122,158,109,0.3);
}

.insight-day-dot.today .dot-label {
  color: var(--green-dark);
  font-weight: 700;
}

.insight-day-dot:hover .dot-count,.insight-day-dot.today .dot-count {
  opacity: 1;
}

#view-today {
  padding-top: 36px;
  padding-left: 24px;
  padding-right: 24px;
}

.pillar-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(80,60,30,0.06),0 0 0 1px rgba(80,60,30,0.03);
}

.today-focus::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%,rgba(221,233,214,0.15) 0%,rgba(247,236,211,0.08) 30%,transparent 60%);
  animation: focusGlow 8s ease-in-out infinite;
  pointer-events: none;
}

.today-tagline {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.6px;
  margin: -2px 0 24px;
  opacity: 0.7;
}

.task-card:hover::before {
  opacity: 0.8;
}

.task-check.checked.mental {
  background: var(--green);
  border-color: var(--green);
}

.task-check.checked.physical {
  background: var(--purple);
  border-color: var(--purple);
}

.task-check.checked.spiritual {
  background: var(--gold);
  border-color: var(--gold);
}

/* ═══ ENHANCED CHECK CIRCLES ═══ */

/* Larger circle */
.task-check {
  width: 28px;
  height: 28px;
  position: relative;
  overflow: hidden;
}

/* Hover hint checkmark */
.task-check::before {
  content: "✓";
  position: absolute;
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.task-check:hover::before,
.task-check-area:focus-within .task-check::before {
  opacity: 0.35;
}

/* Hide hint when checked (icon replaces it) */
.task-check.checked::before {
  display: none;
}

/* Check icon inside completed circle */
.task-check.checked svg,
.task-check.checked .lucide {
  color: white;
  width: 14px;
  height: 14px;
  animation: checkIconPop 0.35s var(--ease-bounce);
}

/* Checked fill animation */
.task-check.checked {
  animation: checkFill 0.4s var(--ease-bounce);
}

/* Remove the old ::after pseudo checkmark for done state */
.task-card.done .task-check::after {
  content: none;
}

/* Pulse animation on next-up task */
.task-card.next-up .task-check {
  animation: checkPulse 2s ease-in-out infinite;
}

/* Ripple effect on tap */
.task-check-area::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(122,158,109,0.25);
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

.task-check-area.pressing::after {
  animation: checkRipple 0.5s ease-out;
}

/* Swipe hint on right edge of task card */
.task-card:not(.done)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 24px;
  background: linear-gradient(to left, rgba(122,158,109,0.08), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.task-card:not(.done):hover::after {
  opacity: 1;
}

@keyframes checkPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,158,109,0.3); }
  50% { box-shadow: 0 0 0 6px rgba(122,158,109,0); }
}

@keyframes checkRipple {
  0% { transform: scale(0); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes checkFill {
  0% { transform: scale(0.7); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@keyframes checkIconPop {
  0% { transform: scale(0) rotate(-45deg); opacity: 0; }
  60% { transform: scale(1.2) rotate(0deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.today-focus:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(80,60,30,0.06);
  transition: all 0.3s var(--ease);
}

.venn-progress {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.venn-progress .venn-circle {
  position: absolute;
  width: 98px;
  height: 98px;
  border-radius: 50%;
  opacity: 0.55;
  transition: all 0.8s var(--ease-out);
  filter: blur(0.5px);
  mix-blend-mode: multiply;
}

.venn-progress .venn-circle.mental {
  animation: vennFloat 5s ease-in-out infinite;
  background: radial-gradient(circle at 40% 40%,rgba(122,158,109,0.9) 0%,rgba(164,196,149,0.7) 40%,rgba(220,239,212,0.4) 70%,transparent 100%);
  top: 2px;
  left: 50%;
  transform-origin: center bottom;
  margin-left: -47px;
}

.venn-progress .venn-circle.physical {
  animation: vennFloat 5s ease-in-out infinite 1.7s;
  background: radial-gradient(circle at 60% 40%,rgba(154,125,168,0.9) 0%,rgba(196,168,210,0.7) 40%,rgba(238,227,244,0.4) 70%,transparent 100%);
  bottom: 5px;
  left: 12px;
  transform-origin: right top;
}

.venn-progress .venn-circle.spiritual {
  animation: vennFloat 5s ease-in-out infinite 3.3s;
  background: radial-gradient(circle at 40% 40%,rgba(196,162,101,0.9) 0%,rgba(220,196,142,0.7) 40%,rgba(247,236,211,0.4) 70%,transparent 100%);
  bottom: 5px;
  right: 12px;
  transform-origin: left top;
}

.venn-progress .venn-circle.complete {
  filter: blur(0.5px);
  box-shadow: 0 0 20px currentColor;
}

.venn-progress .venn-circle.complete.mental {
  box-shadow: 0 0 24px rgba(122,158,109,0.35);
}

.venn-progress .venn-circle.complete.physical {
  box-shadow: 0 0 24px rgba(154,125,168,0.35);
}

.venn-progress .venn-circle.complete.spiritual {
  box-shadow: 0 0 24px rgba(196,162,101,0.35);
}

.venn-progress.balanced-shimmer .venn-circle {
  filter: blur(0.5px);
  animation: vennPulse 3s ease-in-out infinite;
}

.venn-progress.all-complete .venn-circle {
  filter: blur(0.5px) brightness(1.1);
  animation: vennCelebrate 2s ease-in-out infinite;
}

.progress-circle,.progress-track,.progress-segment,.progress-arc {
  display: none;
}

.task-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: linear-gradient(135deg,rgba(221,233,214,0.12) 0%,rgba(247,236,211,0.08) 50%,rgba(238,227,244,0.06) 100%);
  pointer-events: none;
}

.task-card:hover::after {
  opacity: 1;
}

.next-up-badge {
  position: relative;
  overflow: hidden;
}

.next-up-badge::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg,transparent 40%,rgba(255,255,255,0.3) 50%,transparent 60%);
  animation: badgeShimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.pillar-chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,transparent 0%,rgba(247,236,211,0.25) 40%,rgba(255,253,249,0.3) 50%,rgba(247,236,211,0.25) 60%,transparent 100%);
  animation: chipShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

.greeting-leaf {
  display: inline-block;
  animation: leafFloat 4s ease-in-out infinite;
}

.checkin .mood-btn:active {
  transform: scale(0.92);
}

.energy-card.active .energy-card-emoji {
  transform: scale(1.15);
}

.task-time-group {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-faint);
  padding: 20px 4px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.task-time-group::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right,rgba(200,185,160,0.2),transparent);
}

.task-time-group:first-child {
  padding-top: 6px;
}

.all-done-state .all-done-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 6px;
  line-height: 1.6;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.task-card.overdue::before {
  background: var(--rose) !important;
  opacity: 0.7;
}

.task-card.overdue {
  border: 1px solid rgba(212,134,142,0.15);
}

.form-group label,.checkin-label,.rhythm-label,.focus-label,.pool-title {
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 11px;
  color: var(--text-muted);
}

.task-card:hover {
  box-shadow: 0 2px 8px rgba(80,60,30,0.06),0 0 0 1px rgba(80,60,30,0.03);
}

.today-tasks .task-card+.task-card {
  border-top: none;
}

.task-card-time,.task-card-duration {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.energy-card-emoji [data-lucide],.energy-card-emoji svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}

.energy-card.active[data-value="low"] .energy-card-emoji {
  color: var(--purple);
}

.energy-card.active[data-value="medium"] .energy-card-emoji {
  color: var(--green);
}

.energy-card.active[data-value="high"] .energy-card-emoji {
  color: var(--gold);
}

.smart-break-icon [data-lucide],.smart-break-icon svg {
  width: 20px;
  height: 20px;
}

.schedule-banner-icon [data-lucide],.schedule-banner-icon svg {
  width: 20px;
  height: 20px;
}

.partner-celeb-heart [data-lucide],.partner-celeb-heart svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.focus-mode-icon [data-lucide],.focus-mode-icon svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
}

.greeting-leaf [data-lucide],.greeting-leaf svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  vertical-align: -3px;
}

.all-done-icon [data-lucide],.all-done-icon svg {
  width: 40px;
  height: 40px;
}

.five-min-done-emoji [data-lucide],.five-min-done-emoji svg {
  width: 28px;
  height: 28px;
}

@media (hover:hover) {
  .task-card:hover {
    box-shadow: 0 6px 24px rgba(80,60,30,0.06),0 2px 8px rgba(80,60,30,0.03);
    background: rgba(255,253,249,0.98);
  }

  .task-card:hover .task-card::before {
    opacity: 1;
  }
}

@media (prefers-reduced-motion:reduce) {
  .greeting-text span {
    -webkit-text-fill-color: var(--green-dark);
    animation: none;
  }

  .dashboard-progress::before,.today-focus::after,.nav-add::after,.all-done-state::before,.focus-heart {
    animation: none !important;
  }

  .venn-progress .venn-circle,.progress-circle-wrap.breathing,.dashboard-progress::before {
    animation: none !important;
  }
}

@media (max-width:380px) {
  .progress-venn {
    width: 100px;
    height: 100px;
  }

  .venn-circle {
    width: 56px;
    height: 56px;
  }

  .venn-center-text {
    font-size: 8px;
  }

  .greeting-text {
    font-size: 20px;
  }

  .task-card {
    padding: 14px 14px;
    gap: 12px;
  }

  .smart-break {
    padding: 10px 12px;
    gap: 10px;
  }
}
