/* ── Subscribe page specific ─────────────────────────────────────── */
.sub-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(240, 236, 228, 0.13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
}

.sub-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 236, 228, 0.28);
  border-radius: 50px;
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.sub-input::placeholder {
  color: rgba(240, 236, 228, 0.35);
}

.sub-input:focus {
  border-color: rgba(240, 236, 228, 0.7);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(240, 236, 228, 0.06);
}

.sub-btn {
  background: var(--clr-text);
  color: #0a0a0a;
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.sub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 236, 228, 0.2);
  background: #fff;
}

.sub-btn:active {
  transform: translateY(0);
}

/* Ripple on submit btn */
.sub-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sub-btn:hover::after {
  opacity: 1;
}

/* Day pills */
.day-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(240, 236, 228, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.day-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(240, 236, 228, 0.25);
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(240, 236, 228, 0.18), transparent);
}

/* Success state */
.success-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.success-overlay.visible {
  opacity: 1;
  pointer-events: all;
}

/* Floating glow accent */
.glow-accent {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: 0.12;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.12;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.18;
  }
}

/* Stagger animation for day pills */
.stagger-item {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.6s ease both;
}

.stagger-item:nth-child(1) {
  animation-delay: 0.1s;
}

.stagger-item:nth-child(2) {
  animation-delay: 0.18s;
}

.stagger-item:nth-child(3) {
  animation-delay: 0.26s;
}

.stagger-item:nth-child(4) {
  animation-delay: 0.34s;
}

.stagger-item:nth-child(5) {
  animation-delay: 0.42s;
}

.stagger-item:nth-child(6) {
  animation-delay: 0.50s;
}

.stagger-item:nth-child(7) {
  animation-delay: 0.58s;
}

.card-animate {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease 0.05s both;
}

/* Social proof avatars */
.avatar-stack {
  display: flex;
}

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(10, 10, 10, 0.8);
  margin-left: -8px;
  background: linear-gradient(135deg, rgba(240, 220, 180, 0.5), rgba(200, 180, 160, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.avatar:first-child {
  margin-left: 0;
}