:root {
  --blue-dark: #2C3E6B;
  --blue-bg: #0a0a23;
  --blue-card: #1e1e46;
  --blue-header: #15153a;
  --blue-border: #4c4cff;
  --orange: #E67E22;
  --orange-hover: #f0983e;
  --red: #C0392B;
  --green: #7D8A2E;
  --purple-light: #aaccff;
  --text-primary: #e4e4ff;
  --text-secondary: #7a7ac0;
  --text-muted: #555;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --border: 1px solid var(--blue-border);
  --shadow: 0 2px 8px rgba(0,0,0,0.3);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--blue-bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}
h1, h2, h3, h4 { color: var(--purple-light); }
h1 { font-size: 2rem; border-bottom: 2px solid var(--blue-border); padding-bottom: var(--space-sm); margin-bottom: var(--space-lg); }
h2 { font-size: 1.5rem; margin: var(--space-lg) 0 var(--space-sm); border-left: 4px solid var(--blue-border); padding-left: var(--space-md); }
a { color: var(--orange); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 var(--space-lg); }
.card {
  background: var(--blue-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: var(--border);
  margin-bottom: var(--space-lg);
}
.btn {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  background: var(--orange);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { background: var(--orange-hover); text-decoration: none; }

/* Header */
.site-header {
  background: var(--blue-header);
  border-bottom: var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem var(--space-lg);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
  color: var(--purple-light);
  font-weight: bold;
}
.logo-icon { font-size: 1.8rem; }
.logo-text {
  font-size: 0.85rem;
  line-height: 1.2;
  color: var(--purple-light);
}
.main-nav { display: flex; gap: var(--space-lg); }
.main-nav a {
  color: var(--purple-light);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.main-nav a:hover { text-decoration: underline; }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  color: var(--purple-light);
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--blue-header);
    padding: var(--space-lg);
    border-bottom: var(--border);
  }
}

/* Footer */
.site-footer {
  text-align: center;
  padding: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: var(--border);
  margin-top: var(--space-2xl);
}
/* find-reps v0.2 styles */

/* ---- Find Reps v0.2 ---- */
.input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.input-group input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--blue-border);
  border-radius: 8px;
  background: var(--blue-card);
  color: var(--text-primary);
}
.reps-list {
  list-style: none;
  padding: 0;
}
.rep-card {
  background: var(--blue-card);
  border: var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}
.rep-name {
  font-size: 1.1rem;
  color: var(--purple-light);
  font-weight: bold;
}
.rep-details {
  color: var(--text-secondary);
  margin-top: 0.25rem;
}
.loading-text {
  color: var(--text-secondary);
  font-style: italic;
}
.error-text {
  color: var(--red);
}
