/* ── extras.css ── */

/* ═══════════════════════════════════════
   CURSOR GLOW
═══════════════════════════════════════ */
#cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 106, 191, 0.09) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  margin-top: -210px;
  margin-left: -210px;
  will-change: transform;
}

/* ═══════════════════════════════════════
   STATUS BADGE
═══════════════════════════════════════ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27, 122, 74, 0.09);
  border: 1px solid rgba(27, 122, 74, 0.2);
  color: #1b7a4a;
  font-family: var(--font-ui);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 0.6s 0.05s ease both;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: #1b7a4a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27, 122, 74, 0.45); }
  50%       { box-shadow: 0 0 0 5px rgba(27, 122, 74, 0); }
}

/* ═══════════════════════════════════════
   SECONDARY EMAIL (NYU)
═══════════════════════════════════════ */
.copy-email-row--secondary {
  background: rgba(26, 106, 191, 0.06);
  border: 1px solid rgba(26, 106, 191, 0.15);
  margin-top: -1.2rem; /* pull it up to sit snug under the first */
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.copy-email-row--secondary span:first-child {
  color: var(--blue-deep);
}
.email-label {
  font-family: var(--font-ui);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: rgba(26, 106, 191, 0.12);
  padding: 0.18rem 0.5rem;
  border-radius: 10px;
}

/* ═══════════════════════════════════════
   NOW SECTION
═══════════════════════════════════════ */
#now {
  background: var(--cream);
  border-top: 1px solid var(--ink-12);
}

.now-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.now-sidebar {
  position: sticky;
  top: 120px;
}
.now-sidebar h2.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.now-sidebar p {
  font-size: 0.92rem;
  color: var(--ink-50);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.now-sidebar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-accent);
  border-bottom: 1.5px solid var(--blue-light);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.now-sidebar a:hover { border-color: var(--blue-accent); }

/* Cards grid — 2 columns */
.now-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.now-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.8rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.now-card:hover {
  box-shadow: 0 6px 24px rgba(12, 24, 36, 0.08);
  transform: translateY(-2px);
  border-color: var(--blue-light);
}

.now-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.now-icon { font-size: 1.1rem; line-height: 1; }

.now-tag {
  font-family: var(--font-ui);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.now-tag--blue   { background: rgba(26, 106, 191, 0.1);  color: var(--blue-accent); }
.now-tag--green  { background: rgba(27, 122, 74, 0.1);   color: #1b7a4a; }
.now-tag--purple { background: rgba(108, 54, 179, 0.1);  color: #6c36b3; }
.now-tag--orange { background: rgba(232, 83, 26, 0.1);   color: var(--fire); }

.now-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.now-card p {
  font-size: 0.84rem;
  color: var(--ink-50);
  line-height: 1.7;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 1024px) {
  .now-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .now-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .now-sidebar { position: static; }
  .now-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .now-cards { grid-template-columns: 1fr; }
}