@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.index-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Outfit", system-ui, sans-serif;
  color: #e8f5ee;
  background:
    radial-gradient(ellipse 100% 70% at 50% -10%, rgba(0, 255, 136, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(0, 177, 79, 0.15), transparent),
    radial-gradient(ellipse 40% 50% at 100% 20%, rgba(0, 255, 136, 0.08), transparent),
    linear-gradient(165deg, #0b6b3a 0%, #0d2818 40%, #060a09 100%);
  overflow-x: hidden;
}

.index-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px 20px 40px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.index-hero {
  text-align: center;
  padding: 20px 0 28px;
  animation: indexFadeIn 0.7s ease-out;
}

@keyframes indexFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.index-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  border-radius: 24px;
  background: rgba(0, 255, 136, 0.12);
  border: 2px solid rgba(0, 255, 136, 0.45);
  box-shadow: 0 0 32px rgba(0, 255, 136, 0.25);
  font-size: 2.5rem;
}

.index-title {
  margin: 0;
  font-size: clamp(2.4rem, 8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.1;
}

.index-title span {
  color: #00ff88;
}

.index-tagline {
  margin: 12px auto 0;
  max-width: 300px;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.index-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.index-pill {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: #00ff88;
}

.index-card {
  background: rgba(10, 18, 14, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.22);
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: indexFadeIn 0.8s ease-out 0.1s both;
}

.index-features {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.index-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, background 0.2s;
}

.index-feature:hover {
  border-color: rgba(0, 255, 136, 0.25);
  background: rgba(0, 255, 136, 0.06);
}

.index-feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 255, 136, 0.12);
  font-size: 1.35rem;
}

.index-feature-text h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.index-feature-text p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.index-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.index-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.index-btn-primary {
  background: linear-gradient(135deg, #00b14f, #008f42);
  color: #fff;
  box-shadow: 0 8px 28px rgba(0, 177, 79, 0.45);
}

.index-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 177, 79, 0.55);
}

.index-btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.index-btn-secondary:hover {
  background: rgba(0, 255, 136, 0.12);
  border-color: rgba(0, 255, 136, 0.4);
  color: #00ff88;
}

.index-footer {
  margin-top: auto;
  padding-top: 28px;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.index-footer strong {
  color: rgba(0, 255, 136, 0.6);
  font-weight: 600;
}

.index-map-deco {
  position: fixed;
  pointer-events: none;
  opacity: 0.04;
  font-size: 280px;
  right: -40px;
  bottom: -60px;
  z-index: 0;
}

.index-wrap > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 520px) {
  .index-wrap {
    padding-top: 48px;
  }
}
