/* --- Global & Shared Styles --- Dro1d Labs --- */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0a;
  color: #d4d4d4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: #4ec9b0; color: #000; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(78, 201, 176, 0.15);
}

nav .container {
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem;
  font-weight: 700;
  color: #39ff14;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px rgba(78, 201, 176, 0.3);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4ec9b0;
  transition: width 0.2s;
}

.nav-links a:hover { color: #4ec9b0; }
.nav-links a:hover::after { width: 100%; }

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(78, 201, 176, 0.1);
  padding: 4rem 2rem 2rem;
  background: #050505;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-weight: 600;
  color: #4ec9b0;
}

.footer-col p {
  color: #6a6a6a;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }

.footer-col a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.9375rem;
  font-family: 'JetBrains Mono', monospace;
  transition: color 0.2s;
}

.footer-col a:hover { color: #4ec9b0; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(78, 201, 176, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4a4a4a;
  font-size: 0.875rem;
  font-family: 'JetBrains Mono', monospace;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  nav .container { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

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