@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --color-background-primary: #09090b;
  --color-background-secondary: #0b0b0b;
  --color-text-secondary: #d4d5d8;
  --color-text-muted: #a3a3a3;
  --color-text-accent: #bdd1f6;
  --hero-top-offset: 140px;
  --hero-bottom-offset: 80px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--color-background-primary);
  color: var(--color-text-secondary);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    62.83% 30.84% at 52% -13.16%,
    #444b58 9%,
    rgba(0, 0, 0, 0.56) 100%
  );
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(164, 207, 255, 0.08), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(120, 140, 180, 0.06), transparent 24%),
    linear-gradient(180deg, transparent 55%, rgba(9, 9, 11, 0.95) 100%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: float 12s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(100, 130, 180, 0.18);
}

.orb-2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  right: 8%;
  background: rgba(70, 90, 130, 0.12);
  animation-delay: -4s;
}

.orb-3 {
  width: 220px;
  height: 220px;
  bottom: 18%;
  left: 6%;
  background: rgba(189, 209, 246, 0.08);
  animation-delay: -8s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(18px);
  }
}

.layout {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.section-container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 1rem;
}

.nav-wrap {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding-inline: 1rem;
}

.nav-shell {
  width: 100%;
  max-width: 1120px;
  border-radius: 75px;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(164, 207, 255, 0.02),
    rgba(164, 207, 255, 0.01)
  );
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 75px;
  background: linear-gradient(to bottom, rgba(24, 27, 36, 0.14), rgba(18, 20, 24, 0.73));
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-logo span {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  margin-left: 2rem;
}

.nav-links a {
  font-size: 14px;
  color: #b0bbc7;
  opacity: 0.8;
  transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover {
  color: #fff;
  opacity: 1;
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-badge {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 13px;
  color: #b0bbc7;
  background: linear-gradient(to bottom, rgba(50, 58, 71, 0.5), rgba(26, 30, 38, 0.5));
  border: 1px solid rgba(82, 86, 92, 0.28);
}

main {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--hero-top-offset) 1rem var(--hero-bottom-offset);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.9rem 0.45rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(82, 86, 92, 0.35);
  background: linear-gradient(
    180deg,
    rgba(173, 206, 255, 0.04) 0%,
    rgba(173, 206, 255, 0.08) 100%
  );
  backdrop-filter: blur(8px);
  font-size: 13px;
  color: #b0bbc7;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7dd3a8;
  box-shadow: 0 0 12px rgba(125, 211, 168, 0.65);
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #a4afc2 -1.49%, #e7effc 19.18%, #bfd4fa 60.52%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.hero-subtitle {
  margin: 1.25rem auto 0;
  max-width: 640px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: #b0bbc7;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-shell {
  display: inline-flex;
  border-radius: 999px;
  padding: 1px;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.btn-shell-primary {
  background: linear-gradient(to bottom, #495568, #2a2f37);
}

.btn-shell-primary:hover {
  background: linear-gradient(to bottom, rgba(90, 102, 120, 1), rgba(71, 80, 93, 1));
}

.btn-shell-accent {
  background: linear-gradient(to bottom, #5a6a82, #3d4a5e);
}

.btn-shell-accent:hover {
  background: linear-gradient(to bottom, rgba(120, 145, 185, 0.95), rgba(80, 100, 130, 0.95));
}

.btn-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.72rem 1.5rem;
  font-size: 15px;
  font-weight: 500;
  color: #b0bbc7;
  background: linear-gradient(to bottom, #323a47, #1a1e26);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-shell:hover .btn-inner {
  background: linear-gradient(to bottom, rgba(53, 59, 67, 1), rgba(46, 50, 57, 1));
  color: #fff;
}

.btn-shell-accent .btn-inner {
  background: linear-gradient(to bottom, rgba(70, 88, 118, 0.35), rgba(26, 30, 38, 0.95));
}

.btn-shell-accent:hover .btn-inner {
  background: linear-gradient(to bottom, rgba(90, 115, 155, 0.45), rgba(35, 42, 55, 1));
}

.btn-inner svg {
  width: 16px;
  height: 16px;
  opacity: 0.85;
}

.content-section {
  padding: 0 1rem 5rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.info-card {
  position: relative;
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(82, 86, 92, 0.22);
  background: linear-gradient(
    180deg,
    rgba(24, 27, 36, 0.55) 0%,
    rgba(14, 16, 20, 0.85) 100%
  );
  backdrop-filter: blur(10px);
}

.info-card-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f9bb0;
  margin-bottom: 0.65rem;
}

.info-card-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}

.info-card-desc {
  margin-top: 0.5rem;
  font-size: 14px;
  line-height: 1.55;
  color: #b0bbc7;
}

.panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(82, 86, 92, 0.22);
  background: linear-gradient(
    180deg,
    rgba(24, 27, 36, 0.45) 0%,
    rgba(11, 12, 16, 0.9) 100%
  );
}

.panel-title {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.steps {
  display: grid;
  gap: 0.85rem;
}

.step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
  color: #bfd4fa;
  background: linear-gradient(to bottom, rgba(50, 58, 71, 0.8), rgba(26, 30, 38, 0.95));
  border: 1px solid rgba(82, 86, 92, 0.35);
}

.step-text {
  font-size: 14px;
  line-height: 1.6;
  color: #b0bbc7;
}

.vote-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}

.vote-option {
  padding: 1.25rem;
  border-radius: 20px;
  border: 1px solid rgba(82, 86, 92, 0.22);
  background: rgba(18, 20, 24, 0.65);
  text-align: left;
}

.vote-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.vote-option-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.vote-option-tag {
  font-size: 11px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: #bfd4fa;
  background: rgba(189, 209, 246, 0.08);
  border: 1px solid rgba(189, 209, 246, 0.15);
}

.vote-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.vote-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #6b84ad, #bfd4fa);
}

.vote-meta {
  margin-top: 0.55rem;
  font-size: 12px;
  color: #8f9bb0;
}

.trust-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  color: #8f9bb0;
  font-size: 13px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.footer {
  padding: 2rem 1rem 2.5rem;
  border-top: 1px solid rgba(82, 86, 92, 0.18);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.footer-brand {
  font-size: 1.1rem;
  line-height: 1.3;
}

.footer-copy {
  font-size: 14px;
  color: #b0bbc7;
  opacity: 0.6;
}

.rewards-hero {
  min-height: auto;
  padding-top: calc(var(--hero-top-offset) + 1rem);
  padding-bottom: 2rem;
}

.rewards-hero .hero-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
}

.rewards-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-badge {
    display: inline-flex;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .hero-badge {
    margin-bottom: 2rem;
  }
}
