/* SCROLLBAR */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border2);
  border-radius: 2px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--amber-dim);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-terminal {
    justify-self: center;
    max-width: 400px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }
  .nav-links {
    display: none;
  }
  .hero {
    padding: 120px 24px 60px;
  }
  .hero-terminal {
    max-width: 100%;
  }
  section {
    padding: 80px 24px;
  }
  .problem-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .cost-comparison {
    grid-template-columns: 1fr;
  }
  .cost-col-traditional {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .use-cases-grid {
    grid-template-columns: 1fr;
  }
  .ba-grid {
    grid-template-columns: 1fr;
  }
  .ba-divider {
    width: 100%;
    height: 48px;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .ea-form {
    flex-direction: column;
  }
}
