:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #111827;
  --card-bg: #161b26;
  --card-border: #242b3d;
  --accent: #3b82f6;
  --accent-secondary: #2563eb;
  --highlight: #f97316;
  --hover-glow: rgba(59, 130, 246, 0.15);
  --text: #f9fafb;
  --text-secondary: #e5e7eb;
  --text-muted: #9ca3af;
  --divider: #242b3d;
  --success: #10b981;
  --warning: #ea580c;
  --danger: #ef4444;
  --terminal-bg: #161b26;
  --terminal-border: #1f2937;
  --glow: rgba(249, 115, 22, 0.1);
  --font-heading:
    "Geist Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-body:
    "Geist Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  --font-mono:
    "Geist Mono", ui-monospace, SFMono-Regular, SF Mono, Menlo, Monaco,
    Consolas, "Liberation Mono", "Courier New", monospace;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #0b0f19 0%, #111827 55%, #0b0f19 100%);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.global-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 30%,
    rgba(59, 130, 246, 0.06) 0%,
    transparent 60%
  );
  z-index: 0;
}

.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hover-glow) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.2s;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 25, 0.8);
  border-bottom: 1px solid var(--divider);
  padding: 0 20px;
  width: 100%;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  width: 100%;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-links a {
  color: rgb(161, 161, 161);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-github {
  display: flex;
  align-items: center;
}

.nav-github svg {
  width: 20px;
  height: 20px;
  fill: rgb(161, 161, 161);
  transition: fill 0.2s;
}

.nav-github:hover svg {
  fill: var(--text);
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }

  .nav-container {
    height: 60px;
  }

  .logo-link {
    font-size: 1.1rem;
    gap: 8px;
  }

  .nav-logo-img {
    width: 28px;
    height: 28px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 0.8rem;
  }

  .nav-github svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    height: 56px;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.75rem;
  }
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 100;
}

.hamburger-btn span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}


.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}


@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    background: rgba(11, 11, 10, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 16px;
    flex-direction: column;
    gap: 16px;
    min-width: 200px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 99;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s;
    white-space: nowrap;
  }
  
  .nav-menu a:hover {
    color: var(--accent);
  }
  
  .nav-github {
    display: flex;
    align-items: center;
  }
  
  .nav-github svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
  }
}


.hamburger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  text-align: center;
  padding: 0 24px;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.gold-text {
  background: linear-gradient(135deg, #f8a86e, var(--highlight), #ea580c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--highlight);
  color: var(--bg-primary);
  border: none;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
  background: var(--accent-secondary);
  box-shadow: 0 12px 28px rgba(59, 130, 246, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--hover-glow);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.demo-window {
  background: var(--terminal-bg);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #111622;
  border-bottom: 1px solid var(--divider);
}

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

.dot-red {
  background: #ff0000;
}
.dot-yellow {
  background: #fbbf24;
}
.dot-green {
  background: #4bb543;
}

.terminal-title {
  margin-left: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.video-placeholder {
  position: relative;
  background: #070a12;
  aspect-ratio: 16/9;
}

.demo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.play-indicator {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.live-badge {
  background: var(--glow);
  border: 1px solid var(--highlight);
  color: var(--highlight);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.trusted-section {
  padding: 40px 0;
}

.trusted-label {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.5rem;
  letter-spacing: 2.5px;
  margin-bottom: 32px;
  font-weight: 500;
}

.logo-marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.6;
  filter: grayscale(1) brightness(1.2);
  transition: all 0.4s ease;
}

.logo-marquee:hover {
  opacity: 0.85;
  filter: grayscale(0.5) brightness(1.1);
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-3px);
}

.trusted-logo {
  height: 100px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item:hover .trusted-logo {
  opacity: 1;
  filter: brightness(1.2);
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ps-card {
  background: var(--card-bg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: transform 0.3s;
}

.ps-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.25s;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: 0 20px 30px -15px var(--hover-glow);
}

.cli-window {
  background: #070a12;
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cli-body {
  padding: 28px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.cli-line {
  margin-bottom: 10px;
}

.prompt {
  color: var(--accent);
  margin-right: 8px;
}

.workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.8rem;
}

.step-arrow {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .workflow-steps {
    flex-direction: column;
    gap: 0;
    font-size: 1.5rem;
  }

  .step-arrow {
    transform: rotate(90deg);
    font-size: 1.3rem;
    margin: 4px 0;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .workflow-steps {
    font-size: 1.3rem;
  }

  .step-arrow {
    font-size: 1.1rem;
  }
}

.report-window {
  background: var(--card-bg);
  border: 1px solid var(--terminal-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.report-content {
  padding: 30px;
  max-height: 360px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent);
}

.roadmap-section {
  position: relative;
  z-index: 2;
}

.timeline-vertical {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  max-width: 500px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 15.5%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    var(--accent) 15%,
    var(--accent) 85%,
    transparent 100%
  );
  transform: translateY(0);
  opacity: 0.5;
}

.timeline-row {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.timeline-circle {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 3;
}

.timeline-circle:hover {
  border-color: var(--accent);
  box-shadow: 0 0 24px var(--hover-glow);
  transform: scale(1.08);
  background: rgba(59, 130, 246, 0.08);
}

.circle-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.timeline-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 40px;
  padding: 12px 24px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  flex: 1;
  max-width: 320px;
}

.timeline-content:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px var(--hover-glow);
  transform: translateX(4px);
}

.version-badge {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--highlight);
  background: var(--glow);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.version-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

@media (max-width: 600px) {
  .timeline-vertical {
    gap: 32px;
    padding: 24px 16px;
  }

  .timeline-circle {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .circle-number {
    font-size: 0.95rem;
  }

  .timeline-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 18px;
    max-width: 220px;
  }

  .timeline-row {
    gap: 16px;
  }
}

.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 22px 0;
  cursor: pointer;
}

.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--text-secondary);
}

.cta-section {
  text-align: center;
  padding: 100px 24px;
  background: radial-gradient(
    circle at center,
    var(--hover-glow) 0%,
    transparent 70%
  ); /* Swapped out the old gold background vector to transparent blue glow */
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.footer {
  border-top: 1px solid var(--divider);
  padding: 60px 24px 30px;
  background: var(--bg-primary);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  display: none;
}

.footer-logo-img[src] {
  display: block;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.3px;
}

.footer-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.footer-nav a {
  color: rgb(161, 161, 161);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin: 0;
}

.footer-credit {
  color: var(--highlight);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 500;
}

.footer-credit a {
  color: var(--highlight);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

.btn-vscode {
  background: transparent;
  border: 1px solid rgba(59,130,246,0.5);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-vscode:hover {
  border-color: #3b82f6;
  background: rgba(59,130,246,0.1);
  box-shadow: 0 8px 25px rgba(59,130,246,0.2);
  transform: translateY(-2px);
}

.btn-vscode svg {
  fill: #3b82f6;
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-left {
    flex-direction: column;
    gap: 4px;
  }
}

@media (max-width: 700px) {
  .nav-links {
    gap: 16px;
  }
  .hero-headline {
    font-size: 2.6rem;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav {
    gap: 18px;
  }
}
