/* ==========================================================================
   NEXT CIRCLE™ Funnel CSS Core Design System
   Visual Identity: Premium Neumorphic Dark Cyber-Luxury (DM Sans Version)
   Official Colors: 
     PMS 2955 CP: #003865 (Deep Navy)
     PMS PROCESS CYAN CP: #009FDF (Electric Cyan)
     PMS 297 CP: #71C5E8 (Ice Blue)
     PMS 5435 CP: #A6BBC8 (Slate Gray)
   Luxury Accent:
     Brushed Gold: #D4AF37
   ========================================================================== */

/* --- Custom Variables & Reset --- */
:root {
  /* Pantone Color Palette */
  --color-navy: #003865;
  --color-cyan: #009FDF;
  --color-ice: #71C5E8;
  --color-slate: #A6BBC8;
  --color-gold: #D4AF37; /* Luxury gold accent */
  
  /* UI Colors */
  --color-bg-dark: #03060C; /* Near-black deepest space navy */
  --color-card-bg: rgba(6, 13, 28, 0.7); /* Sunken glass card */
  --color-card-border: rgba(113, 197, 232, 0.14);
  
  /* Neumorphic Shadow Tokens */
  --shadow-raised: 8px 8px 24px rgba(0, 0, 0, 0.65), inset 1px 1px 2px rgba(255, 255, 255, 0.08);
  --shadow-sunken: inset 3px 3px 10px rgba(0, 0, 0, 0.75), 1px 1px 1px rgba(255, 255, 255, 0.03);
  --shadow-glow-cyan: 0 0 20px rgba(0, 159, 223, 0.45), inset 0 0 8px rgba(0, 159, 223, 0.2);
  --shadow-glow-gold: 0 0 20px rgba(212, 175, 55, 0.45), inset 0 0 8px rgba(212, 175, 55, 0.2);
  
  /* Fonts */
  --font-title: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--color-bg-dark);
  font-family: var(--font-body);
  color: #FFFFFF;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* --- HTML5 Particles Canvas --- */
#particlesCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* --- Main Funnel Viewport & Shell --- */
.funnel-viewport {
  position: relative;
  width: 100%;
  max-width: 440px; /* Locked to feel like a premium mobile app */
  height: 100%;
  max-height: 880px;
  background: radial-gradient(circle at 50% 15%, #0A1429 0%, #020408 100%);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

@media (min-width: 441px) {
  .funnel-viewport {
    border-radius: 40px;
    height: 94vh;
  }
}

/* --- APP BRAND HEADER --- */
.app-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 24px 12px 24px;
  display: flex;
  flex-direction: column;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  background: linear-gradient(to bottom, rgba(3, 6, 12, 0.95) 0%, rgba(3, 6, 12, 0) 100%);
  box-sizing: border-box;
}

.app-header.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-top-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 48px;
}

/* Minimal Back Button */
.back-btn {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.back-btn:hover {
  border-color: rgba(0, 159, 223, 0.4);
  background: rgba(0, 159, 223, 0.05);
  transform: scale(1.05);
}

.back-btn:active {
  transform: scale(0.95);
}

/* Brand indicators */
.header-brand-container {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}

.header-logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 159, 223, 0.08);
  border: 1px solid rgba(0, 159, 223, 0.25);
  box-shadow: 0 0 10px rgba(0, 159, 223, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-mark-img {
  width: 15px;
  height: 15px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(0, 159, 223, 0.2));
}

.header-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.header-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.header-subtitle {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-slate);
}

.header-step-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-ice);
  background: rgba(255, 255, 255, 0.015);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Sleek Base Progress Line */
.header-progress-steps {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(113, 197, 232, 0.05);
  box-sizing: border-box;
}

.progress-steps-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.progress-steps-fill {
  height: 100%;
  width: 0%;
  background: var(--color-cyan);
  box-shadow: 0 1px 8px var(--color-cyan);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- SCREENS FRAMEWORK --- */
.screens-frame {
  flex: 1;
  width: 100%;
  position: relative;
  display: flex;
}

.screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 135px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(80px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  overflow-y: auto;
}

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

.screen.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.screen.exit-left {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-80px);
}

.screen.exit-right {
  opacity: 0;
  pointer-events: none;
  transform: translateX(80px);
}

/* --- SCREEN CONTENT CONTAINER SCROLL FIX --- */
.screen-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  flex: 1 0 auto;
  box-sizing: border-box;
}

/* --- SCREEN 1: Enter the Circle (Premium Video Backdrop & Exact Layout) --- */
#screen-1 {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: scale(0.95);
  position: relative;
  overflow: hidden;
}

#screen-1.active {
  transform: scale(1);
}

/* Background video properties */
.welcome-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.28; /* Blends video with deep dark background for readability */
  pointer-events: none;
}

#screen-1 .intro-content {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 44px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(3, 6, 12, 0.4) 0%, rgba(2, 4, 8, 0.85) 100%);
}

.intro-branding-header {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.brand-logo-promo {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(255,255,255,0.06));
}

/* Sphere and Concentric Orbits matching logo colors */
.welcome-branding-sphere {
  position: relative;
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.orbit-line-outer,
.orbit-line-middle,
.orbit-line-inner {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(113, 197, 232, 0.15);
  box-shadow: 0 0 10px rgba(0, 159, 223, 0.1);
  pointer-events: none;
}

.orbit-line-outer {
  width: 250px;
  height: 250px;
  animation: spinRing 26s infinite linear;
}

.orbit-line-outer::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 24px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-ice);
  box-shadow: 0 0 8px var(--color-ice);
}

.orbit-line-middle {
  width: 210px;
  height: 210px;
  border-style: dashed;
  border-color: rgba(113, 197, 232, 0.1);
  animation: spinRingReverse 18s infinite linear;
}

.orbit-line-inner {
  width: 170px;
  height: 170px;
  animation: spinRing 12s infinite linear;
}

.orbit-line-inner::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 10px var(--color-cyan);
}

.sphere-text-box {
  text-align: center;
  z-index: 5;
}

.sphere-text-next {
  display: block;
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.15deg;
  line-height: 1;
  color: #FFFFFF;
}

.sphere-text-circle {
  display: block;
  font-family: var(--font-title);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.15deg;
  line-height: 1;
  color: #FFFFFF;
  margin-top: 2px;
}

.sphere-text-circle sup {
  font-size: 15px;
  font-weight: 700;
  vertical-align: super;
}

.sphere-separator-line {
  width: 40px;
  height: 1.5px;
  background: var(--color-cyan);
  margin: 12px auto;
  box-shadow: 0 0 6px var(--color-cyan);
}

.sphere-subheadline {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  color: var(--color-cyan);
  max-width: 160px;
  margin: 0 auto;
}

/* Mid Details Box */
.welcome-details-box {
  text-align: center;
  margin-top: 10px;
}

.welcome-opp-headline {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--color-cyan);
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0, 159, 223, 0.4);
}

.glowing-cyan-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px var(--color-cyan);
  margin: 12px auto;
}

.welcome-audience-sub {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

/* --- SCREEN 1 PROMOTION CARD (REGÍSTRATE PARA GANAR) --- */
.welcome-promo-card {
  background: rgba(6, 13, 28, 0.55);
  border: 1px solid rgba(0, 159, 223, 0.2);
  border-radius: 24px;
  padding: 20px 16px;
  width: 100%;
  margin: 18px 0;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-raised), 0 0 25px rgba(0, 159, 223, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.promo-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.promo-badge {
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--color-slate);
  text-transform: uppercase;
}

.promo-main-title {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.promo-sub-title {
  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-ice);
  text-transform: uppercase;
}

.promo-value-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.promo-value-glow {
  position: relative;
  background: rgba(0, 159, 223, 0.06);
  border: 1.5px solid var(--color-cyan);
  box-shadow: 0 0 15px rgba(0, 159, 223, 0.4), inset 0 0 8px rgba(0, 159, 223, 0.2);
  border-radius: 8px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
}

.promo-price {
  font-size: 18px;
  font-weight: 900;
  color: #FFFFFF;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.promo-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  margin: 10px 0 14px 0;
}

.promo-feature-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(113, 197, 232, 0.1);
  box-shadow: var(--shadow-sunken);
  border-radius: 12px;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.promo-feature-item:hover {
  border-color: rgba(0, 159, 223, 0.3);
  box-shadow: 0 0 10px rgba(0, 159, 223, 0.15);
}

.feature-icon-wrapper {
  color: var(--color-cyan);
  filter: drop-shadow(0 0 4px rgba(0, 159, 223, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-slate);
  letter-spacing: 0.01em;
}

.promo-callout {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--color-slate);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

/* Button Container & Circular Trigger matching promo */
.welcome-circular-button-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 18px 0;
}

.welcome-enter-circle-btn {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 56, 101, 0.3) 0%, rgba(3, 7, 16, 0.8) 85%);
  border: 1.5px solid var(--color-cyan);
  box-shadow: var(--shadow-raised), 0 0 15px rgba(0, 159, 223, 0.4), inset 0 0 10px rgba(0, 159, 223, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.25);
  color: #FFFFFF;
  outline: none;
}

.welcome-enter-circle-btn:hover {
  transform: scale(1.05);
  border-color: var(--color-ice);
  box-shadow: 0 0 25px rgba(0, 159, 223, 0.7), inset 0 0 15px rgba(113, 197, 232, 0.4);
}

.welcome-enter-circle-btn:active {
  transform: scale(0.94);
  box-shadow: var(--shadow-sunken);
}

.btn-circular-label {
  font-family: var(--font-title);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-align: center;
  pointer-events: none;
}

.btn-circular-sep {
  width: 18px;
  height: 1px;
  background: var(--color-cyan);
  margin-top: 4px;
  pointer-events: none;
}

.welcome-btn-separator-line {
  width: 80px;
  height: 1px;
  background: rgba(0, 159, 223, 0.12);
  margin-top: 14px;
}

/* Footer Box */
.welcome-footer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.promo-business-link {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.promo-business-link:hover {
  opacity: 0.85;
}

.bottom-dot {
  margin: 6px auto 0 auto;
}

@keyframes spinRing {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spinRingReverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}


/* --- GENERAL SCREEN HEADING --- */
.question-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.question-desc {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--color-slate);
  margin-bottom: 24px;
}

.question-accent-line {
  display: none;
}

/* --- PREMIUM STACKED LIST CARDS (SCREEN 2) --- */
.premium-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-bottom: 20px;
}

.premium-list-card {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
  -webkit-appearance: none;
}

.premium-list-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.premium-list-card.selected {
  background: rgba(0, 159, 223, 0.04) !important;
  border-color: rgba(0, 159, 223, 0.6) !important;
  box-shadow: 0 0 25px rgba(0, 159, 223, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.card-indicator-ring {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0, 0, 0, 0.3);
}

.card-indicator-dot {
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-cyan);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-list-card.selected .card-indicator-ring {
  border-color: var(--color-cyan);
  background: rgba(0, 159, 223, 0.1);
  box-shadow: 0 0 8px rgba(0, 159, 223, 0.3);
}

.premium-list-card.selected .card-indicator-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px var(--color-cyan);
}

.card-info-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  padding: 0 18px;
}

.card-title-text {
  font-family: var(--font-title);
  font-size: 14.5px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
}

.card-desc-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-slate);
  line-height: 1.35;
}

.card-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cyan);
  opacity: 0.35;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-list-card:hover .card-chevron {
  opacity: 0.85;
  transform: translateX(3px);
}

.premium-list-card.selected .card-chevron {
  opacity: 1;
  color: var(--color-cyan);
}

/* --- NEUMORPHIC GRIDS (NO DESCRIPTIONS) --- */
.diamond-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  margin-bottom: 16px;
}

.diamond-card {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-emoji {
  font-size: 24px;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
  transition: transform 0.3s;
}

.card-vector-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--color-cyan);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-vector-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-cyan);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-slate);
  transition: color 0.3s;
  pointer-events: none;
}

/* Mouse hover radial lighting effect */
.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 80px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 159, 223, 0.14), transparent 80%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.diamond-card:hover .card-glow {
  opacity: 1;
}

/* Active Selected states */
.diamond-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.diamond-card:hover .card-emoji {
  transform: scale(1.08) rotate(3deg);
}

.diamond-card:hover .card-vector-icon {
  transform: scale(1.1);
}

.diamond-card.selected {
  background: rgba(0, 159, 223, 0.04) !important;
  border-color: rgba(0, 159, 223, 0.6) !important;
  box-shadow: 0 0 25px rgba(0, 159, 223, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.diamond-card.selected .card-label {
  color: #FFFFFF;
}

.diamond-card.selected .card-vector-icon svg {
  stroke: #FFFFFF;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
}

/* Gold Metallic styling highlights */
.diamond-card.gold-active.selected {
  border-color: var(--color-gold) !important;
  background: rgba(212, 175, 55, 0.08) !important;
  box-shadow: var(--shadow-glow-gold);
}

/* Compact version for Screens 3 and 5 */
.compact-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.compact-card {
  min-height: 90px;
  padding: 12px;
}

.compact-card .card-emoji {
  font-size: 20px;
  margin-bottom: 6px;
}

.compact-card .card-label {
  font-size: 10.5px;
}


/* --- SCREEN 4: THE DIAL CAROUSEL (BIGGEST GAP) --- */
.curved-carousel-container {
  position: relative;
  width: 100%;
  height: 350px;
  margin: auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  overflow: visible;
}

.curved-carousel {
  position: relative;
  width: 240px;
  height: 250px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: grab;
}

.curved-carousel:active {
  cursor: grabbing;
}

.carousel-card {
  position: absolute;
  width: 220px;
  height: 230px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 24px;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.5s ease, 
              border-color 0.4s, 
              box-shadow 0.4s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
}

/* Curved positions transforms */
.carousel-card.active {
  opacity: 1;
  pointer-events: auto;
  border-color: rgba(255, 255, 255, 0.12);
  transform: translate3d(0, 0, 70px) rotateY(0deg) scale(1.05);
  z-index: 10;
}

.carousel-card.left {
  opacity: 0.4;
  pointer-events: auto;
  transform: translate3d(-120px, 0, -40px) rotateY(28deg) scale(0.9);
  z-index: 5;
}

.carousel-card.right {
  opacity: 0.4;
  pointer-events: auto;
  transform: translate3d(120px, 0, -40px) rotateY(-28deg) scale(0.9);
  z-index: 5;
}

.carousel-card.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, -180px) scale(0.65);
  z-index: 1;
}

.carousel-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  justify-content: space-between;
}

.carousel-icon {
  font-size: 38px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.carousel-card-title {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  line-height: 1.3;
}

.carousel-card-checkbox {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: inset 1px 1px 3px rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.carousel-card.active:hover {
  transform: translate3d(0, 0, 85px) rotateY(0deg) scale(1.06);
}

.carousel-card.selected {
  background: rgba(0, 159, 223, 0.04) !important;
  border-color: rgba(0, 159, 223, 0.6) !important;
  box-shadow: 0 0 25px rgba(0, 159, 223, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.carousel-card.selected .carousel-card-checkbox {
  background: var(--color-cyan);
  border-color: var(--color-cyan);
  box-shadow: 0 0 10px var(--color-cyan);
}

.carousel-card.selected .carousel-card-checkbox::after {
  content: "✓";
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 900;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.carousel-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background: var(--color-cyan);
  transform: scale(1.3);
  box-shadow: 0 0 6px var(--color-cyan);
}

.carousel-hint {
  font-size: 9.5px;
  color: var(--color-slate);
  margin-top: 8px;
  text-align: center;
  max-width: 280px;
  line-height: 1.3;
}


/* --- SCREEN 6: LIQUID CHARGING PROGRESS LOADER --- */
.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex: 1;
  text-align: center;
}

.loader-circle-container {
  position: relative;
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.liquid-wave-ring {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #02050b;
  border: 3px solid rgba(113, 197, 232, 0.08);
  box-shadow: var(--shadow-sunken), 0 0 25px rgba(0, 159, 223, 0.15);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.liquid-wave-ring::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  border: 1px solid rgba(0, 159, 223, 0.25);
  pointer-events: none;
}

.wave-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, rgba(0, 56, 101, 0.8), rgba(0, 159, 223, 0.6));
  transition: height 0.1s linear;
}

.wave-fill::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  width: 250px;
  height: 250px;
  background: var(--color-bg-dark);
  border-radius: 42%;
  transform: translate(-50%, 0) rotate(0deg);
  animation: waveRotate 8s infinite linear;
}

.wave-fill::after {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  width: 260px;
  height: 260px;
  background: rgba(3, 6, 12, 0.6);
  border-radius: 40%;
  transform: translate(-50%, 0) rotate(0deg);
  animation: waveRotate 12s infinite linear;
}

.percentage-label {
  position: relative;
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  z-index: 10;
  text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}

.loader-title {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(0, 159, 223, 0.25);
}

.loader-desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-slate);
  max-width: 320px;
  margin-bottom: 12px;
}

.loader-small-text {
  font-size: 10px;
  line-height: 1.4;
  color: rgba(166, 187, 200, 0.5);
  max-width: 280px;
}

@keyframes waveRotate {
  0% { transform: translate(-50%, 0) rotate(0deg); }
  100% { transform: translate(-50%, 0) rotate(360deg); }
}


/* --- SCREEN 7: LEAD FORM --- */
.glass-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.form-row-split {
  display: flex;
  gap: 12px;
  width: 100%;
}

.form-row-split .form-group {
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-slate);
  padding-left: 2px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  font-size: 13px;
  color: var(--color-slate);
  pointer-events: none;
}

.glass-form input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--color-card-border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: #FFFFFF;
  outline: none;
  box-shadow: var(--shadow-sunken);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input-wrapper input {
  padding-left: 38px;
}

.glass-form input::placeholder {
  color: rgba(166, 187, 200, 0.3);
}

.glass-form input:focus {
  border-color: var(--color-cyan);
  box-shadow: var(--shadow-glow-cyan);
}

.error-msg {
  font-size: 9.5px;
  font-weight: 600;
  color: #FF4D4D;
  display: none;
  padding-left: 4px;
  margin-top: 2px;
  animation: slideDownErr 0.3s ease-out;
}

.form-group.has-error input {
  border-color: #FF4D4D;
  box-shadow: 0 0 10px rgba(255, 77, 77, 0.2);
}

.form-group.has-error .error-msg {
  display: block;
}


/* --- Tesla/Apple Minimalist Action Buttons --- */
.continue-btn,
.submit-btn,
.next-step-btn {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 16px 24px;
  color: #A6BBC8;
  font-family: var(--font-title);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 15px;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.continue-btn:disabled {
  background: rgba(255, 255, 255, 0.005) !important;
  border: 1px solid rgba(255, 255, 255, 0.03) !important;
  color: rgba(255, 255, 255, 0.08) !important;
  cursor: not-allowed;
  box-shadow: none !important;
  pointer-events: none;
}

.continue-btn:not(:disabled),
.submit-btn,
.next-step-btn {
  color: #FFFFFF;
  border-color: rgba(0, 159, 223, 0.25);
  background: rgba(0, 159, 223, 0.02);
}

.continue-btn:not(:disabled):hover,
.submit-btn:hover,
.next-step-btn:hover {
  transform: translateY(-2px);
  background: rgba(0, 159, 223, 0.06);
  border-color: var(--color-cyan);
  box-shadow: 0 0 25px rgba(0, 159, 223, 0.25), 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-glow-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.continue-btn:not(:disabled):hover .btn-glow-layer,
.submit-btn:hover .btn-glow-layer,
.next-step-btn:hover .btn-glow-layer {
  transform: translateX(100%);
  transition: transform 0.8s ease;
}

.continue-btn:active,
.submit-btn:active,
.next-step-btn:active {
  transform: translateY(0);
  background: rgba(0, 159, 223, 0.1);
  border-color: var(--color-cyan);
  box-shadow: 0 0 15px rgba(0, 159, 223, 0.15), inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.next-step-btn.gold-btn {
  background: rgba(212, 175, 55, 0.02);
  border-color: rgba(212, 175, 55, 0.25);
}

.next-step-btn.gold-btn:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: var(--color-gold);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.25), 0 4px 20px rgba(0, 0, 0, 0.25);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.continue-btn:not(:disabled):hover .btn-icon,
.submit-btn:hover .btn-icon,
.next-step-btn:hover .btn-icon {
  transform: translateX(4px);
}


/* --- SCREEN 8: Personalized Results (Holographic Partner Blueprint) --- */
.results-screen {
  position: relative;
  overflow: visible;
  padding-bottom: 20px;
}

.result-badge-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
}

.result-badge {
  background: rgba(0, 159, 223, 0.05);
  border: 1px solid rgba(0, 159, 223, 0.2);
  border-radius: 100px;
  color: var(--color-cyan);
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 159, 223, 0.1);
}

.result-heading {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 800;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.result-title {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-cyan);
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}

.res-description {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--color-slate);
  text-align: center;
  margin-bottom: 24px;
  padding: 0 10px;
}

/* Background Orbit animations behind blueprint-card */
.blueprint-orbit-container {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 480px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
  opacity: 0.85;
}

.blueprint-orbit-line {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(113, 197, 232, 0.04);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.blueprint-orbit-1 {
  width: 320px;
  height: 320px;
  animation: rotateClockwise 25s linear infinite;
  border-style: dashed;
}

.blueprint-orbit-2 {
  width: 420px;
  height: 420px;
  animation: rotateCounterClockwise 35s linear infinite;
}

.blueprint-orbit-node {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-cyan), 0 0 20px var(--color-cyan);
}

.blueprint-node-1 {
  top: 15%;
  left: 30%;
  animation: floatNode 8s ease-in-out infinite alternate;
}

.blueprint-node-2 {
  bottom: 25%;
  right: 25%;
  animation: floatNode 10s ease-in-out infinite alternate-reverse;
}

@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotateCounterClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes floatNode {
  0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  100% { transform: translate(15px, -15px) scale(1.3); opacity: 1; }
}

/* Holographic Pass Card styling */
.blueprint-card {
  position: relative;
  background: rgba(6, 13, 28, 0.45);
  border: 1px solid rgba(0, 159, 223, 0.25);
  border-radius: 28px;
  padding: 24px 20px;
  margin-bottom: 24px;
  z-index: 5;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 159, 223, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Card Header & Concentric Rings Logo */
.blueprint-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.blueprint-logo-rings {
  position: relative;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blueprint-logo-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}

.blueprint-logo-rings .ring-outer {
  width: 100%;
  height: 100%;
  border-top-color: var(--color-cyan);
  border-bottom-color: var(--color-cyan);
  animation: rotateClockwise 4s linear infinite;
}

.blueprint-logo-rings .ring-middle {
  width: 70%;
  height: 70%;
  border-left-color: var(--color-ice);
  border-right-color: var(--color-ice);
  animation: rotateCounterClockwise 3s linear infinite;
}

.blueprint-logo-rings .ring-inner {
  width: 40%;
  height: 40%;
  border-top-color: #FFFFFF;
  border-bottom-color: #FFFFFF;
  animation: rotateClockwise 2s linear infinite;
}

.blueprint-header-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.blueprint-header-pre {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  color: var(--color-slate);
  letter-spacing: 0.1em;
}

.blueprint-header-main {
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.blueprint-ticket-badge {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: rgba(0, 159, 223, 0.08);
  border: 1px solid rgba(0, 159, 223, 0.25);
  padding: 4px 10px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 159, 223, 0.1);
}

.ticket-label {
  font-family: var(--font-body);
  font-size: 7.5px;
  font-weight: 800;
  color: var(--color-slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ticket-id {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 900;
  color: var(--color-cyan);
  letter-spacing: 0.02em;
  text-shadow: 0 0 6px rgba(0, 159, 223, 0.3);
}

/* Card Metadata Grid */
.blueprint-metadata {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.01);
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.meta-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12.5px;
}

.meta-label {
  width: 65px;
  font-weight: 700;
  color: var(--color-cyan);
  text-align: left;
  letter-spacing: 0.02em;
}

.meta-value {
  flex: 1;
  color: #FFFFFF;
  font-weight: 600;
  text-align: left;
}

/* Three Focus Cards Grid */
.focus-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.focus-mini-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.focus-mini-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(0, 159, 223, 0.25);
  box-shadow: 0 4px 15px rgba(0, 159, 223, 0.08);
}

.focus-icon-ring {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid rgba(0, 159, 223, 0.3);
  margin-bottom: 8px;
  background: rgba(0, 159, 223, 0.05);
}

.focus-ring-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--color-cyan);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--color-cyan);
}

.focus-card-title {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.focus-card-desc {
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 500;
  color: var(--color-slate);
  line-height: 1.25;
}

/* Card Share Section Divider */
.blueprint-share-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.share-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
}

.share-section-title {
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  color: var(--color-ice);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Share Chips Grid */
.share-chips-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.share-chip {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 10px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.share-chip:hover {
  background: rgba(0, 159, 223, 0.03);
  border-color: rgba(0, 159, 223, 0.2);
  transform: scale(1.02);
}

.chip-icon-box {
  color: var(--color-cyan);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-icon-box svg {
  width: 18px;
  height: 18px;
  stroke: var(--color-cyan);
}

.chip-text {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  color: var(--color-slate);
  line-height: 1.2;
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
}

/* Premium CTA Action Button styling */
.premium-cta-btn {
  background: linear-gradient(90deg, rgba(0, 159, 223, 0.8) 0%, rgba(0, 120, 180, 0.9) 100%);
  border: 1px solid var(--color-cyan);
  box-shadow: 0 8px 30px rgba(0, 159, 223, 0.45), 0 0 40px rgba(0, 159, 223, 0.2);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 20px 24px;
  gap: 14px;
  position: relative;
}

.premium-cta-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 35px rgba(0, 159, 223, 0.6), 0 0 50px rgba(0, 159, 223, 0.3);
  border-color: var(--color-ice);
  background: linear-gradient(90deg, rgba(0, 159, 223, 0.9) 0%, rgba(0, 130, 200, 1) 100%);
}

.premium-cta-btn:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 4px 15px rgba(0, 159, 223, 0.4);
}

.btn-rings-icon {
  position: relative;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring-mini {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid transparent;
}

.ring-mini-1 {
  width: 100%;
  height: 100%;
  border-top-color: #FFFFFF;
  border-bottom-color: #FFFFFF;
  animation: rotateClockwise 3s linear infinite;
}

.ring-mini-2 {
  width: 60%;
  height: 60%;
  border-left-color: #FFFFFF;
  border-right-color: #FFFFFF;
  animation: rotateCounterClockwise 2s linear infinite;
}


/* --- SCREEN 9: EVENTS ACCESS --- */
.event-details-card {
  position: relative;
  background: var(--color-card-bg);
  border: 1px solid var(--color-card-border);
  border-radius: 24px;
  padding: 24px 20px;
  margin: auto 0;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-raised);
}

.event-logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 56, 101, 0.3);
  border: 1.5px solid rgba(0, 159, 223, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.event-logo-mark img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.event-desc-large {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-dim);
}


/* --- SCREEN 10: WELCOME & FINAL --- */
.welcome-screen {
  text-align: center;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.welcome-branding {
  margin-top: 10px;
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.welcome-glow-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 159, 223, 0.25) 0%, rgba(3, 6, 12, 0.9) 80%);
  border: 1.5px solid var(--color-cyan);
  box-shadow: var(--shadow-glow-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatCircle 4s infinite ease-in-out;
}

.welcome-glow-circle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.welcome-title {
  font-family: var(--font-title);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(0, 159, 223, 0.25);
}

.welcome-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-dim);
  max-width: 320px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.opportunity-line {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-cyan);
  margin-bottom: 20px;
}

.final-brand-block {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 14px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}

.final-brand-title {
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #FFFFFF;
}

.final-brand-sub {
  font-size: 9px;
  color: var(--color-slate);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.final-business-link {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-ice);
  text-decoration: none;
  margin-top: 3px;
}

.restart-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 18px;
  color: var(--color-slate);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.restart-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.02);
}

.result-intro-text {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-slate);
  text-align: center;
  margin-bottom: 24px;
  padding: 0 16px;
  font-weight: 400;
}

.restart-link-btn {
  background: none;
  border: none;
  color: var(--color-ice);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: underline;
  margin: 22px auto 0 auto;
  display: block;
  opacity: 0.65;
  transition: all 0.3s ease;
  outline: none;
}

.restart-link-btn:hover {
  opacity: 1;
  color: var(--color-cyan);
  text-shadow: 0 0 8px rgba(0, 159, 223, 0.3);
}

@keyframes floatCircle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
