/* ===== newsletters.css — extends index.css ===== */

/* ---- Extra tokens ---- */
:root {
  --primary-2: #5ea9ff;
  --accent:    #9b8cff;
  --card-radius: 16px;
  --shadow-1:  0 10px 30px rgba(0,0,0,.35);
}

html[data-theme="light"] {
  --shadow-1: 0 10px 26px rgba(0,0,0,.10);
}

/* ---- Nav always visible (no scroll-reveal on this page) ---- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/* ---- Main offset so content clears fixed header ---- */
main {
  padding-top: 110px;
}

/* ---- Blank / coming-soon centred layout ---- */
.blank-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}

.page-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 99px;
}