@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg-dark: #09090F;
  --bg-darker: #0C0C13;
  --bg-card: #111118;
  --text-main: #B8B9C4;
  --text-white: #FFFFFF;
  --accent-main: #6C63FF;
  --accent-hover: #7B72FF;
  --accent-light: #9D96FF;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(108, 99, 255, 0.2);
  --success-color: #28CA41;
  --warning-color: #FFBD2E;
  --danger-color: #FF5F57;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

#flock-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.text-white {
  color: var(--text-white);
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* Nav */
.navbar-custom {
  background-color: rgba(9, 9, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
}

.brand-icon {
  width: 24px;
  height: 24px;
  background-color: #2D2D35; /* Dark grey box */
  border-radius: 6px; /* Rounded corners */
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-icon::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--accent-main); /* Purple data circle */
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.8); /* Stronger glow for full brightness */
}

.nav-link-custom {
  color: var(--text-main);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.nav-link-custom:hover {
  color: var(--text-white);
}

.btn-primary-custom {
  background-color: var(--accent-main);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background-color: var(--accent-hover);
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  padding: 7rem 1.5rem 6rem;
}

.badge-pilot {
  background-color: rgba(108, 99, 255, 0.1);
  border: 1px solid var(--border-accent);
  color: var(--accent-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 50rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-pilot i {
  font-size: 0.4rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-white);
}

.text-accent {
  color: var(--accent-main);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-main);
  max-width: 42rem;
  margin: 0 auto;
}

.btn-outline-custom {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-outline-custom:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

/* Dashboard Mockup */
.mockup-container {
  position: relative;
  max-width: 56rem;
  margin: 4rem auto 0;
}

.mockup-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(108, 99, 255, 0.1);
  filter: blur(60px);
  border-radius: 50%;
  transform: scale(0.75) translateY(2rem);
  pointer-events: none;
  z-index: 0;
}

.mockup-window {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.mockup-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-dots {
  display: flex;
  gap: 0.5rem;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background-color: var(--danger-color);
}

.dot-yellow {
  background-color: var(--warning-color);
}

.dot-green {
  background-color: var(--success-color);
}

.mockup-url {
  background-color: var(--bg-dark);
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

.mockup-status {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  color: var(--success-color);
  font-weight: 500;
}

.mockup-body {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
}

.sidebar-title {
  font-size: 0.625rem;
  color: rgba(184, 185, 196, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.sidebar-item {
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sidebar-item.active {
  background-color: rgba(108, 99, 255, 0.2);
  color: var(--accent-light);
}

.sidebar-item:not(.active) {
  color: rgba(184, 185, 196, 0.6);
}

.sidebar-item:not(.active):hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.chat-area {
  background-color: var(--bg-dark);
  border-radius: 0.5rem;
  padding: 1rem;
}

.chat-message {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.chat-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.avatar-user {
  background-color: #1E1E28;
  color: rgba(184, 185, 196, 0.6);
  font-size: 0.625rem;
}

.avatar-ai {
  background-color: rgba(108, 99, 255, 0.2);
  color: var(--accent-light);
  font-size: 0.625rem;
}

.chat-text {
  font-size: 0.75rem;
  line-height: 1.6;
}

.chat-text.user {
  color: rgba(184, 185, 196, 0.7);
}

.chat-text.ai {
  color: var(--text-main);
}

.cursor-pulse {
  display: inline-block;
  width: 2px;
  height: 12px;
  background-color: var(--accent-main);
  margin-left: 4px;
  vertical-align: middle;
  animation: pulse 1s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.chat-input-box {
  background-color: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.chat-input-box input {
  background: transparent;
  border: none;
  color: rgba(184, 185, 196, 0.4);
  font-size: 0.75rem;
  outline: none;
  width: 100%;
}

.chat-input-btn {
  width: 24px;
  height: 24px;
  background-color: var(--accent-main);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.625rem;
}

/* Trust Strip */
.trust-strip {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 2rem 1.5rem;
}

.trust-item {
  color: rgba(184, 185, 196, 0.4);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item i {
  color: var(--accent-main);
}

/* Sections */
.section-padding {
  padding: 6rem 1.5rem;
}

.bg-darker {
  background-color: var(--bg-darker);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.card-custom {
  background-color: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  padding: 2rem;
  height: 100%;
}

.card-accent {
  border-color: var(--border-accent);
}

.card-label-danger {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(248, 113, 113, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.card-label-accent {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-title {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.feature-card .feature-title {
  color: var(--text-white);
}

.feature-desc {
  color: rgba(184, 185, 196, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}

.icon-box {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.icon-box-lg {
  width: 2.75rem;
  height: 2.75rem;
}

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--accent-main);
  font-weight: 500;
  margin-bottom: 1rem;
}

.list-icon {
  color: var(--accent-main);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Waitlist Form */
.form-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.form-control-custom {
  background-color: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  width: 100%;
}

.form-control-custom:focus {
  outline: none;
  border-color: rgba(108, 99, 255, 0.5);
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.btn-submit {
  width: 100%;
  background-color: var(--accent-main);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-size: 0.875rem;
  box-shadow: 0 10px 15px -3px rgba(108, 99, 255, 0.2);
  transition: all 0.2s;
}

.btn-submit:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 10px 15px -3px rgba(108, 99, 255, 0.3);
}

.success-box {
  background-color: rgba(108, 99, 255, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: 0.5rem;
  padding: 1.5rem;
  display: none;
}

/* Footer */
footer {
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 1.5rem;
}

.footer-title {
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  position: relative;
  display: block;
  padding-bottom: 0.75rem;
}

.footer-links-group {
  background-color: transparent;
  border: none;
  padding: 0;
}

.footer-link {
  color: rgba(184, 185, 196, 0.5);
  font-size: 0.8125rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:last-child {
  margin-bottom: 0;
}

.footer-link:hover {
  color: var(--text-white);
  text-decoration: none;
  transform: translateX(4px);
}

.footer-link::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent-main);
  opacity: 0;
  transition: opacity 0.2s;
}

.footer-link:hover::before {
  opacity: 1;
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  margin-top: 3rem;
  font-size: 0.75rem;
  color: rgba(184, 185, 196, 0.3);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .mockup-body {
    grid-template-columns: 1fr;
  }

  .sidebar-section {
    display: none;
    /* Hide sidebar on mobile to save space */
  }
}

/* Product Image Styling */
.product-shot {
  max-width: 400px;
  width: 100%;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(108, 99, 255, 0.05);
  transition: transform 0.3s ease;
}

.product-shot:hover {
  transform: translateY(-5px);
}