/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  padding: 40px 0 20px;
  align-items: center;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.7rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.3vw, 3.8rem);
  margin: 12px 0 12px;
}

.subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 520px;
}

.actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

/* BG Picker */
.bg-picker {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
}

/* Stat Grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

/* Quick Tiers */
.quick-tiers {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.tier-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Features Grid */
.features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

/* Section Head */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

/* Tiers */
.tiers {
  margin-top: 60px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Transparency */
.transparency {
  margin-top: 70px;
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

/* Ledger */
.ledger {
  margin-top: 70px;
  display: grid;
  gap: 12px;
}

.ledger-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  padding-bottom: 8px;
}

/* Wall */
.wall {
  margin-top: 70px;
}

.wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

/* FAQ */
.faq {
  margin-top: 70px;
}

/* Utility to ensure full width for tables in sections */
.ledger .section-head,
.wall .section-head,
.wall .pagination {
    width: 100%;
}

/* Channels */
.channels {
  margin-top: 80px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
