@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

:root {
  --black: #191a23;
  --white: #ffffff;
  --text: #111111;
  --text-muted: rgba(17, 17, 17, 0.62);
  --grass-primary: #abf600;
  --grass-primary-hover: #bcfb20;
  --grass-secondary: #f2fed1;
  --card-bg: #f8f8f8;
  --border: #191a23;
  --header-height: 72px;
  --container: 1140px;
  --radius-pill: 999px;
  --radius-card: 2.813rem;
  --shadow-offset: 4px 4px 0 0 rgb(25, 26, 35);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

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

button {
  font: inherit;
  border: 0;
  background: none;
  cursor: pointer;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-link img {
  height: 28px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.header-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grass-primary);
  box-shadow: 0 0 10px rgba(171, 246, 0, 0.65);
}

/* Hero */
.hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(171, 246, 0, 0.22), transparent 62%),
    var(--white);
}

.hero-inner {
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(25, 26, 35, 0.1);
  background: var(--grass-secondary);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.hero-title {
  margin: 0 auto 20px;
  max-width: 900px;
  font-family: "Bricolage Grotesque", "DM Sans", sans-serif;
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-title-accent {
  color: var(--black);
  background: linear-gradient(180deg, transparent 62%, rgba(171, 246, 0, 0.55) 62%);
}

.hero-subtitle {
  margin: 0 auto 32px;
  max-width: 680px;
  color: var(--text-muted);
  font-size: clamp(17px, 2.1vw, 21px);
  line-height: 1.65;
}

.hero-subtitle .token {
  color: var(--text);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 36px;
}

/* Grass official button */
.grass-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--black);
  background: var(--grass-primary);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.grass-btn:hover,
.grass-btn:focus-visible {
  background: var(--grass-primary-hover);
  box-shadow: var(--shadow-offset);
  transform: translate(-2px, -2px);
}

.grass-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

button.grass-btn.connect_wallet {
  cursor: pointer;
}

button.grass-btn.connect_wallet:focus-visible {
  outline: 2px solid var(--grass-primary);
  outline-offset: 3px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(25, 26, 35, 0.08);
  background: var(--card-bg);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--black);
}

/* Content */
.content-section {
  padding: 16px 0 72px;
  background: var(--white);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-cell {
  padding: 24px 20px;
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  background: var(--card-bg);
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.stat-cell:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-offset);
}

.stat-value {
  display: block;
  margin-bottom: 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text);
}

.stat-label {
  color: var(--text-muted);
  font-size: 13px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.feature-block {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  background: var(--card-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-block:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-offset);
}

.feature-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--grass-secondary);
  color: var(--black);
}

.feature-block h3 {
  margin: 0 0 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.feature-block p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.info-card {
  padding: 28px 24px;
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  background: var(--card-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  border-color: var(--black);
  box-shadow: var(--shadow-offset);
}

.info-card-label {
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-card-value {
  margin-bottom: 10px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 22px;
  font-weight: 600;
}

.info-card-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.panel {
  padding: 32px;
  border-radius: var(--radius-card);
  border: 1px solid transparent;
  background: var(--card-bg);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.panel:hover {
  border-color: rgba(25, 26, 35, 0.15);
}

.panel-title {
  margin: 0 0 20px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 28px;
  font-weight: 600;
}

.panel-copy {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.step {
  padding: 22px 20px;
  border-radius: 24px;
  border: 1px solid rgba(25, 26, 35, 0.08);
  background: var(--white);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 50%;
  border: 1px solid var(--black);
  background: var(--grass-primary);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
}

.step-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.vote-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.vote-option {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(25, 26, 35, 0.08);
  background: var(--white);
}

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

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

.vote-option-tag {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(25, 26, 35, 0.12);
  background: var(--grass-secondary);
  color: var(--text);
  font-size: 12px;
  font-weight: 600;
}

.vote-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(25, 26, 35, 0.08);
  overflow: hidden;
  margin-bottom: 8px;
}

.vote-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--grass-primary), var(--grass-primary-hover));
}

.vote-meta {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.rewards-panel {
  margin-bottom: 24px;
}

.rewards-hero-band {
  padding: 28px 0 8px;
  background: var(--black);
  color: var(--white);
}

.rewards-hero-band .hero-badge {
  background: rgba(171, 246, 0, 0.12);
  border-color: rgba(171, 246, 0, 0.25);
  color: var(--white);
}

.rewards-hero-band .hero-title {
  color: var(--white);
}

.rewards-hero-band .hero-title-accent {
  color: var(--grass-primary);
  background: none;
}

.rewards-hero-band .hero-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.rewards-hero-band .hero-subtitle .token {
  color: var(--grass-primary);
}

.rewards-hero-band .trust-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
}

.rewards-hero-band .trust-item svg {
  color: var(--grass-primary);
}

/* Footer */
.site-footer {
  margin-top: auto;
  padding: 40px 0 28px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  position: relative;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.footer-brand {
  margin: 0;
  font-size: 14px;
}

.footer-giant {
  position: absolute;
  left: 50%;
  bottom: -28%;
  transform: translateX(-50%);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(72px, 13vw, 160px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  color: rgba(171, 246, 0, 0.06);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .cards-grid,
  .steps,
  .feature-strip {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 44px;
  }

  .header-badge {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .grass-btn {
    width: 100%;
    max-width: 320px;
  }
}
