:root {
  --bg: #f8fafc;
  --panel: #ffffff;
  --panel-2: #edf2f7;
  --text: #0f172a;
  --muted: #556176;
  --accent: #2563eb;
  --accent-2: #1d4ed8;
  --border: #d8e0ef;
  --ok: #16a34a;
  --shadow: rgba(15, 23, 42, .12);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Roboto", sans-serif;
  color: var(--text);
  background: radial-gradient(900px 600px at 80% -10%, rgba(37,99,235,.08), transparent 60%),
              radial-gradient(780px 540px at -15% 110%, rgba(148,163,184,.1), transparent 60%),
              var(--bg);
  line-height: 1.6;
}

.container { min-height: 100%; display: grid; grid-template-rows: 1fr auto; }

header {
  max-width: 960px;
  margin: clamp(24px, 4vh, 48px) auto 16px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-logo {
  max-width: 700px;
  width: 100%;
  max-height: 100vh;
  height: auto;
  object-fit: contain;
}

.brand-tagline {
  margin-top: clamp(-20px, -2vw, -12px);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: #002e50;
}

main { display: grid; place-items: center; padding: 24px 20px 40px; }

.card {
  position: relative;
  width: min(900px, 100%);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(28px, 5.6vw, 48px);
  box-shadow: 0 24px 48px var(--shadow);
  text-align: left;
}

.status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--muted);
  background: rgba(226,232,240,.65);
  border: 1px solid rgba(148,163,184,.35);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 0 auto;
  justify-content: center;
  width: fit-content;
}

.dot {
  width: 9px; height: 9px;
  background: var(--ok);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94,.6);
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

h2 { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.2; margin: 20px auto 12px; color: var(--text); text-align: center; }
p.lead { color: var(--muted); font-size: clamp(16px, 2vw, 18px); margin: 0 0 26px; max-width: 100%; text-align: justify; }

h3 {
  margin: 0 0 14px;
  font-size: clamp(18px, 2.2vw, 20px);
  color: var(--text);
}

.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #002e50;
  background: #002e50;
  color: #ffffff;
  border-radius: 14px;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.btn:hover { border-color: #024068; box-shadow: 0 6px 18px rgba(0, 46, 80, .22); transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid #024068; outline-offset: 2px; }

footer {
  max-width: 960px;
  margin: 8px auto 32px;
  padding: 0 20px;
  color: var(--muted);
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.mono { font-family: ui-monospace, monospace; }
a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.grid-info {
  display: grid;
  gap: clamp(16px, 3vw, 24px);
  margin-top: clamp(24px, 4.6vw, 32px);
}

.grid-info .lead { grid-column: 1 / -1; margin-bottom: 0; }

.grid-info .note {
  grid-column: 1 / -1;
  justify-self: center;
  margin: 16px auto 0;
}

@media (min-width: 760px) {
  .grid-info { grid-template-columns: 1.2fr .9fr; }
}

.panel {
  padding: clamp(18px, 3vw, 22px);
  border: 1px solid rgba(148,163,184,.24);
  border-radius: 16px;
  background: var(--panel-2);
  position: relative;
}

.panel p { margin: 0 0 16px; color: var(--muted); }

.milestones {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.milestone {
  display: grid;
  gap: 6px;
}

.milestone-title {
  font-weight: 600;
  color: var(--text);
}

.milestone-meta {
  font-size: .9rem;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid rgba(148,163,184,.4);
  color: var(--accent-2);
  background: rgba(226,232,240,.6);
  font-size: .85rem;
  justify-self: center;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.contact-item { display: grid; gap: 6px; }
.contact-item strong { display: block; color: var(--text); }
.contact-item span { font-size: .9rem; color: var(--muted); }

.note {
  font-size: .85rem;
  color: var(--muted);
  margin: 16px auto 0;
  text-align: center;
  max-width: 52ch;
}

.grid-info .note {
  justify-self: center;
}

@media (max-width: 720px) { .actions { justify-content: center; } }

@media (max-width: 420px) { .btn { width: 100%; text-align: center; } }

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