/* ========================================
   Splash Screen
   ======================================== */

#screen-splash {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0 24px;
  padding-top: max(48px, env(safe-area-inset-top));
}

.splash-hero {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 24px;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #0a0f1a 0%, #0a0a14 50%, #0a0f1a 100%);
}

.splash-hero img.waves {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-hero .logo-overlay {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.splash-hero .logo-overlay img {
  height: 42px;
  width: auto;
}

.splash-hero .logo-overlay .subtitle {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 200;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.splash-content {
  flex: 1;
  padding-top: 28px;
}

.splash-content .tagline-blue {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 200;
  font-size: 1.5rem;
  color: var(--accent-blue);
  line-height: 1.3;
}

.splash-content .tagline-bold {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.splash-content .description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 360px;
}

/* Pagination dots (shared) */
.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
}

.dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dots .dot.active {
  width: 24px;
  border-radius: 5px;
  background: var(--accent-blue);
}

.splash-footer {
  padding-bottom: max(32px, env(safe-area-inset-bottom));
}

.btn-get-started {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, #1a3a5c, #1a4a6c);
  border: 2px solid var(--accent-blue);
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  gap: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-get-started:hover {
  background: linear-gradient(135deg, #1a4a6c, #1a5a7c);
  text-decoration: none;
}

.btn-get-started .icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-get-started .icon img {
  width: 28px;
  height: 28px;
}

.btn-get-started .label {
  flex: 1;
  text-align: center;
}

.btn-get-started .arrow {
  font-size: 1.4rem;
  color: var(--accent-blue);
}
