:root {
  --bg: #101218;
  --bg-alt: #181b23;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-border: rgba(217, 185, 137, 0.18);
  --text: #f3efe8;
  --muted: #a6a09a;
  --gold-light: #f8eac3;
  --gold: #d9b989;
  --gold-deep: #8a6f52;
  --silver: #b7bcc4;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, .brand-name {
  font-family: 'Playfair Display', serif;
}

/* Ambient glows */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}
.glow-1 {
  width: 520px; height: 520px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
}
.glow-2 {
  width: 480px; height: 480px;
  bottom: -200px; right: -140px;
  background: radial-gradient(circle, var(--gold-deep) 0%, transparent 70%);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6vw;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--panel-border);
}

.brand-name {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  background: linear-gradient(120deg, var(--silver), #f0f2f5, var(--silver));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-cta {
  color: var(--gold-light);
  text-decoration: none;
  border: 1px solid var(--panel-border);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  backdrop-filter: blur(6px);
}

.nav-cta:hover {
  border-color: var(--gold);
  background: rgba(217, 185, 137, 0.08);
  box-shadow: 0 0 24px rgba(217, 185, 137, 0.25);
}

.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(217, 185, 137, 0.08), transparent 55%),
    var(--bg);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4vh 6vw 14vh;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fade-up 1s ease both;
}

.hero-logo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 28px;
  box-shadow:
    0 0 0 1px var(--panel-border),
    0 0 60px rgba(217, 185, 137, 0.25);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--gold);
  margin: 0 0 18px;
}

.hero-content h1 {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.15;
  color: var(--text);
}

.hero-content h1 em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 0 36px;
}

.btn {
  display: inline-block;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold), var(--gold-light));
  color: #17140f;
  text-decoration: none;
  padding: 15px 38px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 30px rgba(217, 185, 137, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(217, 185, 137, 0.45);
}

main { position: relative; z-index: 2; padding: 0 6vw 8vh; }

.poll-section {
  display: flex;
  justify-content: center;
  margin-top: -8vh;
}

.poll-card {
  width: 100%;
  max-width: 640px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.poll-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.7rem;
  color: var(--gold);
  margin: 0 0 10px;
}

.poll-card h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.poll-status {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin: 0 0 24px;
  opacity: 0.85;
}

.poll-options { list-style: none; padding: 0; margin: 0; }

.poll-option { margin-bottom: 14px; }

.poll-option button {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 16px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.poll-option button:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgba(217, 185, 137, 0.06);
}

.poll-option button:disabled { cursor: default; }

.poll-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(217, 185, 137, 0.28), rgba(248, 234, 195, 0.14));
  z-index: 0;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.poll-label {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.poll-label span:last-child {
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}

.poll-total {
  color: var(--muted);
  margin: 26px 0 0;
  font-size: 0.9rem;
}

.about {
  max-width: 640px;
  margin: 14vh auto 0;
  text-align: center;
}

.about-divider {
  width: 60px;
  height: 1px;
  margin: 0 auto 32px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about h2 { margin-bottom: 14px; font-size: 1.6rem; }
.about p { color: var(--muted); }

footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px 24px 40px;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 14px;
  opacity: 0.9;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .poll-card { padding: 30px 24px; }
  .nav { padding: 22px 5vw; }
}
