/* 1Platform Client Portal Styles */
:root {
  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-card: #161F30;
  --bg-card-hover: #1E293B;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-active: rgba(37, 99, 235, 0.4);
  
  --accent-blue: #2563EB;
  --accent-hover: #1D4ED8;
  --accent-glow: rgba(37, 99, 235, 0.25);
  
  --text-primary: #F9FAFB;
  --text-secondary: #E2E8F0;
  --text-muted: #94A3B8;
  
  --color-green: #10B981;
  --color-yellow: #F59E0B;
  --color-red: #EF4444;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column-reverse;
  gap: 0.5rem;
}
.toast {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  animation: slideIn 0.2s ease-out;
}
.toast.success { border-color: var(--color-green); color: #34D399; }
.toast.error { border-color: var(--color-red); color: #F87171; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* Shared Brand Badge */
.brand-badge {
  background: var(--accent-blue);
  color: #fff;
  font-weight: 800;
  border-bottom: 3px solid #1E293B;
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 1.2rem;
  display: inline-block;
}

/* Auth & Join Screens */
.view-screen { width: 100%; }
.auth-screen, .join-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.auth-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.auth-header {
  text-align: center;
  margin-bottom: 1.8rem;
}
.auth-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 0.6rem;
  letter-spacing: -0.5px;
}
.auth-subtitle {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}
.auth-tabs {
  display: flex;
  background: var(--bg-primary);
  padding: 3px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
}
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s;
}
.auth-tab.active {
  background: var(--accent-blue);
  color: white;
}

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.form-input, .form-select {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.15s;
}
.form-input:focus, .form-select:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px var(--accent-glow);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0.75rem;
}
.form-check-row {
  margin-bottom: 1.2rem;
}
.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary { background: var(--accent-blue); color: white; }
.btn-primary:hover { background: var(--accent-hover); }
.btn-outline { background: transparent; border: 1px solid var(--border-color); color: var(--text-secondary); }
.btn-outline:hover { background: var(--bg-card-hover); color: white; }
.btn-block { width: 100%; }
.btn-sm { padding: 0.35rem 0.75rem; font-size: 0.78rem; }
.btn-link { background: none; border: none; color: #60A5FA; cursor: pointer; font-size: 0.8rem; text-decoration: underline; }

/* Dashboard Navigation */
.dash-nav {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-nav-left { display: flex; align-items: center; gap: 1.2rem; }
.dash-logo { display: flex; align-items: center; gap: 8px; font-size: 1.1rem; font-weight: 800; }
.dash-logo .brand-badge { font-size: 0.9rem; padding: 1px 7px; }
.company-select {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-active);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
}
.role-badge {
  background: rgba(37, 99, 235, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
}
.dash-nav-right { display: flex; align-items: center; gap: 1rem; }
.user-greeting { font-size: 0.82rem; color: var(--text-muted); }

/* Dashboard Tabs Bar */
.dash-tabs-bar {
  background: rgba(17, 24, 39, 0.7);
  border-bottom: 1px solid var(--border-color);
  padding: 0 1.5rem;
  display: flex;
  gap: 0.5rem;
}
.dash-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all 0.15s;
}
.dash-tab:hover { color: var(--text-primary); }
.dash-tab.active {
  color: #60A5FA;
  border-bottom-color: var(--accent-blue);
}

/* Content Container */
.dash-container {
  max-width: 1200px;
  margin: 1.5rem auto;
  padding: 0 1.5rem;
  width: 100%;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.section-title { font-size: 1.2rem; font-weight: 700; }
.section-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Grid of Databases */
.db-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
}
.db-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem;
  transition: border-color 0.15s;
}
.db-card:hover { border-color: var(--border-active); }
.db-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.db-title { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); }
.db-config { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.db-meta-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* KPI Overview */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.kpi-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem;
}
.kpi-label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; }
.kpi-value { font-size: 1.6rem; font-weight: 800; margin: 0.35rem 0; color: var(--text-primary); }
.kpi-sub { font-size: 0.72rem; color: var(--text-muted); }
.text-green { color: #34D399; }
.text-yellow { color: #FBBF24; }

/* Tables */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem;
}
.card-title { font-size: 1rem; font-weight: 700; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}
.data-table th, .data-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.data-table th { color: var(--text-muted); font-weight: 600; }

/* Step Guide */
.step-guide { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  background: var(--accent-blue);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.step-content b { font-size: 0.85rem; }
.step-content p { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Join Screen Specifics */
.join-company-badge {
  background: rgba(37, 99, 235, 0.15);
  color: #60A5FA;
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.6rem;
  display: inline-block;
}
.join-details-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.join-user-greeting { text-align: center; margin-bottom: 1rem; font-size: 0.85rem; }

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
.modal-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
  overflow: hidden;
}
.modal-header {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-title { font-size: 1rem; font-weight: 700; }
.btn-close { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1.1rem; }
.modal-body { padding: 1.2rem; }
.modal-footer {
  padding: 0.8rem 1.2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}
.invite-db-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-height: 180px;
  overflow-y: auto;
  background: var(--bg-primary);
  padding: 0.6rem;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

/* Horizontal Brand Lockup */
.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.brand-icon-svg {
  display: block;
  flex-shrink: 0;
}
.brand-name-text {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 1.95rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.6px;
  line-height: 1;
}
.nav-lockup {
  gap: 8px;
  margin-bottom: 0;
}

/* White Brand Badge Container */
.brand-badge-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 8px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 0.8rem;
}
.brand-badge-icon {
  height: 40px;
  width: auto;
  display: block;
}
.brand-badge-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #2a353c;
  letter-spacing: -0.6px;
  line-height: 1;
}
.brand-badge-nav {
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 0;
  gap: 8px;
  box-shadow: none;
}

/* Auth Container & Splash Header */
.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.auth-splash-header {
  text-align: center;
  margin-bottom: 1.6rem;
}
.auth-splash-header .auth-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 0.4rem;
}


/* Scaled-up Auth Screen & Brand Layout */
.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.auth-splash-header {
  text-align: center;
  margin-bottom: 2rem;
}
.brand-badge-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #FFFFFF;
  padding: 12px 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.8rem;
  transition: transform 0.2s;
}
.brand-badge-icon {
  height: 56px;
  width: auto;
  display: block;
}
.brand-badge-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  color: #2a353c;
  letter-spacing: -0.8px;
  line-height: 1;
}
.auth-splash-header .auth-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 0.6rem;
  letter-spacing: 0.2px;
}
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.2rem;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}
.auth-tabs {
  display: flex;
  background: var(--bg-primary);
  padding: 5px;
  border-radius: 10px;
  margin-bottom: 1.8rem;
}
.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-tab.active {
  background: var(--accent-blue);
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 73, 255, 0.4);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}
.form-input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: var(--accent-blue);
}
.btn-primary {
  background: var(--accent-blue);
  color: #FFFFFF;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}


/* Keyframe for smooth falling drop animation */
@keyframes logoDropIn {
  0% {
    opacity: 0;
    transform: translateY(-70px) scale(0.92);
  }
  65% {
    opacity: 1;
    transform: translateY(8px) scale(1.02);
  }
  85% {
    transform: translateY(-3px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes subtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.auth-splash-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

/* 2x Enormous Brand Badge with Drop Animation */
.brand-badge-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #FFFFFF;
  padding: 16px 48px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 73, 255, 0.25), 0 10px 30px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.2rem;
  animation: logoDropIn 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.brand-badge-icon {
  height: 85px;
  width: auto;
  display: block;
}

.brand-badge-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  color: #2a353c;
  letter-spacing: -1.5px;
  line-height: 1;
}

.auth-splash-header .auth-subtitle {
  color: #94A3B8;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-top: 0.8rem;
  animation: subtitleFadeIn 0.9s ease-out 0.2s both;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2.8rem;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}


/* Creative 3D Staged Animation for 1Platform Brand */
@keyframes badgeReveal3D {
  0% {
    opacity: 0;
    transform: perspective(900px) rotateX(18deg) translateY(-28px) scale(0.92);
    filter: blur(8px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: perspective(900px) rotateX(0deg) translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes iconLand {
  0% {
    opacity: 0;
    transform: translateY(-20px) scale(0.85);
  }
  65% {
    transform: translateY(2px) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateX(14px);
    letter-spacing: 2px;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    letter-spacing: -1.5px;
  }
}

@keyframes subtitleSoftRise {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.auth-splash-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

/* Enormous Clean White Brand Badge - Soft Natural Shadow without harsh blue glow */
.brand-badge-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #FFFFFF;
  padding: 16px 48px;
  border-radius: 24px;
  box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.45), 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.2rem;
  animation: badgeReveal3D 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
  transform-origin: center top;
}

.brand-badge-icon {
  height: 85px;
  width: auto;
  display: block;
  animation: iconLand 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.brand-badge-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  color: #2a353c;
  line-height: 1;
  animation: titleReveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.auth-splash-header .auth-subtitle {
  color: #94A3B8;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-top: 0.8rem;
  animation: subtitleSoftRise 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2.8rem;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}


/* Organic Jelly / Marmalade Squeeze & Bounce Animation (Squash & Stretch) */
@keyframes jellySqueeze {
  0% {
    opacity: 0;
    transform: scale(0.55, 0.55);
  }
  28% {
    opacity: 1;
    transform: scale(1.30, 0.70); /* Мощное сжатие в блинчик как мармелад */
  }
  48% {
    transform: scale(0.80, 1.25); /* Пружинистое вытягивание вверх */
  }
  68% {
    transform: scale(1.12, 0.90); /* Затухающий отскок-сжатие */
  }
  84% {
    transform: scale(0.95, 1.05); /* Микро-вытягивание */
  }
  100% {
    opacity: 1;
    transform: scale(1, 1);       /* Идеальная фиксация */
  }
}

@keyframes subtitleJellyFade {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.auth-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.auth-splash-header {
  text-align: center;
  margin-bottom: 2.2rem;
}

/* Brand Badge with Jelly Squeeze */
.brand-badge-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #FFFFFF;
  padding: 16px 48px;
  border-radius: 24px;
  box-shadow: 0 16px 36px -4px rgba(0, 0, 0, 0.45), 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 1.2rem;
  transform-origin: center center;
  animation: jellySqueeze 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.brand-badge-icon {
  height: 85px;
  width: auto;
  display: block;
}

.brand-badge-title {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  color: #2a353c;
  line-height: 1;
}

.auth-splash-header .auth-subtitle {
  color: #94A3B8;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  margin-top: 0.8rem;
  transform-origin: center center;
  animation: subtitleJellyFade 0.8s ease-out 0.25s both;
}

/* Auth Card with Staggered Jelly Squeeze */
.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem 2.8rem;
  width: 100%;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  transform-origin: center center;
  animation: jellySqueeze 1s cubic-bezier(0.25, 1, 0.5, 1) 0.18s both;
}
