:root {
  --blue-900: #0a2f5c;
  --blue-700: #144a8c;
  --blue-500: #1f6feb;
  --blue-100: #eaf2fc;
  --ink: #1a2332;
  --muted: #5b6b82;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 48px);
  background: #ffffff;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
}

.card {
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border: 1px solid #e3ecf7;
  border-radius: 18px;
  box-shadow: 0 20px 50px -20px rgba(10, 47, 92, 0.18);
  padding: clamp(28px, 6vw, 44px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-900), var(--blue-500));
}

.card__header {
  margin-bottom: 28px;
}

.card__eyebrow {
  margin: 0 0 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-500);
}

.card__name {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.25;
}

.card__list {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.card__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid var(--blue-100);
}

.card__row:first-child {
  border-top: none;
}

dt {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

dd {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

a {
  color: var(--blue-700);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

a:hover,
a:focus-visible {
  border-bottom-color: var(--blue-500);
}

a:focus-visible {
  outline: 2px solid var(--blue-500);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 420px) {
  .card__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
