:root {
  --green: #88b77b;
  --green-dark: #6a9a5d;
  --ink: #1c1c1c;
  --muted: #666;
  --red: #d94f3d;
  --bg-top: #f7faf6;
  --bg-bottom: #eaf2e6;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
}

.card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(30, 50, 20, 0.12), 0 2px 8px rgba(30, 50, 20, 0.06);
}

.logo {
  width: 220px;
  max-width: 70%;
  height: auto;
  margin-bottom: 28px;
}

.pixels {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.pixels span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0.35;
  animation: pulse 1.4s ease-in-out infinite;
}

.pixels span:nth-child(1) { animation-delay: 0s; }
.pixels span:nth-child(2) { animation-delay: 0.15s; }
.pixels span:nth-child(3) { animation-delay: 0.3s; background: var(--red); }
.pixels span:nth-child(4) { animation-delay: 0.45s; }
.pixels span:nth-child(5) { animation-delay: 0.6s; }

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
}

h1 {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.3;
  color: var(--ink);
}

.lead {
  margin: 0 0 28px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(136, 183, 123, 0.14);
  color: var(--green-dark);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.status .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(136, 183, 123, 0.6);
  animation: ping 1.6s ease-out infinite;
}

@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(136, 183, 123, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(136, 183, 123, 0); }
  100% { box-shadow: 0 0 0 0 rgba(136, 183, 123, 0); }
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.footnote {
  margin: 24px 0 0;
  font-size: 12.5px;
  color: #9a9a9a;
}

@media (max-width: 480px) {
  .card {
    padding: 36px 24px 32px;
  }

  h1 {
    font-size: 22px;
  }
}
