*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-deep:   #1a4731;
  --green-mid:    #2d6a4f;
  --green-light:  #52b788;
  --text-primary: #111827;
  --text-muted:   #6b7280;
  --bg:           #ffffff;
  --bg-subtle:    #f4f8f5;
  --border:       #dde9e3;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 80% 60% at 50% 40%, #eaf4ee 0%, transparent 70%);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 420px;
  width: 100%;
}

.logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 20px;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0s;
}

.brand {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.1s;
}

.label {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.2s;
}

.divider {
  display: block;
  width: 36px;
  height: 2px;
  background-color: var(--green-light);
  border-radius: 1px;
  margin: 2rem auto;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.3s;
}

.platforms {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease both;
  animation-delay: 0.4s;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5625rem 1.125rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  white-space: nowrap;
}

.icon {
  width: 17px;
  height: 17px;
  fill: var(--green-mid);
  flex-shrink: 0;
}

@media (max-width: 360px) {
  .brand { font-size: 1.5rem; }
  .platforms { flex-direction: column; align-items: center; }
}
