/* ================================================================
   SuperClassAction Thin App CSS
   superclassaction.com.au — Super Insurance Entitlements Investigation
   Pixel-match of SuperInvestigationHero + CampaignHeader/Footer
   ================================================================ */

/* ── Tokens ──────────────────────────────────────────────────────── */
:root {
  --sc-accent:      #0a1f3c;
  --sc-accent-light: #a4b3c7;
  --sc-accent-wash:  #eef1f5;
  --sc-bg:          #f5f6f8;
  --sc-white:       #ffffff;
  --sc-slate-50:    #f8fafc;
  --sc-slate-100:   #f1f5f9;
  --sc-slate-200:   #e2e8f0;
  --sc-slate-300:   #cbd5e1;
  --sc-slate-400:   #94a3b8;
  --sc-slate-500:   #64748b;
  --sc-slate-600:   #475569;
  --sc-slate-700:   #334155;
  --sc-slate-800:   #1e293b;
  --sc-slate-900:   #0f172a;
  --sc-amber-400:   #fbbf24;
  --sc-emerald-400: #34d399;
  --sc-emerald-600: #059669;
  --sc-emerald-700: #047857;
}

/* ── Reset ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--sc-slate-900);
  background: var(--sc-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
button { cursor: pointer; border: none; background: none; font-family: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ── Page shell ──────────────────────────────────────────────────── */
.sc-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.sc-main {
  flex: 1;
  max-width: 44rem; /* narrower content column for readability on desktop */
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 640px) {
  .sc-main { padding: 3rem 1.5rem; }
}

/* ── Campaign Header (sticky) ────────────────────────────────────── */
.sc-header {
  width: 100%;
  border-bottom: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-shrink: 0;
}
.sc-header__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 3.5rem; /* h-14 = 56px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 640px) {
  .sc-header__inner { padding: 0 1.5rem; }
}

/* Logo cluster */
.sc-header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.sc-header__logo-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--sc-accent);
}
.sc-header__logo-badge svg {
  width: 1rem;
  height: 1rem;
}
.sc-header__logo-text {
  line-height: 1.2;
  min-width: 0;
}
.sc-header__logo-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  white-space: nowrap;
  color: var(--sc-accent);
}
.sc-header__logo-subtitle {
  font-size: 10px;
  color: var(--sc-slate-400);
  white-space: nowrap;
}

/* Trust statement (right side) */
.sc-header__trust {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-shrink: 0;
  margin-left: 1rem;
}
.sc-header__trust-icon {
  width: 1rem;
  height: 1rem;
  color: var(--sc-accent);
}
.sc-header__trust-text {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  font-weight: 500;
  display: none;
}
@media (min-width: 640px) {
  .sc-header__trust-text { display: block; }
}

/* ── Divider ─────────────────────────────────────────────────────── */
.sc-divider {
  border: 0;
  border-top: 1px solid var(--sc-slate-100);
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .sc-divider { margin: 2rem 0; }
}

/* ── Section heading ─────────────────────────────────────────────── */
.sc-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sc-slate-900);
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) {
  .sc-heading { font-size: 1.25rem; }
}

/* ── THREE-PATH CTA ──────────────────────────────────────────────── */
.sc-cta-section {
  margin-bottom: 1rem;
}
.sc-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Primary CTA — navy block */
.sc-cta-primary {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: left;
  transition: box-shadow 0.15s;
  background: var(--sc-accent);
  color: var(--sc-white);
}
.sc-cta-primary:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }
@media (min-width: 640px) {
  .sc-cta-primary { padding: 1.25rem; }
}
.sc-cta-primary__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .sc-cta-primary__inner { gap: 1rem; }
}
.sc-cta-primary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
}
@media (min-width: 640px) {
  .sc-cta-primary__icon { width: 2.5rem; height: 2.5rem; }
}
.sc-cta-primary__icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--sc-white);
}
@media (min-width: 640px) {
  .sc-cta-primary__icon svg { width: 1.25rem; height: 1.25rem; }
}
.sc-cta-primary__body {
  flex: 1;
  min-width: 0;
}
.sc-cta-primary__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sc-white);
  margin: 0;
}
@media (min-width: 640px) {
  .sc-cta-primary__title { font-size: 0.9375rem; }
}
.sc-cta-primary__subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .sc-cta-primary__subtitle { font-size: 0.875rem; }
}
.sc-cta-primary__arrow {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: color 0.15s;
}
.sc-cta-primary:hover .sc-cta-primary__arrow { color: rgba(255,255,255,0.7); }

/* Secondary CTA — outlined card */
.sc-cta-secondary {
  border-radius: 0.5rem;
  border: 1px solid rgba(10,31,60,0.2);
  background: rgba(10,31,60,0.04);
  padding: 1rem;
}
@media (min-width: 640px) {
  .sc-cta-secondary { padding: 1.25rem; }
}
.sc-cta-secondary__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .sc-cta-secondary__inner {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}
.sc-cta-secondary__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}
.sc-cta-secondary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  background: rgba(10,31,60,0.12);
}
.sc-cta-secondary__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--sc-accent);
}
.sc-cta-secondary__body { min-width: 0; }
.sc-cta-secondary__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  margin: 0;
}
@media (min-width: 640px) {
  .sc-cta-secondary__title { font-size: 0.9375rem; }
}
.sc-cta-secondary__subtitle {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .sc-cta-secondary__subtitle { font-size: 0.875rem; }
}
.sc-cta-secondary__action {
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .sc-cta-secondary__action { margin-left: 0.5rem; }
}

/* Watch button (inside secondary CTA) */
.sc-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sc-slate-700);
  transition: all 0.15s;
  white-space: nowrap;
}
.sc-watch-btn:hover {
  border-color: var(--sc-slate-300);
  background: var(--sc-slate-50);
}
.sc-watch-btn svg {
  width: 1rem;
  height: 1rem;
  color: var(--sc-accent);
}

/* Tertiary CTA — text link */
.sc-cta-tertiary {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-cta-tertiary__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--sc-slate-500);
  transition: color 0.15s;
}
.sc-cta-tertiary__link:hover { color: var(--sc-slate-700); }
.sc-cta-tertiary__link svg {
  width: 1rem;
  height: 1rem;
}
.sc-cta-tertiary__label {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--sc-slate-300);
}
.sc-cta-tertiary__link:hover .sc-cta-tertiary__label {
  text-decoration-color: var(--sc-slate-500);
}
.sc-cta-tertiary__note {
  font-size: 0.75rem;
  color: var(--sc-slate-400);
}

/* Other-issue path */
.sc-other-issue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  padding-top: 0.25rem;
}
.sc-other-issue__link {
  font-size: 0.75rem;
  color: var(--sc-slate-400);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--sc-slate-300);
  transition: color 0.15s;
}
.sc-other-issue__link:hover {
  color: var(--sc-slate-600);
  text-decoration-color: var(--sc-slate-400);
}
.sc-other-issue__note {
  font-size: 11px;
  color: var(--sc-slate-400);
}

/* Trust strip */
.sc-trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1rem;
  padding-top: 0.125rem;
}
.sc-trust-pill {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--sc-slate-400);
}
.sc-trust-pill svg {
  width: 0.75rem;
  height: 0.75rem;
}

/* ── THIS MAY APPLY IF ───────────────────────────────────────────── */
.sc-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sc-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
}
.sc-bullet__icon {
  width: 1rem;
  height: 1rem;
  color: var(--sc-emerald-400);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ── WHY THIS MATTERS (card) ─────────────────────────────────────── */
.sc-explainer {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: rgba(248,250,252,0.6); /* slate-50/60 */
  padding: 1rem;
}
.sc-explainer p {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
  margin: 0 0 0.75rem;
}
.sc-explainer p:last-child { margin-bottom: 0; }
.sc-explainer strong {
  color: var(--sc-slate-700);
  font-weight: 600;
}
.sc-explainer .sc-emphasis {
  font-weight: 500;
  color: var(--sc-slate-700);
}

/* ── WHAT HAPPENS NEXT (3-step) ──────────────────────────────────── */
.sc-steps {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  padding: 1rem;
}
.sc-steps__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.sc-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.sc-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 9999px;
  background: var(--sc-accent);
  color: var(--sc-white);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.sc-step__text {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
  padding-top: 0.125rem;
}
.sc-steps__footer {
  margin-top: 0.75rem;
  padding-top: 0.625rem;
  border-top: 1px solid var(--sc-slate-100);
  font-size: 0.75rem;
  color: var(--sc-slate-500);
}

/* ── ACCORDION (What this review covers) ─────────────────────────── */
.sc-accordion-intro {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  margin-bottom: 0.75rem;
}
.sc-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sc-accordion__item {
  border: 1px solid var(--sc-slate-200);
  border-radius: 0.5rem;
  background: var(--sc-white);
  padding: 0 1rem;
  transition: box-shadow 0.15s;
}
.sc-accordion__item[data-open="true"] {
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.sc-accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.875rem 0;
  text-align: left;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sc-slate-800);
  background: none;
  border: none;
}
.sc-accordion__trigger-left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  text-align: left;
}
.sc-accordion__trigger-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.375rem;
  flex-shrink: 0;
  background: rgba(10,31,60,0.08);
}
.sc-accordion__trigger-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--sc-accent);
}
.sc-accordion__chevron {
  width: 1rem;
  height: 1rem;
  color: var(--sc-slate-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.sc-accordion__item[data-open="true"] .sc-accordion__chevron {
  transform: rotate(180deg);
}
.sc-accordion__content {
  overflow: hidden;
  max-height: 0;
  padding-bottom: 0;
  padding-top: 0;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}
.sc-accordion__item[data-open="true"] .sc-accordion__content {
  padding-bottom: 1rem;
  padding-top: 0.25rem;
}

/* Accordion body text */
.sc-accordion__body {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
}
.sc-accordion__body p {
  margin: 0 0 0.75rem;
}
.sc-accordion__body p:last-child { margin-bottom: 0; }
.sc-accordion__body strong {
  color: var(--sc-slate-700);
  font-weight: 600;
}
.sc-accordion__body ul {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0 0 0.75rem 0.25rem;
}
.sc-accordion__body li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.sc-accordion__body li::before {
  content: '';
  margin-top: 0.5rem;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 9999px;
  background: var(--sc-slate-300);
  flex-shrink: 0;
}
/* Amber dots variant (for delay section) */
.sc-accordion__body ul.sc-dots-amber li::before {
  background: var(--sc-amber-400);
}

/* Delay sub-card */
.sc-delay-card {
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  padding: 0.75rem;
  margin-bottom: 0.75rem;
}
.sc-delay-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sc-slate-400);
  margin-bottom: 0.375rem;
}

/* Disclaimer note in accordion */
.sc-accordion__note {
  font-size: 0.75rem;
  color: var(--sc-slate-400);
  border-top: 1px solid var(--sc-slate-100);
  padding-top: 0.5rem;
  margin-top: 0.75rem;
}

/* ── CASE CONTENT TABS ────────────────────────────────────────────── */
.sc-tabs-section {
  margin-top: 1.5rem;
}
.sc-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--sc-slate-200);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  position: sticky;
  top: 3.5rem; /* below header */
  background: var(--sc-bg);
  z-index: 20;
  padding: 0;
}
.sc-tabs::-webkit-scrollbar { display: none; }
.sc-tabs__btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sc-slate-500);
  white-space: nowrap;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  flex-shrink: 0;
  line-height: 1;
}
.sc-tabs__btn:hover {
  color: var(--sc-slate-700);
  background: var(--sc-slate-50);
}
.sc-tabs__btn.is-active {
  color: var(--sc-accent);
  border-bottom-color: var(--sc-accent);
  font-weight: 600;
}
.sc-tabs__icon {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.sc-tabs__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  border-radius: 9999px;
  background: var(--sc-accent);
  color: var(--sc-white);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1;
}

/* Tab panels */
.sc-panels {
  margin-top: 1.25rem;
}
.sc-panel {
  display: none;
}
.sc-panel.is-active {
  display: block;
}
.sc-panel__content {
  animation: sc-fadeIn 0.2s ease;
}
@keyframes sc-fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Skeleton loading */
.sc-skeleton {
  border-radius: 0.375rem;
  background: linear-gradient(90deg, var(--sc-slate-100) 25%, var(--sc-slate-50) 50%, var(--sc-slate-100) 75%);
  background-size: 200% 100%;
  animation: sc-shimmer 1.5s infinite;
  margin-bottom: 0.75rem;
}
.sc-skeleton--lg { height: 4rem; }
.sc-skeleton--md { height: 2.5rem; }
.sc-skeleton--sm { height: 1.5rem; width: 60%; }
@keyframes sc-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Empty state */
.sc-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--sc-slate-400);
  font-size: 0.8125rem;
}
.sc-empty__icon {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.5rem;
  color: var(--sc-slate-300);
}

/* Summary panel */
.sc-summary-card {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.sc-summary-card__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sc-slate-400);
  margin: 0 0 0.5rem;
}
.sc-summary-card__text {
  font-size: 0.8125rem;
  color: var(--sc-slate-700);
  line-height: 1.625;
  margin: 0;
}
.sc-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.sc-summary-meta__item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--sc-slate-500);
}
.sc-summary-meta__icon {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--sc-slate-400);
}

/* Timeline panel */
.sc-timeline {
  position: relative;
  padding-left: 1.5rem;
}
.sc-timeline::before {
  content: '';
  position: absolute;
  left: 0.3125rem;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 2px;
  background: var(--sc-slate-200);
}
.sc-tl-item {
  position: relative;
  padding-bottom: 1.25rem;
}
.sc-tl-item:last-child { padding-bottom: 0; }
.sc-tl-item__dot {
  position: absolute;
  left: -1.25rem;
  top: 0.25rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--sc-accent);
  border: 2px solid var(--sc-bg);
}
.sc-tl-item__date {
  font-size: 0.6875rem;
  color: var(--sc-slate-400);
  margin-bottom: 0.125rem;
}
.sc-tl-item__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  margin-bottom: 0.25rem;
}
.sc-tl-item__desc {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  line-height: 1.5;
}

/* News card */
.sc-news-card {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  padding: 0.875rem;
  margin-bottom: 0.625rem;
  transition: border-color 0.15s;
}
.sc-news-card:hover {
  border-color: var(--sc-slate-300);
}
.sc-news-card__date {
  font-size: 0.6875rem;
  color: var(--sc-slate-400);
  margin-bottom: 0.25rem;
}
.sc-news-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  margin-bottom: 0.25rem;
}
.sc-news-card__desc {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  line-height: 1.5;
  margin: 0;
}
.sc-news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sc-accent);
  margin-top: 0.5rem;
}
.sc-news-card__link:hover { text-decoration: underline; }

/* Notice card (slightly different from news) */
.sc-notice-card {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  border-left: 3px solid var(--sc-accent);
  background: var(--sc-white);
  padding: 0.875rem;
  margin-bottom: 0.625rem;
}
.sc-notice-card__type {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sc-accent);
  margin-bottom: 0.25rem;
}
.sc-notice-card__date {
  font-size: 0.6875rem;
  color: var(--sc-slate-400);
  margin-bottom: 0.25rem;
}
.sc-notice-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  margin-bottom: 0.25rem;
}
.sc-notice-card__desc {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  line-height: 1.5;
  margin: 0;
}

/* Document card */
.sc-doc-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  padding: 0.875rem;
  margin-bottom: 0.625rem;
  transition: border-color 0.15s;
}
.sc-doc-card:hover { border-color: var(--sc-slate-300); }
.sc-doc-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--sc-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.sc-doc-card__body { flex: 1; }
.sc-doc-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  margin-bottom: 0.125rem;
}
.sc-doc-card__meta {
  font-size: 0.6875rem;
  color: var(--sc-slate-400);
}
.sc-doc-card__link {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sc-accent);
  flex-shrink: 0;
  align-self: center;
}
.sc-doc-card__link:hover { text-decoration: underline; }

/* FAQ panel — reuse accordion styling where possible */
.sc-faq-item {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.sc-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  text-align: left;
  transition: background 0.15s;
}
.sc-faq-item__q:hover { background: var(--sc-slate-50); }
.sc-faq-item__chevron {
  width: 1rem;
  height: 1rem;
  color: var(--sc-slate-400);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.sc-faq-item[data-open="true"] .sc-faq-item__chevron {
  transform: rotate(180deg);
}
.sc-faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.sc-faq-item__a-inner {
  padding: 0 1rem 0.75rem;
  font-size: 0.75rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
}

/* ── LEGAL DISCLAIMER ────────────────────────────────────────────── */
.sc-disclaimer {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-100);
  background: var(--sc-slate-50);
  padding: 1rem;
}
.sc-disclaimer__title {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sc-slate-500);
  margin: 0 0 0.375rem;
}
.sc-disclaimer p {
  font-size: 0.75rem;
  color: var(--sc-slate-400);
  line-height: 1.625;
  margin: 0 0 0.375rem;
}
.sc-disclaimer p:last-child { margin-bottom: 0; }

/* ── FINAL CTA ───────────────────────────────────────────────────── */
.sc-final-cta {
  padding: 1rem 0 5rem;
}
@media (min-width: 640px) {
  .sc-final-cta { padding-bottom: 1rem; }
}
.sc-final-cta__card {
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: rgba(248,250,252,0.6);
  padding: 1rem;
  text-align: center;
}
.sc-final-cta__title {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  font-weight: 500;
  margin: 0 0 0.375rem;
}
.sc-final-cta__subtitle {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  margin: 0 0 0.75rem;
}
.sc-final-cta__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sc-accent);
  transition: text-decoration 0.15s;
}
.sc-final-cta__link:hover { text-decoration: underline; }
.sc-final-cta__link svg {
  width: 1rem;
  height: 1rem;
}

/* ── FOLLOW / WATCH CTA (sc-follow.js) ────────────────────────────── */
/* Spinner animation */
@keyframes scf-spin {
  to { transform: rotate(360deg); }
}
.scf-spin { animation: scf-spin 0.8s linear infinite; }

/* Idle state — the main follow/watch button */
.scf-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--sc-slate-200);
  border-radius: 0.5rem;
  background: var(--sc-white);
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
  cursor: pointer;
}
.scf-btn:hover {
  border-color: var(--sc-accent);
  box-shadow: 0 1px 4px rgba(10,31,60,0.08);
}
.scf-btn__icon {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sc-accent-wash);
  border-radius: 0.375rem;
  color: var(--sc-accent);
}
.scf-btn__body {
  flex: 1;
  min-width: 0;
}
.scf-btn__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sc-slate-900);
}
.scf-btn__sub {
  display: block;
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  margin-top: 0.125rem;
}
.scf-btn__arrow {
  flex-shrink: 0;
  color: var(--sc-slate-400);
  transition: transform 0.15s;
}
.scf-btn:hover .scf-btn__arrow { transform: translateX(2px); }

/* Capture state — phone input form */
.scf-capture {
  border: 1px solid var(--sc-accent);
  border-radius: 0.5rem;
  background: var(--sc-white);
  padding: 1rem;
}
.scf-capture__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--sc-accent);
}
.scf-capture__icon {
  flex-shrink: 0;
}
.scf-capture__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sc-slate-900);
}
.scf-capture__form {
  display: flex;
  gap: 0.5rem;
}
.scf-input {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--sc-slate-200);
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.scf-input:focus {
  border-color: var(--sc-accent);
  box-shadow: 0 0 0 2px rgba(10,31,60,0.08);
}
.scf-send {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  background: var(--sc-accent);
  color: var(--sc-white);
  font-size: 0.8125rem;
  font-weight: 500;
  border-radius: 0.375rem;
  white-space: nowrap;
  transition: opacity 0.15s;
  cursor: pointer;
}
.scf-send:hover { opacity: 0.9; }
.scf-consent {
  font-size: 0.6875rem;
  color: var(--sc-slate-400);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}
.scf-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.375rem;
}

/* Sending state */
.scf-sending {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid var(--sc-slate-200);
  border-radius: 0.5rem;
  background: var(--sc-white);
  font-size: 0.8125rem;
  color: var(--sc-slate-500);
}

/* Confirmation state */
.scf-confirm {
  border: 1px solid var(--sc-emerald-400);
  border-radius: 0.5rem;
  background: rgba(5,150,105,0.04);
  padding: 1rem;
}
.scf-confirm__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
}
.scf-confirm__check {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sc-emerald-600);
  color: var(--sc-white);
  border-radius: 50%;
}
.scf-confirm__check svg {
  width: 0.875rem;
  height: 0.875rem;
}
.scf-confirm__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sc-emerald-700);
}
.scf-confirm__sub {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  margin: 0;
}

/* Related matters cards */
.scf-related { margin-top: 0.75rem; }
.scf-related__title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sc-slate-600);
  margin: 0 0 0.5rem;
}
.scf-related__cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.scf-rcard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid var(--sc-slate-200);
  border-radius: 0.375rem;
  background: var(--sc-white);
}
.scf-rcard__body {
  flex: 1;
  min-width: 0;
}
.scf-rcard__title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sc-slate-800);
  margin: 0;
  line-height: 1.3;
}
.scf-rcard__badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--sc-slate-500);
  background: var(--sc-slate-100);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  margin-top: 0.25rem;
}
.scf-rcard__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid var(--sc-slate-200);
  border-radius: 0.375rem;
  background: var(--sc-white);
  color: var(--sc-slate-600);
  white-space: nowrap;
  transition: border-color 0.15s;
  cursor: pointer;
}
.scf-rcard__btn:hover {
  border-color: var(--sc-accent);
  color: var(--sc-accent);
}
.scf-rcard__btn:disabled {
  cursor: default;
  opacity: 0.7;
}
.scf-rcard__btn--done {
  color: var(--sc-emerald-600);
  border-color: var(--sc-emerald-400);
  background: rgba(5,150,105,0.04);
}
.scf-rcard__btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* Confirmed state for hijacked sticky/hero watch buttons */
.scf-btn--confirmed {
  color: var(--sc-emerald-600) !important;
  border-color: var(--sc-emerald-400) !important;
  background: rgba(5,150,105,0.04) !important;
  cursor: default !important;
}
.scf-btn--confirmed svg {
  width: 0.875rem;
  height: 0.875rem;
}

/* ── STICKY BOTTOM CTA BAR ───────────────────────────────────────── */
.sc-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.sc-sticky.is-visible {
  transform: translateY(0);
}
.sc-sticky__inner {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--sc-slate-200);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.04);
}
.sc-sticky__content {
  max-width: 36rem; /* max-w-xl */
  margin: 0 auto;
  padding: 0.625rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.sc-sticky__cta {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sc-white);
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background: var(--sc-accent);
  transition: opacity 0.15s;
  white-space: nowrap;
}
.sc-sticky__cta:hover { opacity: 0.9; }

/* Follow-only sticky bar — single centered button */
.sc-sticky__cta--follow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 auto;
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
}

/* ── Campaign Footer ─────────────────────────────────────────────── */
.sc-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 1rem;
  background: var(--sc-accent);
}
@media (min-width: 640px) {
  .sc-footer { padding: 1.25rem 1.5rem; }
}
.sc-footer__inner {
  max-width: 64rem;
  margin: 0 auto;
}
.sc-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.625rem;
}
.sc-footer__copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  line-height: 1.625;
}
.sc-footer__copyright .sc-footer__ai-note {
  color: rgba(251,191,36,0.8); /* amber-400/80 */
  font-weight: 500;
}
.sc-footer__passport {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: color 0.15s;
}
.sc-footer__passport:hover { color: rgba(255,255,255,0.75); }
.sc-footer__passport svg {
  width: 0.875rem;
  height: 0.875rem;
}
.sc-footer__passport-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sc-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.25rem;
}
.sc-footer__link {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  transition: color 0.15s;
}
.sc-footer__link:hover { color: rgba(255,255,255,0.9); }
.sc-footer__sep {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  user-select: none;
}

/* ── Legal pages (shared) ────────────────────────────────────────── */
.sc-legal {
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}
@media (min-width: 640px) {
  .sc-legal { padding: 3rem 1.5rem; }
}
.sc-legal h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sc-slate-900);
  margin: 0 0 0.5rem;
}
.sc-legal .sc-legal__updated {
  font-size: 0.75rem;
  color: var(--sc-slate-400);
  margin-bottom: 2rem;
}
.sc-legal h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  margin: 1.75rem 0 0.75rem;
}
.sc-legal h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  margin: 1.25rem 0 0.5rem;
}
.sc-legal p {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.75;
  margin: 0 0 0.75rem;
}
.sc-legal ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}
.sc-legal li {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.75;
  margin-bottom: 0.25rem;
}
.sc-legal a {
  color: var(--sc-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ================================================================
   INTAKE WIZARD (claim-check.html)
   5-step non-disclosure qualification wizard
   ================================================================ */

/* ── Claim-check hero headline ────────────────────────────────── */
.sc-claim-hero {
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 100%;
}
.sc-claim-hero__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--sc-accent);
  margin: 0 0 0.5rem;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}
.sc-claim-hero__subtitle {
  font-size: 0.875rem;
  color: var(--sc-slate-500);
  margin: 0;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (min-width: 640px) {
  .sc-claim-hero__title { font-size: 1.625rem; }
  .sc-claim-hero__subtitle { font-size: 0.9375rem; }
}
@media (min-width: 768px) {
  .sc-claim-hero__title { font-size: 1.75rem; }
}

/* ── Wizard shell ────────────────────────────────────────────────── */
.sc-wizard {
  max-width: 40rem; /* max-w-2xl */
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}
@media (min-width: 640px) {
  .sc-wizard { padding: 2rem 1.5rem; }
}

/* ── Progress bar ────────────────────────────────────────────────── */
.sc-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.sc-progress__step {
  display: flex;
  align-items: center;
  flex: 1;
}
.sc-progress__step:last-child { flex: none; }
.sc-progress__circle {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
  transition: background-color 0.3s, color 0.3s;
  background: var(--sc-slate-100);
  color: var(--sc-slate-400);
  border: 1px solid var(--sc-slate-200);
}
.sc-progress__circle.is-current {
  background: var(--sc-accent);
  color: var(--sc-white);
  border-color: var(--sc-accent);
  box-shadow: 0 0 0 2px var(--sc-white), 0 0 0 4px var(--sc-accent);
}
.sc-progress__circle.is-done {
  background: var(--sc-accent);
  color: var(--sc-white);
  border-color: var(--sc-accent);
}
.sc-progress__line {
  flex: 1;
  height: 2px;
  margin: 0 0.375rem;
  background: var(--sc-slate-200);
  transition: background-color 0.3s;
}
.sc-progress__line.is-done {
  background: var(--sc-accent);
}
.sc-progress__labels {
  display: none;
}
@media (min-width: 640px) {
  .sc-progress__labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .sc-progress__label {
    font-size: 0.6875rem;
    color: var(--sc-slate-400);
    text-align: center;
    flex: 1;
  }
  .sc-progress__label:last-child { flex: none; width: 1.75rem; }
  .sc-progress__label.is-current { color: var(--sc-accent); font-weight: 600; }
  .sc-progress__label.is-done { color: var(--sc-slate-600); }
}

/* ── Save indicator ──────────────────────────────────────────────── */
.sc-save {
  font-size: 0.75rem;
  transition: opacity 0.3s;
  text-align: right;
  margin-bottom: 1rem;
  min-height: 1.25rem;
  opacity: 0;
  color: var(--sc-emerald-600);
}
.sc-save.is-visible {
  opacity: 1;
}

/* ── Step container ──────────────────────────────────────────────── */
.sc-step-container {
  display: none;
}
.sc-step-container.is-active {
  display: block;
}

/* ── Step section ────────────────────────────────────────────────── */
.sc-section {
  margin-bottom: 2rem;
}
.sc-section__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--sc-accent);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--sc-slate-200);
  margin: 0 0 1rem;
}

/* ── Field label ─────────────────────────────────────────────────── */
.sc-field {
  margin-bottom: 1.5rem;
}
.sc-field__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sc-accent);
  margin: 0 0 0.25rem;
  line-height: 1.4;
}
.sc-field__hint {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

/* ── Radio cards ─────────────────────────────────────────────────── */
.sc-radios {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sc-radio {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.875rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  font-size: 0.875rem;
  color: var(--sc-slate-700);
  transition: border-color 0.15s, background-color 0.15s;
  gap: 0.75rem;
  cursor: pointer;
}
.sc-radio:hover {
  border-color: var(--sc-slate-300);
}
.sc-radio.is-selected {
  border-color: var(--sc-accent);
  background: var(--sc-slate-50);
  color: var(--sc-slate-900);
  font-weight: 500;
}
.sc-radio__dot {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  border: 1px solid var(--sc-slate-300);
  background: var(--sc-white);
  flex-shrink: 0;
  transition: border-color 0.15s, background-color 0.15s;
}
.sc-radio.is-selected .sc-radio__dot {
  border-color: var(--sc-accent);
  background: var(--sc-accent);
}

/* ── Checkbox group ──────────────────────────────────────────────── */
.sc-checks {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.sc-check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.15s;
}
.sc-check:hover {
  background: var(--sc-slate-50);
}
.sc-check__box {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--sc-slate-300);
  background: var(--sc-white);
  flex-shrink: 0;
  margin-top: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background-color 0.15s;
}
.sc-check.is-checked .sc-check__box {
  border-color: var(--sc-accent);
  background: var(--sc-accent);
}
.sc-check__box svg {
  width: 0.625rem;
  height: 0.625rem;
  color: var(--sc-white);
  display: none;
}
.sc-check.is-checked .sc-check__box svg {
  display: block;
}
.sc-check__label {
  font-size: 0.875rem;
  color: var(--sc-slate-700);
  line-height: 1.4;
}

/* ── Yes/No toggle ───────────────────────────────────────────────── */
.sc-yesno {
  display: flex;
  gap: 0.5rem;
}
.sc-yesno__btn {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sc-slate-700);
  text-align: center;
  transition: border-color 0.15s, background-color 0.15s;
  cursor: pointer;
}
.sc-yesno__btn:hover {
  border-color: var(--sc-slate-300);
}
.sc-yesno__btn.is-selected {
  border-color: var(--sc-accent);
  background: var(--sc-slate-50);
  color: var(--sc-accent);
  font-weight: 600;
}

/* ── Textarea ────────────────────────────────────────────────────── */
.sc-textarea {
  width: 100%;
  min-height: 5rem;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--sc-slate-900);
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.15s;
}
.sc-textarea:focus {
  outline: none;
  border-color: var(--sc-accent);
  box-shadow: 0 0 0 3px rgba(10,31,60,0.08);
}
.sc-textarea::placeholder {
  color: var(--sc-slate-400);
}

/* ── Text input ──────────────────────────────────────────────────── */
.sc-input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--sc-slate-900);
  transition: border-color 0.15s;
}
.sc-input:focus {
  outline: none;
  border-color: var(--sc-accent);
  box-shadow: 0 0 0 3px rgba(10,31,60,0.08);
}
.sc-input::placeholder {
  color: var(--sc-slate-400);
}

/* ── Fund autocomplete ───────────────────────────────────────────── */
.sc-autocomplete {
  position: relative;
}
.sc-autocomplete__results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  margin-top: 0.25rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  max-height: 16rem;
  overflow-y: auto;
  display: none;
}
.sc-autocomplete__results.is-open {
  display: block;
}
.sc-autocomplete__item {
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  color: var(--sc-slate-700);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  border-bottom: 1px solid var(--sc-slate-50);
}
.sc-autocomplete__empty {
  padding: 0.75rem;
  font-size: 0.8125rem;
  color: var(--sc-slate-400);
  text-align: center;
}
.sc-autocomplete__item:last-child { border-bottom: none; }
.sc-autocomplete__item:hover,
.sc-autocomplete__item.is-highlighted {
  background: var(--sc-slate-50);
}
.sc-autocomplete__item-name {
  font-weight: 500;
}
.sc-autocomplete__item-alias {
  font-size: 0.75rem;
  color: var(--sc-slate-400);
}
.sc-autocomplete__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-accent);
  background: var(--sc-accent-wash);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sc-accent);
}
.sc-autocomplete__badge-clear {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: var(--sc-slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.15s;
}
.sc-autocomplete__badge-clear:hover {
  background: var(--sc-slate-300);
}
.sc-autocomplete__badge-clear svg {
  width: 0.625rem;
  height: 0.625rem;
  color: var(--sc-slate-600);
}

/* ── Info box (more_info / no consent) ────────────────────────────── */
.sc-infobox {
  padding: 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.625;
  margin-top: 0.5rem;
}
.sc-infobox.is-blue {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1e40af;
}
.sc-infobox.is-amber {
  background: #fffbeb;
  border: 1px solid #fef3c7;
  color: #92400e;
}
.sc-infobox p { margin: 0; }
.sc-infobox p.sc-infobox__title {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

/* ── Privacy disclaimer (step 5) ─────────────────────────────────── */
.sc-privacy-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-slate-50);
}
.sc-privacy-note p {
  font-size: 0.6875rem;
  color: var(--sc-slate-500);
  line-height: 1.625;
  margin: 0;
}

/* ── Step 4 intro ────────────────────────────────────────────────── */
.sc-step-intro {
  padding: 1rem;
  border-radius: 0.5rem;
  background: var(--sc-slate-50);
  border: 1px solid var(--sc-slate-200);
  margin-bottom: 1.5rem;
}
.sc-step-intro p {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
  margin: 0;
}

/* ── Navigation footer ───────────────────────────────────────────── */
.sc-nav {
  display: flex;
  gap: 0.75rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--sc-slate-100);
  margin-top: 2rem;
}
.sc-nav__back {
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sc-slate-700);
  transition: border-color 0.15s;
  cursor: pointer;
}
.sc-nav__back:hover {
  border-color: var(--sc-slate-300);
}
.sc-nav__next {
  flex: 1;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  background: var(--sc-accent);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--sc-white);
  transition: opacity 0.15s;
  cursor: pointer;
  border: none;
}
.sc-nav__next:hover { opacity: 0.9; }
.sc-nav__next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Confirmation screen ─────────────────────────────────────────── */
.sc-confirm {
  text-align: center;
  padding: 2rem 0;
}
.sc-confirm__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: var(--sc-emerald-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.sc-confirm__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--sc-white);
}
.sc-confirm__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid;
  margin-bottom: 0.75rem;
}
.sc-confirm__badge.is-high {
  background: #dcfce7; color: #166534; border-color: #bbf7d0;
}
.sc-confirm__badge.is-medium {
  background: #dbeafe; color: #1e40af; border-color: #bfdbfe;
}
.sc-confirm__badge.is-low {
  background: var(--sc-slate-100); color: var(--sc-slate-700); border-color: var(--sc-slate-200);
}
.sc-confirm__badge.is-not_suitable {
  background: var(--sc-slate-100); color: var(--sc-slate-700); border-color: var(--sc-slate-200);
}
.sc-confirm__headline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--sc-accent);
  margin: 0 0 0.5rem;
}
.sc-confirm__body {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  line-height: 1.75;
  margin: 0 0 0.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.sc-confirm__sub {
  font-size: 0.8125rem;
  color: var(--sc-slate-500);
  line-height: 1.625;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* ── Passport linkage section (confirmation) ─────────────────────── */
.sc-passport {
  max-width: 28rem;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-slate-50);
}
.sc-passport__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sc-accent);
  margin: 0 0 0.375rem;
}
.sc-passport__subtitle {
  font-size: 0.8125rem;
  color: var(--sc-slate-500);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.sc-passport__input-row {
  display: flex;
  gap: 0.5rem;
}
.sc-passport__input-row .sc-input {
  flex: 1;
}
.sc-passport__submit {
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  background: var(--sc-accent);
  color: var(--sc-white);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.sc-passport__submit:hover { opacity: 0.9; }
.sc-passport__submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.sc-passport__success {
  padding: 0.75rem;
  border-radius: 0.375rem;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.8125rem;
  text-align: center;
}
.sc-passport__error {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.375rem;
}

/* ── Loading spinner ─────────────────────────────────────────────── */
.sc-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--sc-white);
  border-radius: 9999px;
  animation: sc-spin 0.6s linear infinite;
}
@keyframes sc-spin {
  to { transform: rotate(360deg); }
}

/* ================================================================
   Key Parties Strip — deploy-time baked party cards
   Matches React KeyPartiesStrip component design
   ================================================================ */

/* ── Strip container ─────────────────────────────────────────────── */
.sc-key-parties {
  width: 100%;
  border-bottom: 1px solid var(--sc-slate-200);
  background: var(--sc-slate-50);
}
.sc-key-parties__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 1rem 1rem;
}
@media (min-width: 640px) {
  .sc-key-parties__inner {
    padding: 1rem 1.5rem;
  }
}

/* ── "Key Parties" label ─────────────────────────────────────────── */
.sc-kp-label {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--sc-slate-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.625rem 0;
}

/* ── Scrollable chip strip ───────────────────────────────────────── */
.sc-kp-strip {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.25rem;
}
/* Hide scrollbar on desktop */
.sc-kp-strip::-webkit-scrollbar { height: 4px; }
.sc-kp-strip::-webkit-scrollbar-track { background: transparent; }
.sc-kp-strip::-webkit-scrollbar-thumb { background: var(--sc-slate-200); border-radius: 9999px; }
@media (min-width: 640px) {
  .sc-kp-strip {
    flex-wrap: wrap;
    overflow-x: visible;
    scroll-snap-type: none;
  }
}

/* ── Individual party chip ───────────────────────────────────────── */
.sc-kp-chip {
  flex-shrink: 0;
  scroll-snap-align: start;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid var(--sc-slate-200);
  background: var(--sc-white);
  padding: 0.75rem 1rem;
  min-width: 200px;
  max-width: 280px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.sc-kp-chip:hover {
  border-color: var(--sc-slate-300);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
@media (min-width: 640px) {
  .sc-kp-chip {
    min-width: 220px;
    max-width: 300px;
  }
}

/* ── Icon (left side of chip) ────────────────────────────────────── */
.sc-kp-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--sc-slate-400);
}

/* ── Content area ────────────────────────────────────────────────── */
.sc-kp-content {
  flex: 1;
  min-width: 0;
}
.sc-kp-name-row {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.sc-kp-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--sc-slate-800);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
@media (min-width: 640px) {
  .sc-kp-name { max-width: 220px; }
}
.sc-kp-link {
  text-decoration: none;
  color: var(--sc-slate-800);
}
.sc-kp-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--sc-slate-300);
}
.sc-kp-ticker {
  font-size: 0.625rem;
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', monospace;
  color: var(--sc-slate-400);
  flex-shrink: 0;
}

/* ── Meta row (badge + external link) ────────────────────────────── */
.sc-kp-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.375rem;
}

/* ── Role badges — colour-coded ──────────────────────────────────── */
.sc-kp-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0 0.375rem;
  height: 18px;
  line-height: 18px;
  border-radius: 9999px;
  border: 1px solid;
}
/* Navy — plaintiff firms */
.sc-kp-badge--firm {
  background: rgba(30, 58, 95, 0.1);
  color: #1e3a5f;
  border-color: rgba(30, 58, 95, 0.2);
}
/* Slate — defendants */
.sc-kp-badge--defendant {
  background: var(--sc-slate-100);
  color: var(--sc-slate-600);
  border-color: var(--sc-slate-200);
}
/* Amber — funders */
.sc-kp-badge--funder {
  background: #fffbeb;
  color: #b45309;
  border-color: #fde68a;
}

/* ── External link icon ──────────────────────────────────────────── */
.sc-kp-ext {
  width: 0.75rem;
  height: 0.75rem;
}
.sc-kp-ext-link {
  display: inline-flex;
  color: var(--sc-slate-400);
  transition: color 0.15s ease;
}
.sc-kp-ext-link:hover {
  color: var(--sc-slate-600);
}

/* ================================================================
   Investigation Badge & Hero Helper
   Used on pre-launch investigation-state campaign pages
   ================================================================ */

/* ── Generic badge pill (launched campaigns) ─────────────────────── */
.sc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: var(--sc-accent-wash);
  color: var(--sc-accent);
  margin-bottom: 0.5rem;
}

/* ── Investigation variant — amber accent ────────────────────────── */
.sc-badge--investigation {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}
.sc-badge--investigation .sc-badge__icon {
  width: 0.75rem;
  height: 0.75rem;
  color: #d97706;
  flex-shrink: 0;
}

/* ── Hero helper text — sub-headline context line ────────────────── */
.sc-claim-hero__helper {
  font-size: 0.8125rem;
  color: var(--sc-slate-400);
  margin: 0.375rem 0 0;
  line-height: 1.5;
}
