/* ════════════════════════════════════════════════════════════
   UNAUTHENTICATED WELCOME LANDING PAGE HERO STYLES
   ════════════════════════════════════════════════════════════ */

#unauth-landing-container {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--bg-gradient);
  position: relative;
  z-index: 1;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--bg-glass);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.landing-main {
  flex: 1;
  max-width: 100%;
  margin: 0;
  padding: 16px 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 390px;
  gap: 32px;
  align-items: center;
  width: 100%;
}

@media (max-width: 992px) {
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid var(--border-glow);
  color: #A5B4FC;
  font-weight: 700;
  font-size: 12.5px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.landing-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 18px;
  background: linear-gradient(135deg, #FFFFFF 0%, #CBD5E1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-theme .landing-title {
  background: linear-gradient(135deg, #0F172A 0%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 620px;
}

.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.landing-feat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: var(--transition);
}

.landing-feat-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-md);
}

.landing-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 10px;
}

.landing-login-box {
  background: var(--bg-card);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(20px);
}
