:root {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1f2933;
  background-color: #ffffff;
  line-height: 1.5;
  font-weight: 400;
}

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

body {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  padding: 48px 16px;
}

.page {
  width: min(960px, 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: #f6f8fb;
  border: 1px solid #e3e7ef;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
  color: #0f172a;
}

.hero p {
  color: #4b5563;
  max-width: 560px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9edfb;
  color: #3847b5;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #3730a3;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.9rem;
}

.status-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.35);
}

.content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.panel {
  background: #fafbfd;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.panel h2 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.highlight ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight li {
  display: flex;
  gap: 14px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.highlight li span {
  font-size: 1.3rem;
}

.highlight li strong {
  display: block;
  margin-bottom: 4px;
}

.info dl {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.info dt {
  font-size: 0.9rem;
  color: #6b7280;
}

.info dd {
  font-size: 1rem;
  font-weight: 600;
}

.contact .links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.contact a {
  text-decoration: none;
  color: #1f2933;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.contact a:hover {
  border-color: #d1d5db;
  background: #ffffff;
}

footer {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

footer a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 640px) {
  body {
    padding: 24px 12px;
  }

  .hero,
  .panel {
    padding: 20px;
  }

  .highlight li {
    flex-direction: column;
  }
}
