@import './theme.css';

.landing-page {
  padding-top: 72px;
}

.nav-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-top-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.logo .brand-kick,
.docs-logo .brand-kick,
.shop-logo .brand-kick {
  color: var(--kick-green);
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px 56px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(83, 252, 24, 0.1) 0%, transparent 55%),
    var(--bg);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 820px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--kick-green);
}

.hero-lead {
  max-width: 640px;
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.btn-kick-lg {
  padding: 14px 32px;
  font-size: 1.05rem;
  border-radius: 999px;
  min-width: 200px;
}

.features-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 16px 24px 72px;
}

.features-heading {
  text-align: center;
  color: var(--kick-green);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 36px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(83, 252, 24, 0.35);
  box-shadow: 0 0 28px rgba(83, 252, 24, 0.07);
  transform: translateY(-2px);
}

.feature-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2px solid rgba(83, 252, 24, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--kick-green);
  background: rgba(83, 252, 24, 0.06);
  font-family: ui-monospace, monospace;
}

.feature-card h3 {
  color: var(--kick-green);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.landing-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 24px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.landing-footer a {
  color: var(--kick-green);
}

.alert-banner {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid var(--danger);
  color: var(--danger);
  padding: 12px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  max-width: 560px;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .nav-top {
    padding: 12px 16px;
  }

  .hero {
    padding: 48px 16px 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .btn-kick-lg {
    width: 100%;
    max-width: 320px;
  }
}
