.notifications-showcase { padding: 110px 32px; }
.notifications-showcase .wrap {
  max-width: 1180px;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap-reverse;
}

.phone-wrap { flex: 1 1 380px; min-width: 300px; display: flex; justify-content: center; }

.phone {
  position: relative;
  width: 290px;
  height: 580px;
  background: var(--panel-dark);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .5);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--bg);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.phone-statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}
.phone-statusbar .battery { width: 16px; height: 9px; border: 1.5px solid #17171A; border-radius: 3px; display: inline-block; }

.phone-content { padding: 44px 16px 16px; }

.phone-content .today-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-faint);
  font-family: var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.notif-list { display: flex; flex-direction: column; gap: 12px; }

.notif-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  animation: fadeUp .5s ease both;
}

.notif-icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.notif-icon.yellow { background: #FFF4CE; color: var(--ink); }
.notif-icon.green { background: var(--green-bg); color: var(--green); }

.notif-title { font-size: 13.5px; font-weight: 800; color: var(--ink); }
.notif-desc { font-size: 12.5px; color: #6b6b70; line-height: 1.4; }
.notif-time { font-size: 11px; color: var(--text-faint-2); margin-top: 4px; }

.notifications-copy { flex: 1 1 400px; min-width: 300px; }
.notifications-copy h2 {
  font-size: clamp(30px, 4.2vw, 44px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin: 14px 0 0;
}
.notifications-copy > p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 18px 0 0;
}

.notif-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.notif-type-chip {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}
