/* ════ TODAY CARD — Sprint A4 ════
   Big primary CTA at the very top of #sec-home.
   Replaces a wall of widgets with "one main action".
*/

.today-card-wrap {
  margin-bottom: 18px;
}

.today-card {
  padding: 22px 22px 20px;
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: 0 14px 36px rgba(108, 79, 246, 0.32), 0 4px 12px rgba(0, 0, 0, 0.10);
  position: relative;
  overflow: hidden;
  animation: todaySlide 0.45s var(--spring) both;
  text-align: start;
}

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

.today-card::after {
  /* decorative shimmer in top-right corner */
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  pointer-events: none;
}

.today-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  opacity: 0.85;
  text-transform: uppercase;
  margin-bottom: 10px;
  direction: rtl;
}

.today-title {
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 6px;
  direction: rtl;
}

.today-subtitle {
  font-size: clamp(14px, 3vw, 17px);
  font-weight: 600;
  opacity: 0.94;
  margin-bottom: 18px;
  direction: rtl;
  line-height: 1.35;
}

.today-progress {
  height: 9px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
}

.today-progress-fill {
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 6px;
  transition: width 0.7s var(--spring);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.today-cta {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-dark);
  border: none;
  border-radius: 100px;
  padding: 15px 28px;
  font-family: "Baloo 2", "Noto Sans Hebrew", "Sora", sans-serif;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
  min-height: 56px;
  width: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  transition: transform 0.18s var(--spring), box-shadow 0.18s ease;
}

.today-cta:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.today-cta:active {
  transform: scale(0.96);
}

/* Desktop — wider, bigger */
@media (min-width: 1024px) {
  .today-card {
    padding: 32px 32px 28px;
  }
  .today-title {
    font-size: 36px;
  }
  .today-subtitle {
    font-size: 19px;
  }
  .today-cta {
    font-size: 20px;
    min-height: 60px;
    width: auto;
    min-width: 240px;
    padding: 16px 40px;
  }
}
