@import url('https://help.themila.me/assets/css/fonts.css');
/* Public landing styles (Tailwind replacement) */
body { background: #f8fafc; color: #0f172a; }
a { text-decoration: none; }

.landing-wrap {
  max-width: 48rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.landing-topbar {
  display: flex;
  justify-content: flex-end;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.lang-link,
.admin-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  border-radius: .5rem;
  border: 1px solid #e5e7eb;
  padding: .375rem .75rem;
  transition: all .2s ease;
}
.lang-link { font-weight: 600; color: #9ca3af; }
.lang-link:hover { border-color: #d1d5db; }
.lang-link.active {
  border-color: #EC4899;
  color: #BE185D;
  background: #ecfdf5;
}
.admin-link {
  font-weight: 500;
  color: #9ca3af;
  margin-left: 1rem;
}
.admin-link:hover { border-color: #F472B6; color: #EC4899; }

.hero { margin-bottom: 3.5rem; text-align: center; }
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: .875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.status-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
}
.status-dot.online {
  background: #EC4899;
  animation: pulse 1.4s infinite;
}
.status-dot.offline { background: #9ca3af; }

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.25rem);
  line-height: 1.2;
  color: #111827;
}
.hero p {
  margin: 0 auto;
  max-width: 28rem;
  color: #6b7280;
  font-size: 1.125rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.feature-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.05);
}
.feature-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  background: #ecfdf5;
  color: #059669;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature-card h3 {
  margin: 0 0 .5rem;
  color: #111827;
  font-size: 1rem;
}
.feature-card p {
  margin: 0;
  color: #6b7280;
  font-size: .875rem;
  line-height: 1.55;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.92); }
}
