:root {
  --rise-blue: #4f55bf;
  --rise-deep-blue: #182b66;
  --rise-yellow: #f4c430;
  --rise-green: #188b52;
  --rise-red: #d9364f;
  --ink: #212529;
  --muted: #66717d;
  --line: #d9dee5;
  --panel: #ffffff;
  --page: #f4f6f9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
}

.role-header {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 12px 24px;
  color: #fff;
  border-bottom: 6px solid var(--rise-yellow);
  background: linear-gradient(90deg, var(--rise-blue), #cfd3fb);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.75);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.role-label {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tagline {
  margin-top: 3px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.app-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.hero {
  padding: 28px 0 18px;
}

.eyebrow {
  color: var(--rise-blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1;
}

.hero p:last-child {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(20, 28, 40, 0.06);
}

.panel h2 {
  margin: 0 0 10px;
  color: var(--rise-blue);
  font-size: 1.18rem;
}

.panel p,
.panel li {
  color: var(--muted);
  line-height: 1.45;
}

.status-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.status-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 9px;
}

.status-pill {
  white-space: nowrap;
  border-radius: 999px;
  padding: 3px 9px;
  color: #fff;
  background: var(--rise-blue);
  font-size: 0.8rem;
  font-weight: 800;
}

.status-pill.ready {
  background: var(--rise-green);
}

.status-pill.pending {
  background: var(--muted);
}

.role-list {
  display: grid;
  gap: 8px;
}

.role-card {
  border-left: 4px solid var(--rise-blue);
  padding: 8px 10px;
  background: #f9fafc;
}

.role-card strong {
  display: block;
}

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

  .role-header {
    align-items: flex-start;
  }
}
