

body[data-page="/stereobank"] {
  scroll-snap-type: none !important;
}

html:has(body[data-page="/stereobank"]) {
  scroll-snap-type: none !important;
}

body[data-page="/stereobank"] ~ .header,
body[data-page="/stereobank"] ~ .footer,
body[data-page="/stereobank"] ~ .horizontal-nav-slot {
  display: none !important;
}

body[data-page="/stereobank"] .header,
body[data-page="/stereobank"] .horizontal-nav-slot,
body[data-page="/stereobank"] .footer {
  display: none !important;
}

.stereobank-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
  position: relative;
}

.stereobank-page::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(30,107,90,0.04) 39px, rgba(30,107,90,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(30,107,90,0.04) 39px, rgba(30,107,90,0.04) 40px);
  pointer-events: none;
  z-index: -1;
}

.sb-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sb-header h1 {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.sb-header h1:hover {
  animation: sb-glitch 0.2s steps(2) 1;
}

@keyframes sb-glitch {
  0% { transform: translate(0); filter: none; }
  25% { transform: translate(-2px, 1px); filter: blur(0.5px); }
  50% { transform: translate(2px, -1px); filter: blur(0.5px); }
  75% { transform: translate(-1px, -1px); filter: blur(0.3px); }
  100% { transform: translate(0); filter: none; }
}

.sb-header h1 .sb-hl {
  color: var(--primary, #1e6b5a);
  text-shadow: 0 0 10px rgba(30, 107, 90, 0.25);
  transition: text-shadow 0.3s;
}

.sb-header h1:hover .sb-hl {
  text-shadow: 0 0 20px rgba(30, 107, 90, 0.5);
}

.sb-header p {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: var(--text-secondary, #666);
  font-size: 0.9rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.sb-flow-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.sb-flow-nav button {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.25rem;
  border: 2px solid var(--border-default, #e5e5e5);
  border-radius: 2px;
  background: transparent;
  color: var(--text-secondary, #666);
  cursor: pointer;
  transition: all 0.2s ease;
}

.sb-flow-nav button:hover {
  border-color: var(--primary, #1e6b5a);
  color: var(--primary, #1e6b5a);
  box-shadow: 0 0 8px rgba(30, 107, 90, 0.15);
}

.sb-flow-nav button.active {
  background: var(--primary, #1e6b5a);
  border-color: var(--primary, #1e6b5a);
  color: #fff;
}

.sb-phones {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.sb-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.sb-phone-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
}

.sb-label--bad {
  background: transparent;
  color: var(--secondary, #f43f5e);
  border: 2px solid var(--secondary, #f43f5e);
  transition: box-shadow 0.3s;
}

.sb-phone--dark:hover .sb-label--bad {
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.2);
}

.sb-label--good {
  background: transparent;
  color: var(--primary, #1e6b5a);
  border: 2px solid var(--primary, #1e6b5a);
  transition: box-shadow 0.3s;
}

.sb-phone--good:hover .sb-label--good {
  box-shadow: 0 0 8px rgba(30, 107, 90, 0.2);
}

.sb-phone-frame {
  width: 300px;
  height: 620px;
  border-radius: 36px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.sb-phone-wrap:hover .sb-phone-frame {
  transform: translateY(-4px);
}

.sb-phone--dark .sb-phone-frame {
  border: 3px solid #1a1a1a;
  background: #1a1a1a;
}

.sb-phone--dark:hover .sb-phone-frame {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), 0 0 20px rgba(244, 63, 94, 0.1);
}

.sb-phone--good .sb-phone-frame {
  border: 3px solid #0d9488;
  background: #f0fdfa;
}

.sb-phone--good .sb-phone-frame::before,
.sb-phone--good .sb-phone-frame::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(13, 148, 136, 0.4);
  z-index: 20;
  transform: rotate(45deg);
  pointer-events: none;
}

.sb-phone--good .sb-phone-frame::before {
  top: -4px;
  right: 24px;
}

.sb-phone--good .sb-phone-frame::after {
  bottom: -4px;
  left: 24px;
}

.sb-phone--good:hover .sb-phone-frame {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 20px rgba(30, 107, 90, 0.15);
}

.sb-phone--good:hover .sb-phone-frame::before,
.sb-phone--good:hover .sb-phone-frame::after {
  border-color: rgba(13, 148, 136, 0.8);
  transition: border-color 0.3s ease;
}

.sb-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 12px;
  z-index: 10;
}

.sb-phone--good .sb-phone-notch {
  background: #1a1a1a;
}

.sb-phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px 0;
  font-size: 11px;
  font-weight: 600;
  height: 44px;
  flex-shrink: 0;
  z-index: 5;
}

.sb-phone--dark .sb-phone-statusbar {
  color: #fff;
}

.sb-phone--good .sb-phone-statusbar {
  color: #1a1a1a;
}

.sb-phone-appbar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}

.sb-phone--dark .sb-phone-appbar {
  color: #fff;
  background: #1a1a1a;
}

.sb-phone--good .sb-phone-appbar {
  color: #0f766e;
  background: #fff;
  border-bottom: 1.5px solid #e2e8f0;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sb-app-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.sb-phone--dark .sb-app-icon {
  background: #333;
}

.sb-phone--good .sb-app-icon {
  background: #ccfbf1;
}

.sb-phone-screen {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.sb-phone-navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 18px;
  flex-shrink: 0;
  height: 48px;
}

.sb-phone--dark .sb-phone-navbar {
  background: #111;
  border-top: 1px solid #333;
}

.sb-phone--good .sb-phone-navbar {
  background: #fff;
  border-top: 1.5px solid #e2e8f0;
}

.sb-phone--good .sb-phone-navbar span:first-child {
  opacity: 1;
  color: #0d9488;
  position: relative;
}

.sb-phone--good .sb-phone-navbar span:first-child::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: #0d9488;
  border-radius: 1px;
}

.sb-phone-navbar span {
  opacity: 0.4;
  font-size: 16px;
  color: #333;
}

.sb-screen {
  position: absolute;
  inset: 0;
  padding: 1rem;
  overflow-y: auto;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  scrollbar-width: none;
}

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

.sb-screen.active {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.sb-screen.prev {
  opacity: 0;
  transform: translateX(-30%) scale(0.95);
}

.sb-phone--dark .sb-screen {
  background: #1a1a1a;
  color: #e5e5e5;
}

.sb-phone--good .sb-screen {
  background: #f0fdfa;
  background-image: radial-gradient(circle, #d1d5db 0.5px, transparent 0.5px);
  background-size: 16px 16px;
  color: #111;
}

.sb-card {
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}

.sb-phone--dark .sb-card {
  background: #2a2a2a;
}

.sb-phone--good .sb-card {
  background: #fff;
  border: 1.5px solid #ccfbf1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sb-phone--good .sb-card:hover {
  border-color: #99f6e4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.sb-card-title {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666;
  margin-bottom: 0.25rem;
}

.sb-card-value {
  font-size: 1.5rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.sb-phone--good .sb-card-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.02em;
}

.sb-card-sub {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.25rem;
}

.sb-tariff-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.5rem;
}

.sb-phone--dark .sb-tariff-badge {
  background: #333;
  color: #aaa;
}

.sb-phone--good .sb-tariff-badge {
  background: #0f766e;
  color: #fff;
  font-weight: 800;
  font-size: 0.62rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(15, 118, 110, 0.3);
  letter-spacing: 0.12em;
}

.sb-banner {
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.sb-banner:hover {
  transform: scale(1.02);
}

.sb-banner:active {
  transform: scale(0.98);
}

.sb-phone--dark .sb-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid #333;
}

.sb-phone--good .sb-banner {
  background: #0d9488;
  border: none;
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.25);
  position: relative;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sb-phone--good .sb-banner::after {
  content: '→';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  opacity: 0;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sb-phone--good .sb-banner:hover {
  background: #0f766e;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.35);
  transform: translateY(-2px) scale(1.02);
}

.sb-phone--good .sb-banner:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.sb-phone--good .sb-banner .sb-banner-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
}

.sb-phone--good .sb-banner .sb-banner-sub {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.sb-banner-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.sb-banner-sub {
  font-size: 0.75rem;
  opacity: 0.6;
}

.sb-btn {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0.5rem;
  transition: transform 0.15s ease, opacity 0.15s ease, box-shadow 0.2s ease;
  text-align: center;
}

.sb-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.sb-btn:active {
  transform: scale(0.97);
}

.sb-btn:active {
  transform: scale(0.97);
}

.sb-btn--dark-primary {
  background: #4cd964;
  color: #000;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem;
}

.sb-btn--ghost {
  background: transparent;
  color: #666;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.5rem;
  text-decoration: underline;
  text-decoration-color: transparent;
}

.sb-btn--ghost:hover {
  text-decoration-color: #666;
}

.sb-btn--good-primary {
  background: #0d9488;
  color: #fff;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.sb-btn--good-primary::after {
  content: '→';
  position: absolute;
  right: 1rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sb-btn--good-primary:hover {
  background: #0f766e;
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
  transform: translateY(-2px) scale(1.02);
  opacity: 1;
  padding-right: 2.2rem;
}

.sb-btn--good-primary:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.sb-btn--good-primary:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}

@keyframes sb-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.sb-btn--good-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: sb-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

.sb-btn--equal {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
}

.sb-phone--good .sb-btn--equal {
  background: #fff;
  color: #111;
  border: 1.5px solid #d1d5db;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.85rem;
}

.sb-phone--good .sb-btn--equal:hover {
  background: #f9fafb;
  border-color: #0d9488;
}

.sb-btn--danger {
  background: rgba(244, 63, 94, 0.1);
  color: var(--secondary, #f43f5e);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.sb-fine-print {
  font-size: 0.55rem;
  color: #555;
  text-align: center;
  margin-top: 0.5rem;
  line-height: 1.3;
}

.sb-warning {
  background: #fffbeb;
  border: 2px solid #f59e0b;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  animation: sb-warn-pulse 2s ease-in-out infinite;
}

@keyframes sb-warn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 0 0 4px rgba(245, 158, 11, 0); }
}

.sb-warning-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.8rem;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.sb-warning-text {
  font-size: 0.78rem;
  font-weight: 500;
  color: #78350f;
  line-height: 1.45;
}

.sb-features {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}

.sb-features li {
  padding: 0.35rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  padding-left: 1.25rem;
  position: relative;
}

.sb-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  font-weight: 700;
}

.sb-phone--dark .sb-features li::before {
  color: #4cd964;
}

.sb-phone--good .sb-features li::before {
  color: var(--primary, #1e6b5a);
}

.sb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.7rem;
  margin-bottom: 0.75rem;
}

.sb-table th {
  font-weight: 700;
  text-align: left;
  padding: 0.4rem 0.5rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sb-phone--dark .sb-table th {
  background: #333;
  color: #999;
}

.sb-phone--good .sb-table th {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  background: #f0fdfa;
  color: #0f766e;
  border-bottom: 2px solid #ccfbf1;
  letter-spacing: 0.06em;
}

.sb-table td {
  padding: 0.4rem 0.5rem;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
}

.sb-table .sb-highlight-row td {
  font-weight: 700;
}

.sb-phone--good .sb-table .sb-highlight-row td {
  background: rgba(245, 158, 11, 0.1);
  color: #92400e;
}

.sb-diff-grid {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0.5rem;
  font-size: 0.72rem;
}

.sb-diff-grid thead th {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  padding: 0 0 0.3rem;
  text-align: left;
  border-bottom: 1.5px solid #e2e8f0;
}

.sb-diff-grid td {
  padding: 0.35rem 0.15rem;
  vertical-align: baseline;
}

.sb-diff-grid-param {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.62rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: -0.01em;
  width: 30%;
}

.sb-diff-grid-old {
  font-weight: 700;
  color: var(--secondary, #f43f5e);
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.sb-diff-grid-arrow {
  color: #94a3b8;
  text-align: center;
  width: 1.2rem;
  font-size: 0.65rem;
}

.sb-diff-grid-new {
  font-weight: 800;
  color: #065f46;
  font-size: 0.82rem;
}

.sb-diff-grid-changed {
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.sb-diff-grid-same td {
  color: #94a3b8;
  font-size: 0.68rem;
}

.sb-diff-grid-same td[colspan] {
  font-style: italic;
}

.sb-warning--compact {
  padding: 0.5rem 0.65rem;
  margin-bottom: 0.5rem;
}

.sb-warning--compact .sb-warning-text {
  font-size: 0.7rem;
  line-height: 1.35;
}

.sb-diff-actions {
  display: flex;
  gap: 0.4rem;
}

.sb-diff-actions .sb-btn {
  flex: 1;
  padding: 0.65rem 0.5rem;
  font-size: 0.78rem;
}

.sb-diff-actions .sb-btn--good-primary {
  font-size: 0.78rem;
  padding: 0.65rem 0.5rem;
}

.sb-diff {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
}

.sb-diff-row {
  padding: 0.5rem 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.sb-diff-old {
  background: rgba(244, 63, 94, 0.1);
  color: var(--secondary, #f43f5e);
  text-decoration: line-through;
}

.sb-diff-new {
  background: rgba(30, 107, 90, 0.1);
  color: #065f46;
}

.sb-diff-same {
  background: rgba(128, 128, 128, 0.05);
  color: inherit;
  opacity: 0.7;
}

.sb-diff-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 40px;
  flex-shrink: 0;
}

.sb-diff-row strong {
  font-weight: 800;
  font-size: 0.85rem;
}

.sb-contract-scroll {
  height: 180px;
  overflow-y: auto;
  font-size: 0.55rem;
  line-height: 1.4;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  scrollbar-width: thin;
}

.sb-phone--dark .sb-contract-scroll {
  background: #222;
  color: #777;
}

.sb-push {
  border-radius: 14px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  animation: sb-slide-down 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes sb-slide-down {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.sb-phone--dark .sb-push {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.sb-phone--good .sb-push {
  background: #fff;
  border: 1.5px solid #ccfbf1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.sb-phone--dark .sb-push-icon {
  background: #333;
}

.sb-phone--good .sb-push-icon {
  background: #ccfbf1;
}

.sb-push-app {
  font-size: 0.65rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
}

.sb-push-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 0.15rem;
}

.sb-push-body {
  font-size: 0.72rem;
  color: #555;
  margin-top: 0.15rem;
  line-height: 1.35;
}

.sb-push-worse {
  color: #e11d48;
  font-weight: 800;
}

.sb-shame-text {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
}

.sb-phone--dark .sb-shame-text {
  color: #e5e5e5;
}

.sb-loss-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.75rem;
}

.sb-loss-list li {
  padding: 0.3rem 0 0.3rem 1.25rem;
  font-size: 0.75rem;
  position: relative;
}

.sb-loss-list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: var(--secondary, #f43f5e);
  font-weight: 700;
}

.sb-keep-lose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.sb-keep-col, .sb-lose-col {
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 0.7rem;
}

.sb-keep-col {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 8px;
}

.sb-lose-col {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 8px;
}

.sb-keep-col h4, .sb-lose-col h4 {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.62rem;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.sb-keep-col h4 {
  color: var(--primary, #1e6b5a);
}

.sb-lose-col h4 {
  color: var(--secondary, #f43f5e);
}

.sb-keep-col ul, .sb-lose-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sb-keep-col li, .sb-lose-col li {
  padding: 0.15rem 0;
  font-size: 0.68rem;
}

.sb-success {
  text-align: center;
  padding: 2rem 0.5rem;
}

.sb-success-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.sb-success-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.sb-success-sub {
  font-size: 0.78rem;
  color: #666;
  line-height: 1.45;
  font-weight: 500;
}

.sb-phone--good .sb-success {
  padding: 1.5rem 0.75rem;
}

.sb-phone--good .sb-success-icon {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

.sb-phone--good .sb-success-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.sb-phone--good .sb-success-sub {
  font-size: 0.75rem;
  line-height: 1.55;
  max-width: 90%;
  margin: 0 auto;
}

.sb-success-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
}

.sb-phone--good .sb-success-link {
  color: var(--primary, #1e6b5a);
  background: rgba(30, 107, 90, 0.08);
  border: 1px solid rgba(30, 107, 90, 0.15);
  transition: all 0.2s;
}

.sb-phone--good .sb-success-link:hover {
  background: rgba(30, 107, 90, 0.15);
  box-shadow: 0 0 8px rgba(30, 107, 90, 0.1);
}

.sb-deadend {
  text-align: center;
  padding: 2rem 0.5rem;
}

.sb-deadend-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}

.sb-deadend-text {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.4;
}

.sb-explanation {
  max-width: 780px;
  margin: 0 auto 2rem;
  min-height: 80px;
}

.sb-explanation-inner {
  background: var(--bg-elevated, #fafafa);
  border: 1px solid var(--border-default, #e5e5e5);
  padding: 1.25rem 1.5rem;
  position: relative;
  transition: opacity 0.3s ease, border-color 0.3s;
}

.sb-explanation-inner::before,
.sb-explanation-inner::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--primary, #1e6b5a);
  border-style: solid;
  transition: border-color 0.3s;
}

.sb-explanation-inner::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.sb-explanation-inner::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.sb-explanation-step {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary, #1e6b5a);
  margin-bottom: 0.35rem;
}

.sb-explanation-ftc {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.18);
  display: inline-block;
  padding: 0.15rem 0.55rem;
  margin-bottom: 0.4rem;
}

.sb-explanation-pattern {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.sb-explanation-text {
  font-size: 0.88rem;
  color: var(--text-secondary, #666);
  line-height: 1.6;
}

.sb-explanation-ref {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  color: var(--text-secondary, #666);
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-default, #e5e5e5);
}

.sb-explanation-ref:not(:empty)::before {
  content: '\2696\00a0';
}

.sb-step-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 0.5rem 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.sb-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sb-phone--dark .sb-step-dot {
  background: #444;
}

.sb-phone--dark .sb-step-dot.active {
  background: #4cd964;
  box-shadow: 0 0 6px rgba(76, 217, 100, 0.4);
  animation: sb-dot-pulse 2s ease-in-out infinite;
}

@keyframes sb-dot-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(76, 217, 100, 0.3); }
  50% { box-shadow: 0 0 10px rgba(76, 217, 100, 0.6); }
}

.sb-phone--good .sb-step-dot {
  background: rgba(30, 107, 90, 0.2);
}

.sb-phone--good .sb-step-dot.active {
  background: #0d9488;
  width: 18px;
  border-radius: 3px;
  box-shadow: 0 0 6px rgba(30, 107, 90, 0.4);
}

@keyframes sb-dot-pulse-teal {
  0%, 100% { box-shadow: 0 0 4px rgba(30, 107, 90, 0.3); }
  50% { box-shadow: 0 0 10px rgba(30, 107, 90, 0.6); }
}

.sb-settings-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(128, 128, 128, 0.15);
  font-size: 0.8rem;
  cursor: pointer;
}

.sb-settings-item:hover {
  opacity: 0.8;
}

.sb-settings-arrow {
  opacity: 0.3;
  font-size: 0.75rem;
}

.sb-settings-small {
  font-size: 0.65rem;
  opacity: 0.4;
}

.sb-scorecard {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.sb-scorecard-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.sb-scorecard-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sb-scorecard-sub {
  font-size: 0.85rem;
  color: var(--text-secondary, #666);
  line-height: 1.5;
}

.sb-scorecard-sub a {
  color: var(--primary, #1e6b5a);
  text-decoration: none;
}

.sb-scorecard-sub a:hover {
  text-shadow: 0 0 8px rgba(30, 107, 90, 0.3);
}

.sb-scorecard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.sb-scorecard-card {
  background: var(--bg-elevated, #fafafa);
  border: 1px solid var(--border-default, #e5e5e5);
  padding: 1.25rem 1.25rem 1rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sb-scorecard-card:hover {
  border-color: var(--secondary, #f43f5e);
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.08);
}

.sb-scorecard-card::before,
.sb-scorecard-card::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: var(--secondary, #f43f5e);
  border-style: solid;
  transition: border-color 0.2s;
}

.sb-scorecard-card::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.sb-scorecard-card::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.sb-scorecard-verdict {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 22px;
  height: 22px;
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

.sb-scorecard-num {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--secondary, #f43f5e);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.sb-scorecard-cat {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}

.sb-scorecard-en {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.62rem;
  color: var(--text-secondary, #666);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.sb-scorecard-how {
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 0.6rem;
}

.sb-scorecard-case {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.7rem;
  color: var(--text-secondary, #666);
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-default, #e5e5e5);
}

.sb-scorecard-case strong {
  color: #dc2626;
}

.sb-scorecard-total {
  margin-top: 1.5rem;
  text-align: center;
  padding: 1.25rem;
  background: rgba(220, 38, 38, 0.03);
  border: 2px solid rgba(220, 38, 38, 0.12);
  position: relative;
}

.sb-scorecard-total::before,
.sb-scorecard-total::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: #dc2626;
  border-style: solid;
}

.sb-scorecard-total::before {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}

.sb-scorecard-total::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}

.sb-scorecard-total-score {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 2.2rem;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
}

.sb-scorecard-total-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary, #666);
  margin-bottom: 0.5rem;
}

.sb-scorecard-total-fines {
  font-size: 0.85rem;
  color: var(--text-secondary, #666);
}

.sb-scorecard-total-fines strong {
  color: #dc2626;
  font-weight: 800;
}

@media (max-width: 768px) {
  .sb-scorecard-grid {
    grid-template-columns: 1fr;
  }

  .sb-scorecard {
    margin: 0 1rem 2rem;
  }
}

.sb-cta {
  max-width: 640px;
  margin: 2.5rem auto;
}

.sb-cta-inner {
  background: var(--bg-elevated, #fafafa);
  border: 2px solid var(--primary, #1e6b5a);
  padding: 2rem 2.5rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.3s;
}

.sb-cta-inner:hover {
  box-shadow: 0 0 20px rgba(30, 107, 90, 0.12);
}

.sb-cta-inner::before,
.sb-cta-inner::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-color: var(--primary, #1e6b5a);
  border-style: solid;
}

.sb-cta-inner::before {
  top: -2px;
  left: -2px;
  border-width: 3px 0 0 3px;
}

.sb-cta-inner::after {
  bottom: -2px;
  right: -2px;
  border-width: 0 3px 3px 0;
}

.sb-cta-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.sb-cta-text {
  font-size: 0.88rem;
  color: var(--text-secondary, #666);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  background: var(--primary, #1e6b5a);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s;
}

.sb-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30, 107, 90, 0.35);
  background: #0d9488;
}

.sb-cta-btn:active {
  transform: translateY(0);
}

.sb-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-default, #e5e5e5);
}

.sb-footer a {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.78rem;
  color: var(--primary, #1e6b5a);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: text-shadow 0.2s;
}

.sb-footer a:hover {
  text-shadow: 0 0 8px rgba(30, 107, 90, 0.3);
}

.sb-footer a::before {
  content: '>';
  margin-right: 0.25rem;
  opacity: 0.5;
}

.sb-screen-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.sb-phone--good .sb-screen-title {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #0f766e;
  margin-bottom: 0.85rem;
}

.sb-restart {
  font-size: 0.7rem;
  color: var(--primary, #1e6b5a);
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 0.75rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: text-decoration-color 0.15s;
}

.sb-restart:hover {
  text-decoration-color: var(--primary, #1e6b5a);
}

@media (max-width: 768px) {
  .sb-phones {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .sb-phone-frame {
    width: min(320px, 85vw);
    height: auto;
    min-height: 580px;
  }

  .sb-phone-label {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }

  .sb-header h1 {
    font-size: 1.4rem;
  }

  .sb-header p {
    font-size: 0.82rem;
    padding: 0 1rem;
  }

  .sb-flow-nav button {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
  }

  .sb-explanation {
    margin: 1.5rem 1rem;
    padding: 1.2rem;
  }

  .sb-cta {
    margin: 1.5rem 1rem;
    padding: 1.5rem 1rem;
  }

  .sb-cta h2 {
    font-size: 1.1rem;
  }

  .sb-footer-links {
    flex-direction: column;
    gap: 0.6rem;
    padding: 0 1rem;
  }
}

.sb-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  display: inline-block;
}

.sb-icon--inline {
  width: 0.85em;
  height: 0.85em;
  vertical-align: -0.05em;
  margin: 0 0.1em;
}

.sb-app-icon .sb-icon {
  width: 20px;
  height: 20px;
}

.sb-push-icon .sb-icon {
  width: 20px;
  height: 20px;
}

.sb-success-icon {
  animation: sb-success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sb-success-icon .sb-icon {
  width: 52px;
  height: 52px;
}

@keyframes sb-success-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

.sb-phone--dark .sb-success-icon .sb-icon {
  color: #4cd964;
}

.sb-phone--good .sb-success-icon .sb-icon {
  color: #0d9488;
}

.sb-deadend-icon .sb-icon {
  width: 40px;
  height: 40px;
  animation: sb-deadend-shake 0.6s ease-in-out;
}

@keyframes sb-deadend-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(3px); }
}

.sb-phone-navbar .sb-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.15s ease;
}

.sb-phone-navbar span:active .sb-icon {
  transform: scale(0.85);
}

.sb-compact-card {
  padding: 0.85rem 1rem !important;
  background: linear-gradient(160deg, #ffffff 0%, #f0fdfa 100%) !important;
  border-top: 2.5px solid #1e6b5a !important;
  border-color: #1e6b5a !important;
}

.sb-compact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.15rem;
}

.sb-compact-top .sb-tariff-badge {
  margin-bottom: 0;
}

.sb-compact-cashback {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.6rem;
  font-weight: 700;
  color: #059669;
  background: #ecfdf5;
  padding: 0.12rem 0.45rem;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.sb-compact-balance {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f766e;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.sb-balance-minor {
  font-size: 0.45em;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0;
}

.sb-compact-rule {
  height: 1px;
  background: linear-gradient(90deg, #1e6b5a, #99f6e4 60%, transparent);
  margin: 0.45rem -1rem;
}

.sb-compact-credit-section {
  padding-top: 0.1rem;
}

.sb-compact-credit-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.62rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.sb-compact-credit-head span:last-child {
  font-variant-numeric: tabular-nums;
  text-transform: none;
  letter-spacing: 0;
}

.sb-compact-credit-section .sb-credit-progress {
  margin: 0;
  height: 5px;
  border-radius: 3px;
  background: #e2e8f0;
}

.sb-compact-credit-section .sb-credit-progress-bar {
  background: linear-gradient(90deg, #1e6b5a, #0d9488) !important;
  border-radius: 3px;
}

.sb-compact-credit-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
}

.sb-compact-grace {
  color: #64748b;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.sb-grace-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
  animation: sb-grace-blink 2s ease-in-out infinite;
}

@keyframes sb-grace-blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0); }
}

.sb-compact-interest-val {
  color: #e11d48;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  background: #fff1f2;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.7rem;
}

.sb-tx-card {
  padding: 0.75rem 1rem !important;
}

.sb-tx-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
}

.sb-tx-row + .sb-tx-row {
  border-top: 1px solid #f1f5f9;
}

.sb-tx-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0fdfa;
  border-radius: 8px;
  flex-shrink: 0;
  color: #0d9488;
}

.sb-tx-icon .sb-icon {
  width: 15px;
  height: 15px;
}

.sb-tx-info {
  flex: 1;
  min-width: 0;
}

.sb-tx-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1e293b;
}

.sb-tx-time {
  display: block;
  font-size: 0.58rem;
  color: #94a3b8;
  margin-top: 0.05rem;
}

.sb-tx-amount {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e293b;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.sb-plan-badge {
  font-size: 0.45rem;
  font-weight: 700;
  background: #1e6b5a;
  color: #fff;
  padding: 0.1rem 0.3rem;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 0.15rem;
}

.sb-credit-card {
  padding: 0.85rem 1rem;
  position: relative;
}

.sb-phone--good .sb-credit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  right: 12px;
  width: 6px;
  height: 6px;
  border: 1.5px solid #0d9488;
  transform: rotate(45deg);
  background: #f0fdfa;
}

.sb-credit-card .sb-card-title {
  font-size: 0.76rem;
  font-weight: 800;
  color: #0f766e;
  margin-bottom: 0.4rem;
}

.sb-credit-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
  font-size: 0.76rem;
  font-weight: 600;
  color: #334155;
  border-bottom: 1px solid #e2e8f0;
}

.sb-credit-row:last-of-type {
  border-bottom: none;
}

.sb-credit-val {
  font-weight: 800;
  font-size: 0.9rem;
  font-variant-numeric: tabular-nums;
  color: #0f172a;
}

.sb-credit-row--warn {
  background: #fffbeb;
  margin: 0.2rem -0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  border-bottom: none;
}

.sb-credit-row--warn .sb-credit-val {
  color: #d97706;
  font-weight: 800;
}

.sb-credit-row--accent {
  background: #fff1f2;
  margin: 0.2rem -0.75rem;
  padding: 0.45rem 0.75rem;
  border-radius: 6px;
  border-bottom: none;
}

.sb-credit-row--accent .sb-credit-val {
  color: #e11d48;
  font-size: 0.95rem;
  font-weight: 800;
}

.sb-credit-progress {
  margin-top: 0.6rem;
  position: relative;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.sb-credit-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0d9488, #1e6b5a);
  border-radius: 4px;
  animation: sb-progress-fill 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes sb-progress-fill {
  0% { width: 0 !important; }
}

.sb-credit-progress-label {
  display: flex;
  justify-content: space-between;
  margin-top: 0.3rem;
  font-size: 0.62rem;
  font-weight: 600;
  color: #94a3b8;
}

@keyframes sb-pulse-red {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.sb-interest-ticking {
  animation: sb-pulse-red 2s ease-in-out infinite;
}

@media (max-width: 400px) {
  .sb-phone-frame {
    width: 90vw;
    min-height: 540px;
  }

  .stereobank-page {
    padding: 1rem 0.25rem 3rem;
  }

  .sb-flow-nav {
    gap: 0.3rem;
  }

  .sb-flow-nav button {
    font-size: 0.62rem;
    padding: 0.35rem 0.5rem;
  }
}

.sb-chat-hint {
  position: absolute;
  bottom: 6px;
  right: 72px;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.45rem 0.85rem;
  background: var(--bg-base, #fafaf9);
  color: var(--primary, #1e6b5a);
  border: 2px solid var(--primary, #1e6b5a);
  cursor: pointer;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .4s, transform .4s, box-shadow .2s, background .2s;
}

.sb-chat-hint.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  animation: sb-hint-glow 3s ease-in-out infinite;
}

.sb-chat-hint:hover {
  background: var(--primary, #1e6b5a);
  color: #fff;
  box-shadow: 0 0 12px rgba(30, 107, 90, 0.4);
}

@keyframes sb-hint-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(30,107,90,0); }
  50% { box-shadow: 0 0 10px rgba(30,107,90,0.25); }
}

@media (max-width: 768px) {
  .sb-chat-hint {
    display: none;
  }
}
