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

body {
  min-height: 100vh;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  padding-top: calc(1.5rem + 5px);
}

.wrap { width: 100%; max-width: 720px; text-align: center; }

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.sub { color: var(--muted); margin: 0.5rem 0 2rem; line-height: 1.5; }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

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

a.card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-align: left;
}

a.card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 35, 149, 0.35);
  box-shadow: 0 8px 24px rgba(0, 35, 149, 0.1);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.premium .badge { background: rgba(0, 35, 149, 0.1); color: var(--fr-blue); }
.standard .badge { background: rgba(237, 41, 57, 0.1); color: var(--fr-red); }

a.card h2 { font-size: 1.25rem; margin-bottom: 0.4rem; }
a.card p { color: var(--muted); font-size: 0.9rem; line-height: 1.45; }

.cta {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fr-red);
}

.site {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.site a { color: var(--fr-red); font-weight: 600; text-decoration: none; }
