/* ==========================================================================
   ONLIDESK — HERO SECTION & CANVAS STYLES
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 90px;
  overflow: hidden;
  background-color: var(--bg-darkest);
}

/* Interactive Canvas Container */
#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}

/* Ambient Radial Overlays for Depth */
.hero-glow-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  background: 
    radial-gradient(circle at 50% 30%, rgba(0, 102, 255, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 60%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0, 210, 255, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6, 7, 11, 0.2) 0%, rgba(6, 7, 11, 0.8) 85%, var(--bg-darkest) 100%);
}

.hero-container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 980px;
}

/* Hero Badge */
.hero-badge-wrap {
  margin-bottom: 24px;
  display: inline-block;
}

/* Hero Title */
.hero-title {
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.035em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-title-highlight {
  display: inline-block;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

/* Hero Subtitle & Description */
.hero-subtitle {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  font-weight: 600;
  color: var(--text-pure);
  margin-bottom: 18px;
  letter-spacing: -0.015em;
}

.hero-description {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 38px auto;
  line-height: 1.65;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Trust Pillars / Micro Metrics */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 14px 28px;
  background: rgba(16, 19, 34, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  backdrop-filter: blur(12px);
  max-width: fit-content;
  margin: 0 auto;
  box-shadow: var(--shadow-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 102, 255, 0.15);
  color: var(--brand-cyan);
  font-size: 11px;
}

.trust-divider {
  width: 1px;
  height: 18px;
  background: var(--border-subtle);
}

/* Hero Interactive Canvas Status Indicator */
.hero-interactive-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
  opacity: 0.8;
  animation: float-hint 3s ease-in-out infinite;
}

.hint-mouse-icon {
  width: 16px;
  height: 24px;
  border: 1.5px solid var(--text-muted);
  border-radius: 10px;
  position: relative;
}

.hint-mouse-icon::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 4px;
  background: var(--brand-cyan);
  border-radius: 2px;
  animation: scroll-wheel 1.5s infinite ease-in-out;
}

@keyframes scroll-wheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 8px); opacity: 0; }
}

@keyframes float-hint {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -6px); }
}
