:root {
  --royal-blue: #0a2a66;
  --gold: #d4af37;
  --cream: #f8f4ee;
  --blush: #f2c6d6;
}

* {
  box-sizing: border-box;
  transition: all 0.25s ease;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--royal-blue);
}

.center-screen {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,.2);
  text-align: center;
}

.auth-card h1 {
  color: var(--royal-blue);
}

input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
}

button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--royal-blue), var(--gold));
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
}

.hidden {
  display: none;
}

.top-bar {
  padding: 20px;
  background: var(--royal-blue);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge {
  padding: 6px 14px;
  border-radius: 20px;
}

.gold {
  background: var(--gold);
  color: black;
}

.progress-section {
  padding: 20px;
  text-align: center;
}

.progress-ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 12px solid var(--blush);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: bold;
  margin: auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.domain-card {
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
}

.domain-card:hover {
  transform: translateY(-4px);
}

.status.red {
  color: crimson;
}
.doc-status {
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 13px;
  display: inline-block;
}

.doc-status.uploaded {
  background: #d4edda;
  color: #155724;
}

.doc-status.missing {
  background: #f8d7da;
  color: #721c24;
}

.doc-actions button {
  margin-right: 8px;
  margin-top: 6px;
}
