/* Hero */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 48px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.accelerator-badge {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, #21a038 0%, #1b8a30 100%);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 999px;
  margin-bottom: 36px;
  box-shadow: 0 4px 20px rgba(33, 160, 56, 0.25);
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero h1 span {
  color: var(--yellow);
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 500px;
}

/* Sections */
.invest-section {
  padding: 100px 48px;
}

.invest-section:nth-child(even) {
  background: var(--light);
}

.section-title {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gray);
  margin-bottom: 48px;
}

.invest-section .section-title,
.invest-section .invest-card,
.invest-section .product-grid,
.invest-section .metrics-grid,
.invest-section .support-note,
.invest-section .support-subtitle,
.invest-section .support-grid,
.invest-section .crypto-list {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Cards */
.invest-card {
  padding: 36px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.invest-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.invest-card p:last-child {
  margin-bottom: 0;
}

.invest-card p strong {
  color: var(--black);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.product-card {
  padding: 36px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--yellow);
  background: rgba(245, 197, 24, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-card .arrow {
  display: inline-block;
  font-size: 14px;
  color: var(--black);
  font-weight: 500;
}

.product-card .arrow::after {
  content: " \2192";
  transition: margin-left 0.2s;
}

.product-card:hover .arrow::after {
  margin-left: 4px;
}

/* Achievements */
.accelerator-highlight {
  background: linear-gradient(135deg, #21a038 0%, #1b8a30 100%);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 20px 28px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.achievements-list {
  list-style: none;
}

.achievements-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.achievements-list li:last-child {
  border-bottom: none;
}

.achievement-name {
  font-weight: 500;
  color: var(--black);
}

.achievement-result {
  font-size: 13px;
  color: var(--gray);
}

/* Support */
.support-note {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  padding: 20px 24px;
  background: var(--light);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.support-subtitle {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 12px;
  margin-top: 28px;
}

.support-subtitle:first-child {
  margin-top: 0;
}

.support-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.support-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}

.support-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}

.support-btn-da {
  background-color: #f57b20;
}

.support-btn-planeta {
  background-color: #4a00a0;
}

.crypto-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.crypto-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--light);
  border-radius: 10px;
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.crypto-name {
  font-weight: 600;
  font-size: 14px;
  min-width: 120px;
}

.crypto-address {
  font-size: 12px;
  color: var(--gray);
  word-break: break-all;
  flex: 1;
  font-family: "SF Mono", "Fira Code", "Consolas", monospace;
}

.copy-btn {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.2s;
  font-family: inherit;
}

.copy-btn:hover {
  border-color: var(--yellow);
}

/* Privacy page */
.privacy-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 14px;
}

.privacy-card p strong {
  color: var(--black);
}

.privacy-card p:last-child {
  margin-bottom: 0;
}

/* Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.metric-card {
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.metric-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: -1px;
}

.metric-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}

/* Stage */
.stage-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 197, 24, 0.1);
  color: var(--yellow);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 24px;
}

/* Funding */
.funding-list {
  list-style: none;
}

.funding-list li {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.funding-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.funding-list li:first-child {
  padding-top: 0;
}

.funding-icon {
  font-size: 20px;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  padding-top: 2px;
}

.funding-list strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}

.funding-list p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 48px;
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .accelerator-badge {
    font-size: 10px;
    padding: 8px 16px;
  }

  .accelerator-highlight {
    font-size: 12px;
    padding: 14px 16px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .metric-value {
    font-size: 24px;
  }

  .metric-card {
    padding: 20px 16px;
  }

  .invest-section {
    padding: 64px 20px;
  }

  .invest-card {
    padding: 24px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    padding: 24px;
  }

  .product-card h3 {
    font-size: 20px;
  }

  .achievements-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .support-grid {
    flex-direction: column;
  }

  .crypto-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
