/* ============================================================
   MORE DAYS STUDIO — Shared Components
   Nav, footer, buttons, kickers, ghost numerals, pull quotes,
   vertical rules, red dot lists, CTA blocks
   ============================================================ */

/* ---- NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(19, 27, 46, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ---- NAV: Scrolled past hero (light mode) ---- */
.nav.scrolled-light {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--slate-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.nav.scrolled-light .wordmark { color: var(--dark-slate); }
.nav.scrolled-light .wordmark span { color: var(--slate-400); opacity: 1; }
.nav.scrolled-light .nav-links a { color: var(--slate-500); }
.nav.scrolled-light .nav-links a:hover { color: var(--dark-slate); }
.nav.scrolled-light .nav-links a.active { color: var(--dark-slate); }
.nav.scrolled-light .nav-dropdown-trigger { color: var(--slate-500); }
.nav.scrolled-light .nav-dropdown-trigger:hover,
.nav.scrolled-light .nav-dropdown-trigger.active,
.nav.scrolled-light .nav-dropdown.open .nav-dropdown-trigger { color: var(--dark-slate); }
.nav.scrolled-light .nav-login {
  color: var(--slate-500) !important;
  border-color: var(--slate-300);
}
.nav.scrolled-light .nav-login:hover {
  color: var(--dark-slate) !important;
  border-color: var(--slate-500);
}
.nav.scrolled-light .nav-hamburger { color: var(--dark-slate); }

.wordmark {
  font: 700 18px/1 var(--ff);
  color: var(--white);
  letter-spacing: -0.03em;
  text-decoration: none;
  flex-shrink: 0;
}
.wordmark span { font-weight: 300; opacity: 0.5; }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-links a {
  font: 400 12.5px/1 var(--ff);
  color: var(--slate-400);
  text-decoration: none;
  transition: color 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active {
  color: var(--white);
  font-weight: 500;
}

.nav-cta-btn {
  background: var(--brand-red);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 5px;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  transition: background 0.15s;
}
.nav-cta-btn:hover { background: var(--brand-red-hover); }

.nav-login {
  font-weight: 400 !important;
  color: var(--slate-400) !important;
  border: 1px solid var(--slate-600);
  padding: 7px 16px;
  border-radius: 5px;
  transition: all 0.15s;
}
.nav-login:hover {
  color: var(--white) !important;
  border-color: var(--slate-400);
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 4px;
}

/* ---- NAV DROPDOWN ---- */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  font: 400 12.5px/1 var(--ff);
  color: var(--slate-400);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.15s;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active,
.nav-dropdown.open .nav-dropdown-trigger { color: var(--white); }
.nav-dropdown-trigger svg { transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  min-width: 300px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s, transform 0.15s;
  transform: translateX(-50%) translateY(4px);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.1s;
}
.nav-dropdown-menu a:hover { background: var(--slate-50); }
.nav-dropdown-menu a.active { background: var(--slate-50); }
.nav-dropdown-menu a.active .dd-label { color: var(--brand-red); }

.dd-label {
  display: block;
  font: 500 13.5px/1.3 var(--ff);
  color: var(--dark-slate);
}
.dd-sub {
  display: block;
  font: 400 12px/1.3 var(--ff);
  color: var(--slate-500);
  margin-top: 2px;
}
.dd-divider {
  border: none;
  border-top: 1px solid var(--slate-200);
  margin: 6px 20px;
}

/* ---- MOBILE NAV OVERLAY ---- */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(19, 27, 46, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 80px 48px 48px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav-close {
  position: absolute;
  top: 16px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}
.mobile-nav-overlay a {
  display: block;
  font: 400 20px/1 var(--ff);
  color: var(--slate-300);
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.15s;
}
.mobile-nav-overlay a:hover { color: var(--white); }
.mobile-nav-overlay a.active {
  color: var(--white);
  font-weight: 500;
}
.mobile-nav-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav-cta a {
  justify-content: center;
  padding: 14px 0;
  border-bottom: none;
}

/* Mobile nav accordion group */
.mobile-nav-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav-group-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font: 400 20px/1 var(--ff);
  color: var(--slate-300);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  transition: color 0.15s;
}
.mobile-nav-group-trigger:hover { color: var(--white); }
.mobile-nav-chevron { transition: transform 0.2s; }
.mobile-nav-group.open .mobile-nav-chevron { transform: rotate(180deg); }

.mobile-nav-group-items {
  display: none;
  padding-left: 16px;
  padding-bottom: 8px;
}
.mobile-nav-group.open .mobile-nav-group-items { display: block; }
.mobile-nav-group-items a {
  font-size: 17px;
  padding: 12px 0;
  border-bottom: none;
}
.mobile-nav-group-items a:last-child { border-bottom: none; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red);
  color: var(--white);
  font: 500 15px/1 var(--ff);
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--brand-red-hover);
  box-shadow: 0 6px 20px rgba(220, 38, 38, 0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--slate-400);
  font: 400 15px/1 var(--ff);
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--slate-700);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--slate-500);
  color: var(--white);
}

/* Light-background ghost variant */
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--slate-600);
  font: 400 15px/1 var(--ff);
  padding: 14px 26px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--slate-300);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-ghost-light:hover {
  border-color: var(--slate-500);
  color: var(--dark-slate);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- REASSURANCE STRIP ---- */
.reassure {
  margin-top: 24px;
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.reassure span {
  font: 400 12px/1 var(--ff);
  color: var(--text-on-dark-secondary);
  letter-spacing: 0.01em;
}
.reassure span::before {
  content: '\2713\00a0';
  color: var(--green);
  font-weight: 600;
}

/* ---- GHOST NUMERALS ---- */
.ghost-num {
  font: 700 64px/1 var(--ff);
  color: var(--slate-100);
  letter-spacing: -0.04em;
  margin-bottom: -8px;
  user-select: none;
}
.ghost-num-lg {
  font: 800 72px/1 var(--ff);
  color: var(--slate-200);
  letter-spacing: -0.04em;
  user-select: none;
}

/* ---- RED DOT LISTS ---- */
.dot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.dot-list li {
  font: 400 15px/1.6 var(--ff);
  color: var(--slate-600);
  padding-left: 20px;
  position: relative;
}
.dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
}
.dot-list li strong {
  font-weight: 600;
  color: var(--dark-slate);
}

/* ---- PULL QUOTE ---- */
.pq {
  position: relative;
  padding: 48px 44px 40px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 32px rgba(0,0,0,0.04);
}
.pq::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 36px;
  font: 800 80px/1 Georgia, serif;
  color: var(--brand-red);
  opacity: 0.15;
}
.pq blockquote {
  font: 500 19px/1.55 var(--ff);
  color: var(--dark-slate);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  position: relative;
}
.pq cite {
  font: 400 13px/1 var(--ff);
  color: var(--text-label);
  font-style: normal;
  display: block;
}

/* Full-width pull quote variant (no card) */
.pq-full {
  position: relative;
  padding: 48px 0 48px 56px;
}
.pq-full::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 0;
  font: 800 120px/1 Georgia, serif;
  color: var(--brand-red);
  opacity: 0.12;
}
.pq-full blockquote {
  font: 600 22px/1.45 var(--ff);
  color: var(--dark-slate);
  letter-spacing: -0.015em;
  margin-bottom: 16px;
  max-width: 640px;
}
.pq-full cite {
  font: 400 14px/1 var(--ff);
  color: var(--text-label);
  font-style: normal;
  display: block;
}

/* ---- VERTICAL RULES ---- */
.vr {
  width: 1px;
  background: var(--slate-200);
  align-self: stretch;
}

/* ---- PROOF STRIP ---- */
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 40px 0;
}
.proof-cell {
  text-align: center;
  position: relative;
}
.proof-cell + .proof-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px; bottom: 8px;
  width: 1px;
  background: var(--slate-200);
}
.proof-val {
  font: 700 26px/1 var(--ff);
  color: var(--dark-slate);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.proof-lbl {
  font: 300 12px/1.3 var(--ff);
  color: var(--text-label);
}

/* ---- MID CTA BAND ---- */
.mid-cta {
  background: var(--dark-slate);
  border-radius: 12px;
  padding: 48px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.mid-cta h3 {
  font: 600 22px/1.25 var(--ff);
  color: var(--white);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.mid-cta p {
  font: 300 15px/1.6 var(--ff);
  color: var(--slate-400);
  max-width: 440px;
}

/* ---- REGULATORS ROW ---- */
.reg-row {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 0;
}
.reg-item {
  font: 500 14px/1 var(--ff);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  gap: 10px;
}
.reg-abbr {
  font: 700 11px/1 var(--ff);
  color: var(--dark-slate);
  background: var(--slate-100);
  padding: 8px 12px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

/* ---- FINAL CTA SECTION ---- */
.final-cta {
  text-align: center;
  padding-bottom: 128px;
}
.final-cta h2 {
  font: 700 34px/1.18 var(--ff);
  color: var(--dark-slate);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.final-cta > p {
  font: 300 17px/1.7 var(--ff);
  color: var(--slate-500);
  max-width: 520px;
  margin: 0 auto 36px;
}
.final-cta .reassure { justify-content: center; }
.final-cta .btn-primary {
  font-size: 16px;
  padding: 16px 32px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark-slate);
  color: var(--slate-400);
  padding: 72px 48px 40px;
}
.foot-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.foot-brand {
  font: 700 18px/1 var(--ff);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.foot-brand span { font-weight: 300; opacity: 0.5; }
.foot-tagline {
  font: 300 14px/1.6 var(--ff);
  color: var(--text-on-dark-secondary);
  max-width: 300px;
  margin-bottom: 24px;
}
.foot-regs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.foot-reg {
  font: 600 10px/1 var(--ff);
  color: var(--text-on-dark-muted);
  background: var(--slate-800);
  padding: 5px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.site-footer h3 {
  font: 600 11px/1 var(--ff);
  color: var(--slate-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a {
  display: block;
  font: 300 14px/1 var(--ff);
  color: var(--text-on-dark-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.15s;
}
.site-footer a:hover { color: var(--white); }

.foot-bottom {
  max-width: var(--max);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font: 300 12px/1 var(--ff);
  color: var(--text-on-dark-secondary);
}

/* ---- RESPONSIVE: NAV + FOOTER ---- */
@media (max-width: 1200px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 1024px) {
  .proof-strip { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .proof-cell + .proof-cell::before { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-nav-overlay { padding: 80px 28px 48px; }

  .mid-cta { padding: 36px 32px; }
  .final-cta h2 { font-size: 28px; }
  .foot-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 56px 28px 32px; }
}
