.home-main {
  padding-top: 80px;
  min-height: 100vh;
}

.hero-section {
  display: flex;
  justify-content: center;
  padding: 5rem 1.5rem 3.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 640px;
  width: 100%;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--text);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.grad-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #67e8f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.claim-bar {
  display: flex;
  align-items: stretch;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.08);
}

.claim-prefix {
  display: flex;
  align-items: center;
  padding: 0 0.6rem 0 1.1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  border-right: 1px solid rgba(6, 182, 212, 0.12);
}

.claim-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0.85rem 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  font-weight: 500;
  min-width: 0;
}

.claim-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.claim-btn {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: #fff;
  border: none;
  padding: 0 1.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: box-shadow var(--transition);
  font-family: inherit;
  white-space: nowrap;
  flex-shrink: 0;
}

.claim-btn:hover {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.35);
}

.about-section {
  padding: 0 1.5rem 5rem;
}

.section-inner {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(13, 27, 46, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--cyan);
  margin-bottom: 0.9rem;
}

.about-text {
  color: var(--text-dim);
  font-size: 0.93rem;
  line-height: 1.75;
  white-space: pre-wrap;
  margin-bottom: 0;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.home-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: var(--radius);
}

.home-stat-value {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  font-family: 'Space Grotesk', sans-serif;
}

.home-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .hero-title { font-size: 1.9rem; }
  .hero-section { padding: 4rem 1rem 2.5rem; }
  .claim-bar { flex-direction: column; border-radius: var(--radius); }
  .claim-prefix { border-right: none; border-bottom: 1px solid rgba(6, 182, 212, 0.12); padding: 0.6rem 1rem; }
  .claim-btn { padding: 0.85rem; width: 100%; justify-content: center; display: flex; }
  .home-stats { grid-template-columns: 1fr; }
  .about-section { padding: 0 1rem 4rem; }
  .section-inner { padding: 1.5rem; }
}
