


body {
  font-family: 'Roboto', sans-serif;
  background-color: #0d1117;
}

.interactive-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle 600px at var(--mouse-x) var(--mouse-y),
    rgba(31, 111, 235, 0.15),
    transparent 80%
  );
  z-index: -9;
  pointer-events: none;
  transition: background-image 0.1s;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.text-glow {
  text-shadow: 0 0 8px rgba(88, 166, 255, 0.5);
}

.card-glow {
  box-shadow: 0 0 15px rgba(88, 166, 255, 0.2), 0 0 5px rgba(88, 166, 255, 0.3), inset 0 0 10px rgba(88, 166, 255, 0.1);
  transition: all 0.3s ease;
  backface-visibility: hidden;
}

button:hover .card-glow {
  transform: scale(1.05);
  border-color: #58a6ff !important;
  box-shadow: 0 0 25px rgba(88, 166, 255, 0.3), 0 0 10px rgba(88, 166, 255, 0.4), inset 0 0 15px rgba(88, 166, 255, 0.2);
}

.button-glow {
  box-shadow: 0 0 15px rgba(31, 111, 235, 0.5), 0 0 5px rgba(88, 166, 255, 0.7);
}

.animate-fade-in-up {
  animation: fade-in-up 0.5s ease-out forwards;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.solution-card {
  background: rgba(88, 166, 255, 0.05);
  border: 1px solid #30363d;
  transition: all 0.3s ease-in-out;
}

.solution-card:hover {
  border-color: rgba(88, 166, 255, 0.5);
  background: rgba(88, 166, 255, 0.1);
}

.solution-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  padding-left: 1.25rem;
}

.solution-card-details.expanded {
  max-height: 500px;
}

.solution-chevron {
  transition: transform 0.3s ease-in-out;
}

.solution-chevron.expanded {
  transform: rotate(90deg);
}

.team-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .team-spotlight-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.team-list-item {
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.team-list-item.active {
  background-color: rgba(88, 166, 255, 0.1);
  border-color: rgba(88, 166, 255, 0.3);
}

.skill-tag {
  background-color: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.3);
  color: #58a6ff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.social-icon {
  color: #8b949e;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
  color: #c9d1d9;
  transform: scale(1.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
  gap: 1.5rem;
}

.stat-card.featured {
  grid-column: span 3;
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card.featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card.featured { grid-column: span 1; }
}

.stat-card {
  position: relative;
  border-radius: 0.75rem;
  padding: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: rgba(22, 27, 34, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid #30363d;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0.75rem;
  background: radial-gradient(circle at 50% 50%, rgba(88, 166, 255, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(88, 166, 255, 0.6);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(88, 166, 255, 0.2);
}

.stat-card:hover::before { opacity: 1; }

.stat-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
}

.stat-card.featured > .stat-card-content {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.stat-card:not(.featured) > .stat-card-content {
  flex-direction: column;
  justify-content: space-between;
}

.stat-card-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-card-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.125rem;
  color: white;
  font-weight: 500;
}

.stat-card-description {
  font-size: 0.875rem;
  color: #8b949e;
  line-height: 1.6;
  max-width: 45ch;
}

.stat-card-value {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  color: white;
  line-height: 1;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.8), 0 0 25px rgba(88, 166, 255, 0.6);
  z-index: 2;
}

.stat-card-sparkline {
  position: relative;
  z-index: 1;
  width: calc(100% + 3rem);
  height: 80px;
  margin: 1rem -1.5rem -1.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.stat-card:hover .stat-card-sparkline { opacity: 1; }
.recharts-tooltip-wrapper { outline: none !important; }

.stat-card-label .w-5 {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: #58a6ff;
  filter: drop-shadow(0 0 5px #58a6ff);
}

.roadmap-dashboard-switcher {
  display: inline-flex;
  background-color: rgba(88, 166, 255, 0.1);
  border-radius: 9999px;
  padding: 0.25rem;
  border: 1px solid #30363d;
}

.roadmap-dashboard-switcher button {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  color: #8b949e;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.roadmap-dashboard-switcher button:hover {
  background-color: rgba(88, 166, 255, 0.15);
  color: white;
}

.project-card {
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 0.5rem;
  transition: all 0.3s ease-in-out;
}

.project-card:hover {
  border-color: rgba(88, 166, 255, 0.4);
  background-color: #161b22;
}

.project-card-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1rem;
  text-align: left;
}

.project-card-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, padding-top 0.5s ease-in-out, padding-bottom 0.5s ease-in-out;
}

.project-card-details.expanded {
  max-height: 500px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.vision-pillar-card, .market-segment-card {
  background: #161b22;
  backdrop-filter: blur(5px);
  border: 1px solid #30363d;
  transition: all 0.3s ease-in-out;
}

.vision-pillar-card:hover, .market-segment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(88, 166, 255, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(88, 166, 255, 0.15);
}

.vision-pillar-card .text-glow {
  text-shadow: 0 0 8px #58a6ff;
}

.pitch-deck-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #30363d;
}

.pitch-deck-tab {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: transparent;
  border: 1px solid #30363d;
  color: #8b949e;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pitch-deck-tab .w-5 {
    color: #8b949e;
    transition: color 0.3s ease;
}

.pitch-deck-tab:hover {
  background-color: rgba(88, 166, 255, 0.1);
  border-color: rgba(88, 166, 255, 0.6);
  color: white;
}

.pitch-deck-tab:hover .w-5 { color: white; }

.pitch-deck-tab.active {
  background-color: rgba(88, 166, 255, 0.2);
  border-color: #58a6ff;
  color: white;
  text-shadow: 0 0 5px rgba(88, 166, 255, 0.5);
}

.pitch-deck-tab.active .w-5 {
  color: #58a6ff;
  filter: drop-shadow(0 0 4px #58a6ff);
}

.pitch-deck-content-area {
  padding-top: 1rem;
}

/* --- Sabrina AI Assistant Modal Styles --- */

.sabrina-modal-container {
  background-color: #0d1117;
  border: 1px solid rgba(88, 166, 255, 0.2);
  border-radius: 1rem;
  box-shadow: 0 0 30px rgba(31, 111, 235, 0.1), 0 0 60px rgba(31, 111, 235, 0.1);
  position: relative;
  overflow: hidden;
}

.sabrina-modal-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(88, 166, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(88, 166, 255, 0.05) 1px, transparent 1px);
  background-size: 2rem 2rem;
  mask-image: radial-gradient(ellipse 100% 80% at 50% 0%, black 40%, transparent 100%);
  animation: bg-pan 15s linear infinite;
  z-index: 0;
}

@keyframes bg-pan {
  from { background-position: 0 0; }
  to { background-position: 2rem 2rem; }
}

.sabrina-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, transparent, rgba(88, 166, 255, 0.2), transparent);
  flex-shrink: 0;
}

.sabrina-control-button {
  color: #8b949e;
  background: transparent;
  border: 1px solid transparent;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}
.sabrina-control-button:hover {
  color: white;
  background-color: rgba(88, 166, 255, 0.1);
  border-color: rgba(88, 166, 255, 0.2);
}

.chat-message {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.chat-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.2);
}

.chat-bubble {
  max-width: 85%;
  padding: 0.75rem 1.25rem;
  border-radius: 1.25rem;
  position: relative;
}

.model-bubble {
  background: linear-gradient(135deg, #1f6feb, #238bf7);
  color: #e6f1ff;
  border-top-left-radius: 0.25rem;
  box-shadow: 0 4px 15px rgba(88, 166, 255, 0.2);
}

.user-bubble {
  background-color: #21262d;
  border: 1px solid #30363d;
  color: #c9d1d9;
  border-bottom-right-radius: 0.25rem;
}

.streaming-cursor {
  display: inline-block;
  width: 0.5rem;
  height: 1rem;
  background-color: #e6f1ff;
  border-radius: 1px;
  animation: blink 1s infinite;
  margin-left: 0.25rem;
  vertical-align: text-bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.sabrina-suggestion-chip {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background-color: rgba(88, 166, 255, 0.1);
  border: 1px solid rgba(88, 166, 255, 0.2);
  color: #82c3ff;
  font-weight: 500;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.sabrina-suggestion-chip:hover {
  background-color: rgba(88, 166, 255, 0.2);
  border-color: #58a6ff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(88, 166, 255, 0.1);
}

.sabrina-input-form {
  display: flex;
  gap: 0.5rem;
  position: relative;
}

.sabrina-input {
  width: 100%;
  background-color: #0d1117;
  border: 1px solid #30363d;
  border-radius: 9999px;
  padding: 0.75rem 1.25rem;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.2s ease-in-out;
}

.sabrina-input:focus {
  border-color: #58a6ff;
  box-shadow: 0 0 0 3px rgba(88, 166, 255, 0.2);
}

.sabrina-send-btn {
  background: linear-gradient(135deg, #1f6feb, #58a6ff);
  color: white;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(88, 166, 255, 0.2);
}
.sabrina-send-btn:hover:not(:disabled) {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(88, 166, 255, 0.3);
}
.sabrina-send-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.copy-button {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  background-color: rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 9999px;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.2s ease;
}

.model-bubble:hover .copy-button {
  opacity: 1;
}
.copy-button:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
}


.typing-indicator {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.typing-indicator-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  animation: typing-bounce 1.2s infinite ease-in-out;
}
.typing-indicator-dot:nth-child(2) { animation-delay: -0.15s; }
.typing-indicator-dot:nth-child(3) { animation-delay: -0.3s; }

@keyframes typing-bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1.0); }
}

.chat-action-link {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  margin: 0.25rem 0.25rem 0.25rem 0;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}
.chat-action-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Roadmap HUD Tooltip Styles */
.hud-item-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hud-tooltip {
  position: absolute;
  bottom: 180%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #161b22;
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, bottom 0.2s ease;
  pointer-events: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: 1px solid #30363d;
}

.hud-item-wrapper:hover .hud-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: 200%;
}

/* --- New Pitch Deck Overlay Styles --- */
.pitch-deck-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(13, 17, 23, 0.8);
  backdrop-filter: blur(10px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pitch-deck-content-area {
  width: 100%;
  height: 100%;
  max-width: 1100px;
  max-height: 80vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pitch-deck-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
}

.pitch-deck-slide-header {
  padding: 1.5rem;
  border-bottom: 1px solid #30363d;
  text-align: center;
  flex-shrink: 0;
}

.pitch-deck-slide-main {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.pitch-deck-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(22, 27, 34, 0.8);
  border: 1px solid #30363d;
  color: #8b949e;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 110;
}
.pitch-deck-close-btn:hover {
  background-color: #1f6feb;
  color: white;
  transform: scale(1.1) rotate(90deg);
  border-color: #58a6ff;
}

.pitch-deck-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: rgba(22, 27, 34, 0.6);
  backdrop-filter: blur(5px);
  border: 1px solid #30363d;
  color: #c9d1d9;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
  z-index: 105;
}
.pitch-deck-nav-btn.prev { left: 2rem; }
.pitch-deck-nav-btn.next { right: 2rem; }

.pitch-deck-nav-btn:hover:not(:disabled) {
  background-color: #1f6feb;
  color: white;
  transform: translateY(-50%) scale(1.1);
}
.pitch-deck-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pitch-deck-progress-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(22, 27, 34, 0.8);
  border: 1px solid #30363d;
  color: #8b949e;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  z-index: 105;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(88, 166, 255, 0.5);
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    box-shadow: 0 0 25px rgba(88, 166, 255, 0.9);
    transform: scale(1.05);
    opacity: 1;
  }
}

.unmute-prompt-glow {
  animation: pulse-glow 2.5s infinite ease-in-out;
}

.roadmap-container {
  position: relative;
}

@media (max-width: 768px) {
  .roadmap-container {
    height: 450px;
  }
  .hud-tooltip {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
}
