/* ============================================
   ALIEN-OPERATIONS.AI — The Shift Section
   ============================================ */

.shift-section {
  border-top: 1px solid rgba(57, 255, 20, 0.08);
}

.shift-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shift-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--scan-teal);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.shift-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.shift-headline em {
  font-style: normal;
  color: var(--alien-green);
  text-shadow: 0 0 10px var(--glow-green);
}

.shift-subline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 550px;
  margin: 0 auto;
}

/* Stat counter */
.shift-stat {
  text-align: center;
  margin-bottom: 3rem;
}

.shift-stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--alien-green);
  text-shadow: 0 0 20px var(--glow-green-mid);
  line-height: 1;
}

.shift-stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-top: 0.5rem;
  text-transform: uppercase;
}

/* ChatGPT mockup demo */
.shift-demo {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .shift-demo {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.shift-demo-card {
  background: var(--surface);
  border: 1px solid rgba(57, 255, 20, 0.08);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.shift-demo-card.before {
  border-color: rgba(255, 107, 0, 0.15);
}

.shift-demo-card.after {
  border-color: rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.05);
}

.shift-demo-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.shift-demo-bar.before-bar {
  color: var(--hud-amber);
}

.shift-demo-bar.after-bar {
  color: var(--alien-green);
}

.shift-demo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.shift-demo-dot.amber { background: var(--hud-amber); }
.shift-demo-dot.green {
  background: var(--alien-green);
  box-shadow: 0 0 6px var(--alien-green);
}

.shift-demo-body {
  padding: 1rem;
}

/* Chat messages */
.chat-message {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.chat-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 700;
}

.chat-avatar.user {
  background: var(--surface-raised);
  color: var(--text-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-avatar.ai {
  background: rgba(57, 255, 20, 0.1);
  color: var(--alien-green);
  border: 1px solid rgba(57, 255, 20, 0.2);
}

.chat-avatar.ai-dead {
  background: rgba(255, 107, 0, 0.1);
  color: var(--hud-amber);
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.chat-bubble {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-primary);
  padding: 0.6rem 0.8rem;
  background: var(--surface-raised);
  border-radius: 8px;
  flex: 1;
}

.chat-bubble .highlight {
  color: var(--alien-green);
  font-weight: 600;
}

.chat-bubble .dim {
  color: var(--text-dim);
}

.chat-bubble .strike {
  text-decoration: line-through;
  color: var(--text-dim);
  opacity: 0.5;
}

/* Result list in AI response */
.ai-results {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
}

.ai-results li {
  font-size: 0.75rem;
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ai-results li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.before .ai-results li::before {
  background: var(--text-dim);
}

.after .ai-results li::before {
  background: var(--alien-green);
  box-shadow: 0 0 4px var(--alien-green);
}

.after .ai-results li:first-child {
  color: var(--alien-green);
  font-weight: 600;
}
