/* ==========================================================================
   GALOTTECH — HERO SECTION & INTERACTIVE HUD STYLES
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

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

.hero-backdrop-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

/* Left Column: Headline & Value Prop */
.hero-content {
  max-width: 660px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.25);
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.hero-badge .pulse-light {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 24px;
}

.hero-title .highlight-text {
  color: var(--cyan);
  display: inline;
}

.hero-subtitle {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.hero-guarantee span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-guarantee svg {
  color: var(--cyan);
}

/* Right Column: Live Data Science Terminal & HUD */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hud-panel {
  width: 100%;
  max-width: 480px;
  background: rgba(10, 15, 24, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.85), 0 0 35px rgba(0, 229, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
}

.hud-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(6, 10, 16, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hud-dots {
  display: flex;
  gap: 6px;
}

.hud-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hud-title-bar {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hud-live-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  background: rgba(0, 229, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.hud-body {
  padding: 24px;
}

/* Metric Ticker Inside HUD */
.hud-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.hud-card {
  background: rgba(14, 21, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.hud-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--cyan);
}

.hud-card-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hud-card-value {
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
}

.hud-card-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
}

/* Live Stream Code / Attribution Logs inside HUD */
.hud-terminal {
  background: rgba(5, 8, 14, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #94a3b8;
  height: 140px;
  overflow: hidden;
  position: relative;
}

.hud-terminal-log {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  opacity: 0.9;
  line-height: 1.4;
  animation: fadeInLog 0.3s ease-out;
}

@keyframes fadeInLog {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 0.9; transform: translateY(0); }
}

.hud-terminal-log .timestamp {
  color: var(--text-dim);
  flex-shrink: 0;
}

.hud-terminal-log .event-tag {
  color: var(--cyan);
}

.hud-terminal-log .source-tag {
  color: #94a3b8;
}

/* Bottom Stats Strip (Social Proof Ticker) */
.hero-stats-strip {
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  font-family: var(--font-sans);
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero-stat-num span.accent {
  color: var(--cyan);
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
