/* stocklyzer.ai Analyzer Marketing Site Styles */
:root {
  --bg-gradient: linear-gradient(135deg, #1a237e 0%, #512da8 100%);
  --primary: #7c4dff;
  --secondary: #00e5ff;
  --text: #f5f5f5;
  --card-bg: #232347;
  --accent: #00e5ff;
  --font-main: 'Inter', 'Sora', 'Space Grotesk', sans-serif;
}

body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg-gradient);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  position: relative;
  text-align: center;
  background: rgba(20, 20, 40, 0.7);
  overflow: hidden;
}
.hero-bg-animation {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 60% 40%, #7c4dff33 0%, transparent 70%), radial-gradient(circle at 30% 70%, #00e5ff22 0%, transparent 80%), linear-gradient(120deg, #1a237e 0%, #512da8 100%);
  z-index: 0;
  animation: fadeIn 2s;
  transition: background-position 0.5s;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1rem 2rem 1rem;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.subheadline {
  font-size: 1.2rem;
  color: #bdbdbd;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
button.primary, .cta-buttons .primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.9em 2em;
  border-radius: 2em;
  font-size: 1.1em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 16px #7c4dff44, 0 0 0 0 #00e5ff00;
  transition: background 0.2s, box-shadow 0.2s, filter 0.2s;
}
button.primary:hover, .cta-buttons .primary:hover {
  background: var(--secondary);
  box-shadow: 0 4px 24px #00e5ff99, 0 0 16px 4px #00e5ff44;
  filter: brightness(1.1) saturate(1.2);
}
.cta-buttons .secondary {
  background: none;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.9em 2em;
  border-radius: 2em;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 0 0 #00e5ff00;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-buttons .secondary:hover {
  background: var(--accent);
  color: #232347;
  box-shadow: 0 0 16px 2px #00e5ff44;
}

.steps {
  padding: 4rem 1rem 2rem 1rem;
  background: rgba(30, 30, 60, 0.7);
  text-align: center;
}
.steps h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.steps-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  background: var(--card-bg);
  border-radius: 1.5em;
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  box-shadow: 0 2px 16px #7c4dff22;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, filter 0.2s;
  cursor: pointer;
  margin-bottom: 1rem;
}
.step:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 8px 32px #00e5ff77, 0 0 24px 4px #7c4dff44;
  background: linear-gradient(120deg, #232347 60%, #7c4dff22 100%);
  filter: brightness(1.08) saturate(1.15);
}
.step .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.features {
  padding: 4rem 1rem 2rem 1rem;
  background: rgba(25, 25, 50, 0.7);
  text-align: center;
}
.features h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.features-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: var(--card-bg);
  border-radius: 1.5em;
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  box-shadow: 0 2px 16px #00e5ff22;
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, filter 0.2s;
  cursor: pointer;
  margin-bottom: 1rem;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 8px 32px #00e5ff77, 0 0 24px 4px #7c4dff44;
  background: linear-gradient(120deg, #232347 60%, #7c4dff22 100%);
  filter: brightness(1.08) saturate(1.15);
}
.feature-card .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.output-panel {
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
}
.ai-output {
  background: #181828;
  color: #fff;
  border-radius: 1em;
  padding: 1.5rem 2rem;
  font-family: 'Space Grotesk', 'Fira Mono', monospace;
  font-size: 1.1rem;
  box-shadow: 0 2px 16px #7c4dff22;
  display: inline-block;
  text-align: left;
  margin-top: 1rem;
  transition: box-shadow 0.3s, filter 0.2s;
}
.ai-output:hover {
  box-shadow: 0 0 32px 0 #00e5ff77, 0 0 8px 2px #7c4dff44;
  filter: brightness(1.08);
}

.chart-section {
  padding: 3rem 1rem 2rem 1rem;
  text-align: center;
  background: rgba(20, 20, 40, 0.7);
  border-radius: 1.5em;
  box-shadow: 0 4px 32px #00e5ff33, 0 0 32px #7c4dff22;
  margin-bottom: 2rem;
}
.chart-section h2 {
  color: #00e5ff;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}
.chart-canvas-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 1.2rem auto;
  background: #181828;
  border-radius: 1.2em;
  box-shadow: 0 2px 24px #00e5ff22;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  overflow-x: auto;
}
#unifiedStockChart {
  width: 100% !important;
  min-width: 400px;
  max-width: 100%;
  height: 320px !important;
  background: transparent;
  display: block;
}
.chart-toggle-ui {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.08rem;
  font-family: 'Inter', 'Sora', sans-serif;
}
.chart-toggle-ui label {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.chart-toggle-ui input[type="checkbox"] {
  accent-color: #00e5ff;
  margin-right: 0.3em;
}
.chart-desc {
  color: #bdbdbd;
  font-size: 1.05rem;
  margin-top: 0.7rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 900px) {
  .chart-canvas-wrap {
    max-width: 98vw;
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
  #unifiedStockChart {
    height: 220px !important;
  }
}
@media (max-width: 600px) {
  .chart-section {
    padding: 2rem 0.2rem 1rem 0.2rem;
  }
  .chart-canvas-wrap {
    min-width: 0;
    padding: 0.5rem 0.1rem 0.5rem 0.1rem;
  }
  #unifiedStockChart {
    min-width: 320px;
    height: 160px !important;
  }
  .chart-toggle-ui {
    gap: 1rem;
    font-size: 0.98rem;
  }
}

.waitlist {
  padding: 4rem 1rem 2rem 1rem;
  background: rgba(30, 30, 60, 0.7);
  text-align: center;
}
.waitlist h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
#waitlistForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
#waitlistForm input, #waitlistForm textarea {
  padding: 1em;
  border-radius: 1em;
  border: none;
  font-size: 1em;
  background: #232347;
  color: #fff;
  resize: none;
}
#waitlistForm button {
  margin-top: 0.5em;
}
#formMessage {
  margin-top: 1em;
  font-size: 1.1em;
  color: var(--accent);
}

footer {
  background: #181828;
  color: #bdbdbd;
  padding: 2rem 1rem 1rem 1rem;
  text-align: center;
}
.footer-content {
  max-width: 900px;
  margin: 0 auto;
}
.logo {
  font-weight: 700;
  font-size: 1.2em;
  color: var(--primary);
}
footer nav a {
  color: var(--accent);
  text-decoration: none;
  margin: 0 0.5em;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
footer nav a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
}
footer nav a:hover {
  text-decoration: underline;
}
footer nav a:hover::after {
  transform: scaleX(1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

section, .feature-card, .step {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
section.visible, .feature-card.visible, .step.visible {
  opacity: 1;
  transform: none;
}

/* Flow Diagram Section */
.flow-diagram-section {
  padding: 3rem 1rem 1rem 1rem;
  background: rgba(20, 20, 40, 0.6);
  text-align: center;
}
.flow-title {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
.flow-diagram {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
}
.flow-diagram svg {
  width: 100%;
  max-width: 800px;
  height: 120px;
  display: block;
}

/* Animate sources pulsing */
.flow-source rect {
  filter: drop-shadow(0 0 8px #00e5ff44);
  animation: pulseSource 2.5s infinite;
}
.flow-source:nth-child(2) rect {
  animation-delay: 0.5s;
}
.flow-source:nth-child(3) rect {
  animation-delay: 1s;
}
@keyframes pulseSource {
  0%, 100% { filter: drop-shadow(0 0 8px #00e5ff44); }
  50% { filter: drop-shadow(0 0 24px #00e5ffcc); }
}

/* Animate GenAI glowing */
.flow-genai rect {
  filter: drop-shadow(0 0 16px #00e5ff99);
  animation: genaiGlow 2s infinite;
}
@keyframes genaiGlow {
  0%, 100% { filter: drop-shadow(0 0 16px #00e5ff99); }
  50% { filter: drop-shadow(0 0 32px #7c4dffcc); }
}

/* Animate arrows drawing */
.flow-arrow path {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: arrowDraw 1.2s forwards;
}
.flow-arrow path:nth-child(2) {
  animation-delay: 0.3s;
}
.flow-arrow path:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes arrowDraw {
  to { stroke-dashoffset: 0; }
}

/* Animate analysis and recommend highlight */
.flow-analysis rect, .flow-recommend rect {
  filter: drop-shadow(0 0 8px #7c4dff44);
  animation: pulseAnalysis 2.5s infinite;
}
.flow-recommend rect {
  animation-delay: 1.2s;
}
@keyframes pulseAnalysis {
  0%, 100% { filter: drop-shadow(0 0 8px #7c4dff44); }
  50% { filter: drop-shadow(0 0 24px #7c4dffcc); }
}

/* Responsive for flow diagram */
@media (max-width: 600px) {
  .flow-diagram svg {
    min-width: 600px;
    height: 160px;
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .steps-grid, .features-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 0.98em;
    padding: 0;
  }
  .hero {
    min-height: 60vh;
    padding: 1.2rem 0.2rem;
    flex-direction: column;
  }
  .hero-flex {
    flex-direction: column;
    gap: 1.2rem;
    padding: 0;
  }
  .hero-img {
    width: 90vw;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-text {
    max-width: 100vw;
    min-width: unset;
    text-align: center;
    padding: 0 0.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 0.7rem;
    width: 100%;
  }
  .section-divider svg {
    width: 100vw !important;
    height: 60px !important;
  }
  .how-steps-section {
    max-width: 98vw;
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
  }
  .stepper-indicator {
    gap: 0.7rem;
    margin-bottom: 1.2rem;
  }
  .how-step {
    padding: 1.2rem 0.5rem 0.7rem 0.5rem;
    margin-bottom: 0.7rem;
  }
  .features-section {
    max-width: 98vw;
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
  }
  .features-tabs {
    gap: 0.7rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
  }
  .features-content {
    min-height: 220px;
  }
  .feature-block {
    padding: 0.7em 0.2em 0.7em 0.2em;
  }
  .always-on-title {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.7rem 0;
  }
  .always-on-split {
    flex-direction: column;
    gap: 1.2rem;
  }
  .always-on-human, .always-on-ai {
    width: 100%;
    margin: 0 auto;
  }
  .always-on-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .timeline-hour {
    font-size: 0.95em;
    padding: 0.2em 0.5em;
  }
  .output-panel {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
  }
  .ai-chat-demo, .ai-chat-input-demo {
    max-width: 98vw;
    padding: 1rem 0.2rem;
  }
  .chart-section {
    padding: 1.2rem 0.2rem 1.2rem 0.2rem;
    border-radius: 1em;
  }
  .chart-canvas-wrap {
    max-width: 98vw;
    padding: 1rem 0.2rem 1rem 0.2rem;
  }
  #unifiedStockChart {
    min-width: 220px;
    height: 180px !important;
  }
  .chart-toggle-ui {
    gap: 0.7rem;
    font-size: 0.98em;
    flex-wrap: wrap;
  }
  .join-waitlist-cta {
    max-width: 98vw;
    padding: 1.2rem 0.2rem 1.2rem 0.2rem !important;
    border-radius: 1em !important;
  }
  #azureWaitlistForm {
    max-width: 98vw;
    gap: 0.7rem;
  }
  footer {
    padding: 1.2rem 0.2rem 0.7rem 0.2rem;
  }
  .footer-content {
    max-width: 98vw;
  }
  .contact-us {
    font-size: 0.98em;
    padding: 0.5em 0;
  }
}

/* Sticky CTA */
#joinWaitlistBtn.sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  box-shadow: 0 4px 24px #00e5ff99;
  animation: fadeIn 0.7s;
}

/* Enhanced hover and focus effects */
button.primary, .cta-buttons .primary {
  box-shadow: 0 2px 16px #7c4dff44, 0 0 0 0 #00e5ff00;
  transition: background 0.2s, box-shadow 0.2s, filter 0.2s;
}
button.primary:hover, .cta-buttons .primary:hover {
  background: var(--secondary);
  box-shadow: 0 4px 24px #00e5ff99, 0 0 16px 4px #00e5ff44;
  filter: brightness(1.1) saturate(1.2);
}
.cta-buttons .secondary {
  box-shadow: 0 0 0 0 #00e5ff00;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-buttons .secondary:hover {
  background: var(--accent);
  color: #232347;
  box-shadow: 0 0 16px 2px #00e5ff44;
}

.step, .feature-card {
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s, filter 0.2s;
  cursor: pointer;
}
.step:hover, .feature-card:hover {
  transform: translateY(-10px) scale(1.05) rotate(-1deg);
  box-shadow: 0 8px 32px #00e5ff77, 0 0 24px 4px #7c4dff44;
  background: linear-gradient(120deg, #232347 60%, #7c4dff22 100%);
  filter: brightness(1.08) saturate(1.15);
}

/* Parallax and animated gradient background on scroll */
.hero-bg-animation {
  transition: background-position 0.5s;
}

/* Section highlight on scroll */
section.visible {
  box-shadow: 0 0 32px 0 #00e5ff33;
  background: linear-gradient(120deg, #232347 80%, #7c4dff11 100%);
  transition: box-shadow 0.5s, background 0.5s;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-img {
  width: 320px;
  max-width: 90vw;
  height: auto;
  border-radius: 1.5em;
  box-shadow: 0 4px 32px #00e5ff44, 0 0 32px #7c4dff33;
  background: transparent;
  display: block;
}
.hero-text {
  min-width: 260px;
  max-width: 420px;
  text-align: left;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-text {
    text-align: center;
    max-width: 100%;
  }
}

.ai-chat-demo {
  background: linear-gradient(120deg, #181828 80%, #232347 100%);
  border-radius: 1.5em;
  box-shadow: 0 4px 32px #00e5ff33, 0 0 32px #7c4dff22;
  padding: 2rem 1.5rem 1.2rem 1.5rem;
  max-width: 480px;
  margin: 2rem auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: 'Space Grotesk', 'Inter', monospace;
  max-height: 340px;
  overflow-y: auto;
  min-height: 180px;
  transition: box-shadow 0.3s;
}
.ai-chat-input-demo {
  max-width: 480px;
  margin: 0 auto 0 auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #232347;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px #00e5ff22;
  padding: 0.7em 1.2em;
  font-size: 1.08rem;
  font-family: 'Space Grotesk', 'Inter', monospace;
  margin-top: 0.5rem;
  min-height: 2.2em;
}
.input-avatar {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 8px #7c4dff99);
}
.input-typing {
  display: flex;
  align-items: center;
  min-width: 60px;
  color: #fff;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}
.blinking-cursor {
  display: inline-block;
  width: 1ch;
  color: #00e5ff;
  font-weight: bold;
  animation: blink-cursor 1s steps(1) infinite;
  margin-left: 2px;
}
@keyframes blink-cursor {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* Chat Message Styles */
.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  margin-bottom: 0.2rem;
}
.chat-message.user {
  flex-direction: row-reverse;
  justify-content: flex-end;
  text-align: right;
}
.chat-message.ai {
  flex-direction: row;
  justify-content: flex-start;
  text-align: left;
}
.chat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: #00e5ff;
  margin: 0 0.4em;
  letter-spacing: 0.5px;
  min-width: 60px;
  text-align: center;
}
.chat-message.user .chat-label {
  color: #b26bff;
}
.chat-bubble {
  background: #232347;
  color: #fff;
  border-radius: 1.2em 1.2em 1.2em 0.4em;
  padding: 1rem 1.2rem;
  font-size: 1.08rem;
  box-shadow: 0 2px 16px #00e5ff22;
  min-width: 80px;
  max-width: 320px;
  word-break: break-word;
  position: relative;
  animation: chatFadeIn 0.7s;
}
.chat-message.ai .chat-bubble {
  background: #181828;
  color: #00e5ff;
  border-radius: 1.2em 1.2em 0.4em 1.2em;
  box-shadow: 0 2px 24px #00e5ff44;
  border: 1.5px solid #00e5ff44;
}
.chat-message.user .chat-bubble {
  background: #232347;
  color: #fff;
  border: 1.5px solid #b26bff44;
  box-shadow: 0 2px 16px #b26bff44;
}

/* New styles for How it Works section */
.how-steps-section {
  max-width: 540px;
  margin: 3rem auto 3rem auto;
  background: rgba(30, 30, 60, 0.7);
  border-radius: 1.5em;
  box-shadow: 0 4px 32px #7c4dff22;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  position: relative;
}
.stepper-indicator {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}
.step-indicator {
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background: #232347;
  color: #bdbdbd;
  font-weight: 700;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px #00e5ff22;
  transition: background 0.3s, color 0.3s;
}
.step-indicator.active {
  background: #00e5ff;
  color: #181828;
  box-shadow: 0 0 16px #00e5ff99;
}
.how-step {
  background: #181828;
  border-radius: 1.2em;
  box-shadow: 0 2px 16px #7c4dff22;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s, transform 0.7s;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}
.how-step.visible {
  opacity: 1;
  transform: none;
}
.step-label {
  color: #b26bff;
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 0.2em;
  letter-spacing: 0.5px;
}
.step-desc {
  color: #bdbdbd;
  font-size: 1.05em;
  margin-bottom: 1.2em;
}
.step-arrow {
  text-align: center;
  font-size: 2.2em;
  color: #00e5ff;
  margin-bottom: 0.2em;
  animation: arrowPulse 1.2s infinite alternate;
}
@keyframes arrowPulse {
  0% { color: #00e5ff; }
  100% { color: #b26bff; }
}

/* Step 1: Stock Picker Mock */
.stock-picker-mock {
  background: #232347;
  border-radius: 1em;
  box-shadow: 0 2px 12px #00e5ff22;
  padding: 1.2em 1em 1em 1em;
  margin-bottom: 0.7em;
  position: relative;
}
.stock-search-bar {
  display: flex;
  align-items: center;
  background: #181828;
  border-radius: 0.8em;
  padding: 0.7em 1em;
  font-size: 1.1em;
  color: #bdbdbd;
  margin-bottom: 0.5em;
  box-shadow: 0 1px 8px #00e5ff22;
}
.search-icon {
  margin-right: 0.7em;
  font-size: 1.2em;
}
.typed-stock {
  color: #00e5ff;
  font-weight: 600;
  letter-spacing: 0.5px;
  min-width: 2ch;
}
.stock-dropdown-mock {
  display: flex;
  gap: 0.7em;
  margin-bottom: 0.7em;
}
.dropdown-item {
  background: #181828;
  color: #bdbdbd;
  border-radius: 0.7em;
  padding: 0.4em 1em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  border: 1.5px solid #232347;
}
.dropdown-item.selected, .dropdown-item.added {
  background: #00e5ff;
  color: #181828;
  font-weight: 700;
  border: 1.5px solid #00e5ff;
  box-shadow: 0 0 8px #00e5ff77;
}
.stock-list-mock {
  display: flex;
  gap: 0.7em;
  margin-bottom: 0.5em;
  min-height: 2.2em;
}
.stock-list-mock .stock-ticker {
  background: #00e5ff;
  color: #181828;
  border-radius: 0.7em;
  padding: 0.4em 1em;
  font-weight: 700;
  font-size: 1em;
  box-shadow: 0 0 8px #00e5ff77;
  animation: tickerFadeIn 0.7s;
}
@keyframes tickerFadeIn {
  from { opacity: 0; transform: translateY(10px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
.stock-tooltip {
  color: #bdbdbd;
  font-size: 0.98em;
  margin-top: 0.2em;
  opacity: 0.7;
}

/* Step 2: GenAI Analysis Mock */
.genai-analysis-mock {
  background: #232347;
  border-radius: 1em;
  box-shadow: 0 2px 12px #b26bff22;
  padding: 1.2em 1em 1em 1em;
  margin-bottom: 0.7em;
  position: relative;
  min-height: 120px;
}
.signal-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2em;
  position: relative;
  flex-wrap: wrap;
}
.signal-node {
  background: #181828;
  color: #bdbdbd;
  border-radius: 1em;
  padding: 0.5em 1em;
  font-size: 0.98em;
  font-weight: 600;
  box-shadow: 0 0 8px #00e5ff33;
  position: relative;
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.4s;
}
.signal-node.active {
  color: #00e5ff;
  opacity: 1;
  box-shadow: 0 0 16px #00e5ff99;
}
.signal-arrows {
  position: absolute;
  left: 60px;
  top: 18px;
  pointer-events: none;
  z-index: 0;
}
.ai-core-node {
  background: #00e5ff;
  color: #181828;
  border-radius: 50%;
  width: 2.2em;
  height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: 700;
  box-shadow: 0 0 24px #00e5ff99;
  margin-left: 1em;
  margin-right: 0.5em;
  animation: aiPulse 1.5s infinite alternate;
}
@keyframes aiPulse {
  0% { box-shadow: 0 0 24px #00e5ff99; }
  100% { box-shadow: 0 0 40px #b26bffcc; }
}
.analysis-progress-bar {
  width: 100%;
  height: 0.7em;
  background: #181828;
  border-radius: 0.5em;
  margin-bottom: 0.7em;
  overflow: hidden;
  box-shadow: 0 0 8px #00e5ff33;
}
.progress-bar-inner {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00e5ff 0%, #b26bff 100%);
  border-radius: 0.5em;
  box-shadow: 0 0 8px #00e5ff77;
  transition: width 1.2s cubic-bezier(.4,1.4,.6,1);
}
.ai-suggestion-bubble {
  background: #00e5ff;
  color: #181828;
  border-radius: 1.2em;
  padding: 0.4em 1em;
  font-size: 1.1em;
  font-weight: 700;
  box-shadow: 0 0 16px #00e5ff77;
  display: inline-block;
  margin-top: 0.5em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s, transform 0.5s;
}
.ai-suggestion-bubble.visible {
  opacity: 1;
  transform: none;
}

/* Step 3: AI Output Card Mock */
.ai-output-card-mock {
  background: #232347;
  border-radius: 1em;
  box-shadow: 0 2px 12px #00e5ff22;
  padding: 1.2em 1em 1em 1em;
  margin-bottom: 0.7em;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s, filter 0.3s;
  outline: none;
}
.ai-output-card-mock:focus, .ai-output-card-mock:hover {
  box-shadow: 0 0 24px #00e5ff99;
  filter: brightness(1.08);
}
.ai-output-main {
  font-family: 'Space Grotesk', 'Fira Mono', monospace;
  color: #00e5ff;
  font-size: 1.08em;
  margin-bottom: 0.7em;
  letter-spacing: 0.2px;
}
.ai-output-badge {
  display: inline-block;
  background: #b26bff;
  color: #fff;
  border-radius: 0.7em;
  padding: 0.3em 1em;
  font-size: 0.98em;
  font-weight: 700;
  margin-bottom: 0.5em;
  box-shadow: 0 0 8px #b26bff77;
}
.ai-output-explanation {
  color: #bdbdbd;
  font-size: 0.98em;
  margin-top: 0.3em;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.ai-output-card-mock:focus .ai-output-explanation, .ai-output-card-mock:hover .ai-output-explanation {
  opacity: 1;
  color: #00e5ff;
}

.see-ai-action-btn {
  display: block;
  margin: 2.2rem auto 0 auto;
  background: linear-gradient(90deg, #00e5ff 0%, #b26bff 100%);
  color: #181828;
  font-weight: 700;
  font-size: 1.1em;
  border: none;
  border-radius: 2em;
  padding: 0.9em 2.2em;
  box-shadow: 0 2px 16px #00e5ff44;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.see-ai-action-btn:hover {
  background: linear-gradient(90deg, #b26bff 0%, #00e5ff 100%);
  box-shadow: 0 4px 24px #b26bff55;
}

/* What Makes stocklyzer.ai Different? section */
.features-section {
  max-width: 600px;
  margin: 3rem auto 3rem auto;
  background: rgba(25, 25, 50, 0.7);
  border-radius: 1.5em;
  box-shadow: 0 4px 32px #00e5ff22;
  padding: 2.5rem 1.2rem 2rem 1.2rem;
  position: relative;
  text-align: center;
}
.features-section h2 {
  color: #00e5ff;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.features-tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}
.feature-tab {
  background: #232347;
  color: #bdbdbd;
  border: none;
  border-radius: 2em;
  padding: 0.7em 2em;
  font-size: 1.08em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px #00e5ff22;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.feature-tab.active {
  background: linear-gradient(90deg, #00e5ff 0%, #b26bff 100%);
  color: #181828;
  box-shadow: 0 0 16px #00e5ff99;
}
.features-content {
  position: relative;
  min-height: 340px;
}
.feature-block {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: none;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.7s, transform 0.7s;
  z-index: 1;
  padding: 1.2em 0.5em 1em 0.5em;
}
.feature-block.active {
  display: flex;
  opacity: 1;
  transform: none;
  z-index: 2;
}
/* Neon grid background for analysis */
.feature-bg-grid {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(90deg, #00e5ff11 0 1px, transparent 1px 40px), repeating-linear-gradient(0deg, #00e5ff11 0 1px, transparent 1px 40px);
  border-radius: 1em;
  animation: gridFadeIn 1.2s;
}
@keyframes gridFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.feature-icon-brain {
  margin-bottom: 1.2em;
  position: relative;
  z-index: 1;
  animation: slideInLeft 0.7s;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: none; }
}
.brain-data-flow {
  position: absolute;
  left: 50%;
  top: 100%;
  width: 60px;
  height: 30px;
  transform: translateX(-50%);
  pointer-events: none;
  background: linear-gradient(180deg, #00e5ff77 0%, transparent 100%);
  filter: blur(2px);
  opacity: 0.7;
  border-radius: 1em;
  animation: dataFlowAnim 1.2s infinite alternate;
}
@keyframes dataFlowAnim {
  0% { opacity: 0.3; height: 10px; }
  100% { opacity: 0.7; height: 30px; }
}
.feature-headline {
  color: #00e5ff;
  font-size: 1.18em;
  font-weight: 700;
  margin-bottom: 0.5em;
  letter-spacing: 0.5px;
}
.feature-text {
  color: #bdbdbd;
  font-size: 1.05em;
  margin-bottom: 1.2em;
  line-height: 1.5;
}
.feature-sparkline {
  width: 100px;
  height: 24px;
  margin: 0.7em auto 0 auto;
  background: none;
  position: relative;
}
.feature-sparkline::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="24" xmlns="http://www.w3.org/2000/svg"><polyline points="0,20 10,10 20,14 30,6 40,12 50,4 60,10 70,2 80,8 90,4 100,12" fill="none" stroke="%2300e5ff" stroke-width="2"/></svg>') center/cover no-repeat;
  opacity: 0.7;
  animation: sparklineAnim 1.2s infinite alternate;
}
@keyframes sparklineAnim {
  0% { filter: brightness(0.7); }
  100% { filter: brightness(1.2); }
}

/* Reasoning tab */
.feature-icon-reasoning {
  margin-bottom: 1.2em;
  animation: slideInRight 0.7s;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: none; }
}
.feature-output-mock {
  background: #181828;
  border-radius: 0.8em;
  box-shadow: 0 2px 8px #00e5ff22;
  padding: 1em 1.2em;
  margin: 1em auto 0 auto;
  max-width: 320px;
  text-align: left;
  font-family: 'Space Grotesk', 'Fira Mono', monospace;
  color: #fff;
  font-size: 1.05em;
  position: relative;
}
.output-badge.buy {
  color: #00ff99;
  font-weight: 700;
  font-size: 1.08em;
}
.output-explain {
  margin-top: 0.7em;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.98em;
  color: #bdbdbd;
  position: relative;
}
.explain-icon {
  cursor: pointer;
  font-size: 1.2em;
  transition: filter 0.2s;
}
.explain-icon:hover + .explain-tooltip, .explain-icon:focus + .explain-tooltip {
  opacity: 1;
  pointer-events: auto;
}
.explain-tooltip {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  left: 2em;
  top: -0.2em;
  background: #232347;
  color: #00e5ff;
  border-radius: 0.7em;
  padding: 0.3em 1em;
  font-size: 0.98em;
  box-shadow: 0 2px 8px #00e5ff44;
  transition: opacity 0.3s;
  z-index: 2;
}

/* Action tab */
.feature-icon-bot {
  margin-bottom: 1.2em;
  animation: slideInBottom 0.7s;
}
@keyframes slideInBottom {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.feature-action-btns {
  display: flex;
  gap: 1em;
  justify-content: center;
  margin-top: 1.2em;
}
.action-btn {
  background: #232347;
  color: #bdbdbd;
  border: none;
  border-radius: 2em;
  padding: 0.6em 1.5em;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px #b26bff22;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.action-btn.active, .action-btn:hover {
  background: linear-gradient(90deg, #00e5ff 0%, #b26bff 100%);
  color: #181828;
  box-shadow: 0 0 16px #b26bff99;
}

/* Always-On AI Section */
.always-on-ai-section {
  padding: 4rem 1rem 2rem 1rem;
  background: rgba(25, 25, 50, 0.8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.always-on-title {
  font-size: 2.1rem;
  color: var(--secondary);
  margin-bottom: 2rem;
  font-family: 'Sora', 'Inter', sans-serif;
  letter-spacing: -1px;
  text-align: center;
  display: block;
}
.always-on-split {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 3rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.always-on-human, .always-on-ai {
  background: var(--card-bg);
  border-radius: 1.5em;
  box-shadow: 0 2px 16px #00e5ff22;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 260px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.human-visuals {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.human-state {
  font-size: 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  animation: fadeIn 1.2s;
}
.human-state span {
  font-size: 1rem;
  color: #bdbdbd;
  margin-top: 0.2rem;
}
.human-label, .ai-label {
  margin-top: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}
.ai-brain-anim {
  width: 70px;
  height: 70px;
  margin-bottom: 1.2rem;
  animation: fadeIn 1.5s;
}
.ai-tasks {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.ai-task {
  background: #181828;
  color: #fff;
  border-radius: 0.7em;
  padding: 0.4em 1.2em;
  font-size: 1.05rem;
  font-family: 'Space Grotesk', 'Inter', monospace;
  box-shadow: 0 1px 8px #7c4dff22;
  opacity: 0.9;
  animation: fadeInUp 1.2s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.always-on-desc {
  margin: 2rem auto 1.2rem auto;
  max-width: 350px;
  font-size: 1.18rem;
  color: #f5f5f5;
  line-height: 1.6;
}
.always-on-desc .ai-contrast {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
}
.always-on-timeline {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.timeline-hour {
  background: #232347;
  color: #00e5ff;
  border-radius: 1em;
  padding: 0.5em 1.1em;
  font-size: 1.02rem;
  font-family: 'Space Grotesk', 'Inter', monospace;
  box-shadow: 0 1px 8px #00e5ff22;
  opacity: 0.85;
  animation: fadeIn 1.2s;
}
@media (max-width: 900px) {
  .always-on-split {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .always-on-ai-section {
    padding: 2rem 0.5rem 1rem 0.5rem;
  }
  .always-on-title {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.7rem 0;
  }
  .always-on-split {
    gap: 1rem;
  }
  .always-on-human, .always-on-ai {
    width: 100%;
    margin: 0 auto;
  }
  .always-on-timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .timeline-hour {
    font-size: 0.95em;
    padding: 0.2em 0.5em;
  }
}

/* Fade-in on scroll for Always-On section */
.always-on-ai-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.always-on-ai-section.visible {
  opacity: 1;
  transform: none;
}

/* Waitlist loading spinner */
.waitlist-spinner {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  border: 2.5px solid #00e5ff44;
  border-top: 2.5px solid #00e5ff;
  border-radius: 50%;
  animation: waitlist-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-left: 0.7em;
}
@keyframes waitlist-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive fix for .signal-flow and alternative layout for mobile */
.signal-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2em;
  position: relative;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .signal-flow {
    align-items: stretch;
    gap: 0.7em;
    margin-bottom: 0.7em;
    padding: 0.5em 0;
  }
  .signal-node {
    width: 100%;
    margin-bottom: 0.3em;
    text-align: center;
    font-size: 1em;
  }
  .ai-core-node {
    margin: 0.7em auto 0.3em auto;
    display: block;
  }
  .signal-arrows {
    display: none;
  }
}

/* Add alternating card alignment for steps section */
.how-step {
  margin-left: auto;
  margin-right: auto;
  max-width: 420px;
}
@media (min-width: 700px) {
  .how-step.step-1 {
    margin-left: 0;
    margin-right: auto;
  }
  .how-step.step-2 {
    margin-left: auto;
    margin-right: 0;
  }
  .how-step.step-3 {
    margin-left: 0;
    margin-right: auto;
  }
}

/* --- Redesigned Tweet to Trade Insight Modern Styles --- */
.tweet-to-trade-modern {
  background: linear-gradient(120deg, #181828 80%, #232347 100%);
  border-radius: 18px;
  box-shadow: 0 0 32px 0 #00e5ff22;
  margin: 3rem auto 2.5rem auto;
  max-width: 540px;
  padding: 2.5rem 1.5rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ttt-block {
  background: #232347;
  border-radius: 12px;
  box-shadow: 0 0 10px 0 #00e5ff33;
  padding: 22px 20px;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}
.ttt-block.visible {
  opacity: 1;
  transform: none;
}
/* Tweet Card */
.ttt-tweet-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 0 16px #00e5ff22;
}
.ttt-tweet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
}
.ttt-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #181828;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 0 8px #00e5ff88;
}
.ttt-author {
  color: #00e5ff;
  font-weight: 600;
}
.ttt-timestamp {
  color: #b3b8e0;
  font-size: 0.98rem;
  margin-left: auto;
}
.ttt-tweet-text {
  font-size: 1.13rem;
  color: #fff;
  font-weight: 500;
}
/* AI Thinking Panel */
.ttt-ai-thinking {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
}
.ttt-ai-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 600;
}
.ttt-ai-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid #00e5ff44;
  border-top: 3px solid #00e5ff;
  border-radius: 50%;
  animation: tttSpin 1s linear infinite;
  display: inline-block;
}
@keyframes tttSpin {
  to { transform: rotate(360deg); }
}
.ttt-ai-label {
  color: #00e5ff;
}
.ttt-ai-dots::after {
  content: '...';
  animation: tttDots 1.2s infinite steps(4);
}
@keyframes tttDots {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
/* Analysis Panel */
.ttt-analysis-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #181828;
  box-shadow: 0 0 16px #7c4dff22;
}
.ttt-analysis-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
}
.ttt-analysis-label {
  color: #b3b8e0;
  font-weight: 600;
  min-width: 120px;
}
.ttt-badge {
  padding: 0.2em 0.9em;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05em;
  box-shadow: 0 0 8px #00e5ff44;
  background: #232347;
  color: #fff;
}
.ttt-bullish {
  background: #00ff99;
  color: #181828;
  box-shadow: 0 0 12px #00ff99;
}
.ttt-impact {
  background: #ffb347;
  color: #181828;
  box-shadow: 0 0 12px #ffb347;
}
.ttt-tag {
  background: #232347;
  color: #00e5ff;
  border-radius: 6px;
  padding: 0.15em 0.7em;
  font-size: 0.98em;
  font-weight: 600;
  margin-right: 6px;
  box-shadow: 0 0 8px #00e5ff22;
}
.ttt-stock {
  background: #7c4dff;
  color: #fff;
  border-radius: 6px;
  padding: 0.15em 0.7em;
  font-size: 0.98em;
  font-weight: 600;
  margin-right: 6px;
  box-shadow: 0 0 8px #7c4dff44;
}
/* Flow Diagram */
.ttt-flow-diagram {
  background: #181828;
  box-shadow: 0 0 16px #00e5ff22;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ttt-flow-steps {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.08rem;
  font-weight: 700;
}
.ttt-flow-step {
  background: #232347;
  color: #fff;
  border-radius: 8px;
  padding: 0.5em 1.2em;
  box-shadow: 0 0 8px #00e5ff44;
  position: relative;
  transition: background 0.3s, box-shadow 0.3s;
}
.ttt-flow-tweet {
  background: #00ff99;
  color: #181828;
  box-shadow: 0 0 16px #00ff9988;
}
.ttt-flow-company {
  background: #ffb347;
  color: #181828;
  box-shadow: 0 0 16px #ffb34788;
}
.ttt-flow-stock {
  background: #00e5ff;
  color: #181828;
  box-shadow: 0 0 16px #00e5ff88;
}
.ttt-flow-arrow {
  font-size: 1.3em;
  color: #fff;
  text-shadow: 0 0 8px #00e5ff44;
  animation: tttArrowFade 1.2s infinite alternate;
}
@keyframes tttArrowFade {
  0% { color: #00e5ff; }
  100% { color: #7c4dff; }
}
.ttt-flow-caption {
  font-size: 0.98em;
  color: #b3b8e0;
  margin-top: 0.5em;
  font-style: italic;
}
/* Mini Chart */
.ttt-mini-chart {
  background: #181828;
  box-shadow: 0 0 16px #00e5ff22;
  border-radius: 12px;
  padding: 18px 12px 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ttt-mini-chart-inner {
  width: 100%;
  max-width: 220px;
  min-width: 120px;
  height: 60px;
  margin-bottom: 8px;
  background: #232347;
  border-radius: 8px;
  box-shadow: 0 0 8px #00e5ff22;
  display: flex;
  align-items: center;
  justify-content: center;
}
#tttMiniChart {
  width: 100% !important;
  height: 40px !important;
  background: transparent;
  display: block;
}
.ttt-mini-chart-caption {
  color: #b3b8e0;
  font-size: 0.95rem;
}
/* AI Recommendation */
.ttt-ai-recommendation {
  background: linear-gradient(90deg, #00e5ff 60%, #7c4dff 100%);
  color: #181828;
  border-radius: 12px;
  box-shadow: 0 0 24px #00e5ff99;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.13rem;
  font-weight: 700;
  animation: tttSlideIn 1.2s;
}
.ttt-ai-recommend-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 8px #7c4dff99);
}
.ttt-ai-recommend-text {
  font-size: 1.08rem;
  color: #181828;
  font-weight: 600;
  text-shadow: 0 0 8px #00e5ff44;
}
@keyframes tttSlideIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
/* Responsive */
@media (max-width: 700px) {
  .tweet-to-trade-modern {
    max-width: 98vw;
    padding: 1.2rem 0.2rem;
  }
  .ttt-block {
    padding: 16px 8px;
    gap: 12px;
  }
  .ttt-mini-chart-inner {
    max-width: 98vw;
    min-width: 80px;
  }
}
/* --- End Redesigned Tweet to Trade Insight Modern Styles --- */
