/* research.css */
:root {
  --site-bg:    #f8f9fa;
  --text-color: #333;
  --accent:     #66bb6a;
  --accent-hover: #57ac5b;
}

html, body {
  background: var(--site-bg);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
}

a {
  color: var(--accent);
}
a:hover {
  color: var(--accent-hover);
}

/* Vault-portal layout (cards, grids, navs) stays inherited from main.css */
/* But if you need research-specific tweaks: */
.vault-hero {
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}
.cta-button {
  background: var(--accent);
}
.cta-button:hover {
  background: var(--accent-hover);
}
