/* ============================================================
   CYCLEDGR — Option B Silver Design System
   ============================================================ */

:root {
  /* Silver Palette */
  --silver-light:   #e8ecf2;
  --silver-mid:     #d8dce6;
  --silver-dark:    #cdd1dc;
  --silver-border:  #c4c8d4;
  --silver-text:    #8892a4;

  /* Body */
  --body-bg:        #f0f2f5;
  --card-bg:        #ffffff;

  /* Accent Colors */
  --green:          #16a34a;
  --green-light:    #dcfce7;
  --green-dim:      #15803d;
  --red:            #dc2626;
  --red-light:      #fee2e2;
  --amber:          #d97706;
  --amber-light:    #fef3c7;

  /* Typography */
  --font-ui:        'Barlow', sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  /* Text */
  --text-primary:   #1e2330;
  --text-secondary: #4b5563;
  --text-muted:     #8892a4;

  /* Shadows */
  --shadow-card:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-raised:  0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);

  /* Spacing */
  --safe-top:       env(safe-area-inset-top, 0px);
  --safe-bottom:    env(safe-area-inset-bottom, 0px);

  /* Header/Footer heights */
  --header-h:       56px;
  --nav-h:          64px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  background: var(--body-bg);
  color: var(--text-primary);
  min-height: 100dvh;
  overflow-x: hidden;
}
button { font-family: var(--font-ui); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font-ui); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---- App Shell ---- */
#app {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

/* ---- Header ---- */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, var(--silver-light) 0%, var(--silver-mid) 50%, var(--silver-dark) 100%);
  border-bottom: 1px solid var(--silver-border);
  padding: calc(var(--safe-top) + 10px) 16px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) + var(--safe-top));
  box-shadow: 0 2px 8px rgba(0,0,0,.10);
}

.header-logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-logo .mark {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.header-logo .ledger {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
}

.header-cycle-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cycle-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
}

.cycle-dates {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.3;
}

.header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--silver-dark), var(--silver-mid));
  border: 1.5px solid var(--silver-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  cursor: pointer;
}

/* ---- Bottom Nav ---- */
.app-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 100;
  background: linear-gradient(0deg, var(--silver-dark) 0%, var(--silver-mid) 50%, var(--silver-light) 100%);
  border-top: 1px solid var(--silver-border);
  display: flex;
  padding-bottom: var(--safe-bottom);
  box-shadow: 0 -2px 8px rgba(0,0,0,.10);
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px 10px;
  gap: 3px;
  cursor: pointer;
  position: relative;
  transition: opacity .15s;
}

.nav-item:active { opacity: .7; }

.nav-item .nav-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color .2s;
}

.nav-item .nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  transition: color .2s;
}

.nav-item.active .nav-icon,
.nav-item.active .nav-label {
  color: var(--green);
}

.nav-item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 3px;
  background: var(--green);
  border-radius: 0 0 3px 3px;
}

/* ---- Scrollable Content ---- */
.screen {
  flex: 1;
  overflow-y: auto;
  padding: 16px 16px calc(var(--nav-h) + var(--safe-bottom) + 16px);
  -webkit-overflow-scrolling: touch;
}

.screen::-webkit-scrollbar { display: none; }

/* ---- Cards ---- */
.card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,.05);
  overflow: hidden;
}

.card + .card { margin-top: 12px; }

.card-header {
  padding: 14px 16px 12px;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.card-action {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.card-body {
  padding: 16px;
}

/* ---- Section Label ---- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 20px 0 8px;
}

/* ---- Money Typography ---- */
.money {
  font-family: var(--font-mono);
  font-weight: 600;
}

.money-lg {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1;
}

.money-md {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
}

.money-sm {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
}

.text-green  { color: var(--green); }
.text-red    { color: var(--red); }
.text-amber  { color: var(--amber); }
.text-muted  { color: var(--text-muted); }

/* ---- Pill Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
}

.badge-green  { background: var(--green-light);  color: var(--green); }
.badge-red    { background: var(--red-light);    color: var(--red); }
.badge-amber  { background: var(--amber-light);  color: var(--amber); }
.badge-gray   { background: #f3f4f6;             color: var(--text-muted); }

/* ---- Progress Bar ---- */
.progress-track {
  height: 6px;
  background: #f0f2f5;
  border-radius: 99px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 99px;
  transition: width .4s ease;
}

.progress-fill.green { background: var(--green); }
.progress-fill.red   { background: var(--red); }
.progress-fill.amber { background: var(--amber); }

/* ---- List Row ---- */
.list-row {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  gap: 12px;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
  transition: background .1s;
}

.list-row:last-child { border-bottom: none; }
.list-row:active { background: #f9fafb; }

.list-row-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.list-row-body { flex: 1; min-width: 0; }
.list-row-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-row-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

.list-row-right { text-align: right; flex-shrink: 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s, transform .1s;
  border: none;
}

.btn:active { opacity: .85; transform: scale(.98); }

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-secondary {
  background: var(--silver-light);
  color: var(--text-primary);
  border: 1px solid var(--silver-border);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-danger {
  background: var(--red-light);
  color: var(--red);
}

.btn-full { width: 100%; }

/* ---- FAB ---- */
.fab {
  position: fixed;
  right: calc(50% - 215px + 16px);
  bottom: calc(var(--nav-h) + var(--safe-bottom) + 16px);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(22,163,74,.40);
  cursor: pointer;
  z-index: 90;
  transition: transform .15s, box-shadow .15s;
}

.fab:active {
  transform: scale(.93);
  box-shadow: 0 2px 6px rgba(22,163,74,.30);
}

/* ---- Forms ---- */
.form-group { margin-bottom: 16px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--silver-border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text-primary);
  background: white;
  transition: border-color .15s;
  outline: none;
}

.form-input:focus {
  border-color: var(--green);
}

.form-input.mono {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
}

/* ---- Divider ---- */
.divider {
  height: 1px;
  background: #f0f2f5;
  margin: 12px 0;
}

/* ---- Empty State ---- */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  gap: 8px;
  text-align: center;
}

.empty-state .empty-icon {
  font-size: 36px;
  margin-bottom: 4px;
  opacity: .4;
}

.empty-state .empty-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.empty-state .empty-sub {
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- Modal / Sheet ---- */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  animation: fadeIn .2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.sheet {
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 20px 20px calc(var(--safe-bottom) + 20px);
  width: 100%;
  max-width: 430px;
  animation: slideUp .25s ease;
  max-height: 85dvh;
  overflow-y: auto;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}

.sheet-handle {
  width: 36px;
  height: 4px;
  background: var(--silver-border);
  border-radius: 99px;
  margin: 0 auto 20px;
}

.sheet-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

/* ---- Loading ---- */
.skeleton {
  background: linear-gradient(90deg, #f0f2f5 25%, #e8ecf2 50%, #f0f2f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---- Toast ---- */
.toast-container {
  position: fixed;
  top: calc(var(--header-h) + var(--safe-top) + 10px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: calc(100% - 32px);
  max-width: 400px;
  pointer-events: none;
}

.toast {
  background: var(--text-primary);
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-raised);
  animation: toastIn .25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.toast.success { background: var(--green); }
.toast.error   { background: var(--red); }

/* ---- Utility ---- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.w-full { width: 100%; }
.text-right { text-align: right; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- Login Screen ---- */
.login-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--silver-light) 0%, var(--body-bg) 40%);
}

.login-logo {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 8px;
}

.login-mark {
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 42px;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.login-ledger {
  font-family: var(--font-ui);
  font-weight: 300;
  font-size: 42px;
  letter-spacing: -1.5px;
  color: var(--text-secondary);
}

.login-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  letter-spacing: .02em;
}

.login-card {
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-raised);
}

.login-eye {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}

.login-error {
  margin-top: 10px;
  font-size: 13px;
  color: var(--red);
  text-align: center;
}

.login-footer {
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ---- Checkbook filter buttons ---- */
.ck-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.ck-filter-btn {
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--silver-border);
  background: white;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .15s;
}

.ck-filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

/* ---- Quick Check Hero ---- */
.qc-hero { padding: 20px 16px; }
.qc-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.qc-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.qc-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.qc-refresh {
  color: var(--text-muted);
  padding: 4px;
  border-radius: 6px;
  transition: color .15s, background .15s;
  flex-shrink: 0;
}
.qc-refresh:hover { color: var(--text-primary); background: var(--silver-light); }
.qc-cycle-row {
  display: flex;
  align-items: stretch;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f2f5;
  gap: 0;
}
.qc-cycle-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.qc-cycle-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.qc-cycle-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.qc-cycle-sub {
  font-size: 11px;
  color: var(--text-muted);
}
.qc-cycle-divider {
  width: 1px;
  background: var(--silver-border);
  margin: 0 4px;
}
.qc-no-schedule {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f0f2f5;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ---- Onboarding Wizard ---- */
.onboard-wrap {
  max-width: 400px;
  margin: 0 auto;
  padding: 24px 16px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.onboard-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.onboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--silver-border);
  transition: all .2s;
}

.onboard-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

.onboard-dot.done {
  background: var(--green);
  opacity: .5;
}

.onboard-step {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.onboard-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
}

.onboard-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.onboard-sub {
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

.onboard-freq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 4px;
}

.freq-btn {
  padding: 12px;
  border: 1.5px solid var(--silver-border);
  border-radius: 10px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-ui);
}

.freq-btn.active {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green);
}

.onboard-acct-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--green-light);
  border-radius: 10px;
  margin-bottom: 8px;
}

.onboard-remove {
  background: none;
  border: none;
  color: var(--red);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.onboard-add-acct {
  background: white;
  border: 1.5px solid var(--silver-border);
  border-radius: 10px;
  padding: 12px;
  margin-top: 8px;
}

.onboard-bill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bill-chip {
  padding: 8px 14px;
  border: 1.5px solid var(--silver-border);
  border-radius: 99px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all .15s;
  font-family: var(--font-ui);
}

.bill-chip.active {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green);
}

.onboard-summary {
  background: var(--body-bg);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 16px;
}

.onboard-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid var(--silver-border);
  font-size: 14px;
}

.onboard-summary-row:last-child { border-bottom: none; }
.onboard-summary-row span:first-child { color: var(--text-muted); }
.onboard-summary-row span:last-child { font-weight: 600; }

/* ---- Toggle Switch ---- */
.toggle-track {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--silver-border);
  border-radius: 99px;
  transition: background .2s;
}
.toggle-track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
input:checked + .toggle-track { background: var(--green); }
input:checked + .toggle-track::before { transform: translateX(20px); }

/* ---- AI Coach ---- */
.coach-msg { display: flex; }
.coach-msg.user { justify-content: flex-end; }
.coach-msg.assistant { justify-content: flex-start; }

.coach-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}

.coach-msg.user .coach-bubble {
  background: var(--green);
  color: white;
  border-bottom-right-radius: 4px;
}

.coach-msg.assistant .coach-bubble {
  background: var(--body-bg);
  border: 1px solid var(--silver-border);
  border-bottom-left-radius: 4px;
}

.coach-thinking {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px 16px;
}

.coach-thinking span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: coachDot 1.2s infinite;
}

.coach-thinking span:nth-child(2) { animation-delay: .2s; }
.coach-thinking span:nth-child(3) { animation-delay: .4s; }

@keyframes coachDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* ---- Debt Planner ---- */
.strategy-btn { transition: all .15s; }

/* ---- Help Screen ---- */
.help-row {
  border-bottom: 1px solid var(--silver-border);
  cursor: pointer;
}
.help-row:last-child { border-bottom: none; }

.help-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 12px;
}

.help-row-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  line-height: 1.4;
}

.help-chevron {
  font-size: 11px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.help-row.open .help-row-label { color: var(--green); }
.help-row.open .help-chevron  { color: var(--green); }

.help-steps {
  padding: 0 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.help-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.help-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.help-step-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
  flex: 1;
}
