/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --font-display: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Bricolage Grotesque', serif;
}

body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== HOME ONBOARDING CONTAINER ===== */
.home-onboarding-container {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* ===== HERO BACKGROUND ===== */
.hero-backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.hero-background.active {
  opacity: 1;
  z-index: 1;
}

.hero-background.transitioning {
  opacity: 0;
}

/* ===== HERO OVERLAY ===== */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(65, 40, 54, 0.08) 0%,
    rgba(65, 40, 54, 0.16) 46%,
    rgba(65, 40, 54, 0.75) 100%
  );
  z-index: 1;
  overflow: hidden;
}

/* ===== FLOATING ORBS ===== */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  animation: floatOrb 20s ease-in-out infinite;
  pointer-events: none;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  top: 10%;
  left: -10%;
  animation-duration: 20s;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 200, 220, 0.06) 0%, transparent 70%);
  top: 40%;
  right: -8%;
  animation-duration: 25s;
  animation-delay: 5s;
  filter: blur(50px);
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  bottom: 15%;
  left: 20%;
  animation-duration: 18s;
  animation-delay: 3s;
  filter: blur(45px);
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  padding-bottom: 56px;
}

/* ===== BANNER DOTS ===== */
.banner-dots-onboarding {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.dot-onboarding {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.dot-onboarding:hover {
  transform: scale(1.2);
}

.dot-inner-onboarding {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.dot-onboarding.active .dot-inner-onboarding {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

/* ===== BOTTOM SECTION ===== */
.bottom-section-onboarding {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ===== TITLE SECTION ===== */
.title-section-onboarding {
  text-align: center;
  margin-bottom: 28px;
}

.main-title-onboarding {
  margin: 0;
  font-size: clamp(1.75rem, 4.5vw, 2.25rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.98);
  font-family: var(--font-display);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.subtitle-onboarding {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-body);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.powered-by-onboarding {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== OPTIONS LIST ===== */
.options-list-onboarding {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.option-item-onboarding {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.option-item-onboarding::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.option-item-onboarding:hover::before {
  opacity: 1;
}

.option-item-onboarding:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ===== OPTION ICON WRAPPER ===== */
.option-icon-wrapper-onboarding {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.option-item-onboarding:hover .option-icon-wrapper-onboarding {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.option-icon-image {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

/* ===== OPTION TEXT ===== */
.option-text-onboarding {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.option-title-onboarding {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-family: var(--font-display);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.option-subtitle-onboarding {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  line-height: 1.4;
  font-family: var(--font-body);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===== OPTION ARROW ===== */
.option-arrow-onboarding {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50%;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.option-item-onboarding:hover .option-arrow-onboarding {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateX(6px) scale(1.05);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .hero-content {
    padding: 32px 24px 48px;
  }

  .main-title-onboarding {
    font-size: clamp(1.5rem, 4vw, 1.85rem);
  }

  .subtitle-onboarding {
    font-size: 0.9rem;
  }

  .powered-by-onboarding {
    font-size: 0.75rem;
  }

  .title-section-onboarding {
    margin-bottom: 20px;
  }

  .options-list-onboarding {
    gap: 16px;
  }

  .option-item-onboarding {
    padding: 28px 32px;
    gap: 20px;
    min-height: 110px;
  }

  .option-icon-wrapper-onboarding {
    width: 76px;
    height: 76px;
  }

  .option-icon-image {
    width: 48px;
    height: 48px;
  }

  .option-title-onboarding {
    font-size: 1.3rem;
  }

  .option-subtitle-onboarding {
    font-size: 0.9rem;
  }

  .option-arrow-onboarding {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 24px 20px 40px;
  }

  .main-title-onboarding {
    font-size: 1.35rem;
  }

  .subtitle-onboarding {
    font-size: 0.85rem;
  }

  .powered-by-onboarding {
    font-size: 0.7rem;
  }

  .title-section-onboarding {
    margin-bottom: 16px;
  }

  .option-item-onboarding {
    padding: 24px 28px;
    gap: 18px;
    min-height: 100px;
  }

  .option-icon-wrapper-onboarding {
    width: 68px;
    height: 68px;
  }

  .option-icon-image {
    width: 44px;
    height: 44px;
  }

  .option-title-onboarding {
    font-size: 1.15rem;
  }

  .option-subtitle-onboarding {
    font-size: 0.85rem;
  }

  .option-arrow-onboarding {
    width: 46px;
    height: 46px;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  .floating-orb,
  .option-item-onboarding {
    animation: none !important;
  }

  .option-item-onboarding:hover {
    transform: none;
  }
}
