:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --text-primary: #102241;
  --text-secondary: #4f5f79;
  --brand: #0d4aa8;
  --brand-strong: #0a3c89;
  --line: #d8e0ef;
  --pill-bg: #e8efff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 12% 20%, #dde8ff 0%, transparent 28%),
    radial-gradient(circle at 85% 12%, #e5f1ff 0%, transparent 35%),
    var(--bg);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.panel {
  width: min(920px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 24px 65px rgba(16, 34, 65, 0.1);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand-logo {
  width: 190px;
  max-width: 58%;
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--pill-bg);
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 28px 0 10px;
  max-width: 18ch;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.16;
}

.lead {
  margin: 0;
  max-width: 64ch;
  color: var(--text-secondary);
  line-height: 1.72;
  font-size: 1.02rem;
}

.action-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--brand);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--brand-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 1px solid #b9caea;
}

.btn-secondary:hover {
  background: #f2f6ff;
}

.info-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fbfcff;
}

.info-card h2 {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #2d3f61;
}

.info-card a {
  color: var(--brand);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.info-card a:hover {
  text-decoration: underline;
}

.info-card p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.5;
}

.panel-footer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.panel-footer a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.panel-footer a:hover {
  color: #ffffff;
  background: var(--brand);
  border-color: var(--brand);
}

@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .panel {
    padding: 26px 20px;
  }

  .panel-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 165px;
    max-width: 100%;
  }

  h1 {
    margin-top: 18px;
  }

  .action-row {
    width: 100%;
  }

  .btn {
    width: 100%;
  }
}
