:root {
  --color-bg: #f7faf9;
  --color-bg-elevated: #eef3f1;
  --color-surface: #ffffff;
  --color-border: rgba(4, 30, 27, 0.09);
  --color-border-strong: rgba(4, 30, 27, 0.14);

  --color-accent: #00917b;
  --color-accent-light: #00695c;
  --color-accent-dark: #004d57;
  --color-accent-glow: rgba(0, 145, 123, 0.28);

  --color-text: #0c211d;
  --color-text-muted: #55716c;
  --color-text-faint: #87a19b;

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font-base: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(0, 145, 123, 0.12), transparent 60%),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-base);
  line-height: 1.6;
  color-scheme: light;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.card {
  width: 100%;
  max-width: 560px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: 0 1px 2px rgba(16, 40, 36, 0.04), 0 24px 48px -20px rgba(16, 40, 36, 0.18);
  padding: 48px 36px;
  text-align: center;
}

.logo { height: 46px; width: auto; max-width: none; margin: 0 auto 32px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  background: rgba(0, 145, 123, 0.1);
  border: 1px solid rgba(0, 145, 123, 0.25);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.dots { display: flex; justify-content: center; gap: 6px; margin: 22px 0 0; }
.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: bounce 1.2s ease-in-out infinite;
}
.dots span:nth-child(2) { animation-delay: 0.15s; }
.dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.5; }
  40% { transform: translateY(-6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .dots span { animation: none; opacity: 0.8; }
}

h1 {
  margin: 18px 0 0;
  font-size: clamp(26px, 5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

p.lead {
  margin: 16px auto 0;
  max-width: 420px;
  color: var(--color-text-muted);
  font-size: 16px;
}

.divider { height: 1px; background: var(--color-border); border: none; margin: 32px 0; }

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  font-size: 15px;
}
.contact a {
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms var(--ease-out);
}
.contact a:hover { color: var(--color-accent-light); }
.contact-label { color: var(--color-text-faint); font-size: 13px; }

.footer-note {
  margin-top: 28px;
  font-size: 13px;
  color: var(--color-text-faint);
}

:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 3px;
  border-radius: 4px;
}
