.reveal {
  opacity: 0;
  animation: riseUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.44s; }
.d5 { animation-delay: 0.58s; }

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 24px;
  padding: 8vh 20px 40px;
}

.hero .sub {
  font-family: var(--mono);
  color: rgba(255, 46, 58, 0.75);
  letter-spacing: 4px;
  font-size: 12px;
  text-transform: uppercase;
}

.hero .logo-img {
  width: min(600px, 86vw);
  filter: drop-shadow(0 12px 44px rgba(226, 31, 42, 0.38));
}

.hero .actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-row {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.stat {
  text-align: center;
}

.stat .n {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px;
  color: var(--red2);
}

.stat .l {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.role-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 60px 20px;
}

.role-hero h1 {
  font-size: clamp(30px, 6vw, 52px);
}

.roles {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
}

.role-card {
  position: relative;
  width: 340px;
  max-width: 88vw;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(160deg, var(--panel2), var(--panel));
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  padding: 30px 26px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.role-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -20%, rgba(226, 31, 42, 0.22), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.role-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 24px 52px rgba(226, 31, 42, 0.22);
}

.role-card:hover::after {
  opacity: 1;
}

.role-card .ic {
  font-size: 46px;
  filter: drop-shadow(0 6px 16px rgba(226, 31, 42, 0.4));
}

.role-ic {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.role-card h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  color: var(--silver);
}

.role-card p {
  color: var(--silver2);
  font-size: 14px;
  line-height: 1.55;
}

.role-card .tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--mono);
  color: var(--red2);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
