/* ================================================================
   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: 52rem; /* widened content column — Phase 1 readability */
  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: -webkit-sticky;
  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;
}

/* Desktop nav links */
.sc-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}
@media (min-width: 768px) {
  .sc-header__nav { display: flex; }
}
.sc-header__nav-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sc-slate-600);
  padding: 0.375rem 0.625rem;
  border-radius: 0.375rem;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}
.sc-header__nav-link:hover {
  background: var(--sc-slate-100);
  color: var(--sc-slate-900);
}

/* Header right action area */
.sc-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: 0.75rem;
}

/* Hamburger button — mobile only */
.sc-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--sc-slate-200);
  border-radius: 0.375rem;
  background: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  transition: border-color 0.15s;
}
.sc-hamburger:hover { border-color: var(--sc-slate-400); }
@media (min-width: 768px) {
  .sc-hamburger { display: none; }
}
.sc-hamburger__bar {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--sc-slate-700);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
/* Open state — X shape */
.sc-hamburger[aria-expanded="true"] .sc-hamburger__bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.sc-hamburger[aria-expanded="true"] .sc-hamburger__bar:nth-child(2) {
  opacity: 0;
}
.sc-hamburger[aria-expanded="true"] .sc-hamburger__bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile nav drawer */
.sc-mobile-nav {
  display: none;
  position: fixed;
  top: 3.5rem; /* header height */
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 49;
  background: rgba(15,23,42,0.35);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.sc-mobile-nav.is-open { display: block; }
.sc-mobile-nav__inner {
  background: var(--sc-white);
  border-bottom: 1px solid var(--sc-slate-200);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.sc-mobile-nav__link {
  display: block;
  padding: 0.75rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--sc-slate-700);
  border-radius: 0.5rem;
  transition: background 0.12s, color 0.12s;
}
.sc-mobile-nav__link:hover {
  background: var(--sc-slate-100);
  color: var(--sc-slate-900);
}
@media (min-width: 768px) {
  .sc-mobile-nav { display: none !important; }
}

/* 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: 2.5rem 0; }
}

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

/* ── THREE-PATH CTA ──────────────────────────────────────────────── */
.sc-cta-section {
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .sc-cta-section { margin-bottom: 2rem; }
}
.sc-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .sc-cta-stack {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Side-by-side row for primary + follow on desktop */
.sc-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .sc-cta-row {
    flex-direction: row;
    gap: 0.75rem;
  }
  /* Primary CTA dominates — takes ~60% of row */
  .sc-cta-row > .sc-cta-primary {
    flex: 1.4;
    min-width: 0;
  }
  .sc-cta-row > #follow-cta {
    flex: 1;
    min-width: 0;
  }
}

/* Primary CTA — navy block */
.sc-cta-primary {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: left;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--sc-accent);
  color: var(--sc-white);
  box-shadow: 0 2px 8px rgba(10,31,60,0.18);
}
.sc-cta-primary:hover {
  box-shadow: 0 6px 20px rgba(10,31,60,0.22);
  transform: translateY(-1px);
}
@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.9375rem;
  font-weight: 600;
  color: var(--sc-white);
  margin: 0;
}
@media (min-width: 640px) {
  .sc-cta-primary__title { font-size: 1rem; }
}
.sc-cta-primary__subtitle {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.125rem;
}
@media (min-width: 640px) {
  .sc-cta-primary__subtitle { font-size: 0.9375rem; }
}
.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.9375rem;
  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.9375rem;
  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);
}
.sc-explainer-list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0 0 0.75rem 0.25rem;
  padding: 0;
  list-style: none;
}
.sc-explainer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
}
.sc-explainer-list li::before {
  content: '';
  margin-top: 0.5rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 9999px;
  background: var(--sc-slate-400);
  flex-shrink: 0;
}

/* ── FOLLOW BENEFITS LIST ─────────────────────────────────────────── */
.sc-follow-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0.5rem 0 0 0.25rem;
  padding: 0;
  list-style: none;
}
.sc-follow-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--sc-slate-600);
  line-height: 1.625;
}
.sc-follow-benefits li::before {
  content: '';
  margin-top: 0.5rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 9999px;
  background: var(--sc-emerald-400);
  flex-shrink: 0;
}

/* ── 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.9375rem;
  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;
}
@media (min-width: 640px) {
  .sc-tabs-section { margin-top: 2rem; }
}
.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: -webkit-sticky;
  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);
}
.sc-summary-card--bluf {
  border-left: 3px solid var(--sc-accent, #1e40af);
  background: #f8fafc;
}
.sc-summary-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sc-summary-card__list li {
  font-size: 0.8125rem;
  color: var(--sc-slate-700);
  line-height: 1.625;
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}
.sc-summary-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sc-slate-400);
}
.sc-summary-card__list li strong {
  color: var(--sc-slate-800);
}
.sc-summary-card__text + .sc-summary-card__text {
  margin-top: 0.375rem;
}
.sc-summary-link {
  color: var(--sc-accent, #1e40af);
  text-decoration: none;
  font-weight: 500;
}
.sc-summary-link:hover {
  text-decoration: underline;
}

/* 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; }

/* ================================================================
   Campaign Update Cards — compact 2-col grid layout
   Used by renderCampaignUpdates() in sc-app.js for the Updates/
   Evidence section of all campaign/matter pages.
   Intentionally separate from .sc-news-card / .sc-notice-card
   which remain for backward compat.
   ================================================================ */

/* Teal accent for update cards (separate from site navy --sc-accent) */
:root {
  --sc-teal: #0d9488;
  --sc-teal-light: #f0fdfa;
  --sc-teal-muted: #ccfbf1;
}

/* Outer section wrapper */
.campaign-updates {
  padding: 0;
}
.campaign-updates__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  flex-wrap: wrap;
}
.campaign-updates__count {
  font-size: 0.75rem;
  color: var(--sc-slate-500);
}

/* 2-col grid desktop / 1-col mobile */
.campaign-updates__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .campaign-updates__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Individual update card */
.campaign-update-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 16px 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
  text-decoration: none;
  color: inherit;
}
.campaign-update-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Meta row: pill + source + date */
.campaign-update-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

/* Type pill */
.campaign-update-card__pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  background: var(--sc-teal-muted);
  color: var(--sc-teal);
  white-space: nowrap;
}
/* --news: media, news_item, video, media_coverage */
.campaign-update-card__pill--news {
  background: #dcfce7;
  color: #15803d;
}
/* --court: court_filing, court_document, judgment */
.campaign-update-card__pill--court {
  background: #ede9fe;
  color: #6d28d9;
}
/* --regulatory: regulatory, regulator_notice, regulator */
.campaign-update-card__pill--regulatory {
  background: #fef3c7;
  color: #b45309;
}
/* --notice: notice, opt_out */
.campaign-update-card__pill--notice {
  background: #fff1f2;
  color: #be123c;
}
/* --media retained as alias so old cached pages don't break */
.campaign-update-card__pill--media {
  background: #dcfce7;
  color: #15803d;
}

/* Source name */
.campaign-update-card__source {
  font-size: 0.6875rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12rem;
}

/* Date — pushed right */
.campaign-update-card__date {
  font-size: 0.6875rem;
  color: #94a3b8;
  margin-left: auto;
  white-space: nowrap;
}

/* Title — 2-line clamp */
.campaign-update-card__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
  margin: 0 0 0.3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Excerpt — 2-line clamp */
.campaign-update-card__excerpt {
  font-size: 0.75rem;
  color: #475569;
  line-height: 1.55;
  margin: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Link at bottom */
.campaign-update-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sc-teal);
  margin-top: 0.875rem;
  margin-bottom: 0.25rem;
  text-decoration: none;
}
.campaign-update-card__link:hover { text-decoration: underline; }

/* Show-all toggle button */
.campaign-updates__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.875rem;
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--sc-teal);
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.campaign-updates__toggle:hover {
  background: #ccfbf1;
  border-color: #2dd4bf;
}

/* Hidden-card state for show-more behaviour */
.campaign-update-card.is-hidden {
  display: none;
}

/* Single-section mode: shown without tab bar */
.campaign-updates--solo {
  /* no extra styles needed; tab bar simply isn't rendered */
}

/* 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 in the page */
.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.75rem;
  background: var(--sc-white);
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(10,31,60,0.06);
}
.scf-btn:hover {
  border-color: var(--sc-accent);
  box-shadow: 0 3px 10px rgba(10,31,60,0.1);
  transform: translateY(-1px);
}
.scf-btn--done {
  border-color: var(--sc-emerald-400);
  background: rgba(5,150,105,0.04);
  cursor: default;
}
.scf-btn--done:hover {
  transform: none;
  box-shadow: 0 1px 3px rgba(10,31,60,0.06);
}
.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__icon--done {
  background: var(--sc-emerald-600);
  color: var(--sc-white);
}
.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); }

/* ── Follow Modal Overlay & Modal (light theme) ───────────────────── */
.scf-overlay {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 9999;
  background: rgba(15,23,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: scfFadeIn 0.2s ease;
}
@keyframes scfFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.scf-modal {
  position: relative;
  background: var(--sc-white, #ffffff);
  border: 1px solid var(--sc-slate-200, #e2e8f0);
  border-radius: 16px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(15,23,42,0.18);
  animation: scfSlideUp 0.25s ease;
}
@keyframes scfSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.scf-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--sc-slate-400, #94a3b8);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.15s;
}
.scf-modal__close:hover {
  color: var(--sc-slate-700, #334155);
}
.scf-modal__icon {
  margin-bottom: 12px;
  color: var(--sc-accent, #0a1f3c);
}
.scf-modal__icon svg {
  width: 28px;
  height: 28px;
}
.scf-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--sc-slate-900, #0f172a);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.scf-modal__desc {
  font-size: 14px;
  color: var(--sc-slate-500, #64748b);
  line-height: 1.5;
  margin: 0 0 16px;
}

/* Tabs — SMS / Email toggle (shared by modal) */
.scf-tabs {
  display: flex;
  gap: 0;
  margin: 0 0 16px;
  background: var(--sc-slate-100, #f1f5f9);
  border-radius: 10px;
  padding: 3px;
  border: 1px solid var(--sc-slate-200, #e2e8f0);
}
.scf-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--sc-slate-500, #64748b);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}
.scf-tab:hover {
  color: var(--sc-slate-700, #334155);
}
.scf-tab--active {
  color: var(--sc-white, #fff);
  background: var(--sc-accent, #0a1f3c);
}
.scf-tab svg {
  flex-shrink: 0;
}

/* Modal form elements */
.scf-modal__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scf-modal__input {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  color: var(--sc-slate-900, #0f172a);
  background: var(--sc-slate-50, #f8fafc);
  border: 1px solid var(--sc-slate-200, #e2e8f0);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.scf-modal__input::placeholder {
  color: var(--sc-slate-400, #94a3b8);
}
.scf-modal__input:focus {
  border-color: var(--sc-accent, #0a1f3c);
  box-shadow: 0 0 0 2px rgba(10,31,60,0.1);
}
.scf-modal__consent {
  font-size: 11px;
  color: var(--sc-slate-400, #94a3b8);
  line-height: 1.5;
  margin: 0;
}
.scf-modal__submit {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  color: var(--sc-white, #fff);
  background: var(--sc-accent, #0a1f3c);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}
.scf-modal__submit:hover {
  opacity: 0.9;
}
.scf-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.scf-modal__error {
  font-size: 13px;
  color: #dc2626;
  margin: 0;
  line-height: 1.4;
}
.scf-modal__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px 0 8px;
}
.scf-modal__success p {
  font-size: 15px;
  font-weight: 500;
  color: var(--sc-slate-800, #1e293b);
  margin: 0;
}

/* Mobile: bottom sheet style */
@media (max-width: 480px) {
  .scf-modal {
    padding: 24px 20px 22px;
    padding-bottom: calc(22px + env(safe-area-inset-bottom, 0px));
    border-radius: 14px 14px 0 0;
    max-width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    animation: scfSlideUpMobile 0.25s ease;
  }
  @keyframes scfSlideUpMobile {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }
  .scf-overlay {
    align-items: flex-end;
    padding: 0;
    overscroll-behavior: contain;
  }
}

/* Legacy inline classes kept for backwards compat */
.scf-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.375rem;
}

/* Confirmed state on sticky/hero buttons */
.scf-btn--confirmed {
  border-color: var(--sc-emerald-400);
  color: var(--sc-emerald-600);
  cursor: default;
  opacity: 0.8;
  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 var(--sc-slate-200);
  padding: 2rem 1rem 1.5rem;
  background: var(--sc-slate-900);
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
@media (min-width: 640px) {
  .sc-footer { padding: 2.5rem 1.5rem 1.75rem; }
}
.sc-footer__inner {
  max-width: 64rem;
  margin: 0 auto;
}

/* Brand lockup */
.sc-footer__brand {
  margin-bottom: 1.75rem;
}

/* New CA-parity logo link */
.sc-footer__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
  margin-bottom: 0.625rem;
}
.sc-footer__logo-mark {
  flex-shrink: 0;
  border-radius: 4px;
}
.sc-footer__wordmark {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sc-white);
  line-height: 1.2;
}
.sc-footer__subtitle {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  line-height: 1.4;
}
.sc-footer__tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 26rem;
  margin-top: 0.375rem;
  margin-bottom: 0.25rem;
}
.sc-footer__abn {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

.sc-footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.sc-footer__brand-badge {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.25rem;
  background: var(--sc-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sc-footer__brand-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}
.sc-footer__brand-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sc-white);
}
.sc-footer__brand-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 26rem;
}

/* 3-col grid */
.sc-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 480px) {
  .sc-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
.sc-footer__col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.625rem;
}
.sc-footer__col-links {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.sc-footer__link,
.sc-footer__col-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.13s;
  line-height: 1.4;
  text-decoration: none;
}
.sc-footer__link:hover,
.sc-footer__col-links a:hover { color: rgba(255,255,255,0.95); }

/* Bottom bar */
.sc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.sc-footer__copyright {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.sc-footer__bottom-note {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  line-height: 1.6;
}
.sc-footer__ai-note {
  color: rgba(255,255,255,0.22);
  font-style: italic;
}
.sc-footer__passport {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: color 0.15s;
}
.sc-footer__passport:hover { color: rgba(255,255,255,0.65); }
.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__sep {
  font-size: 11px;
  color: rgba(255,255,255,0.15);
  user-select: none;
}

/* ── Mobile overflow guards ─────────────────────────────────────── */
/* Prevent horizontal page scroll on all viewports */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
.sc-page, .sc-shell, .sc-main, .sc-hero, .sc-tabs-section,
.sc-header, .sc-mobile-nav, .sc-watcher-portal,
.sc-follow-cta, .sc-updates, .sc-campaign-content {
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
/* Flex/grid children: avoid fixed widths that burst viewport */
.sc-header__inner, .sc-footer__inner, .sc-main {
  min-width: 0;
}

/* ── Floating scroll controls ────────────────────────────────────── */
.sc-floating-nav, .sc-scroll-controls {
  position: fixed;
  right: 16px;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 45;
}
.sc-floating-nav__btn, .sc-scroll-controls__btn {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--sc-white);
  border: 1px solid var(--sc-slate-200);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(10,31,60,0.10);
  color: var(--sc-slate-600);
  cursor: pointer;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  transition: border-color 0.13s, box-shadow 0.13s;
}
.sc-floating-nav__btn:hover, .sc-scroll-controls__btn:hover {
  border-color: var(--sc-slate-400);
  box-shadow: 0 3px 12px rgba(10,31,60,0.14);
}
.sc-floating-nav__btn svg, .sc-scroll-controls__btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
/* Compact icon-only on mobile */
@media (max-width: 760px) {
  .sc-floating-nav, .sc-scroll-controls {
    right: 12px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
  }
  .sc-floating-nav__btn, .sc-scroll-controls__btn {
    width: 40px;
    height: 40px;
    padding: 0;
    justify-content: center;
    border-radius: 999px;
  }
  .sc-floating-nav__label, .sc-scroll-controls__label {
    display: none;
  }
}

/* Mobile tab strip — scroll horizontally, not the page */
@media (max-width: 760px) {
  .sc-tabs__nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .sc-tabs__nav::-webkit-scrollbar { display: none; }
}

/* Watcher portal — stay within viewport on mobile */
@media (max-width: 760px) {
  .sc-watcher-portal {
    width: calc(100vw - 24px);
    max-width: 100vw;
    box-sizing: border-box;
    right: 12px;
    left: 12px;
  }
}

/* ── 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%;
}
@media (min-width: 640px) {
  .sc-claim-hero { margin-bottom: 2rem; }
}
.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;
}
.sc-claim-hero__body {
  font-size: 0.875rem;
  color: var(--sc-slate-600);
  margin: 0.625rem 0 0;
  line-height: 1.65;
}
@media (min-width: 640px) {
  .sc-claim-hero__title { font-size: 2rem; }
  .sc-claim-hero__subtitle { font-size: 1rem; }
  .sc-claim-hero__body { font-size: 0.9375rem; }
}
@media (min-width: 768px) {
  .sc-claim-hero__title { font-size: 2.125rem; }
}

/* ── 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
   Polished CA-aligned grid layout
   ================================================================ */

/* ── Strip container ─────────────────────────────────────────────── */
/* Fits inside CA shell — no double padding, no conflicting max-width */
.sc-key-parties {
  width: 100%;
}
.sc-key-parties__inner {
  /* Zero extra padding — CA shell owns outer horizontal spacing */
  padding: 1.25rem 0 0.25rem;
}

/* ── "Key Parties" section heading ───────────────────────────────── */
.sc-kp-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--sc-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin: 0 0 0.75rem 0;
}

/* ── Grid strip — single-column mobile, 2-col sm, 3-col lg ───────── */
.sc-kp-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  /* No horizontal scroll — stack on mobile */
}
@media (min-width: 560px) {
  .sc-kp-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .sc-kp-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Individual party chip ───────────────────────────────────────── */
.sc-kp-chip {
  display: flex;
  align-items: flex-start;  /* top-align so icon stays at text baseline */
  gap: 0.625rem;
  border-radius: 10px;
  border: 1px solid var(--sc-slate-200);
  background: #fff;
  padding: 0.6875rem 0.875rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  /* No min/max widths — grid columns own the width */
}
.sc-kp-chip:hover {
  border-color: var(--sc-slate-300);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ── Icon wrapper — locked 20×20, never shrinks ──────────────────── */
.sc-kp-icon-wrap {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px; /* optical alignment with first line of text */
}
/* Logo variant — larger container for image logos (e.g. ACCC, firm logos) */
.sc-kp-icon-wrap--logo {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin-top: 0;
}
/* SVGs are sized via HTML attrs + this safety net */
.sc-kp-icon,
.sc-kp-icon-wrap svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  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;
  flex-wrap: wrap; /* allow ticker to wrap on very narrow cards */
}
.sc-kp-name {
  font-size: 0.875rem;
  font-weight: 650;
  color: var(--sc-slate-800);
  line-height: 1.3;
  /* Let text wrap cleanly — no truncation hiding content */
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
.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;
  white-space: nowrap;
}

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

/* ── Role badges — colour-coded ──────────────────────────────────── */
.sc-kp-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0 0.4rem;
  height: 17px;
  line-height: 17px;
  border-radius: 4px;
  border: 1px solid;
  white-space: nowrap;
}
/* Navy — plaintiff firms */
.sc-kp-badge--firm {
  background: rgba(6, 31, 61, 0.07);
  color: #1e3a5f;
  border-color: rgba(6, 31, 61, 0.15);
}
/* 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;
}
/* Rose — enforcement regulators (ACCC, ASIC, etc.) */
.sc-kp-badge--regulator {
  background: #fff1f2;
  color: #be123c;
  border-color: #fecdd3;
}

/* ── External link icon ──────────────────────────────────────────── */
.sc-kp-ext {
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
}
.sc-kp-ext-link {
  display: inline-flex;
  align-items: center;
  color: var(--sc-slate-400);
  transition: color 0.15s ease;
}
.sc-kp-ext-link:hover {
  color: var(--sc-slate-600);
}

/* ── Overflow items — hidden by default, same grid flow when shown ── */
/* IMPORTANT: .sc-kp-overflow is a normal block inside the grid,     */
/* NOT display:contents — overflow items are children of the strip.  */
/* JS sets display:contents only to inject items into parent grid.   */
/* We keep overflow hidden via the parent strip class toggle instead. */
.sc-kp-overflow {
  display: contents; /* intentional: overflow items are direct grid children */
}
/* When collapsed, hide overflow chips via a wrapper that JS toggles */
.sc-kp-strip[data-collapsed="true"] .sc-kp-overflow {
  display: none;
}

/* ── View all toggle button ──────────────────────────────────────── */
.sc-kp-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  margin: 0.875rem 0 0;
  padding: 0.4375rem 1rem;
  background: #fff;
  border: 1px solid var(--sc-slate-200);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
  /* Left-align with the cards — do NOT center on the full section */
  align-self: flex-start;
}
.sc-kp-toggle:hover {
  border-color: var(--sc-slate-300);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.sc-kp-toggle__text {
  font-size: 0.8125rem;
  font-weight: 550;
  color: var(--sc-slate-600);
  line-height: 1;
}
.sc-kp-toggle__icon {
  width: 14px;
  height: 14px;
  color: var(--sc-slate-400);
  transition: transform 0.2s ease;
}
.sc-kp-toggle[aria-expanded="true"] .sc-kp-toggle__icon {
  transform: rotate(180deg);
}

/* ================================================================
   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;
}

/* ================================================================
   Governed ClassActions campaign alignment layer
   ================================================================ */
:root{--sc-accent:#061f3d;--sc-accent-light:#cbd8e6;--sc-accent-wash:#f3f7fb;--sc-bg:#fff;--sc-slate-50:#f8fbfe;--sc-slate-100:#eef3f8;--sc-slate-200:#d8e2ee;--sc-slate-300:#cbd8e6;--sc-slate-400:#52657a;--sc-slate-500:#52657a;--sc-slate-600:#40536a;--sc-slate-700:#263b52;--sc-slate-800:#10263f;--sc-slate-900:#061f3d;--sc-page-max:1180px;--sc-page-pad:32px;--sc-radius-card:16px;--sc-radius-control:9px;--sc-card-shadow:0 12px 32px rgba(6,31,61,.045)}
body,.sc-page{background:#fff;color:var(--sc-slate-900)}.sc-header{border-bottom:1px solid #d8e2ee;background:rgba(255,255,255,.96);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px)}.sc-header__inner,.sc-footer__inner{width:min(var(--sc-page-max),calc(100% - (var(--sc-page-pad) * 2)));max-width:none;padding-left:0;padding-right:0}.sc-header__inner{height:4.25rem}.sc-header__logo-badge{width:2.25rem;height:2.25rem;border-radius:4px;background:#061f3d}.sc-header__logo-title{color:#061f3d;font-size:.95rem;font-weight:760;letter-spacing:-.025em}.sc-header__logo-subtitle,.sc-header__trust-text{color:#52657a}.sc-header__trust{min-height:30px;padding:0 12px;border:1px solid #d8e2ee;border-radius:999px;background:#f6f8fb}.sc-header__trust-icon{color:#061f3d}
.sc-main{max-width:none;width:min(var(--sc-page-max),calc(100% - (var(--sc-page-pad) * 2)));padding:4.5rem 0 5rem}.sc-main>section,.sc-main>.sc-key-parties,.sc-main>.sc-tabs,.sc-main>.sc-legal{max-width:820px;margin-left:auto;margin-right:auto}.sc-claim-hero{max-width:880px;margin:0 auto 2rem;text-align:center}.sc-claim-hero__title{margin:0;color:#061f3d;font-size:clamp(2.5rem,5.2vw,4.25rem);line-height:1;letter-spacing:-.042em;font-weight:620;hyphens:none;text-wrap:balance}.sc-claim-hero__subtitle{max-width:760px;margin:1.25rem auto 0;color:#263b52;font-size:clamp(1rem,1.6vw,1.1875rem);line-height:1.55}.sc-claim-hero__body,.sc-claim-hero__helper{max-width:760px;margin:.875rem auto 0;color:#40536a;font-size:.9375rem;line-height:1.65}
.sc-badge,.sc-badge--investigation{margin-bottom:1rem;padding:.375rem .75rem;border:1px solid #d8e2ee;border-radius:999px;background:#f3f7fb;color:#52657a;font-size:.72rem;font-weight:850;letter-spacing:.12em}.sc-badge--investigation .sc-badge__icon{color:#52657a}.sc-cta-section{margin-bottom:2.5rem}.sc-cta-stack{max-width:820px;gap:.875rem}.sc-cta-primary,.sc-cta-secondary,.scf-btn,.sc-sticky__cta{border-radius:var(--sc-radius-control)}.sc-cta-primary{border:1px solid #061f3d;background:#061f3d;box-shadow:0 16px 38px rgba(6,31,61,.07)}.sc-cta-primary:hover{transform:translateY(-1px);box-shadow:0 18px 42px rgba(6,31,61,.10)}.sc-cta-secondary,.sc-cta-tertiary,.sc-other-issue,.sc-trust-strip,.sc-disclaimer,.sc-card,.sc-panel,.sc-tabs,.sc-key-parties,.sc-wizard,.sc-legal{border:1px solid #d8e2ee;border-radius:var(--sc-radius-card);background:#fff;box-shadow:var(--sc-card-shadow)}.sc-trust-strip{justify-content:center;padding:.75rem;gap:.5rem}.sc-trust-pill{border:1px solid #d8e2ee;background:#f6f8fb;color:#52657a;font-size:.75rem;font-weight:750}.sc-heading{color:#061f3d;font-size:clamp(1.45rem,2.4vw,2rem);line-height:1.08;letter-spacing:-.028em;font-weight:560;text-wrap:balance}.sc-divider{max-width:820px;border-top-color:#d8e2ee;margin:3rem auto}.sc-bullet,.sc-step,.sc-tab-panel,.sc-accordion__item,.sc-info-card{border-color:#d8e2ee;border-radius:12px;background:#fff}.sc-bullet__icon,.sc-step__num,.sc-accordion__icon{color:#061f3d}.sc-disclaimer{padding:1.25rem 1.4rem;box-shadow:none;background:#f8fbfe}.sc-disclaimer__title{color:#061f3d;font-size:.75rem;font-weight:850;letter-spacing:.13em;text-transform:uppercase}.sc-footer{border-top:1px solid #d8e2ee;background:#061f3d;padding:1.5rem 0}.sc-sticky__inner{border-top-color:#d8e2ee;box-shadow:0 -12px 32px rgba(6,31,61,.06)}.sc-sticky__content{width:min(820px,calc(100% - 32px));max-width:none}
@media (min-width:1024px){.sc-cta-row{gap:1rem}}@media (max-width:767px){:root{--sc-page-pad:18px}.sc-header__inner,.sc-footer__inner,.sc-main{width:min(100% - 32px,var(--sc-page-max))}.sc-header__inner{height:3.75rem}.sc-header__trust{padding:0;border:0;background:transparent}.sc-header__logo-subtitle{display:none}.sc-main{padding:3rem 0 4.25rem}.sc-claim-hero{margin-bottom:1.5rem}.sc-claim-hero__title{font-size:clamp(2.05rem,10vw,3rem);line-height:1.04}.sc-claim-hero__subtitle{margin-top:1rem;font-size:.98rem}.sc-trust-strip{align-items:stretch}.sc-trust-pill{justify-content:center}.sc-divider{margin:2rem auto}.sc-footer__top{align-items:flex-start;flex-direction:column}}

/* ── Standalone Follow CTA box ───────────────────────────────────── */
.sc-follow-cta{max-width:820px;margin:0 auto 2rem;padding:1.5rem 1.75rem;border:1px solid #d8e2ee;border-radius:var(--sc-radius-card);background:#f8fbfe;display:flex;align-items:center;justify-content:space-between;gap:1.25rem;flex-wrap:wrap}
.sc-follow-cta__inner{display:contents}
.sc-follow-cta__text{flex:1 1 260px;min-width:0}
.sc-follow-cta__title{margin:0 0 .3rem;font-size:.9375rem;font-weight:700;color:#061f3d;line-height:1.3}
.sc-follow-cta__body{margin:0;font-size:.85rem;color:#52657a;line-height:1.5}
.sc-follow-cta__btn{display:inline-flex;align-items:center;gap:.5rem;padding:.65rem 1.25rem;border-radius:9px;font-size:.875rem;font-weight:650;cursor:pointer;border:1px solid #061f3d;background:#061f3d;color:#fff;transition:background .15s,transform .1s,box-shadow .15s;flex-shrink:0}
.sc-follow-cta__btn:hover{background:#0f3460;transform:translateY(-1px);box-shadow:0 6px 18px rgba(6,31,61,.12)}
.sc-follow-cta__btn--following{background:#f3f7fb;color:#061f3d;border:1px solid #d8e2ee;cursor:default;opacity:.85}
.sc-follow-cta__btn--following:hover{transform:none;box-shadow:none}
.sc-follow-cta__actions{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.sc-follow-cta__manage{font-size:.8125rem;font-weight:600;color:#52657a;text-decoration:underline;text-underline-offset:2px;cursor:pointer;background:none;border:none;padding:0}
.sc-follow-cta__manage:hover{color:#061f3d}
.sc-follow-card__identity{display:flex;align-items:flex-start;gap:.75rem;margin-bottom:.875rem}
.sc-follow-card__avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border-radius:50%;border:1.5px solid #d8e2ee;background:#f3f7fb;color:#061f3d;flex-shrink:0}
.sc-follow-card__count{position:absolute;top:-5px;right:-5px;min-width:16px;height:16px;padding:0 4px;border-radius:9999px;background:#061f3d;color:#fff;font-size:10px;font-weight:700;line-height:16px;text-align:center}
.sc-follow-card__title{font-size:.875rem;font-weight:700;color:#166534;margin:0}
.sc-follow-card__copy{font-size:.8125rem;color:#64748b;margin:.25rem 0 0;line-height:1.45}
.sc-follow-card__list{display:flex;flex-direction:column;gap:.375rem;margin:.25rem 0 .875rem}
.sc-follow-card__list-label{font-size:.6875rem;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.06em;margin-bottom:.125rem}
.sc-follow-card__matter{display:flex;align-items:flex-start;gap:.5rem;padding:.55rem .625rem;border:1px solid #e2e8f0;border-radius:8px;background:#f8fbfe;color:#061f3d;text-decoration:none}
.sc-follow-card__matter:hover{border-color:#cbd5e1;background:#f3f7fb}
.sc-follow-card__matter--current:hover{border-color:#e2e8f0;background:#f8fbfe}
.sc-follow-card__matter-dot{width:.4375rem;height:.4375rem;border-radius:999px;background:#061f3d;flex-shrink:0;margin-top:.3rem}
.sc-follow-card__matter-title{font-size:.8125rem;font-weight:650;line-height:1.35;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}
.sc-follow-card__more{width:100%;margin-top:.125rem;padding:.45rem .5rem;border:0;background:transparent;color:#52657a;font-size:.75rem;font-weight:700;text-align:left;cursor:pointer}
.sc-follow-card__more:hover{color:#061f3d;text-decoration:underline;text-underline-offset:2px}
@media (max-width:767px){.sc-follow-cta{flex-direction:column;align-items:flex-start;gap:1rem;padding:1.25rem 1rem}.sc-follow-cta__btn,.sc-follow-cta__actions{width:100%}.sc-follow-cta__btn{justify-content:center}}

/* ── Watcher avatar button (in header) ───────────────────────────── */
.sc-watcher-avatar{position:relative;display:inline-flex;align-items:center;justify-content:center;width:2.25rem;height:2.25rem;border-radius:50%;border:1.5px solid #d8e2ee;background:#f3f7fb;color:#061f3d;cursor:pointer;transition:border-color .15s,background .15s;flex-shrink:0;margin-left:.5rem}
.sc-watcher-avatar:hover{border-color:#061f3d;background:#eef3f8}
.sc-watcher-avatar__count{position:absolute;top:-5px;right:-5px;min-width:16px;height:16px;padding:0 4px;border-radius:9999px;background:#061f3d;color:#fff;font-size:10px;font-weight:700;line-height:16px;text-align:center;display:none}

/* ── Watcher portal slide-in panel ──────────────────────────────── */
.sc-watcher-portal{position:fixed;top:0;right:-340px;width:320px;height:100vh;background:#fff;border-left:1px solid #d8e2ee;box-shadow:-8px 0 32px rgba(6,31,61,.08);z-index:2000;display:flex;flex-direction:column;transition:right .25s cubic-bezier(.4,0,.2,1)}
.sc-watcher-portal--open{right:0}
.sc-watcher-portal__header{display:flex;align-items:center;justify-content:space-between;padding:.875rem 1rem;border-bottom:1px solid #d8e2ee;flex-shrink:0}
.sc-watcher-portal__title{font-size:.875rem;font-weight:700;color:#061f3d;letter-spacing:-.01em}
.sc-watcher-portal__actions{display:flex;align-items:center;gap:.375rem}
.sc-watcher-portal__pin{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;border-radius:6px;color:#52657a;background:none;border:none;cursor:pointer;transition:background .12s,color .12s}
.sc-watcher-portal__pin:hover,.sc-watcher-portal__pin[aria-pressed=true]{background:#eef3f8;color:#061f3d}
.sc-watcher-portal__close{width:28px;height:28px;display:inline-flex;align-items:center;justify-content:center;border-radius:6px;color:#52657a;background:none;border:none;cursor:pointer;font-size:1.25rem;line-height:1;transition:background .12s,color .12s}
.sc-watcher-portal__close:hover{background:#eef3f8;color:#061f3d}
.sc-watcher-portal__list{flex:1;overflow-y:auto;padding:.75rem 1rem}
.sc-portal__empty{font-size:.8125rem;color:#94a3b8;text-align:center;padding:2rem 0;margin:0}
.sc-portal__matter{padding:.625rem .75rem;border-radius:8px;border:1px solid #e2e8f0;background:#f8fbfe;margin-bottom:.5rem;display:flex;align-items:center;justify-content:space-between;gap:.5rem}
.sc-portal__matter-title{font-size:.8125rem;font-weight:600;color:#061f3d;line-height:1.35;flex:1;min-width:0}
.sc-portal__matter-tag{font-size:.6875rem;font-weight:700;padding:.125rem .4rem;border-radius:999px;letter-spacing:.03em;flex-shrink:0}
.sc-portal__matter-tag--passport{background:#eef3f8;color:#061f3d}
.sc-portal__matter-tag--session{background:#fffbeb;color:#92400e}
.sc-portal__auth-badge{display:block;font-size:.75rem;font-weight:600;color:#52657a;padding:.5rem .75rem;margin-top:.25rem}
.sc-portal__auth-badge--active{color:#059669}
/* Body offset when portal pinned */
body.sc-portal-pinned .sc-page{margin-right:320px;transition:margin-right .25s}
@media (max-width:767px){.sc-watcher-portal{width:100%;right:-100%}.sc-watcher-portal--open{right:0}body.sc-portal-pinned .sc-page{margin-right:0}}

/* ── FAQ accordion (ca-faq-*) ────────────────────────────────────
   Always-visible <details>/<summary> accordion.
   Rendered by _render_faq_accordion() — section omitted when no FAQs.
   No JS required; browser handles open/close natively.

   Design: unified bordered list, navy left-border accent on open items,
   +/x CSS icon (cosmetic only — answer content accessible even with
   CSS disabled because native <details open> drives state).
   ----------------------------------------------------------------- */

/* ── Section wrapper ── */
.ca-faq-section {
  margin-top: 2rem;
  padding: 2.5rem 0;
  border-top: 2px solid var(--ca-navy, #0a1f3c);
}

/* ── Header block: heading stacked above count ── */
.ca-faq-section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}
.ca-faq-section__heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ca-navy, #0a1f3c);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
/* Count sits below heading as supportive metadata — not a badge */
.ca-faq-section__count {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ca-slate-500, #64748b);
  letter-spacing: 0;
  text-transform: none;
  margin: 0;
}

/* ── Unified bordered list container ── */
.ca-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--ca-slate-200, #e2e8f0);
  border-radius: 0.75rem;
  overflow: hidden;
}

/* ── Each FAQ item — a native <details> element ── */
.ca-faq-item {
  border-bottom: 1px solid var(--ca-slate-200, #e2e8f0);
  background: var(--ca-white, #ffffff);
  transition: background 0.15s ease;
}
.ca-faq-item:last-child {
  border-bottom: none;
}
.ca-faq-item[open] {
  background: var(--ca-slate-50, #f8fafc);
}

/* ── Question — the <summary> acts as the click target ── */
.ca-faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  font-size: 1rem;
  font-weight: 650;
  color: var(--ca-slate-700, #334155);
  line-height: 1.45;
  cursor: pointer;
  list-style: none;         /* hide default marker in Firefox */
  user-select: none;
  gap: 1rem;
  /* Navy left-border accent — transparent by default, activates when open */
  border-left: 3px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
/* Remove default triangle in WebKit/Blink */
.ca-faq-item__q::-webkit-details-marker { display: none; }

/* Open state: navy left-border + full navy text */
.ca-faq-item[open] > .ca-faq-item__q {
  border-left-color: var(--ca-navy, #0a1f3c);
  color: var(--ca-navy, #0a1f3c);
}

/* Question text — takes all remaining space */
.ca-faq-item__q-text {
  flex: 1;
}

/* ── +/× icon pill ── */
.ca-faq-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--ca-slate-100, #f1f5f9);
  color: var(--ca-slate-600, #475569);
  flex-shrink: 0;
  /* Rotate the + svg 45deg to form an × when open.
     This is purely decorative — never the only state indicator. */
  transition: background 0.15s ease, color 0.15s ease, transform 0.2s ease;
}
.ca-faq-item[open] > .ca-faq-item__q .ca-faq-item__icon {
  background: var(--ca-navy, #0a1f3c);
  color: var(--ca-white, #ffffff);
  transform: rotate(45deg);
}
.ca-faq-item__icon svg {
  display: block;
  pointer-events: none;
}

/* ── Answer container ── */
.ca-faq-item__a {
  padding: 0 1.25rem 1.375rem 1.5rem; /* extra left padding aligns under question text */
  border-left: 3px solid var(--ca-navy, #0a1f3c); /* continuous left-border through answer */
}
.ca-faq-item__a .ca-shell-copy {
  margin-top: 0;
  padding-top: 0.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  /* Neutral slate — reads as body copy, never as a link */
  color: var(--ca-slate-600, #475569);
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

/* ── Compliance footer ── */
.ca-faq-section__footer {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin: 1.125rem 0 0;
  font-size: 0.8rem;
  color: var(--ca-slate-400, #94a3b8);
  line-height: 1.5;
}
.ca-faq-section__footer svg {
  flex-shrink: 0;
  color: var(--ca-slate-400, #94a3b8);
}

/* ── Desktop: breathe wider than the narrow .sc-main flow ── */
@media (min-width: 900px) {
  .ca-faq-section {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    padding: 3rem 2rem;
    border-top-width: 2px;
  }
  .ca-faq-section__heading {
    font-size: 2rem;
    line-height: 1.15;
  }
  .ca-faq-section__count {
    font-size: 0.875rem;
  }
  .ca-faq-list {
    margin-top: 0.375rem;
    border-radius: 0.875rem;
  }
  .ca-faq-item__q {
    padding: 1.375rem 1.5rem;
    font-size: 1.05rem;
  }
  .ca-faq-item__a {
    padding: 0 1.5rem 1.5rem 1.75rem;
  }
  .ca-faq-item__a .ca-shell-copy {
    font-size: 0.9375rem;
    line-height: 1.7;
  }
  .ca-faq-item__icon {
    width: 1.75rem;
    height: 1.75rem;
  }
  .ca-faq-section__footer {
    margin-top: 1.375rem;
    font-size: 0.8125rem;
  }
}

/* ── Tablet (640–899px): gentle middle ground ── */
@media (min-width: 640px) and (max-width: 899px) {
  .ca-faq-section { padding: 2.25rem 0; }
  .ca-faq-section__heading { font-size: 1.625rem; }
  .ca-faq-item__q { padding: 1.25rem 1.375rem; font-size: 1rem; }
  .ca-faq-item__a { padding: 0 1.375rem 1.375rem 1.625rem; }
}

/* ── Mobile: generous thumb targets ── */
@media (max-width: 639px) {
  .ca-faq-section { padding: 1.75rem 0; }
  .ca-faq-section__heading { font-size: 1.5rem; }
  .ca-faq-section__count { font-size: 0.8125rem; }
  /* Tall tap targets — thumb comfort on mobile */
  .ca-faq-item__q { padding: 1.125rem 1rem; font-size: 1rem; }
  .ca-faq-item__a { padding: 0 1rem 1.125rem 1.25rem; }
  .ca-faq-item__a .ca-shell-copy { font-size: 0.9rem; line-height: 1.65; }
}
