/* ── DASHBOARD SECTION ── */
#dashboard-section {
  position: relative;
  z-index: 1;
}

/* ── DASH HERO (date + greeting) ── */
.dash-hero {
  background: var(--red);
  padding: 36px 20px 24px;
  text-align: center;
  position: relative;
}

.dash-date {
  font-size: clamp(13px, 3vw, 15px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.dash-greeting {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.dash-hero-wave {
  width: 100%;
  line-height: 0;
  margin-top: 20px;
}

.dash-hero-wave svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ── DASHBOARD CONTENT ── */
.dash-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

@media (min-width: 680px) {
  .dash-content { padding: 0 40px 80px; }
}

/* ── FOCUS RING ── */
.focus-ring-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 24px;
  background: var(--white);
  border-radius: 20px;
  box-shadow:
    0 10px 40px rgba(232, 53, 42, 0.1),
    0 0 60px rgba(232, 53, 42, 0.07);
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.focus-ring-wrapper {
  position: relative;
  width: 220px; height: 220px;
}

@media (min-width: 500px) {
  .focus-ring-wrapper { width: 260px; height: 260px; }
}

.focus-ring-svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 20px rgba(232, 53, 42, 0.22));
}

.focus-ring-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-align: center;
}

.focus-ring-count {
  font-size: 52px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}

.focus-ring-label {
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 4px;
}

.focus-ring-motive {
  font-size: 12px;
  font-weight: 600;
  color: var(--near-black);
  max-width: 120px;
  line-height: 1.3;
  text-align: center;
}

/* ── NUDGE BANNER ── */
.nudge-banner {
  background: linear-gradient(135deg, #FFF7ED, #FFFAF9);
  border: 1.5px solid var(--yellow);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--near-black);
  line-height: 1.5;
  animation: fadeInUp 0.4s ease-out;
}

.nudge-icon { font-size: 18px; flex-shrink: 0; }

/* ── START BUTTON (dashboard) ── */
.dash-start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 58px;
  background: linear-gradient(to right, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 6px 24px rgba(232, 53, 42, 0.4);
  transition: transform 0.15s, box-shadow 0.15s;
}

.dash-start-btn:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 32px rgba(232, 53, 42, 0.5);
}

/* ── TODAY SESSIONS ── */
.today-sessions {
  margin-top: 24px;
}

.today-sessions-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 12px;
}

.today-session-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.today-session-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}

.today-session-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.today-session-task {
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
}

.today-session-meta {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 4px;
}

.today-session-notes {
  font-size: 12px;
  color: var(--warm-gray);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
  display: none;
}

.today-session-card.expanded .today-session-notes {
  display: block;
}

.today-session-expand-icon {
  font-size: 12px;
  color: var(--warm-gray);
  transition: transform 0.2s;
}

.today-session-card.expanded .today-session-expand-icon {
  transform: rotate(180deg);
}

/* ── DASH SECTION TITLE ── */
.dash-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--near-black);
  margin: 28px 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-section-title span { flex: 1; }

.dash-view-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
