/* =============================================================================
   app.css — Arctic Kickstart
   Design token layer + component styles.
   Arctic Intelligence brand: #012233 navy · #1b75bb blue · Open Sans
   ============================================================================= */

/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
  /* Arctic Intelligence brand palette */
  --primary:         var(--color-primary);   /* #012233 dark navy */
  --primary-dark:    var(--color-blue-dark); /* #0d5a9a */
  --accent:          var(--color-blue);      /* #1b75bb */
  --accent-hover:    var(--color-blue-dark); /* #0d5a9a */
  --gold:            var(--color-gold);      /* #e8a020 */
  --yellow:          var(--color-yellow);    /* #fef3c7 */

  /* Surfaces — use theme overrides if set, else hardcoded fallbacks */
  --surface:         var(--color-surface, #ffffff);
  --surface-alt:     var(--color-surface-alt, #f5f7fa);
  --surface-raised:  var(--color-surface, #ffffff);

  /* Text — use theme overrides if set, else hardcoded fallbacks */
  --text-primary:    var(--color-text, #0f172a);
  --text-secondary:  var(--color-muted);
  --text-inverse:    #ffffff;
  --text-muted:      var(--color-muted);

  /* Borders */
  --border:          var(--color-border);
  --border-focus:    var(--color-blue);

  /* Light tint */
  --blue-tint:       var(--color-blue-light);

  /* Shadows — subtle, professional */
  --shadow-sm:  0 1px 3px rgba(1,34,51,.06);
  --shadow:     0 2px 8px rgba(1,34,51,.08), 0 1px 3px rgba(1,34,51,.05);
  --shadow-lg:  0 8px 24px rgba(1,34,51,.10), 0 2px 8px rgba(1,34,51,.06);

  /* Border radii — conservative like Arctic site */
  --radius-sm:  3px;
  --radius:     4px;
  --radius-lg:  6px;
  --radius-xl:  8px;

  /* Transitions */
  --transition: all .15s ease;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
html { height: 100%; }

body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface-alt);
  color: var(--text-primary);
  font-family: 'Open Sans', -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -.01em;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.site-navbar {
  background: #ffffff;
  border-bottom: 1px solid #dde3ea;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(1,34,51,.07);
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .75rem 1.5rem;
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  text-decoration: none;
  color: var(--primary) !important;
  font-weight: 700;
  font-size: .975rem;
  letter-spacing: -.01em;
}

.site-navbar .navbar-brand img {
  height: auto;
  max-height: 132px;
  width: auto;
}

/* Text-only brand mark when no logo uploaded */
.navbar-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 0;
  flex-shrink: 0;
}

.navbar-brand-text {
  color: var(--primary);
  font-size: .95rem;
  font-weight: 600;
}

.navbar-brand-arctic {
  color: var(--accent);
  font-weight: 700;
}

.site-navbar .nav-link-plain {
  color: #374151;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  padding: .35rem .5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.site-navbar .nav-link-plain:hover {
  color: var(--primary);
  background: var(--surface-alt);
}

.site-navbar .nav-btn-login {
  color: var(--primary);
  border: 1.5px solid #cbd5e0;
  background: transparent;
  padding: .4rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.site-navbar .nav-btn-login:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-navbar .nav-btn-register {
  color: #ffffff;
  background: var(--primary);
  border: 1.5px solid var(--primary);
  padding: .4rem 1.1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.site-navbar .nav-btn-register:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

@media (max-width: 575px) {
  .navbar-inner {
    padding: .5rem 1rem;
    min-height: 0;
    gap: .5rem;
  }
  .site-navbar .navbar-brand img {
    max-height: 48px;
  }
  .site-navbar .nav-btn-login,
  .site-navbar .nav-btn-register {
    padding: .3rem .6rem;
    font-size: .8rem;
  }
  .d-flex.align-items-center.gap-3 {
    gap: .5rem !important;
  }
}

.nav-user-btn {
  background: none;
  border: 1.5px solid #cbd5e0;
  border-radius: var(--radius);
  padding: .35rem .75rem;
  cursor: pointer;
  color: var(--primary);
  font-weight: 600;
  font-size: .875rem;
  transition: var(--transition);
}
.nav-user-btn:hover { border-color: var(--accent); color: var(--accent); }

.nav-user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Site footer ──────────────────────────────────────────────────────────── */
.site-footer {
  margin-top: auto; /* pushes footer to bottom when page is short (flex body) */
  text-align: center;
  padding: 1.75rem 1rem;
  font-size: .8125rem;
  color: #6b7280;
  border-top: 1px solid #e5e7eb;
  background: var(--primary);
  color: rgba(255,255,255,.65);
}

.site-footer a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ── Page wrapper ─────────────────────────────────────────────────────────── */
.page-wrapper {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

/* ── Landing page: hero ───────────────────────────────────────────────────── */
.hero-section {
  background: var(--primary);
  border-radius: 0;
  padding: 3.5rem 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,117,187,.25) 0%, transparent 60%);
  pointer-events: none;
}

.hero-section .hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-section h1 {
  color: var(--text-inverse);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.2;
  margin-bottom: .875rem;
}

.hero-section h1 .brand-kickstart {
  color: var(--accent);
}

.hero-section .lead {
  color: rgba(255,255,255,.85);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 560px;
  font-weight: 400;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: #ffffff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .3rem .9rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.hero-cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  min-height: 120px;
}

.hero-logo-placeholder {
  color: rgba(255,255,255,.35);
  font-size: .8125rem;
  font-style: italic;
  text-align: center;
}

/* ── Landing page: description card ──────────────────────────────────────── */
.description-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.description-card p {
  color: var(--text-secondary);
  font-size: .9375rem;
  line-height: 1.85;
  margin: 0;
}

/* ── Landing page: section header ────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header .eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .4rem;
}

.section-header h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin: 0;
}

/* ── Landing page: feature grid ──────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.125rem;
  margin-bottom: 1.75rem;
}

@media (max-width: 992px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .feature-grid { grid-template-columns: 1fr; }
  .hero-section { padding: 2rem 1.5rem; }
  .hero-section h1 { font-size: 1.5rem; }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.375rem;
  display: flex;
  gap: .875rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--blue-tint);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--accent);
}

.feature-content h4 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}

.feature-content p {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ── Landing page: divider ────────────────────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 1.75rem 0;
}

/* ── Landing page: CTA section ────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.cta-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .5rem;
  letter-spacing: -.02em;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: .9375rem;
  margin-bottom: 1.5rem;
}

.cta-section .cta-login-link {
  color: var(--text-secondary);
  font-size: .875rem;
  margin-top: .875rem;
  display: block;
}

.cta-section .cta-login-link a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.cta-section .cta-login-link a:hover {
  text-decoration: underline;
}

/* ── Shared buttons ───────────────────────────────────────────────────────── */
.btn-brand-primary {
  background: var(--accent);
  color: #ffffff;
  border: 1.5px solid var(--accent);
  padding: .6rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: .01em;
}

.btn-brand-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27,117,187,.3);
}

.btn-brand-outline {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,.55);
  padding: .6rem 1.5rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}

.btn-brand-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.85);
  color: #ffffff;
}

/* ── Flash alert tweaks ───────────────────────────────────────────────────── */
.alert {
  border-radius: var(--radius);
  font-size: .875rem;
  border-left-width: 4px;
  box-shadow: none;
}

.alert-regulatory {
  background: #fef9ec;
  border-color: #f59e0b;
  color: #78350f;
}

.alert-danger  { border-left-color: #dc2626; }
.alert-warning { border-left-color: #f59e0b; }
.alert-success { border-left-color: #16a34a; }
.alert-info    { background: #d0e8f7; border-left-color: var(--accent); color: #012233; }

/* ── Content cards ────────────────────────────────────────────────────────── */
.content-card {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.content-card + .content-card { margin-top: 0; }

.section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .875rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid #e2e8f0;
}

/* ── Form controls — Arctic style ─────────────────────────────────────────── */
.form-control, .form-select {
  border-radius: var(--radius);
  border-color: #cbd5e0;
  font-size: .9rem;
  color: var(--text-primary);
  transition: border-color .15s, box-shadow .15s;
}

.form-select option {
  font-size: .9rem;
}

.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,117,187,.12);
  outline: none;
}

.form-label {
  font-size: .875rem;
  color: #374151;
  margin-bottom: .375rem;
}

.form-label.required::after {
  content: ' *';
  color: var(--accent);
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(27,117,187,.2);
}

/* ── Auth pages (login, register, forgot/reset password) ──────────────────── */
.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2.5rem 1.25rem 4rem;
}

.auth-card {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 440px;
}

.auth-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.auth-icon {
  font-size: 2.25rem;
  color: var(--accent);
  display: block;
  margin-bottom: .875rem;
}

.auth-header h1 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin-bottom: .375rem;
}

.auth-header p {
  color: var(--text-secondary);
  font-size: .9rem;
  margin: 0;
}

.auth-footer {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .875rem;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.auth-small-link {
  font-size: .8125rem;
  color: var(--accent);
  text-decoration: none;
}

.auth-small-link:hover {
  text-decoration: underline;
}

.auth-info-box {
  background: var(--blue-tint);
  border: 1px solid var(--border-focus);
  border-radius: var(--radius);
  padding: .875rem 1rem;
  font-size: .875rem;
  color: var(--text-primary);
}

/* Ensure submit buttons fill full width in auth forms */
.auth-card .btn-brand-primary.w-100 {
  width: 100%;
  justify-content: center;
}

/* ── Admin panel layout ───────────────────────────────────────────────────── */
.admin-shell {
  display: flex;
  height: calc(100vh - 57px);   /* subtract sticky navbar height */
  overflow: hidden;
}

.admin-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--surface);
  border-right: 1px solid var(--border);
  overflow-y: auto;
  padding: .75rem 0 2rem;
}

.admin-sidebar-header {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-inverse);
  background: var(--primary);
  padding: .625rem 1rem;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
}

.admin-nav-group {
  margin-bottom: .25rem;
}

.admin-nav-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  padding: .5rem 1rem .25rem;
}

.admin-nav-item {
  display: block;
  padding: .5rem 1rem;
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  transition: background .1s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-nav-item:hover {
  background: var(--surface-alt);
  color: var(--text-primary);
}

.admin-nav-item.active {
  background: var(--blue-tint);
  color: var(--accent);
  border-left: 3px solid var(--accent);
  padding-left: calc(1rem - 3px);
}

.admin-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.25rem;
  background: var(--surface-alt);
}

/* Placeholder style for panels not yet implemented (Phase 7) */
.admin-panel-placeholder h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}

@media (max-width: 768px) {
  .admin-shell {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .admin-sidebar {
    width: 100%;
    height: auto;
    overflow-y: visible;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: .5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: .25rem;
    padding: .5rem .75rem;
  }
  .admin-sidebar-header { display: none; }
  .admin-nav-group { margin: 0; display: contents; }
  .admin-nav-label { display: none; }
  .admin-nav-item {
    padding: .375rem .75rem;
    border-radius: var(--radius-sm);
    font-size: .75rem;
    white-space: nowrap;
  }
  .admin-nav-item.active {
    border-left: none;
    padding-left: .75rem;
  }
  .admin-content {
    padding: 1.25rem 1rem;
  }
}

/* ── Wizard layout ────────────────────────────────────────────────────────── */
.wizard-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.25rem 4rem;
}

/* ── Progress bar ─────────────────────────────────────────────────────────── */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding: .25rem 0;
}

.wizard-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
}

.wizard-progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.wizard-progress-dot.completed {
  background: #16a34a;
  color: #fff;
}

.wizard-progress-dot.current {
  background: var(--yellow);
  color: var(--primary);
  box-shadow: 0 0 0 4px rgba(248, 210, 19, .25);
}

.wizard-progress-dot.future {
  background: var(--border);
  color: var(--text-muted);
}

.wizard-progress-label {
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.3;
}

.wizard-progress-label.current-label {
  color: var(--primary);
}

.wizard-progress-connector {
  height: 2px;
  width: 40px;
  flex-shrink: 0;
  margin-bottom: 1.35rem;
}

.wizard-progress-connector.done {
  background: #16a34a;
}

.wizard-progress-connector.pending {
  background: var(--border);
}

@media (max-width: 600px) {
  .wizard-progress-connector { width: 20px; }
  .wizard-progress-dot { width: 26px; height: 26px; font-size: .65rem; }
  .wizard-progress-label { display: none; }
}

/* ── Wizard card ──────────────────────────────────────────────────────────── */
.wizard-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 2.25rem 1.75rem;
  box-shadow: var(--shadow);
}

.wizard-section-heading {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin: 1.75rem 0 .875rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--border);
}

.wizard-section-heading:first-child {
  margin-top: 0;
}

/* ── Yes / No toggle buttons ──────────────────────────────────────────────── */
.yn-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.125rem;
  flex-wrap: wrap;
}

.yn-label-block {
  flex: 1;
  min-width: 200px;
}

.yn-label-text {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: .2rem;
}

.yn-hint {
  font-size: .8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.yn-buttons {
  display: flex;
  gap: .375rem;
  flex-shrink: 0;
}

.yn-btn {
  min-width: 66px;
  padding: .45rem .875rem;
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.yn-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.yn-btn.yn-selected-yes {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.yn-btn.yn-selected-no {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* ── Radio option cards ───────────────────────────────────────────────────── */
.radio-options {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .375rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.radio-option:hover {
  border-color: var(--accent);
  background: var(--blue-tint);
}

.radio-option.selected {
  border-color: var(--accent);
  background: var(--blue-tint);
}

.radio-option input[type="radio"] {
  margin-top: .15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.radio-option-label {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: .125rem;
}

.radio-option-desc {
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ── Service cards ────────────────────────────────────────────────────────── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.service-card.selected {
  border-color: var(--accent);
  background: var(--blue-tint);
}

.service-card.auto-selected {
  border-color: #16a34a;
  background: #f0fdf4;
  cursor: default;
}

.service-card input[type="checkbox"] {
  margin-top: .2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.service-card-body {
  flex: 1;
}

.service-name {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: .125rem;
}

.service-auto-label {
  font-size: .75rem;
  color: #16a34a;
  font-weight: 600;
}

.service-counter {
  font-size: .875rem;
  color: var(--text-muted);
  margin-top: .75rem;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}

/* ── Risk badges ──────────────────────────────────────────────────────────── */
.risk-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.5rem;
  padding: .2rem .625rem;
  border-radius: 100px;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  flex-shrink: 0;
}

.risk-badge.low    { background: #dcfce7; color: #166534; }
.risk-badge.medium { background: #fef9c3; color: #854d0e; }
.risk-badge.high   { background: #fee2e2; color: #991b1b; }

/* ── Wizard navigation buttons ────────────────────────────────────────────── */
.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: .75rem;
}

.wizard-nav .btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.wizard-nav .btn-back:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ── Step 7 review tables ─────────────────────────────────────────────────── */
.review-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  margin-bottom: 1rem;
}

.review-table th {
  text-align: left;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  padding: .5rem .75rem;
  border-bottom: 2px solid var(--border);
}

.review-table td {
  padding: .6rem .75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
  vertical-align: middle;
}

.review-table tr:last-child td { border-bottom: none; }

.risk-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.risk-summary-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.risk-summary-card .risk-card-label {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.risk-summary-card .risk-card-sub {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: .625rem;
}

.risk-summary-card .risk-badge {
  font-size: .875rem;
  padding: .4rem 1.25rem;
}

/* ── Sector selection cards ───────────────────────────────────────────────── */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: .875rem;
  margin-bottom: 1.75rem;
}

.sector-card {
  background: var(--surface);
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.sector-card:hover,
.sector-card:focus-within {
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(27,117,187,.15);
}

.sector-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sector-card:has(input:checked) {
  border-color: var(--accent);
  background: #f0f7ff;
  box-shadow: 0 0 0 3px rgba(27,117,187,.12);
}


.sector-card-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: .25rem;
}

.sector-card-desc {
  font-size: .775rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── Sector selection list (wizard) ──────────────────────────────────────── */
.sector-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 1.75rem;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sector-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .875rem 1.25rem;
  background: var(--surface);
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.sector-list-item:last-child {
  border-bottom: none;
}

.sector-list-item:hover {
  background: #f8fafc;
}

.sector-list-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.sector-list-item:has(input:checked) {
  background: #f0f7ff;
  border-left: 3px solid var(--accent);
}

.sector-list-item:has(input:checked) .sector-list-name {
  color: var(--accent);
}

.sector-list-body {
  flex: 1;
}

.sector-list-name {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-primary);
}

.sector-list-desc {
  font-size: .8125rem;
  color: var(--text-muted);
  margin-top: .125rem;
  line-height: 1.4;
}

.sector-list-check {
  font-size: 1.125rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity .15s ease;
  flex-shrink: 0;
}

.sector-list-item:has(input:checked) .sector-list-check {
  opacity: 1;
}

/* ── Step 8 lead capture ──────────────────────────────────────────────────── */
.step8-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--yellow));
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -2rem -2.25rem 1.75rem;
}

.step8-eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--primary);
  margin-bottom: .5rem;
}

/* ── Confirmation screen ──────────────────────────────────────────────────── */
.confirm-card {
  max-width: 560px;
  margin: 3rem auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.confirm-icon {
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: .75rem;
}

.confirm-eyebrow {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: .5rem;
}

.confirm-bullets {
  background: var(--yellow);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-align: left;
  margin: 1.25rem 0;
  font-size: .875rem;
}

.confirm-bullets li {
  margin-bottom: .375rem;
  color: var(--primary);
}

.confirm-bullets li:last-child { margin-bottom: 0; }

/* =============================================================================
   Admin panel — Phase 7
   ============================================================================= */

/* ── Panel layout ─────────────────────────────────────────────────────────── */
.admin-panel-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}

.admin-section-heading {
  font-size: .6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-secondary);
  margin: 1.5rem 0 .75rem;
}

/* ── Panel card ───────────────────────────────────────────────────────────── */
.admin-panel-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

/* ── Save status badge ────────────────────────────────────────────────────── */
.save-status {
  display: none;
  font-size: .8125rem;
  font-weight: 600;
  padding: .25rem .625rem;
  border-radius: var(--radius);
  margin-left: .75rem;
}
.save-ok  { background: #d1fae5; color: #065f46; }
.save-err { background: #fee2e2; color: #991b1b; }

/* ── Colour swatch pair ───────────────────────────────────────────────────── */
.colour-swatch-pair {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.colour-swatch {
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

/* ── Question card editor ─────────────────────────────────────────────────── */
.q-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .5rem;
  background: var(--surface);
  overflow: hidden;
}
.q-card-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border);
  cursor: default;
}
.q-card-type-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  white-space: nowrap;
}
.q-type-heading { background: #7c3aed; }
.q-type-alert   { background: #b45309; }
.q-type-divider { background: #6b7280; }
.q-type-radio   { background: #0891b2; }

.q-card-preview {
  flex: 1;
  font-size: .8125rem;
  color: var(--text-secondary);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.q-card-actions { display: flex; gap: .25rem; }
.q-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: .125rem .375rem;
  font-size: .8rem;
  cursor: pointer;
  color: var(--text-secondary);
  line-height: 1.4;
}
.q-btn:hover    { background: var(--surface-alt); }
.q-btn-danger   { border-color: #fca5a5; color: #dc2626; }
.q-btn-danger:hover { background: #fee2e2; }

.q-card-body {
  padding: .875rem .75rem;
}
.q-field-group {
  margin-bottom: .75rem;
}
.q-label {
  font-size: .775rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  margin-bottom: .25rem;
}
.q-inline-group {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.q-inline-group > * { flex: 1; min-width: 100px; }

/* ── Doc sections editor ─────────────────────────────────────────────────── */
.ds-row {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .5rem;
  background: var(--surface);
}
.ds-row-handle {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  flex-shrink: 0;
  padding-top: .125rem;
}
.ds-row-fields { flex: 1; min-width: 0; }

/* ── Users table ─────────────────────────────────────────────────────────── */
.user-role-badge {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .15rem .5rem;
  border-radius: 999px;
}
.user-role-admin { background: var(--primary); color: #fff; }
.user-role-user  { background: var(--border); color: var(--text-secondary); }

/* ── Sector accordion ────────────────────────────────────────────────────── */
.sector-accordion { margin-bottom: 1rem; }
.sector-accordion .accordion-button:not(.collapsed) {
  background: var(--surface-alt);
  color: var(--primary);
}
.sector-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.25rem;
}
@media (max-width: 600px) { .sector-meta-grid { grid-template-columns: 1fr; } }

/* =============================================================================
   Arctic Kickstart — Assessment UI
   ============================================================================= */

/* ── Assessment layout (aliases for wizard-wrapper/card/progress) ──────────── */
.assessment-wrapper { max-width: 900px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }

.assessment-progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 72px;
}

.progress-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  transition: var(--transition);
}

.progress-dot.completed {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.progress-dot.current {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(27,117,187,.2);
}

.progress-dot.future {
  background: var(--surface);
  border-color: var(--border);
  color: var(--text-secondary);
}

.progress-label {
  font-size: .575rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  text-align: center;
  margin-top: .375rem;
  line-height: 1.3;
}

.progress-label.current-label { color: var(--primary); }

.progress-connector {
  height: 2px;
  flex: 1;
  min-width: 16px;
  margin-top: 15px;
  background: var(--border);
  flex-shrink: 0;
}

.progress-connector.done { background: var(--accent); }
.progress-connector.pending { background: var(--border); }

.assessment-card {
  background: var(--surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow);
}

.assessment-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: .75rem;
}

.assessment-nav .btn-back {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.assessment-nav .btn-back:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

/* ── Step headings ───────────────────────────────────────────────────────── */
.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

/* ── Yes / No / Unknown three-way toggle ────────────────────────────────── */
.yn-toggle-group,
.ynu-toggle-group {
  display: flex;
  gap: .25rem;
  flex-shrink: 0;
}

.yn-toggle-group label,
.ynu-toggle-group label {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

.yn-toggle-group input[type="radio"],
.ynu-toggle-group input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.yn-btn,
.ynu-btn {
  min-width: 58px;
  padding: .4rem .75rem;
  font-size: .8125rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  text-align: center;
  justify-content: center;
  user-select: none;
}

.yn-btn:hover,
.ynu-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* active states */
.yn-btn.active.yes,
.ynu-btn.active.yes {
  background: #166534;
  border-color: #166534;
  color: #fff;
}

.yn-btn.active.no,
.ynu-btn.active.no {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ynu-btn.active.unknown {
  background: #78350f;
  border-color: #78350f;
  color: #fff;
}

/* ── Risk question cards ─────────────────────────────────────────────────── */
.risk-question-card { padding: .875rem 1rem; }

/* ── Extended risk-badge modifiers (risk-{level} pattern) ───────────────── */
.risk-badge.risk-low,
.risk-badge.low       { background: #dcfce7; color: #166534; }
.risk-badge.risk-medium,
.risk-badge.medium    { background: #fef9c3; color: #854d0e; }
.risk-badge.risk-high,
.risk-badge.high      { background: #fee2e2; color: #991b1b; }
.risk-badge.risk-very-high,
.risk-badge.risk-very_high { background: #7f1d1d; color: #fff; }
.risk-badge.risk-unknown   { background: #f1f5f9; color: #475569; }

/* ── Step 7 risk summary cells ──────────────────────────────────────────── */
.risk-summary-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: var(--surface-alt, #f8f9fa);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  gap: .5rem;
}

.risk-summary-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
}

.risk-summary-value {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.risk-summary-value.risk-low    { color: #166534; }
.risk-summary-value.risk-medium { color: #854d0e; }
.risk-summary-value.risk-high   { color: #991b1b; }
.risk-summary-value.risk-very-high { color: #7f1d1d; }

/* ── Arctic Intelligence upsell card ────────────────────────────────────── */
.arctic-upsell-card {
  background: var(--primary);
  border: none;
  border-radius: var(--radius-lg);
  color: rgba(255,255,255,.9);
}

.arctic-upsell-card h4, .arctic-upsell-card h5, .arctic-upsell-card strong {
  color: #ffffff;
}

.arctic-upsell-card p, .arctic-upsell-card span {
  color: rgba(255,255,255,.8);
}

.btn-arctic-upsell {
  display: inline-block;
  padding: .45rem 1.1rem;
  background: var(--accent);
  color: #fff;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-arctic-upsell:hover { background: #0d5a9a; border-color: #0d5a9a; color: #fff; text-decoration: none; }
.btn-arctic-upsell.btn-sm { padding: .35rem .875rem; font-size: .8125rem; }

/* ── Upsell product row ──────────────────────────────────────────────────── */
.upsell-product-row {
  padding: .625rem .75rem;
  background: rgba(255,255,255,.6);
  border-radius: var(--radius);
  border: 1px solid #bfdbfe;
}

/* ── Sector card updates (label/desc classes) ───────────────────────────── */
.sector-label {
  display: block;
  font-size: .875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: .25rem;
}

.sector-desc {
  display: block;
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: .2rem;
  line-height: 1.4;
}

.sector-card-ineligible {
  background: var(--surface-alt, #f8f9fa);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  cursor: default;
  opacity: .65;
}

/* ── Regulatory banner (slim strip below hero) ──────────────────────────── */
.intro-reg-banner {
  background: #f0f7ff;
  border-bottom: 1px solid #c3ddf6;
  color: var(--primary);
  font-size: .8125rem;
  padding: .6rem 0;
  text-align: center;
}

/* ── Disclaimer banner (bottom of intro page) ───────────────────────────── */
.intro-disclaimer {
  background: #fafaf7;
  border: 1px solid #d6d0b8;
  border-left: 4px solid #b8a96a;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-size: .8375rem;
  color: #4a4535;
  line-height: 1.65;
}

.intro-disclaimer p { margin-bottom: .85rem; }
.intro-disclaimer p:last-child { margin-bottom: 0; }

/* ── Hero section additions ──────────────────────────────────────────────── */
.hero-badge {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--yellow);
  color: var(--primary);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

/* ── Resume card (in-progress sessions) ─────────────────────────────────── */
.resume-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: var(--transition);
}

.resume-card:hover { border-color: var(--accent); background: var(--blue-tint); }

/* ── Checklist ───────────────────────────────────────────────────────────── */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: .05rem;
}

/* ── Step / Sector list ──────────────────────────────────────────────────── */
.step-list, .sector-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.step-list li, .sector-list li {
  display: flex;
  align-items: flex-start;
  padding: .4rem 0;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
}

.step-list li:last-child, .sector-list li:last-child { border-bottom: none; }

/* ── Disclaimer body ────────────────────────────────────────────────────── */
.disclaimer-body {
  max-height: 420px;
  overflow-y: auto;
  padding: 1rem 1.25rem;
  background: var(--surface-alt, #f8f9fa);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  line-height: 1.7;
}

/* ── Responsive adjustments ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .assessment-card { padding: 1.25rem 1rem; }
  .progress-label { display: none; }
  .progress-dot { width: 26px; height: 26px; font-size: .65rem; }
  .progress-step { width: 40px; }
  .progress-connector { min-width: 10px; }
  .risk-question-card .d-flex { flex-direction: column; }
  .ynu-toggle-group { margin-top: .5rem; }
}
