/* ════════════════════════════════════════════════════════
   6 · NOTIFY ME
   ════════════════════════════════════════════════════════ */
.notify {
  display: flex;
  justify-content: center;
}
.notify-inner {
  background:
    linear-gradient(135deg, rgba(232,0,138,0.08) 0%, rgba(232,65,66,0.04) 100%),
    var(--card);
  border: 1px solid rgba(232,0,138,0.28);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  width: 100%;
  max-width: 580px;
}
.notify-title {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.notify-sub {
  font-size: 14px;
  color: var(--t2);
  margin-bottom: 22px;
  line-height: 1.5;
}
.notify-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.notify-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.notify-input::placeholder { color: var(--t3); }
.notify-input:focus {
  border-color: var(--mp);
  background: rgba(0,0,0,0.25);
}
[data-theme="day"] .notify-input {
  background: rgba(255,255,255,0.7);
  border-color: rgba(28,18,8,0.14);
}
[data-theme="day"] .notify-input:focus {
  background: rgba(255,255,255,0.9);
  border-color: var(--mp);
}
.notify-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.notify-btn {
  padding: 13px 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.10em;
  font-weight: 700;
  background: var(--mp);
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.notify-btn:hover {
  background: var(--mlight);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--gm);
}
.notify-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}
.notify-msg {
  margin-top: 14px;
  font-size: 13px;
  min-height: 18px;
  color: var(--t2);
}
.notify-msg.ok    { color: #4ade80; }
.notify-msg.err   { color: #f87171; }
[data-theme="day"] .notify-msg.ok { color: #15803d; }
[data-theme="day"] .notify-msg.err { color: #b91c1c; }

