/* === RESEARCHERS PAGE — DARK POLYMARKET/CREATOR THEME === */
/* Extends markets.css dark palette — same CSS variables */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0B1220;
  --surface: #111827;
  --surface-2: #1a2436;
  --surface-3: #1f2d40;
  --border: rgba(255,255,255,0.07);
  --border-bright: rgba(255,255,255,0.12);
  --blue: #2563C7;
  --amber: #F0A202;
  --green: #3C8D5A;
  --red: #B84A3A;
  --text: #E8EDF3;
  --text-2: rgba(232,237,243,0.55);
  --text-3: rgba(232,237,243,0.3);
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --sans: 'Figtree', system-ui, sans-serif;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === NAV === */
.pm-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(11,18,32,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.nav-logo-mark { font-size: 18px; color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--surface-2);
  text-decoration: none;
}

.nav-links a.active { color: var(--amber); }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 16px !important;
  font-size: 13px !important;
}

.nav-cta:hover { background: #1d4ed8 !important; }

/* === HERO === */
.pm-hero {
  text-align: center;
  padding: 100px 48px 80px;
  max-width: 840px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hero-eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--text);
}

.hero-headline em { color: var(--blue); font-style: normal; }

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 48px;
}

/* Email capture */
.pm-email-group {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
  padding: 6px 6px 6px 16px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.pm-email-group:focus-within { border-color: var(--blue); }

.pm-email-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--sans);
  font-size: 14px;
  padding: 10px 0;
}

.pm-email-input::placeholder { color: var(--text-3); }

.pm-email-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
  font-family: var(--sans);
}

.pm-email-btn:hover { background: #1d4ed8; }

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.trust-chip {
  font-size: 11px;
  color: var(--text-3);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
}

/* === EXPLAINER === */
.pm-explainer {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.explainer-header {
  text-align: center;
  margin-bottom: 60px;
}

.explainer-header h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-top: 12px;
  margin-bottom: 16px;
}

.explainer-header p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
}

.pm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.pm-step {
  background: var(--bg);
  padding: 40px 36px;
  text-align: center;
  transition: background 0.2s;
}

.pm-step:hover { background: var(--surface); }

.step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.step-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: 0;
}

.step-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

/* === RESEARCHER VALUE === */
.pm-value {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.pm-value-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.value-left h2 {
  font-size: clamp(28px, 3vw, 44px);
  margin-top: 12px;
  margin-bottom: 16px;
}

.value-left p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
}

.value-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg);
  border: 1px solid var(--border-bright);
  border-radius: 10px;
}

.bullet-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1.4;
}

.bullet-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.bullet-text strong { color: var(--text); font-weight: 600; }

/* === CTA === */
.pm-cta {
  padding: 100px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pm-cta-inner { max-width: 560px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.pm-cta h2 {
  font-size: clamp(28px, 3.5vw, 48px);
  margin-top: 12px;
  margin-bottom: 16px;
}

.pm-cta > .pm-cta-inner > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* === FOOTER === */
.pm-footer {
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}

.pm-footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}

.footer-logo { color: var(--amber); font-size: 16px; }

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--text-2); text-decoration: none; }

.footer-disclaimer {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-3);
  max-width: 360px;
  text-align: right;
  line-height: 1.5;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .pm-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .pm-hero { padding: 80px 24px 60px; }
  .pm-explainer { padding: 60px 24px; }
  .pm-steps { grid-template-columns: 1fr; }
  .pm-value { padding: 60px 24px; }
  .pm-value-inner { grid-template-columns: 1fr; gap: 40px; }
  .pm-cta { padding: 60px 24px; }
  .pm-footer { padding: 32px 24px; }
  .footer-disclaimer { text-align: left; margin-left: 0; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: 40px; }
  .pm-email-group { flex-direction: column; padding: 12px; gap: 8px; }
  .pm-email-btn { width: 100%; }
}