/* ════════════════════════════════════════════════
   NEXTLOGICAI — MASTER STYLESHEET (CLEANED)
   ════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* ── TOKENS ── */
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --white: #f8fafc;
  --muted: #94a3b8;

  --violet: #7c3aed;
  --cyan: #06d6f5;

  --border: rgba(124,58,237,0.18);
  --glow-v: rgba(124,58,237,0.25);
  --glow-c: rgba(6,214,245,0.18);

  --success: #6ee7b7;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  background: var(--navy);
  color: var(--white);
}

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
}

/* ── GLOBAL ── */
a {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}
a:hover { opacity: 1; }

/* ════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════ */

nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.25rem 4rem;
}

.nav-logo {
  grid-column: 2;
  text-align: center;
}

.nav-logo-img {
  height: 150px;
}

.nav-links-left,
.nav-links-right {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links-left { justify-self: start; }
.nav-links-right { justify-self: end; }

.nav-links-left a,
.nav-links-right a {
  color: var(--muted);
  transition: color 0.2s;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.nav-links-left a:hover,
.nav-links-right a:hover {
  color: var(--white);
}

/* ── CTA BUTTON ── */
.nav-cta {
  background: linear-gradient(135deg, var(--violet), #4f16c7);
  color: white;
  padding: 0.75rem 1.2rem;
  border-radius: 8px;
}

/* ── MOBILE ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
}

/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */

.btn-primary {
  background: linear-gradient(135deg, var(--violet), #4f16c7);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  display: inline-block;
  transition: 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.85rem 2rem;
  border-radius: 8px;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem;
}

.hero-inner {
  max-width: 700px;
}

#hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-sub {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ════════════════════════════════════════════════
   SECTION
   ════════════════════════════════════════════════ */

section {
  padding: 5rem 4rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted);
  max-width: 600px;
}

/* ════════════════════════════════════════════════
   CARD
   ════════════════════════════════════════════════ */

.card {
  background: #111827;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--white);
}

/* ════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */

@media (max-width: 768px) {
  nav {
    padding: 1rem;
  }

  .nav-links-left,
  .nav-links-right {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  section {
    padding: 3rem 1.5rem;
  }

  #hero {
    padding: 5rem 1.5rem;
  }

  footer {
    flex-direction: column;
    gap: 1rem;
  }
}
