.hero-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--scvfs-black);
  color: #fff;
  border: 2px solid var(--scvfs-red);
}
.hero-stat .hero-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--scvfs-red);
}
.hero-stat .hero-label {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.hero-stat .muted {
  color: rgba(255, 255, 255, 0.75);
}

.callout {
  background: var(--scvfs-red-tint);
  border-left: 4px solid var(--scvfs-red);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 0;
  color: var(--scvfs-black);
}

.callout-card {
  border-left: 4px solid var(--scvfs-red);
  background: var(--scvfs-red-tint);
}

.entryeeze-strip {
  margin: 0 8px 12px;
  padding: 8px 12px;
  background: var(--scvfs-red-tint);
  border-left: 3px solid var(--scvfs-red);
  border-radius: 6px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.entryeeze-strip strong { color: var(--scvfs-red-dark); }
.entryeeze-strip a {
  color: #fff;
  background: var(--scvfs-red);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-size: 11px;
}
.entryeeze-strip a:hover { background: var(--scvfs-red-dark); }

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.cost-table th, .cost-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--grey-100);
  text-align: left;
}
.cost-table th { color: var(--ink); font-weight: 700; }
.cost-table td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.cost-table .indent { padding-left: 20px; color: var(--muted); font-weight: 400; }

.date-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.date-list li {
  padding: 10px 0;
  border-top: 1px solid var(--grey-100);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.date-list li:first-child { border-top: none; }
.date-list .date {
  flex-shrink: 0;
  background: var(--scvfs-black);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  min-width: 92px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.role-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin-top: 10px;
}
@media (min-width: 560px) {
  .role-grid { grid-template-columns: 1fr 1fr; }
}
.role {
  display: block;
  padding: 14px 16px;
  background: var(--grey-100);
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  border: 2px solid transparent;
  transition: all 0.12s ease;
}
.role:hover {
  border-color: var(--scvfs-red);
  background: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
.role-name { font-weight: 700; color: var(--scvfs-red); margin-bottom: 2px; display:flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.role-cap { font-size: 11px; font-weight: 600; color: var(--muted); background: #fff; padding: 2px 7px; border-radius: 99px; }
.role-signups { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.role-signup { font-size: 11px; background: #fff; color: var(--scvfs-red-dark); padding: 2px 8px; border-radius: 99px; font-weight: 600; }
.role-action { margin-top: 10px; }
.role-btn {
  background: var(--scvfs-red);
  color: #fff;
  border: none;
  padding: 7px 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
}
.role-btn:hover { background: var(--scvfs-red-dark); }
.role-full { font-size: 11px; color: var(--muted); font-style: italic; }
.role-deadline {
  font-size: 11px;
  margin-top: 6px;
  color: var(--scvfs-red-dark);
  background: var(--scvfs-red-tint);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}
.role-deadline.past { opacity: 0.5; text-decoration: line-through; }
.role-min {
  font-size: 11px;
  margin-top: 4px;
  color: #7a4a00;
  font-weight: 600;
}

.thanks-list { list-style: none; padding: 0; margin: 0; }
.thanks-list li { padding: 6px 0; }

.lever-list, .focus-list { margin: 8px 0 0; padding-left: 20px; }
.lever-list li, .focus-list li { margin-bottom: 8px; line-height: 1.5; }

.table-wrap { overflow-x: auto; margin: 0 -8px; }
.data-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 13px;
}
.data-table th, .data-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--grey-100);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.data-table th:first-child, .data-table td:first-child { text-align: left; }
.data-table thead th {
  background: var(--scvfs-black);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.data-table .highlight { background: var(--scvfs-red-tint); }
.data-table .dim { color: var(--muted); font-style: italic; }
.data-table .subtotal { background: var(--grey-100); font-weight: 600; }
.data-table .grand-total {
  background: var(--scvfs-black);
  color: #fff;
  font-weight: 700;
}
.data-table .grand-total td { border-bottom: none; }

.doc-link {
  display: inline-block;
  padding: 10px 14px;
  background: var(--scvfs-black);
  color: #fff !important;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.doc-link:hover {
  background: var(--scvfs-red);
  color: #fff !important;
  text-decoration: none;
}
