:root {
  --bg: #000000;
  --surface: #0a0a0a;
  --text: #ffffff;
  --gold: #c9a227;
  --gold-dim: #a68b20;
  --gray: #888;
  --border: rgba(255, 255, 255, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  min-height: 64px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 50;
}

.site-logo {
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-nav a {
  color: var(--text);
  font-size: 0.92rem;
  text-decoration: none;
}
.site-nav a:hover {
  color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover {
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--gold-dim);
}
.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-secondary:hover {
  background: rgba(201, 162, 39, 0.12);
}

.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.container-wide {
  max-width: 1000px;
}

h1 {
  font-size: 1.85rem;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 1.35rem;
  color: var(--gold);
  margin: 2rem 0 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.muted {
  color: var(--gray);
  font-size: 0.95rem;
}

.panel {
  display: none;
}
.panel.is-active {
  display: block;
}

/* Oval segmented control */
.seg-toggle {
  display: inline-flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: 0 0 2rem;
  gap: 2px;
}
.seg-toggle button {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--text);
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.seg-toggle button:hover:not(.is-active) {
  color: var(--gold);
}
.seg-toggle button.is-active {
  background: var(--gold);
  color: var(--bg);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 2.25rem 0;
}

/* Cards grid */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.campaign-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.35rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.campaign-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.campaign-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}
.badge-active {
  background: rgba(80, 200, 120, 0.2);
  color: #6dffc7;
}
.badge-upcoming {
  background: rgba(100, 160, 255, 0.15);
  color: #8ebfff;
}
.badge-completed {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray);
}

.progress-wrap {
  margin: 1rem 0;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.35rem;
}
.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.stack-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--border);
  border-radius: 14px;
  color: var(--gray);
}

.meta-robots {
  /* noindex in HTML meta */
}

footer.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  color: var(--gray);
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
}
