.brcc-wrapper {
  margin: 2.5rem auto;
  padding: 1.25rem;
  max-width: 980px;
  background: radial-gradient(circle at top left, #0f172a 0, #020617 55%);
  background-attachment: fixed;
}

.brcc-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #e5e7eb;
  overflow: hidden;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.brcc-header {
  padding: 1.5rem 2rem 0.75rem 2rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
}

.brcc-title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 600;
  color: #f9fafb;
}

.brcc-body {
  padding: 1.5rem 2rem 2rem 2rem;
}

.brcc-screen {
  margin-top: 0.5rem;
}

.brcc-screen-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 1.75rem;
  align-items: center;
}

.brcc-intro-text {
  font-size: 0.98rem;
  color: #e5e7eb;
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.brcc-intro-list {
  margin: 0 0 1.6rem 1.25rem;
  padding: 0;
  color: #cbd5f5;
  font-size: 0.96rem;
}

.brcc-intro-item {
  margin-bottom: 0.4rem;
}

.brcc-intro-gauge-wrap {
  padding: 1.25rem 1.3rem 1.3rem 1.3rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top, rgba(248, 250, 252, 0.06), transparent 60%),
              linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.7);
}

.brcc-intro-gauge-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brcc-intro-gauge-outer {
  margin-bottom: 0.7rem;
}

.brcc-intro-gauge-bar {
  width: 100%;
  height: 0.75rem;
  border-radius: 999px;
  background-color: rgba(31, 41, 55, 0.95);
  overflow: hidden;
}

.brcc-intro-gauge-fill {
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, #22c55e, #eab308, #ef4444);
  border-radius: 999px;
}

.brcc-intro-gauge-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.45rem;
}

.brcc-intro-label {
  font-size: 0.75rem;
  color: #cbd5f5;
}

.brcc-intro-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.55rem;
}

.brcc-intro-pill {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  border: 1px solid rgba(148, 163, 184, 0.9);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
}

.brcc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.brcc-btn-primary {
  background-color: #22c55e;
  color: #052e16;
  border-color: #16a34a;
  box-shadow: 0 12px 26px rgba(34, 197, 94, 0.4);
}

.brcc-btn-primary:hover {
  background-color: #16a34a;
  border-color: #15803d;
}

.brcc-btn-secondary {
  background-color: transparent;
  color: #e5e7eb;
  border-color: #4b5563;
}

.brcc-btn-secondary:hover {
  background-color: rgba(15, 23, 42, 0.9);
}

.brcc-btn-inline {
  margin-right: 0.75rem;
  margin-top: 0.5rem;
}

.brcc-screen-question {
  margin-top: 1.25rem;
}

.brcc-progress-wrap {
  margin-bottom: 1rem;
}

.brcc-progress-label {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.brcc-progress-bar {
  width: 100%;
  height: 0.45rem;
  background-color: rgba(31, 41, 55, 0.9);
  border-radius: 999px;
  overflow: hidden;
}

.brcc-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #2563eb);
  border-radius: 999px;
  transition: width 0.25s ease-out;
}

.brcc-question-text {
  font-size: 1.02rem;
  color: #f9fafb;
  font-weight: 500;
  margin-bottom: 1rem;
}

.brcc-options-wrap {
  margin-bottom: 1.25rem;
}

.brcc-option {
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 0.7rem 0.8rem;
  margin-bottom: 0.55rem;
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, transform 0.08s ease-out;
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 70%),
              linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.98));
}

.brcc-option input[type="radio"] {
  margin-right: 0.75rem;
  margin-top: 0.15rem;
}

.brcc-option label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.brcc-option-label-strong {
  font-weight: 600;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.brcc-option-label-text {
  font-size: 0.92rem;
  color: #d1d5db;
  margin-top: 0.1rem;
}

.brcc-option:hover {
  border-color: #38bdf8;
  box-shadow: 0 8px 22px rgba(56, 189, 248, 0.3);
  transform: translateY(-1px);
}

.brcc-option input[type="radio"]:checked + label .brcc-option-label-strong {
  color: #38bdf8;
}

.brcc-nav-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.brcc-nav-wrap .brcc-btn {
  min-width: 120px;
}

.brcc-back-btn:disabled {
  opacity: 0.45;
  cursor: default;
}

.brcc-overall-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(51, 65, 85, 0.9);
  padding-bottom: 1.5rem;
}

.brcc-overall-left {
  flex: 1 1 260px;
}

.brcc-overall-right {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.brcc-overall-score {
  font-size: 1.12rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.35rem;
}

.brcc-overall-band {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.55rem;
}

.brcc-band-manageable {
  background-color: rgba(34, 197, 94, 0.16);
  color: #bbf7d0;
  border: 1px solid rgba(34, 197, 94, 0.75);
}

.brcc-band-high {
  background-color: rgba(250, 204, 21, 0.16);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.65);
}

.brcc-band-critical {
  background-color: rgba(239, 68, 68, 0.18);
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.6);
}

.brcc-overall-summary {
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.6;
}

.brcc-gauge-label {
  font-size: 0.85rem;
  color: #9ca3af;
  margin-bottom: 0.35rem;
}

.brcc-gauge-outer {
  width: 100%;
  max-width: 230px;
  height: 0.75rem;
  border-radius: 999px;
  background-color: rgba(31, 41, 55, 0.95);
  overflow: hidden;
}

.brcc-gauge-inner {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #eab308, #ef4444);
  transition: width 0.4s ease-out;
}

.brcc-indices-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.brcc-index-card {
  border-radius: 14px;
  border: 1px solid rgba(55, 65, 81, 0.95);
  padding: 0.9rem 1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.94));
}

.brcc-index-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 0.25rem;
}

.brcc-index-score {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.4rem;
}

.brcc-index-text {
  font-size: 0.9rem;
  color: #cbd5f5;
  line-height: 1.5;
}

.brcc-section-title {
  font-size: 1rem;
  font-weight: 600;
  color: #f9fafb;
  margin: 0 0 0.4rem 0;
}

.brcc-narrative-block {
  margin-bottom: 1.25rem;
}

.brcc-narrative-text {
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.6;
}

.brcc-plan-block {
  margin-bottom: 1.25rem;
}

.brcc-plan-list {
  margin: 0.3rem 0 0 1.1rem;
  padding: 0;
  font-size: 0.92rem;
  color: #e5e7eb;
}

.brcc-plan-item {
  margin-bottom: 0.35rem;
}

.brcc-disclaimer-block {
  margin-bottom: 1.25rem;
  border-radius: 14px;
  border: 1px solid rgba(248, 113, 113, 0.7);
  background: rgba(127, 29, 29, 0.35);
  padding: 0.8rem 1rem;
}

.brcc-disclaimer-text {
  font-size: 0.9rem;
  color: #fee2e2;
  line-height: 1.6;
}

.brcc-connect-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.brcc-connect-left,
.brcc-connect-right {
  flex: 1 1 260px;
}

.brcc-connect-text {
  font-size: 0.92rem;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.brcc-profile-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f9fafb;
}

.brcc-profile-role {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.brcc-follow-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.25rem;
}

.brcc-share-block {
  border-top: 1px solid rgba(51, 65, 85, 0.9);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.brcc-share-text {
  font-size: 0.9rem;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.brcc-share-quote {
  font-size: 0.9rem;
  color: #e5e7eb;
  border-left: 3px solid #38bdf8;
  padding-left: 0.75rem;
  margin: 0;
}

@media (max-width: 768px) {
  .brcc-body {
    padding: 1.25rem 1.25rem 1.5rem 1.25rem;
  }

  .brcc-header {
    padding: 1.25rem 1.25rem 0.75rem 1.25rem;
  }

  .brcc-screen-intro {
    grid-template-columns: minmax(0, 1fr);
  }

  .brcc-wrapper {
    padding: 0.75rem;
  }
}
