/* nav-footer.css — shared header + footer styles (generated from landing/index.html) */

/* Color tokens */
:root {
  --bg: #09090B;
  --surface: #18181B;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.15);
  --accent-blue: #0583FF;
  --accent-regular: #046BE0;
  --accent-dark: #0D168A;
  --accent-darker: #01031E;
  --accent-light: #93C9FF;
  --accent-ghostly: #D6EBFF;
  --green: #10B981;
  --red: #EF4444;
  --amber: #F59E0B;
  --text: #FAFAFA;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --gradient: linear-gradient(135deg, #0583FF, #0D168A);
}


/* Base reset */
html { scroll-behavior: smooth; }

body {
  font-family: 'JetBrains Mono', monospace;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


/* Container */
.container { max-width: 1152px; margin: 0 auto; padding: 0 24px; }

/* Nav */
body > nav {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: 1152px;
  width: calc(100% - 48px);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(9,9,11,0.8);
  border: 1px solid var(--border);
  border-radius: 24px;
}
.nav-inner {
  padding: 0 36px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: #0583FF;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}
.nav-cta:hover { opacity: 0.9; transform: scale(1.02); }
.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-link-signin {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link-signin:hover { color: var(--text); }

/* Hamburger + mobile menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(9,9,11,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  z-index: 99;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-col-social { display: flex; gap: 12px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-social {
  display: flex;
  gap: 16px;
}

/* Media queries — nav hidden on mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-link-signin { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-btn { justify-content: center; }
}

/* Media queries — footer grid */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }
}

@media (max-width: 768px) {
  body > nav { width: calc(100% - 32px); top: 8px; border-radius: 20px; }
  .nav-inner { padding: 0 20px; height: 56px; }
  .nav-logo svg { width: 110px; height: 28px; }
  .nav-cta { padding: 6px 14px; font-size: 13px; border-radius: 20px; }
  .mobile-menu { top: 72px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  body > nav { width: calc(100% - 24px); }
  .nav-inner { padding: 0 16px; }
}
