@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy-950: #07142B;
  --navy-900: #0B1E3D;
  --navy-800: #132A4F;
  --navy-700: #1D3A66;
  --sky-500: #2F7BFF;
  --sky-400: #5B97FF;
  --sky-300: #8FB9FF;
  --sky-100: #DCEBFF;
  --sky-50: #EFF5FF;
  --bg: #F5F7FB;
  --white: #FFFFFF;
  --ink-900: #101A2E;
  --ink-600: #4B5973;
  --ink-400: #8C9AB3;
  --line: #E4E9F2;
  --line-strong: #CBD5E8;
  --success: #19B36B;
  --success-bg: #E7F8EF;
  --danger: #E1473C;
  --danger-bg: #FCEAE8;
  --warning: #DD8B1F;
  --warning-bg: #FEF4E5;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 100px;
  --shadow-card: 0 1px 2px rgba(11,30,61,0.04), 0 12px 32px -8px rgba(11,30,61,0.10);
  --shadow-pop: 0 20px 48px -12px rgba(11,30,61,0.28);
  --shadow-btn: 0 8px 20px -6px rgba(47,123,255,0.45);
  --content-width: 760px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink-900);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

a { color: var(--sky-500); text-decoration: none; }
::selection { background: var(--sky-100); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.sb-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: var(--navy-900);
  position: relative;
  z-index: 5;
}

.sb-logo { display: flex; align-items: center; }
.sb-logo svg { display: block; height: 26px; width: auto; }

.sb-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: #DCE8FF;
}

.sb-phone svg { color: var(--sky-400); flex-shrink: 0; }

.sb-rail { height: 3px; background: var(--navy-700); position: relative; overflow: hidden; }

.sb-rail__fill {
  position: absolute;
  inset: 0;
  width: var(--progress, 10%);
  background: linear-gradient(90deg, var(--sky-500), var(--sky-300));
  transition: width 0.5s cubic-bezier(.4,0,.2,1);
}

.sb-main { flex: 1; display: flex; justify-content: center; padding: 56px 24px 148px; }
.sb-container { width: 100%; max-width: var(--content-width); }
.sb-narrow { max-width: 560px; }

.sb-eyebrow {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-500);
  margin: 0 0 14px;
}

.sb-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.015em;
  color: var(--ink-900);
  margin: 0 0 14px;
  line-height: 1.18;
}

.sb-subtitle {
  text-align: center;
  font-size: 16.5px;
  color: var(--ink-600);
  margin: 0 0 40px;
  line-height: 1.55;
}

.sb-steps { display: flex; align-items: center; justify-content: center; gap: 4px; margin-bottom: 40px; flex-wrap: wrap; }
.sb-step { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink-400); }

.sb-step__dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--line);
  color: var(--ink-400);
}

.sb-step.is-done .sb-step__dot { background: var(--success); color: white; }
.sb-step.is-active .sb-step__dot { background: var(--sky-500); color: white; box-shadow: 0 0 0 4px var(--sky-100); }
.sb-step.is-active { color: var(--ink-900); }
.sb-step.is-done { color: var(--ink-600); }
.sb-step__line { width: 28px; height: 1px; background: var(--line-strong); }

.sb-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.sb-card--pad { padding: 36px; }

.sb-section + .sb-section { border-top: 1px solid var(--line); margin-top: 30px; padding-top: 30px; }
.sb-section__head { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }

.sb-section__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.sb-section__icon svg { width: 22px; height: 22px; }
.sb-section__title { font-family: var(--font-display); font-weight: 600; font-size: 17.5px; color: var(--ink-900); margin: 0 0 3px; }
.sb-section__hint { font-size: 14px; color: var(--ink-600); margin: 0; line-height: 1.5; }

.sb-check-list { list-style: none; margin: 0; padding: 0; }
.sb-check-item { display: flex; gap: 14px; padding: 15px 0; }
.sb-check-item + .sb-check-item { border-top: 1px solid var(--line); }

.sb-check-item__mark {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success-bg);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.sb-check-item__mark svg { width: 13px; height: 13px; }
.sb-check-item__title { font-weight: 700; font-size: 15px; color: var(--ink-900); margin: 0 0 2px; }
.sb-check-item__desc { font-size: 14px; color: var(--ink-600); margin: 0; line-height: 1.55; }

.sb-tiles { display: grid; gap: 16px; }

.sb-tile {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}

.sb-tile:hover { border-color: var(--sky-400); box-shadow: var(--shadow-card); transform: translateY(-2px); }

.sb-tile__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--r-md);
  background: linear-gradient(155deg, var(--sky-50), var(--sky-100));
  color: var(--sky-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sb-tile__icon svg { width: 26px; height: 26px; }
.sb-tile__title { font-family: var(--font-display); font-weight: 600; font-size: 17.5px; color: var(--ink-900); margin: 0 0 3px; }
.sb-tile__desc { font-size: 14px; color: var(--ink-600); margin: 0; }
.sb-tile__arrow { color: var(--ink-400); flex-shrink: 0; }

.sb-field { margin-bottom: 24px; }
.sb-field:last-child { margin-bottom: 0; }
.sb-label { display: block; font-size: 14px; font-weight: 700; color: var(--ink-900); margin-bottom: 9px; }
.sb-label .optional { font-weight: 500; color: var(--ink-400); text-transform: none; }

.sb-input,
.sb-select {
  width: 100%;
  padding: 15px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.sb-input:focus,
.sb-select:focus { border-color: var(--sky-500); box-shadow: 0 0 0 4px var(--sky-100); }

.sb-input::placeholder { color: var(--ink-400); }
.sb-input.is-locked { background: var(--bg); color: var(--ink-600); cursor: default; }
.sb-hint { font-size: 13px; color: var(--ink-600); margin-top: 7px; }
.sb-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.sb-error-text { font-size: 13px; color: var(--danger); margin-top: 7px; display: flex; align-items: center; gap: 6px; font-weight: 600; }
.sb-field.has-error .sb-input { border-color: var(--danger); background: var(--danger-bg); }

.sb-choice-group { display: grid; gap: 12px; }

.sb-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.sb-choice input { accent-color: var(--sky-500); width: 18px; height: 18px; flex-shrink: 0; }
.sb-choice.is-checked { border-color: var(--sky-500); background: var(--sky-50); }
.sb-choice__label { font-size: 15px; font-weight: 600; color: var(--ink-900); }
.sb-choice__sub { font-size: 13px; color: var(--ink-600); margin-top: 3px; line-height: 1.5; }

.sb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  padding: 15px 30px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

.sb-btn--primary { background: var(--sky-500); color: white; box-shadow: var(--shadow-btn); }
.sb-btn--primary:hover { background: #226CEF; }
.sb-btn--primary:active { transform: scale(0.98); }
.sb-btn--primary:disabled { background: var(--line-strong); color: var(--ink-400); box-shadow: none; cursor: not-allowed; }
.sb-btn--ghost { background: transparent; color: var(--sky-500); border: 1.5px solid var(--line-strong); }
.sb-btn--ghost:hover { background: var(--sky-50); border-color: var(--sky-300); }
.sb-btn--block { width: 100%; }
.sb-btn--sm { padding: 10px 20px; font-size: 14px; }

.sb-link-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--sky-500);
  cursor: pointer;
  background: none;
  border: none;
}

.sb-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(8px);
}

.sb-icon-circle {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: linear-gradient(155deg, var(--sky-50), var(--sky-100));
  color: var(--sky-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: background 0.4s, color 0.4s;
}

.sb-icon-circle svg { width: 42px; height: 42px; }
.sb-icon-circle.is-sent,
.sb-icon-circle.success { background: var(--success-bg); color: var(--success); }

.sb-phone-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 0;
}

.sb-phone-row__num { flex: 1; font-size: 15px; font-weight: 600; color: var(--ink-900); }
.sb-phone-row__change { font-size: 13px; font-weight: 700; color: var(--sky-500); background: none; border: none; cursor: pointer; padding: 0; white-space: nowrap; }
.sb-phone-row__change:hover { text-decoration: underline; }

.sb-otp-section {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(.4,0,.2,1), opacity 0.35s ease, margin-top 0.35s ease;
  margin-top: 0;
}

.sb-otp-section.is-visible { max-height: 400px; opacity: 1; margin-top: 28px; }
.sb-otp-divider { display: flex; align-items: center; gap: 12px; color: var(--ink-400); font-size: 13px; font-weight: 600; margin-bottom: 20px; }
.sb-otp-divider::before, .sb-otp-divider::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.sb-otp { display: flex; gap: 12px; justify-content: center; margin: 30px 0 10px; }

.sb-otp__digit {
  width: 56px;
  height: 66px;
  font-size: 27px;
  font-weight: 700;
  text-align: center;
  font-family: var(--font-display);
  color: var(--ink-900);
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-sm);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  background: var(--white);
}

.sb-otp__digit:focus { border-color: var(--sky-500); box-shadow: 0 0 0 4px var(--sky-100); }
.sb-otp__digit.is-filled { border-color: var(--sky-500); background: var(--sky-50); }

.sb-resend { text-align: center; font-size: 14px; color: var(--ink-600); margin-bottom: 0; }
.sb-resend button { font-weight: 700; color: var(--sky-500); background: none; border: none; cursor: pointer; font-size: 14px; }
.sb-resend .timer { color: var(--ink-400); font-weight: 600; }

.sb-sent-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--success-bg);
  color: var(--success);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}

.sb-sent-badge svg { width: 14px; height: 14px; flex-shrink: 0; }

.sb-diia-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  border-radius: var(--r-lg);
  color: white;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.sb-diia-card::after {
  content: '';
  position: absolute;
  right: -30px;
  top: -30px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(95,151,255,0.35), transparent 70%);
}

.sb-diia-logo {
  width: 58px;
  height: 58px;
  border-radius: var(--r-sm);
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.sb-diia-card__title { font-weight: 700; font-size: 16px; margin: 0 0 4px; position: relative; z-index: 1; }
.sb-diia-card__desc { font-size: 14px; color: #C4D6F2; margin: 0; line-height: 1.5; position: relative; z-index: 1; }

.sb-pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); display: inline-block; position: relative; }
.sb-pulse-dot::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--success); animation: sb-pulse 1.6s ease-out infinite; }
@keyframes sb-pulse { 0% { transform: scale(0.6); opacity: 0.8; } 100% { transform: scale(1.9); opacity: 0; } }

.sb-diia-qr {
  margin: 22px auto 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--bg);
  max-width: 280px;
}

.sb-diia-qr__image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  background: white;
  padding: 10px;
  border: 1px solid var(--line);
}

.sb-diia-qr__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  margin-top: 14px;
  width: 100%;
}

.sb-diia-qr__actions .sb-btn {
  width: 100%;
  justify-content: center;
  min-height: 46px;
  border-radius: 16px;
}

.sb-diia-qr__actions .sb-btn--secondary,
.sb-diia-qr__actions .sb-btn--ghost {
  background: #fff;
}

.sb-diia-qr__hint {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.5;
  text-align: center;
}

.sb-source-badge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  margin-bottom: 18px;
}

.sb-source-badge__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--r-pill);
  background: var(--sky-50);
  color: var(--sky-500);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.sb-source-badge__text {
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.5;
}

.sb-company-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}

.sb-company-card {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 18px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
}

.sb-company-card:hover:not(.is-disabled) {
  border-color: var(--sky-400);
  transform: translateY(-1px);
}

.sb-company-card.is-selected {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px var(--sky-100), 0 8px 24px -10px rgba(47,123,255,0.35);
}

.sb-company-card.is-disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.sb-company-card__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--line-strong);
  margin-bottom: 12px;
  position: relative;
  background: var(--white);
}

.sb-company-card.is-selected .sb-company-card__radio {
  border-color: var(--sky-500);
}

.sb-company-card.is-selected .sb-company-card__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--sky-500);
}

.sb-company-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.sb-company-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
  line-height: 1.35;
  max-width: 440px;
}

.sb-company-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.sb-company-card__code {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-600);
}

.sb-role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-pill);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.sb-role--chief {
  background: #EDF2FE;
  color: #3A5FD9;
}

.sb-role--founder {
  background: #F3ECFF;
  color: #7A45D1;
}

.sb-role--beneficiary {
  background: #FEF1E4;
  color: #C77711;
}

.sb-role--neutral {
  background: #EFF2F7;
  color: #5E6C84;
}

.sb-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--r-pill);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}

.sb-state--active {
  background: var(--success-bg);
  color: var(--success);
}

.sb-company-card.is-selected .sb-state--active {
  position: relative;
  padding-right: 32px;
}

.sb-company-card.is-selected .sb-state--active::after {
  content: '✓';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sky-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 0 4px var(--white);
}

.sb-state__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.sb-card-disabled-hint,
.sb-count-hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--ink-600);
  line-height: 1.5;
}

.sb-empty-state {
  text-align: center;
  display: block;
  max-width: 100%;
  margin: 0 auto;
  padding: 48px 32px 52px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

.sb-empty-state__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warning-bg);
  color: var(--warning);
}

.sb-empty-state__icon svg {
  width: 32px;
  height: 32px;
}

.sb-empty-state__title {
  font-family: var(--font-display);
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-900);
}

.sb-empty-state__text {
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--ink-600);
  line-height: 1.6;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.sb-empty-state__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  margin: 0 auto;
}

.sb-empty-state__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: var(--r-sm);
  background: var(--navy-900);
  color: white;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.15s;
}

.sb-empty-state__phone:hover {
  background: var(--navy-700);
}

.sb-empty-state__phone svg {
  color: var(--sky-400);
}

.sb-empty-state__chat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--sky-500);
  background: transparent;
  color: var(--sky-500);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}

.sb-empty-state__chat:hover {
  background: var(--sky-50);
}


.sb-dropzone {
  border: 1.5px dashed var(--line-strong);
  border-radius: var(--r-md);
  padding: 34px 24px;
  text-align: center;
  background: var(--sky-50);
  margin-bottom: 16px;
}

.sb-dropzone svg { color: var(--sky-500); margin-bottom: 12px; }
.sb-dropzone__title { font-weight: 700; font-size: 15px; color: var(--ink-900); margin: 0 0 4px; }
.sb-dropzone__hint { font-size: 13px; color: var(--ink-600); margin: 0; }

.sb-file-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
}

.sb-file-row__icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--sky-50);
  color: var(--sky-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sb-file-row__icon svg { width: 18px; height: 18px; }
.sb-file-row__name { font-weight: 600; font-size: 14px; color: var(--ink-900); margin: 0 0 2px; }
.sb-file-row__meta { font-size: 12px; color: var(--ink-600); margin: 0; }
.sb-file-row__status { color: var(--success); flex-shrink: 0; }
.sb-file-row__remove { color: var(--ink-400); background: none; border: none; cursor: pointer; flex-shrink: 0; }

.sb-progress-bar { height: 6px; background: var(--line); border-radius: var(--r-pill); overflow: hidden; margin-top: 9px; }
.sb-progress-bar__fill { height: 100%; background: var(--sky-500); border-radius: var(--r-pill); }

.sb-result { text-align: center; padding: 8px 0 26px; }

.sb-result__code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky-50);
  color: var(--sky-500);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  margin-top: 10px;
}

.sb-summary-list { list-style: none; margin: 24px 0 0; padding: 0; }
.sb-summary-item { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; font-size: 14px; }
.sb-summary-item + .sb-summary-item { border-top: 1px solid var(--line); }
.sb-summary-item__label { color: var(--ink-600); }
.sb-summary-item__value { color: var(--ink-900); font-weight: 700; text-align: right; }
.sb-summary-list--tight { margin-top: 0; }
.sb-summary-item__value--success { color: var(--success); }

.sb-divider-text { display: flex; align-items: center; gap: 12px; color: var(--ink-400); font-size: 13px; font-weight: 600; margin: 26px 0; }
.sb-divider-text::before, .sb-divider-text::after { content: ''; flex: 1; height: 1px; background: var(--line); }

.sb-hidden { display: none !important; }
.sb-card--center { text-align: center; }
.sb-status-title { margin: 16px 0 4px; font-weight: 700; color: var(--ink-900); }
.sb-status-text { margin: 0; font-size: 14px; color: var(--ink-600); }
.sb-note-list { text-align: left; }
.sb-footer__spacer { display: inline-block; min-width: 24px; }

.sb-hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-700) 100%);
  overflow: hidden;
  padding: 64px 40px 88px;
}

.sb-hero__mark {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 360px;
  height: 360px;
  opacity: 0.08;
}

.sb-hero__mark svg { width: 100%; height: 100%; }
.sb-hero__content { position: relative; z-index: 1; max-width: var(--content-width); margin: 0 auto; text-align: center; }

.sb-hero__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-300);
  margin: 0 0 16px;
}

.sb-hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: white;
  margin: 0 0 16px;
  line-height: 1.15;
}

.sb-hero__subtitle { font-size: 17px; color: #B9CDEF; margin: 0 auto; line-height: 1.6; max-width: 480px; }

.sb-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(95,151,255,0.16);
  border: 1px solid rgba(95,151,255,0.32);
  color: var(--sky-300);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-top: 24px;
}

@media (max-width: 640px) {
  .sb-header { padding: 0 18px; }
  .sb-hero { padding: 48px 20px 64px; }
  .sb-hero__title { font-size: 28px; }
  .sb-hero__mark { width: 220px; height: 220px; }
  .sb-main { padding: 36px 16px 168px; }
  .sb-card--pad { padding: 24px; }
  .sb-title { font-size: 27px; }
  .sb-row { grid-template-columns: 1fr; }
  .sb-footer { padding: 16px; flex-direction: column-reverse; gap: 10px; }
  .sb-otp__digit { width: 46px; height: 58px; font-size: 22px; }
  .sb-phone span:not(.sb-phone-number) { display: none; }
}
